8bef560ab9
Change-Id: I8ec6ec9a710650611d272b03b2927759a8b02f91
95 lines
2.2 KiB
Go
95 lines
2.2 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package storage
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// ListOptions are items that are optional for the LIST method.
|
|
type ListOptions struct {
|
|
Prefix Key
|
|
StartAfter Key // StartAfter is relative to Prefix
|
|
Recursive bool
|
|
IncludeValue bool
|
|
Limit int
|
|
}
|
|
|
|
// ListV2 lists all keys corresponding to ListOptions.
|
|
// limit is capped to LookupLimit.
|
|
//
|
|
// more indicates if the result was truncated. If false
|
|
// then the result []ListItem includes all requested keys.
|
|
// If true then the caller must call List again to get more
|
|
// results by setting `StartAfter` appropriately.
|
|
func ListV2(ctx context.Context, store KeyValueStore, opts ListOptions) (result Items, more bool, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
limit := opts.Limit
|
|
if limit <= 0 || limit > store.LookupLimit() {
|
|
limit = store.LookupLimit()
|
|
}
|
|
|
|
more = true
|
|
|
|
first := opts.StartAfter
|
|
iterate := func(ctx context.Context, it Iterator) error {
|
|
var item ListItem
|
|
skipFirst := true
|
|
for ; limit > 0; limit-- {
|
|
if !it.Next(ctx, &item) {
|
|
more = false
|
|
return nil
|
|
}
|
|
|
|
relativeKey := item.Key[len(opts.Prefix):]
|
|
if skipFirst {
|
|
skipFirst = false
|
|
if relativeKey.Equal(first) {
|
|
// skip the first element in iteration
|
|
// if it matches the search key
|
|
limit++
|
|
continue
|
|
}
|
|
}
|
|
|
|
task := mon.TaskNamed("appending_to_results")(nil)
|
|
if opts.IncludeValue {
|
|
result = append(result, ListItem{
|
|
Key: CloneKey(relativeKey),
|
|
Value: CloneValue(item.Value),
|
|
IsPrefix: item.IsPrefix,
|
|
})
|
|
} else {
|
|
result = append(result, ListItem{
|
|
Key: CloneKey(relativeKey),
|
|
IsPrefix: item.IsPrefix,
|
|
})
|
|
}
|
|
task(nil)
|
|
}
|
|
|
|
// we still need to consume one item for the more flag
|
|
more = it.Next(ctx, &item)
|
|
return nil
|
|
}
|
|
|
|
var firstFull Key
|
|
if !opts.StartAfter.IsZero() {
|
|
firstFull = joinKey(opts.Prefix, opts.StartAfter)
|
|
}
|
|
err = store.Iterate(ctx, IterateOptions{
|
|
Prefix: opts.Prefix,
|
|
First: firstFull,
|
|
Recurse: opts.Recursive,
|
|
Limit: limit,
|
|
}, iterate)
|
|
|
|
return result, more, err
|
|
}
|
|
|
|
func joinKey(a, b Key) Key {
|
|
return append(append(Key{}, a...), b...)
|
|
}
|