76fdb5d863
Currently storage tests were tied to the default lookup limit. By increasing the limits, the tests will take longer and sometimes cause a large number of goroutines to be started. This change adds configurable lookup limit to all storage backends. Also remove boltdb.NewShared, since it's not used any more. Change-Id: I1a052f149da471246fac5745da133c3cfc27582e
35 lines
791 B
Go
35 lines
791 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package storage
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// ListKeys returns keys starting from first and upto limit
|
|
// limit is capped to LookupLimit
|
|
func ListKeys(ctx context.Context, store KeyValueStore, first Key, limit int) (_ Keys, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
if limit <= 0 || limit > store.LookupLimit() {
|
|
limit = store.LookupLimit()
|
|
}
|
|
|
|
keys := make(Keys, 0, limit)
|
|
err = store.Iterate(ctx, IterateOptions{
|
|
First: first,
|
|
Recurse: true,
|
|
}, func(ctx context.Context, it Iterator) error {
|
|
var item ListItem
|
|
for ; limit > 0 && it.Next(ctx, &item); limit-- {
|
|
if item.Key == nil {
|
|
panic("nil key")
|
|
}
|
|
keys = append(keys, CloneKey(item.Key))
|
|
}
|
|
return nil
|
|
})
|
|
|
|
return keys, err
|
|
}
|