2021-11-09 08:07:49 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
2022-03-07 11:39:49 +00:00
|
|
|
"crypto/ecdsa"
|
|
|
|
"crypto/tls"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
v2accounting "github.com/nspcc-dev/neofs-api-go/v2/accounting"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/rpc"
|
2021-11-16 18:15:56 +00:00
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/rpc/client"
|
2021-11-09 08:07:49 +00:00
|
|
|
)
|
|
|
|
|
2022-03-07 11:39:49 +00:00
|
|
|
// Client represents virtual connection to the NeoFS network to communicate
|
|
|
|
// with NeoFS server using NeoFS API protocol. It is designed to provide
|
|
|
|
// an abstraction interface from the protocol details of data transfer over
|
|
|
|
// a network in NeoFS.
|
2022-01-10 09:19:46 +00:00
|
|
|
//
|
2022-03-07 11:39:49 +00:00
|
|
|
// Client can be created using simple Go variable declaration. Before starting
|
|
|
|
// work with the Client, it SHOULD BE correctly initialized (see Init method).
|
|
|
|
// Before executing the NeoFS operations using the Client, connection to the
|
|
|
|
// server MUST BE correctly established (see Dial method and pay attention
|
|
|
|
// to the mandatory parameters). Using the Client before connecting have
|
|
|
|
// been established can lead to a panic. After the work, the Client SHOULD BE
|
|
|
|
// closed (see Close method): it frees internal and system resources which were
|
|
|
|
// allocated for the period of work of the Client. Calling Init/Dial/Close method
|
|
|
|
// during the communication process step strongly discouraged as it leads to
|
|
|
|
// undefined behavior.
|
2022-01-24 10:33:43 +00:00
|
|
|
//
|
|
|
|
// Each method which produces a NeoFS API call may return a server response.
|
|
|
|
// Status responses are returned in the result structure, and can be cast
|
|
|
|
// to built-in error instance (or in the returned error if the client is
|
|
|
|
// configured accordingly). Certain statuses can be checked using `apistatus`
|
2022-02-28 10:56:46 +00:00
|
|
|
// and standard `errors` packages. Note that package provides some helper
|
|
|
|
// functions to work with status returns (e.g. IsErrContainerNotFound).
|
2022-01-24 10:33:43 +00:00
|
|
|
// All possible responses are documented in methods, however, some may be
|
|
|
|
// returned from all of them (pay attention to the presence of the pointer sign):
|
|
|
|
// - *apistatus.ServerInternal on internal server error;
|
|
|
|
// - *apistatus.SuccessDefaultV2 on default success.
|
2022-03-07 11:39:49 +00:00
|
|
|
//
|
|
|
|
// Client MUST NOT be copied by value: use pointer to Client instead.
|
|
|
|
//
|
|
|
|
// See client package overview to get some examples.
|
2021-12-29 13:18:09 +00:00
|
|
|
type Client struct {
|
2022-03-07 11:39:49 +00:00
|
|
|
prm PrmInit
|
|
|
|
|
|
|
|
c client.Client
|
|
|
|
}
|
2021-11-09 08:07:49 +00:00
|
|
|
|
2022-03-07 11:39:49 +00:00
|
|
|
// Init brings the Client instance to its initial state.
|
|
|
|
//
|
|
|
|
// One-time method call during application init stage (before Dial) is expected.
|
|
|
|
// Calling multiple times leads to undefined behavior.
|
|
|
|
//
|
|
|
|
// See docs of PrmInit methods for details. See also Dial / Close.
|
|
|
|
func (c *Client) Init(prm PrmInit) {
|
|
|
|
c.prm = prm
|
2021-11-09 08:07:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-07 11:39:49 +00:00
|
|
|
// Dial establishes a connection to the server from the NeoFS network.
|
|
|
|
// Returns an error describing failure reason. If failed, the Client
|
|
|
|
// SHOULD NOT be used.
|
|
|
|
//
|
|
|
|
// Panics if required parameters are set incorrectly, look carefully
|
|
|
|
// at the method documentation.
|
2022-01-10 09:19:46 +00:00
|
|
|
//
|
2022-03-07 11:39:49 +00:00
|
|
|
// One-time method call during application start-up stage (after Init ) is expected.
|
|
|
|
// Calling multiple times leads to undefined behavior.
|
|
|
|
//
|
|
|
|
// See also Init / Close.
|
|
|
|
func (c *Client) Dial(prm PrmDial) error {
|
|
|
|
if prm.endpoint == "" {
|
|
|
|
panic("server address is unset or empty")
|
|
|
|
}
|
2021-11-09 08:07:49 +00:00
|
|
|
|
2022-03-07 11:39:49 +00:00
|
|
|
if prm.timeoutDialSet {
|
|
|
|
if prm.timeoutDial <= 0 {
|
|
|
|
panic("non-positive timeout")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
prm.timeoutDial = 5 * time.Second
|
2021-11-09 08:07:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-07 11:39:49 +00:00
|
|
|
c.c = *client.New(append(
|
|
|
|
client.WithNetworkURIAddress(prm.endpoint, prm.tlsConfig),
|
|
|
|
client.WithDialTimeout(prm.timeoutDial),
|
|
|
|
)...)
|
|
|
|
|
|
|
|
// TODO: (neofs-api-go#382) perform generic dial stage of the client.Client
|
2022-03-14 09:53:32 +00:00
|
|
|
_, _ = rpc.Balance(&c.c, new(v2accounting.BalanceRequest))
|
2022-03-07 11:39:49 +00:00
|
|
|
|
2022-03-14 09:53:32 +00:00
|
|
|
return nil
|
2022-03-07 11:39:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes underlying connection to the NeoFS server. Implements io.Closer.
|
|
|
|
// MUST NOT be called before successful Dial. Can be called concurrently
|
|
|
|
// with server operations processing on running goroutines: in this case
|
|
|
|
// they are likely to fail due to a connection error.
|
|
|
|
//
|
|
|
|
// One-time method call during application shutdown stage (after Init and Dial)
|
|
|
|
// is expected. Calling multiple times leads to undefined behavior.
|
|
|
|
//
|
|
|
|
// See also Init / Dial.
|
|
|
|
func (c *Client) Close() error {
|
|
|
|
return c.c.Conn().Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrmInit groups initialization parameters of Client instances.
|
|
|
|
//
|
|
|
|
// See also Init.
|
|
|
|
type PrmInit struct {
|
|
|
|
resolveNeoFSErrors bool
|
|
|
|
|
|
|
|
key ecdsa.PrivateKey
|
|
|
|
|
|
|
|
cbRespInfo func(ResponseMetaInfo) error
|
|
|
|
|
|
|
|
netMagic uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetDefaultPrivateKey sets Client private key to be used for the protocol
|
|
|
|
// communication by default.
|
|
|
|
//
|
|
|
|
// Required for operations without custom key parametrization (see corresponding Prm* docs).
|
|
|
|
func (x *PrmInit) SetDefaultPrivateKey(key ecdsa.PrivateKey) {
|
|
|
|
x.key = key
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResolveNeoFSFailures makes the Client to resolve failure statuses of the
|
|
|
|
// NeoFS protocol into Go built-in errors. These errors are returned from
|
|
|
|
// each protocol operation. By default, statuses aren't resolved and written
|
|
|
|
// to the resulting structure (see corresponding Res* docs).
|
|
|
|
func (x *PrmInit) ResolveNeoFSFailures() {
|
|
|
|
x.resolveNeoFSErrors = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetResponseInfoCallback makes the Client to pass ResponseMetaInfo from each
|
|
|
|
// NeoFS server response to f. Nil (default) means ignore response meta info.
|
|
|
|
func (x *PrmInit) SetResponseInfoCallback(f func(ResponseMetaInfo) error) {
|
|
|
|
x.cbRespInfo = f
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrmDial groups connection parameters for the Client.
|
|
|
|
//
|
|
|
|
// See also Dial.
|
|
|
|
type PrmDial struct {
|
|
|
|
endpoint string
|
|
|
|
|
|
|
|
tlsConfig *tls.Config
|
|
|
|
|
|
|
|
timeoutDialSet bool
|
|
|
|
timeoutDial time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetServerURI sets server URI in the NeoFS network.
|
|
|
|
// Required parameter.
|
|
|
|
//
|
|
|
|
// Format of the URI:
|
|
|
|
// [scheme://]host:port
|
|
|
|
//
|
|
|
|
// Supported schemes:
|
|
|
|
// grpc
|
|
|
|
// grpcs
|
|
|
|
//
|
|
|
|
// See also SetTLSConfig.
|
|
|
|
func (x *PrmDial) SetServerURI(endpoint string) {
|
|
|
|
x.endpoint = endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTLSConfig sets tls.Config to open TLS client connection
|
|
|
|
// to the NeoFS server. Nil (default) means insecure connection.
|
|
|
|
//
|
|
|
|
// See also SetServerURI.
|
|
|
|
func (x *PrmDial) SetTLSConfig(tlsConfig *tls.Config) {
|
|
|
|
x.tlsConfig = tlsConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTimeout sets the timeout for connection to be established.
|
|
|
|
// MUST BE positive. If not called, 5s timeout will be used by default.
|
|
|
|
func (x *PrmDial) SetTimeout(timeout time.Duration) {
|
|
|
|
x.timeoutDialSet = true
|
|
|
|
x.timeoutDial = timeout
|
2021-11-09 08:07:49 +00:00
|
|
|
}
|