1c30414a6c
Core changes: * avoid package-colliding variable naming * avoid using pointers to IDs where unnecessary * avoid using `idSDK` import alias pattern * use `EncodeToString` for protocol string calculation and `String` for printing Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
package writecache
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
"go.etcd.io/bbolt"
|
|
)
|
|
|
|
// ErrNoDefaultBucket is returned by IterateDB when default bucket for objects is missing.
|
|
var ErrNoDefaultBucket = errors.New("no default bucket")
|
|
|
|
// IterationPrm contains iteration parameters.
|
|
type IterationPrm struct {
|
|
handler func([]byte) error
|
|
ignoreErrors bool
|
|
}
|
|
|
|
// WithHandler sets a callback to be executed on every object.
|
|
func (p *IterationPrm) WithHandler(f func([]byte) error) *IterationPrm {
|
|
p.handler = f
|
|
return p
|
|
}
|
|
|
|
// WithIgnoreErrors sets a flag indicating that errors should be ignored.
|
|
func (p *IterationPrm) WithIgnoreErrors(ignore bool) *IterationPrm {
|
|
p.ignoreErrors = ignore
|
|
return p
|
|
}
|
|
|
|
// Iterate iterates over all objects present in write cache.
|
|
// This is very difficult to do correctly unless write-cache is put in read-only mode.
|
|
// Thus we silently fail if shard is not in read-only mode to avoid reporting misleading results.
|
|
func (c *cache) Iterate(prm *IterationPrm) error {
|
|
c.modeMtx.RLock()
|
|
defer c.modeMtx.RUnlock()
|
|
if !c.readOnly() {
|
|
return nil
|
|
}
|
|
|
|
err := c.db.View(func(tx *bbolt.Tx) error {
|
|
b := tx.Bucket(defaultBucket)
|
|
return b.ForEach(func(k, data []byte) error {
|
|
if _, ok := c.flushed.Peek(string(k)); ok {
|
|
return nil
|
|
}
|
|
return prm.handler(data)
|
|
})
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.fsTree.Iterate(new(fstree.IterationPrm).WithHandler(func(addr oid.Address, data []byte) error {
|
|
if _, ok := c.flushed.Peek(addr.EncodeToString()); ok {
|
|
return nil
|
|
}
|
|
return prm.handler(data)
|
|
}).WithIgnoreErrors(prm.ignoreErrors))
|
|
}
|
|
|
|
// IterateDB iterates over all objects stored in bbolt.DB instance and passes them to f until error return.
|
|
// It is assumed that db is an underlying database of some WriteCache instance.
|
|
//
|
|
// Returns ErrNoDefaultBucket if there is no default bucket in db.
|
|
//
|
|
// DB must not be nil and should be opened.
|
|
func IterateDB(db *bbolt.DB, f func(oid.Address) error) error {
|
|
return db.View(func(tx *bbolt.Tx) error {
|
|
b := tx.Bucket(defaultBucket)
|
|
if b == nil {
|
|
return ErrNoDefaultBucket
|
|
}
|
|
|
|
var addr oid.Address
|
|
|
|
return b.ForEach(func(k, v []byte) error {
|
|
err := addr.DecodeString(string(k))
|
|
if err != nil {
|
|
return fmt.Errorf("could not parse object address: %w", err)
|
|
}
|
|
|
|
return f(addr)
|
|
})
|
|
})
|
|
}
|