2020-07-24 13:54:03 +00:00
|
|
|
package wrapper
|
|
|
|
|
|
|
|
import (
|
2021-05-21 10:39:01 +00:00
|
|
|
"fmt"
|
2020-07-24 13:54:03 +00:00
|
|
|
|
2021-05-21 10:39:01 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
2020-07-24 13:54:03 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client/netmap"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Wrapper is a wrapper over netmap contract
|
|
|
|
// client which implements:
|
|
|
|
// * network map storage;
|
|
|
|
// * tool for peer state updating.
|
|
|
|
//
|
|
|
|
// Working wrapper must be created via constructor New.
|
|
|
|
// Using the Wrapper that has been created with new(Wrapper)
|
|
|
|
// expression (or just declaring a Wrapper variable) is unsafe
|
|
|
|
// and can lead to panic.
|
|
|
|
type Wrapper struct {
|
2021-05-21 11:09:01 +00:00
|
|
|
client *netmap.Client
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 12:14:16 +00:00
|
|
|
// Option allows to set an optional
|
|
|
|
// parameter of Wrapper.
|
|
|
|
type Option func(*opts)
|
|
|
|
|
|
|
|
type opts []client.StaticClientOption
|
|
|
|
|
|
|
|
func defaultOpts() *opts {
|
|
|
|
return new(opts)
|
|
|
|
}
|
|
|
|
|
2021-05-21 10:39:01 +00:00
|
|
|
// NewFromMorph returns the wrapper instance from the raw morph client.
|
2021-09-06 12:14:16 +00:00
|
|
|
func NewFromMorph(cli *client.Client, contract util.Uint160, fee fixedn.Fixed8, opts ...Option) (*Wrapper, error) {
|
|
|
|
o := defaultOpts()
|
|
|
|
|
|
|
|
for i := range opts {
|
|
|
|
opts[i](o)
|
|
|
|
}
|
|
|
|
|
|
|
|
staticClient, err := client.NewStatic(cli, contract, fee, ([]client.StaticClientOption)(*o)...)
|
2021-05-21 10:39:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create netmap static client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
enhancedNetmapClient, err := netmap.New(staticClient)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create netmap morph client: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-05-21 11:02:46 +00:00
|
|
|
return &Wrapper{client: enhancedNetmapClient}, nil
|
2021-05-21 10:39:01 +00:00
|
|
|
}
|
2021-09-06 12:14:16 +00:00
|
|
|
|
2021-09-08 14:52:40 +00:00
|
|
|
// Morph returns raw morph client.
|
|
|
|
func (w Wrapper) Morph() *client.Client {
|
|
|
|
return w.client.Morph()
|
|
|
|
}
|
|
|
|
|
2021-09-06 12:14:16 +00:00
|
|
|
// TryNotary returns option to enable
|
|
|
|
// notary invocation tries.
|
|
|
|
func TryNotary() Option {
|
|
|
|
return func(o *opts) {
|
|
|
|
*o = append(*o, client.TryNotary())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// AsAlphabet returns option to sign main TX
|
|
|
|
// of notary requests with client's private
|
|
|
|
// key.
|
|
|
|
//
|
|
|
|
// Considered to be used by IR nodes only.
|
|
|
|
func AsAlphabet() Option {
|
|
|
|
return func(o *opts) {
|
|
|
|
*o = append(*o, client.AsAlphabet())
|
|
|
|
}
|
|
|
|
}
|