2021-06-21 14:13:08 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2021-11-06 11:13:04 +00:00
|
|
|
rawclient "github.com/nspcc-dev/neofs-api-go/v2/rpc/client"
|
2021-06-21 14:13:08 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/network"
|
2021-11-10 07:08:33 +00:00
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/client"
|
2021-06-21 14:13:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Client is an interface of NeoFS storage
|
|
|
|
// node's client.
|
|
|
|
type Client interface {
|
|
|
|
client.Client
|
|
|
|
|
|
|
|
// RawForAddress must return rawclient.Client
|
|
|
|
// for the passed network.Address.
|
|
|
|
RawForAddress(network.Address) *rawclient.Client
|
|
|
|
}
|
2021-09-28 04:42:31 +00:00
|
|
|
|
|
|
|
// NodeInfo groups information about NeoFS storage node needed for Client construction.
|
|
|
|
type NodeInfo struct {
|
|
|
|
addrGroup network.AddressGroup
|
2021-09-28 04:49:28 +00:00
|
|
|
|
|
|
|
key []byte
|
2021-09-28 04:42:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetAddressGroup sets group of network addresses.
|
|
|
|
func (x *NodeInfo) SetAddressGroup(v network.AddressGroup) {
|
|
|
|
x.addrGroup = v
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddressGroup returns group of network addresses.
|
|
|
|
func (x NodeInfo) AddressGroup() network.AddressGroup {
|
|
|
|
return x.addrGroup
|
|
|
|
}
|
2021-09-28 04:49:28 +00:00
|
|
|
|
|
|
|
// SetPublicKey sets public key in a binary format.
|
|
|
|
//
|
|
|
|
// Argument must not be mutated.
|
|
|
|
func (x *NodeInfo) SetPublicKey(v []byte) {
|
|
|
|
x.key = v
|
|
|
|
}
|
|
|
|
|
|
|
|
// PublicKey returns public key in a binary format.
|
|
|
|
//
|
|
|
|
// Result must not be mutated.
|
|
|
|
func (x *NodeInfo) PublicKey() []byte {
|
|
|
|
return x.key
|
|
|
|
}
|