forked from TrueCloudLab/frostfs-node
923f84722a
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
29 lines
590 B
Go
29 lines
590 B
Go
package blobovnicza
|
|
|
|
import (
|
|
oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"go.etcd.io/bbolt"
|
|
)
|
|
|
|
// Exists check if object with the specified address is stored in b.
|
|
func (b *Blobovnicza) Exists(addr oid.Address) (bool, error) {
|
|
var (
|
|
exists bool
|
|
addrKey = addressKey(addr)
|
|
)
|
|
|
|
err := b.boltDB.View(func(tx *bbolt.Tx) error {
|
|
return tx.ForEach(func(_ []byte, buck *bbolt.Bucket) error {
|
|
exists = buck.Get(addrKey) != nil
|
|
if exists {
|
|
return errInterruptForEach
|
|
}
|
|
return nil
|
|
})
|
|
})
|
|
|
|
if err == errInterruptForEach {
|
|
err = nil
|
|
}
|
|
return exists, err
|
|
}
|