frostfs-node/pkg/morph/client/container/list.go

68 lines
1.7 KiB
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package container
import (
"fmt"
2020-07-24 13:54:03 +00:00
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
)
// ListArgs groups the arguments
// of list containers test invoke call.
type ListArgs struct {
ownerID []byte // container owner identifier
}
// ListValues groups the stack parameters
// returned by list containers test invoke.
type ListValues struct {
cidList [][]byte // list of container identifiers
}
// SetOwnerID sets the container owner identifier
// in a binary format.
func (l *ListArgs) SetOwnerID(v []byte) {
l.ownerID = v
}
// CIDList returns the list of container
// identifiers in a binary format.
func (l *ListValues) CIDList() [][]byte {
return l.cidList
}
// List performs the test invoke of list container
// method of NeoFS Container contract.
func (c *Client) List(args ListArgs) (*ListValues, error) {
invokePrm := client.TestInvokePrm{}
2020-07-24 13:54:03 +00:00
invokePrm.SetMethod(c.listMethod)
invokePrm.SetArgs(args.ownerID)
2020-07-24 13:54:03 +00:00
prms, err := c.client.TestInvoke(invokePrm)
2020-07-24 13:54:03 +00:00
if err != nil {
return nil, fmt.Errorf("could not perform test invocation (%s): %w", c.listMethod, err)
2020-07-24 13:54:03 +00:00
} else if ln := len(prms); ln != 1 {
return nil, fmt.Errorf("unexpected stack item count (%s): %d", c.listMethod, ln)
2020-07-24 13:54:03 +00:00
}
prms, err = client.ArrayFromStackItem(prms[0])
2020-07-24 13:54:03 +00:00
if err != nil {
return nil, fmt.Errorf("could not get stack item array from stack item (%s): %w", c.listMethod, err)
2020-07-24 13:54:03 +00:00
}
res := &ListValues{
cidList: make([][]byte, 0, len(prms)),
}
for i := range prms {
cid, err := client.BytesFromStackItem(prms[i])
2020-07-24 13:54:03 +00:00
if err != nil {
return nil, fmt.Errorf("could not get byte array from stack item (%s): %w", c.listMethod, err)
2020-07-24 13:54:03 +00:00
}
res.cidList = append(res.cidList, cid)
}
return res, nil
}