forked from TrueCloudLab/frostfs-node
8d471c7e36
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
202 lines
5.2 KiB
Go
202 lines
5.2 KiB
Go
package meta
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
core "github.com/nspcc-dev/neofs-node/pkg/core/object"
|
|
"go.etcd.io/bbolt"
|
|
)
|
|
|
|
// ListPrm contains parameters for ListWithCursor operation.
|
|
type ListPrm struct {
|
|
count int
|
|
cursor string
|
|
}
|
|
|
|
// WithCount sets maximum amount of addresses that ListWithCursor can return.
|
|
func (l *ListPrm) WithCount(count uint32) *ListPrm {
|
|
l.count = int(count)
|
|
return l
|
|
}
|
|
|
|
// WithCursor sets cursor for ListWithCursor operation. For initial request
|
|
// ignore this param or use empty string. For continues requests, use value
|
|
// from ListRes.
|
|
func (l *ListPrm) WithCursor(cursor string) *ListPrm {
|
|
l.cursor = cursor
|
|
return l
|
|
}
|
|
|
|
// ListRes contains values returned from ListWithCursor operation.
|
|
type ListRes struct {
|
|
addrList []*object.Address
|
|
cursor string
|
|
}
|
|
|
|
// AddressList returns addresses selected by ListWithCursor operation.
|
|
func (l ListRes) AddressList() []*object.Address {
|
|
return l.addrList
|
|
}
|
|
|
|
// Cursor returns cursor for consecutive listing requests.
|
|
func (l ListRes) Cursor() string {
|
|
return l.cursor
|
|
}
|
|
|
|
const (
|
|
cursorPrefixPrimary = 'p'
|
|
cursorPrefixTombstone = 't'
|
|
cursorPrefixSG = 's'
|
|
)
|
|
|
|
var errStopIterator = errors.New("stop")
|
|
|
|
// ListWithCursor lists physical objects available in metabase. Includes regular,
|
|
// tombstone and storage group objects. Does not include inhumed objects. Use
|
|
// cursor value from response for consecutive requests.
|
|
func ListWithCursor(db *DB, count uint32, cursor string) ([]*object.Address, string, error) {
|
|
r, err := db.ListWithCursor(new(ListPrm).WithCount(count).WithCursor(cursor))
|
|
if err != nil {
|
|
return nil, "", err
|
|
}
|
|
|
|
return r.AddressList(), r.Cursor(), nil
|
|
}
|
|
|
|
// ListWithCursor lists physical objects available in metabase. Includes regular,
|
|
// tombstone and storage group objects. Does not include inhumed objects. Use
|
|
// cursor value from response for consecutive requests.
|
|
func (db *DB) ListWithCursor(prm *ListPrm) (res *ListRes, err error) {
|
|
err = db.boltDB.View(func(tx *bbolt.Tx) error {
|
|
res = new(ListRes)
|
|
res.addrList, res.cursor, err = db.listWithCursor(tx, prm.count, prm.cursor)
|
|
return err
|
|
})
|
|
|
|
return res, err
|
|
}
|
|
|
|
func (db *DB) listWithCursor(tx *bbolt.Tx, count int, cursor string) ([]*object.Address, string, error) {
|
|
threshold := len(cursor) == 0 // threshold is a flag to ignore cursor
|
|
a := object.NewAddress()
|
|
var cursorPrefix uint8
|
|
|
|
if !threshold { // if cursor is present, then decode it and check sanity
|
|
cursorPrefix = cursor[0]
|
|
switch cursorPrefix {
|
|
case cursorPrefixPrimary, cursorPrefixSG, cursorPrefixTombstone:
|
|
default:
|
|
return nil, "", fmt.Errorf("invalid cursor prefix %s", string(cursorPrefix))
|
|
}
|
|
|
|
cursor = cursor[1:]
|
|
if err := a.Parse(cursor); err != nil {
|
|
return nil, "", fmt.Errorf("invalid cursor address: %w", err)
|
|
}
|
|
}
|
|
|
|
result := make([]*object.Address, 0, count)
|
|
unique := make(map[string]struct{}) // do not parse the same containerID twice
|
|
|
|
_ = tx.ForEach(func(name []byte, _ *bbolt.Bucket) error {
|
|
containerID := parseContainerID(name, unique)
|
|
if containerID == nil {
|
|
return nil
|
|
}
|
|
|
|
unique[containerID.String()] = struct{}{}
|
|
|
|
if !threshold && !containerID.Equal(a.ContainerID()) {
|
|
return nil // ignore buckets until we find cursor bucket
|
|
}
|
|
|
|
prefix := containerID.String() + "/"
|
|
|
|
lookupBuckets := [...]struct {
|
|
name []byte
|
|
prefix uint8
|
|
}{
|
|
{primaryBucketName(containerID), cursorPrefixPrimary},
|
|
{tombstoneBucketName(containerID), cursorPrefixTombstone},
|
|
{storageGroupBucketName(containerID), cursorPrefixSG},
|
|
}
|
|
|
|
for _, lb := range lookupBuckets {
|
|
if !threshold && cursorPrefix != lb.prefix {
|
|
continue // start from the bucket, specified in the cursor prefix
|
|
}
|
|
|
|
cursorPrefix = lb.prefix
|
|
result, cursor = selectNFromBucket(tx, lb.name, prefix, result, count, cursor, threshold)
|
|
if len(result) >= count {
|
|
return errStopIterator
|
|
}
|
|
|
|
// set threshold flag after first `selectNFromBucket` invocation
|
|
// first invocation must look for cursor object
|
|
threshold = true
|
|
}
|
|
return nil
|
|
})
|
|
|
|
if len(result) == 0 {
|
|
return nil, "", core.ErrEndOfListing
|
|
}
|
|
|
|
return result, string(cursorPrefix) + cursor, nil
|
|
}
|
|
|
|
// selectNFromBucket similar to selectAllFromBucket but uses cursor to find
|
|
// object to start selecting from. Ignores inhumed objects.
|
|
func selectNFromBucket(tx *bbolt.Tx,
|
|
name []byte, // bucket name
|
|
prefix string, // string of CID, optimization
|
|
to []*object.Address, // listing result
|
|
limit int, // stop listing at `limit` items in result
|
|
cursor string, // start from cursor object
|
|
threshold bool, // ignore cursor and start immediately
|
|
) ([]*object.Address, string) {
|
|
bkt := tx.Bucket(name)
|
|
if bkt == nil {
|
|
return to, cursor
|
|
}
|
|
|
|
count := len(to)
|
|
|
|
_ = bkt.ForEach(func(k, v []byte) error {
|
|
if count >= limit {
|
|
return errStopIterator
|
|
}
|
|
|
|
key := prefix + string(k)
|
|
|
|
if !threshold {
|
|
if cursor == key {
|
|
// ignore cursor object and start adding next objects
|
|
threshold = true
|
|
}
|
|
return nil
|
|
}
|
|
|
|
threshold = true
|
|
cursor = key
|
|
|
|
a := object.NewAddress()
|
|
if err := a.Parse(key); err != nil {
|
|
return err
|
|
}
|
|
|
|
if inGraveyard(tx, a) > 0 {
|
|
return nil
|
|
}
|
|
|
|
to = append(to, a)
|
|
count++
|
|
|
|
return nil
|
|
})
|
|
|
|
return to, cursor
|
|
}
|