Alexander Chuprov
c1e4130020
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 3m7s
DCO action / DCO (pull_request) Successful in 3m36s
Build / Build Components (1.21) (pull_request) Successful in 3m29s
Build / Build Components (1.20) (pull_request) Successful in 3m37s
Tests and linters / Staticcheck (pull_request) Successful in 4m39s
Tests and linters / Lint (pull_request) Successful in 5m2s
Tests and linters / Tests (1.21) (pull_request) Successful in 6m27s
Tests and linters / Tests with -race (pull_request) Successful in 6m29s
Tests and linters / Tests (1.20) (pull_request) Successful in 9m19s
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
83 lines
2.3 KiB
Go
83 lines
2.3 KiB
Go
package blobovnicza
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
tracingPkg "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/tracing"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/tracing"
|
|
apistatus "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client/status"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"go.etcd.io/bbolt"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/trace"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// DeletePrm groups the parameters of Delete operation.
|
|
type DeletePrm struct {
|
|
addr oid.Address
|
|
}
|
|
|
|
// DeleteRes groups the resulting values of Delete operation.
|
|
type DeleteRes struct {
|
|
}
|
|
|
|
// SetAddress sets the address of the requested object.
|
|
func (p *DeletePrm) SetAddress(addr oid.Address) {
|
|
p.addr = addr
|
|
}
|
|
|
|
// Delete removes an object from Blobovnicza by address.
|
|
//
|
|
// Returns any error encountered that
|
|
// did not allow to completely delete the object.
|
|
//
|
|
// Returns an error of type apistatus.ObjectNotFound if the object to be deleted is not in blobovnicza.
|
|
//
|
|
// Should not be called in read-only configuration.
|
|
func (b *Blobovnicza) Delete(ctx context.Context, prm DeletePrm) (DeleteRes, error) {
|
|
_, span := tracing.StartSpanFromContext(ctx, "Blobovnicza.Delete",
|
|
trace.WithAttributes(
|
|
attribute.String("path", b.path),
|
|
attribute.String("address", prm.addr.EncodeToString()),
|
|
))
|
|
defer span.End()
|
|
|
|
addrKey := addressKey(prm.addr)
|
|
|
|
found := false
|
|
var sizeUpperBound uint64
|
|
var sizeLowerBound uint64
|
|
var dataSize uint64
|
|
|
|
err := b.boltDB.Update(func(tx *bbolt.Tx) error {
|
|
return b.iterateAllBuckets(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
|
|
}
|
|
dataSize = uint64(len(objData))
|
|
sizeLowerBound = lower
|
|
sizeUpperBound = upper
|
|
found = true
|
|
return true, buck.Delete(addrKey)
|
|
})
|
|
})
|
|
|
|
if err == nil && !found {
|
|
return DeleteRes{}, new(apistatus.ObjectNotFound)
|
|
}
|
|
|
|
if err == nil && found {
|
|
b.log.Debug(logs.BlobovniczaObjectWasRemovedFromBucket,
|
|
zap.String("binary size", stringifyByteSize(dataSize)),
|
|
zap.String("range", stringifyBounds(sizeLowerBound, sizeUpperBound)),
|
|
zap.String("trace_id", tracingPkg.GetTraceID(ctx)),
|
|
)
|
|
b.itemDeleted(sizeUpperBound)
|
|
}
|
|
|
|
return DeleteRes{}, err
|
|
}
|