2020-11-17 12:23:15 +00:00
|
|
|
package shard
|
|
|
|
|
|
|
|
import (
|
2022-03-03 15:09:24 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor"
|
2020-12-08 09:56:14 +00:00
|
|
|
meta "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/metabase"
|
2022-05-31 17:00:41 +00:00
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
2022-03-03 15:09:24 +00:00
|
|
|
"go.uber.org/zap"
|
2020-11-17 12:23:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ExistsPrm groups the parameters of Exists operation.
|
|
|
|
type ExistsPrm struct {
|
2022-05-31 17:00:41 +00:00
|
|
|
addr oid.Address
|
2020-11-17 12:23:15 +00:00
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// ExistsRes groups the resulting values of Exists operation.
|
2020-11-17 12:23:15 +00:00
|
|
|
type ExistsRes struct {
|
|
|
|
ex bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithAddress is an Exists option to set object checked for existence.
|
2022-05-31 17:00:41 +00:00
|
|
|
func (p *ExistsPrm) WithAddress(addr oid.Address) *ExistsPrm {
|
2020-11-17 12:23:15 +00:00
|
|
|
if p != nil {
|
|
|
|
p.addr = addr
|
|
|
|
}
|
|
|
|
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exists returns the fact that the object is in the shard.
|
2022-05-20 18:08:59 +00:00
|
|
|
func (p ExistsRes) Exists() bool {
|
2020-11-17 12:23:15 +00:00
|
|
|
return p.ex
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exists checks if object is presented in shard.
|
|
|
|
//
|
|
|
|
// Returns any error encountered that does not allow to
|
|
|
|
// unambiguously determine the presence of an object.
|
2022-03-17 08:03:58 +00:00
|
|
|
//
|
2022-03-17 13:26:17 +00:00
|
|
|
// Returns an error of type apistatus.ObjectAlreadyRemoved if object has been marked as removed.
|
2022-05-31 11:50:39 +00:00
|
|
|
func (s *Shard) Exists(prm ExistsPrm) (ExistsRes, error) {
|
2022-03-03 15:09:24 +00:00
|
|
|
exists, err := meta.Exists(s.metaBase, prm.addr)
|
|
|
|
if err != nil {
|
|
|
|
// If the shard is in degraded mode, try to consult blobstor directly.
|
|
|
|
// Otherwise, just return an error.
|
|
|
|
if s.GetMode() == ModeDegraded {
|
2022-05-23 14:15:16 +00:00
|
|
|
var p blobstor.ExistsPrm
|
2022-03-03 15:09:24 +00:00
|
|
|
p.SetAddress(prm.addr)
|
|
|
|
|
|
|
|
res, bErr := s.blobStor.Exists(p)
|
|
|
|
if bErr == nil {
|
|
|
|
exists = res.Exists()
|
|
|
|
s.log.Warn("metabase existence check finished with error",
|
|
|
|
zap.Stringer("address", prm.addr),
|
|
|
|
zap.String("error", err.Error()))
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-18 14:38:49 +00:00
|
|
|
|
2022-05-31 11:50:39 +00:00
|
|
|
return ExistsRes{
|
2020-11-18 14:38:49 +00:00
|
|
|
ex: exists,
|
2020-12-01 08:35:44 +00:00
|
|
|
}, err
|
2020-11-17 12:23:15 +00:00
|
|
|
}
|