2020-07-24 13:54:03 +00:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
2022-01-31 13:34:01 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/client"
|
2022-01-31 13:34:01 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
2020-07-24 13:54:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Client is a wrapper over StaticClient
|
|
|
|
// which makes calls with the names and arguments
|
2023-02-05 15:59:38 +00:00
|
|
|
// of the FrostFS Container contract.
|
2020-07-24 13:54:03 +00:00
|
|
|
//
|
|
|
|
// Working client must be created via constructor New.
|
|
|
|
// Using the Client that has been created with new(Client)
|
|
|
|
// expression (or just declaring a Client variable) is unsafe
|
|
|
|
// and can lead to panic.
|
|
|
|
type Client struct {
|
|
|
|
client *client.StaticClient // static Container contract client
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2023-03-24 08:55:14 +00:00
|
|
|
putMethod = "put"
|
|
|
|
deleteMethod = "delete"
|
|
|
|
getMethod = "get"
|
|
|
|
listMethod = "list"
|
|
|
|
containersOfMethod = "containersOf"
|
|
|
|
eaclMethod = "eACL"
|
2023-08-18 14:12:24 +00:00
|
|
|
deletionInfoMethod = "deletionInfo"
|
2022-01-29 13:06:36 +00:00
|
|
|
|
|
|
|
startEstimationMethod = "startContainerEstimation"
|
|
|
|
stopEstimationMethod = "stopContainerEstimation"
|
|
|
|
|
|
|
|
listSizesMethod = "listContainerSizes"
|
|
|
|
getSizeMethod = "getContainerSize"
|
|
|
|
|
2022-01-31 13:34:01 +00:00
|
|
|
// putNamedMethod is method name for container put with an alias. It is exported to provide custom fee.
|
|
|
|
putNamedMethod = "putNamed"
|
|
|
|
)
|
|
|
|
|
2023-10-31 11:56:55 +00:00
|
|
|
var errNilArgument = errors.New("empty argument")
|
2020-07-24 13:54:03 +00:00
|
|
|
|
2022-01-31 13:34:01 +00:00
|
|
|
// NewFromMorph returns the wrapper instance from the raw morph client.
|
|
|
|
//
|
|
|
|
// Specified fee is used for all operations by default. If WithCustomFeeForNamedPut is provided,
|
|
|
|
// the customized fee is used for Put operations with named containers.
|
|
|
|
func NewFromMorph(cli *client.Client, contract util.Uint160, fee fixedn.Fixed8, opts ...Option) (*Client, error) {
|
|
|
|
o := defaultOpts()
|
|
|
|
|
|
|
|
for i := range opts {
|
|
|
|
opts[i](o)
|
|
|
|
}
|
|
|
|
|
|
|
|
sc, err := client.NewStatic(cli, contract, fee, o.staticOpts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("can't create container static client: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Client{client: sc}, nil
|
2020-07-24 13:54:03 +00:00
|
|
|
}
|
|
|
|
|
2021-09-03 17:19:16 +00:00
|
|
|
// Morph returns raw morph client.
|
|
|
|
func (c Client) Morph() *client.Client {
|
|
|
|
return c.client.Morph()
|
|
|
|
}
|
2022-01-31 13:34:01 +00:00
|
|
|
|
|
|
|
// ContractAddress returns the address of the associated contract.
|
|
|
|
func (c Client) ContractAddress() util.Uint160 {
|
|
|
|
return c.client.ContractAddress()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Option allows to set an optional
|
|
|
|
// parameter of Wrapper.
|
|
|
|
type Option func(*opts)
|
|
|
|
|
|
|
|
type opts struct {
|
|
|
|
staticOpts []client.StaticClientOption
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultOpts() *opts {
|
|
|
|
return new(opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TryNotary returns option to enable
|
|
|
|
// notary invocation tries.
|
|
|
|
func TryNotary() Option {
|
|
|
|
return func(o *opts) {
|
|
|
|
o.staticOpts = append(o.staticOpts, 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.staticOpts = append(o.staticOpts, client.AsAlphabet())
|
|
|
|
}
|
|
|
|
}
|