2020-11-26 14:26:53 +00:00
|
|
|
package blobovnicza
|
|
|
|
|
|
|
|
import (
|
2023-04-12 14:01:29 +00:00
|
|
|
"context"
|
|
|
|
|
2023-04-12 14:35:10 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
2023-05-31 09:24:04 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/tracing"
|
2023-03-07 13:38:26 +00:00
|
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
2020-11-26 14:26:53 +00:00
|
|
|
"go.etcd.io/bbolt"
|
2023-04-12 14:01:29 +00:00
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
2020-11-26 14:26:53 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DeletePrm groups the parameters of Delete operation.
|
|
|
|
type DeletePrm struct {
|
2022-05-31 17:00:41 +00:00
|
|
|
addr oid.Address
|
2020-11-26 14:26:53 +00:00
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// DeleteRes groups the resulting values of Delete operation.
|
2020-11-26 14:26:53 +00:00
|
|
|
type DeleteRes struct {
|
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// SetAddress sets the address of the requested object.
|
2022-05-31 17:00:41 +00:00
|
|
|
func (p *DeletePrm) SetAddress(addr oid.Address) {
|
2020-11-26 14:26:53 +00:00
|
|
|
p.addr = addr
|
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// Delete removes an object from Blobovnicza by address.
|
2020-11-26 14:26:53 +00:00
|
|
|
//
|
|
|
|
// Returns any error encountered that
|
|
|
|
// did not allow to completely delete the object.
|
|
|
|
//
|
2022-03-17 13:26:17 +00:00
|
|
|
// Returns an error of type apistatus.ObjectNotFound if the object to be deleted is not in blobovnicza.
|
2021-09-14 14:44:07 +00:00
|
|
|
//
|
|
|
|
// Should not be called in read-only configuration.
|
2023-04-12 14:01:29 +00:00
|
|
|
func (b *Blobovnicza) Delete(ctx context.Context, prm DeletePrm) (DeleteRes, error) {
|
|
|
|
_, span := tracing.StartSpanFromContext(ctx, "Blobovnicza.Delete",
|
|
|
|
trace.WithAttributes(
|
2023-06-20 08:24:14 +00:00
|
|
|
attribute.String("path", b.path),
|
2023-04-12 14:01:29 +00:00
|
|
|
attribute.String("address", prm.addr.EncodeToString()),
|
|
|
|
))
|
|
|
|
defer span.End()
|
|
|
|
|
2020-11-26 14:26:53 +00:00
|
|
|
addrKey := addressKey(prm.addr)
|
|
|
|
|
2023-06-20 08:24:14 +00:00
|
|
|
found := false
|
2020-11-26 14:26:53 +00:00
|
|
|
|
|
|
|
err := b.boltDB.Update(func(tx *bbolt.Tx) error {
|
|
|
|
return b.iterateBuckets(tx, func(lower, upper uint64, buck *bbolt.Bucket) (bool, error) {
|
|
|
|
objData := buck.Get(addrKey)
|
|
|
|
if objData == nil {
|
|
|
|
// object is not in bucket => continue iterating
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
sz := uint64(len(objData))
|
|
|
|
|
|
|
|
// remove object from the bucket
|
|
|
|
err := buck.Delete(addrKey)
|
|
|
|
|
|
|
|
if err == nil {
|
2023-04-12 14:35:10 +00:00
|
|
|
b.log.Debug(logs.BlobovniczaObjectWasRemovedFromBucket,
|
2020-11-26 14:26:53 +00:00
|
|
|
zap.String("binary size", stringifyByteSize(sz)),
|
|
|
|
zap.String("range", stringifyBounds(lower, upper)),
|
|
|
|
)
|
2023-06-20 08:24:14 +00:00
|
|
|
// decrease fullness counter
|
|
|
|
b.decSize(sz)
|
2020-11-26 14:26:53 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 08:24:14 +00:00
|
|
|
found = true
|
2020-11-26 14:26:53 +00:00
|
|
|
|
|
|
|
// stop iteration
|
|
|
|
return true, err
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2023-06-20 08:24:14 +00:00
|
|
|
if err == nil && !found {
|
2022-03-17 08:03:58 +00:00
|
|
|
var errNotFound apistatus.ObjectNotFound
|
|
|
|
|
2022-05-31 12:22:32 +00:00
|
|
|
return DeleteRes{}, errNotFound
|
2020-11-26 14:26:53 +00:00
|
|
|
}
|
|
|
|
|
2022-05-31 12:22:32 +00:00
|
|
|
return DeleteRes{}, err
|
2020-11-26 14:26:53 +00:00
|
|
|
}
|