2022-07-06 14:09:50 +00:00
|
|
|
package meta
|
|
|
|
|
|
|
|
import (
|
2022-12-23 17:35:35 +00:00
|
|
|
oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
|
2022-07-06 14:09:50 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util/slice"
|
|
|
|
"go.etcd.io/bbolt"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StorageIDPrm groups the parameters of StorageID operation.
|
|
|
|
type StorageIDPrm struct {
|
|
|
|
addr oid.Address
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageIDRes groups the resulting values of StorageID operation.
|
|
|
|
type StorageIDRes struct {
|
|
|
|
id []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAddress is a StorageID option to set the object address to check.
|
|
|
|
func (p *StorageIDPrm) SetAddress(addr oid.Address) {
|
|
|
|
p.addr = addr
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageID returns storage ID.
|
|
|
|
func (r StorageIDRes) StorageID() []byte {
|
|
|
|
return r.id
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageID returns storage descriptor for objects from the blobstor.
|
|
|
|
// It is put together with the object can makes get/delete operation faster.
|
|
|
|
func (db *DB) StorageID(prm StorageIDPrm) (res StorageIDRes, err error) {
|
2022-11-15 12:46:32 +00:00
|
|
|
db.modeMtx.RLock()
|
|
|
|
defer db.modeMtx.RUnlock()
|
|
|
|
|
|
|
|
if db.mode.NoMetabase() {
|
|
|
|
return res, ErrDegradedMode
|
|
|
|
}
|
|
|
|
|
2022-07-06 14:09:50 +00:00
|
|
|
err = db.boltDB.View(func(tx *bbolt.Tx) error {
|
|
|
|
res.id, err = db.storageID(tx, prm.addr)
|
|
|
|
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *DB) storageID(tx *bbolt.Tx, addr oid.Address) ([]byte, error) {
|
2022-09-08 11:54:21 +00:00
|
|
|
key := make([]byte, bucketKeySize)
|
|
|
|
smallBucket := tx.Bucket(smallBucketName(addr.Container(), key))
|
2022-07-06 14:09:50 +00:00
|
|
|
if smallBucket == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2022-09-08 11:54:21 +00:00
|
|
|
storageID := smallBucket.Get(objectKey(addr.Object(), key))
|
2022-07-06 14:09:50 +00:00
|
|
|
if storageID == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return slice.Copy(storageID), nil
|
|
|
|
}
|
2022-10-20 12:09:05 +00:00
|
|
|
|
|
|
|
// UpdateStorageIDPrm groups the parameters of UpdateStorageID operation.
|
|
|
|
type UpdateStorageIDPrm struct {
|
|
|
|
addr oid.Address
|
|
|
|
id []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateStorageIDRes groups the resulting values of UpdateStorageID operation.
|
|
|
|
type UpdateStorageIDRes struct{}
|
|
|
|
|
|
|
|
// SetAddress is an UpdateStorageID option to set the object address to check.
|
|
|
|
func (p *UpdateStorageIDPrm) SetAddress(addr oid.Address) {
|
|
|
|
p.addr = addr
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetStorageID is an UpdateStorageID option to set the storage ID.
|
|
|
|
func (p *UpdateStorageIDPrm) SetStorageID(id []byte) {
|
|
|
|
p.id = id
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateStorageID updates storage descriptor for objects from the blobstor.
|
|
|
|
func (db *DB) UpdateStorageID(prm UpdateStorageIDPrm) (res UpdateStorageIDRes, err error) {
|
|
|
|
db.modeMtx.RLock()
|
|
|
|
defer db.modeMtx.RUnlock()
|
|
|
|
|
2022-11-15 12:46:32 +00:00
|
|
|
if db.mode.NoMetabase() {
|
|
|
|
return res, ErrDegradedMode
|
2022-11-15 14:53:23 +00:00
|
|
|
} else if db.mode.ReadOnly() {
|
|
|
|
return res, ErrReadOnlyMode
|
2022-11-15 12:46:32 +00:00
|
|
|
}
|
|
|
|
|
2022-10-20 12:09:05 +00:00
|
|
|
currEpoch := db.epochState.CurrentEpoch()
|
|
|
|
|
|
|
|
err = db.boltDB.Batch(func(tx *bbolt.Tx) error {
|
|
|
|
exists, err := db.exists(tx, prm.addr, currEpoch)
|
|
|
|
if !exists || err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return updateStorageID(tx, prm.addr, prm.id)
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|