c1f1aacffe
There's no reason it should be at the top-level. Change-Id: I35b06e7baa0e425c6ff9a82964d0a1570d4eb6d0
47 lines
1.0 KiB
Go
47 lines
1.0 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package kvstore
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// CloneKey creates a copy of key.
|
|
func CloneKey(key Key) Key { return append(Key{}, key...) }
|
|
|
|
// CloneValue creates a copy of value.
|
|
func CloneValue(value Value) Value { return append(Value{}, value...) }
|
|
|
|
// CloneItem creates a deep copy of item.
|
|
func CloneItem(item Item) Item {
|
|
return Item{
|
|
Key: CloneKey(item.Key),
|
|
Value: CloneValue(item.Value),
|
|
IsPrefix: item.IsPrefix,
|
|
}
|
|
}
|
|
|
|
// CloneItems creates a deep copy of items.
|
|
func CloneItems(items Items) Items {
|
|
var result = make(Items, len(items))
|
|
for i, item := range items {
|
|
result[i] = CloneItem(item)
|
|
}
|
|
return result
|
|
}
|
|
|
|
// PutAll adds multiple values to the store.
|
|
func PutAll(ctx context.Context, store Store, items ...Item) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
for _, item := range items {
|
|
err := store.Put(ctx, item.Key, item.Value)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to put %v: %w", item, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|