2020-11-24 14:32:21 +00:00
|
|
|
package blobstor
|
|
|
|
|
|
|
|
import (
|
2021-05-18 08:12:51 +00:00
|
|
|
"errors"
|
|
|
|
|
2021-04-08 13:53:25 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor/fstree"
|
2021-09-06 14:28:07 +00:00
|
|
|
storagelog "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/internal/log"
|
2022-03-17 08:03:58 +00:00
|
|
|
apistatus "github.com/nspcc-dev/neofs-sdk-go/client/status"
|
2020-11-24 14:32:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// DeleteBigPrm groups the parameters of DeleteBig operation.
|
|
|
|
type DeleteBigPrm struct {
|
|
|
|
address
|
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// DeleteBigRes groups the resulting values of DeleteBig operation.
|
2020-11-24 14:32:21 +00:00
|
|
|
type DeleteBigRes struct{}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// DeleteBig removes an object from shallow dir of BLOB storage.
|
2020-11-24 14:32:21 +00:00
|
|
|
//
|
|
|
|
// Returns any error encountered that did not allow
|
|
|
|
// to completely remove the object.
|
|
|
|
//
|
2022-03-17 13:26:17 +00:00
|
|
|
// Returns an error of type apistatus.ObjectNotFound if there is no object to delete.
|
2022-05-23 14:15:16 +00:00
|
|
|
func (b *BlobStor) DeleteBig(prm DeleteBigPrm) (*DeleteBigRes, error) {
|
2021-04-08 13:53:25 +00:00
|
|
|
err := b.fsTree.Delete(prm.addr)
|
|
|
|
if errors.Is(err, fstree.ErrFileNotFound) {
|
2022-03-17 08:03:58 +00:00
|
|
|
var errNotFound apistatus.ObjectNotFound
|
|
|
|
|
|
|
|
err = errNotFound
|
2020-11-24 14:32:21 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 14:28:07 +00:00
|
|
|
if err == nil {
|
|
|
|
storagelog.Write(b.log, storagelog.AddressField(prm.addr), storagelog.OpField("fstree DELETE"))
|
|
|
|
}
|
|
|
|
|
2020-11-24 14:32:21 +00:00
|
|
|
return nil, err
|
|
|
|
}
|