Alexander Chuprov
b078fe5ba1
All checks were successful
DCO action / DCO (pull_request) Successful in 6m11s
Build / Build Components (1.22) (pull_request) Successful in 7m50s
Build / Build Components (1.21) (pull_request) Successful in 8m3s
Tests and linters / Lint (pull_request) Successful in 9m45s
Tests and linters / gopls check (pull_request) Successful in 12m40s
Vulncheck / Vulncheck (pull_request) Successful in 12m35s
Tests and linters / Staticcheck (pull_request) Successful in 15m34s
Pre-commit hooks / Pre-commit (pull_request) Successful in 19m38s
Tests and linters / Tests with -race (pull_request) Successful in 21m40s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m21s
Tests and linters / Tests (1.21) (pull_request) Successful in 3m36s
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
67 lines
1.9 KiB
Go
67 lines
1.9 KiB
Go
package control
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/engine"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/control"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/control/server/ctrlmessage"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// DropObjects marks objects to be removed from the local node.
|
|
//
|
|
// Objects are marked via garbage collector's callback.
|
|
//
|
|
// If some address is not a valid object address in a binary format, an error returns.
|
|
// If request is unsigned or signed by disallowed key, permission error returns.
|
|
func (s *Server) DropObjects(ctx context.Context, req *control.DropObjectsRequest) (*control.DropObjectsResponse, error) {
|
|
// verify request
|
|
if err := s.isValidRequest(req); err != nil {
|
|
return nil, status.Error(codes.PermissionDenied, err.Error())
|
|
}
|
|
|
|
binAddrList := req.GetBody().GetAddressList()
|
|
addrList := make([]oid.Address, len(binAddrList))
|
|
|
|
for i := range binAddrList {
|
|
err := addrList[i].DecodeString(string(binAddrList[i]))
|
|
if err != nil {
|
|
return nil, status.Error(codes.InvalidArgument,
|
|
fmt.Sprintf("invalid binary object address: %v", err),
|
|
)
|
|
}
|
|
}
|
|
|
|
var firstErr error
|
|
for i := range addrList {
|
|
var prm engine.DeletePrm
|
|
prm.WithForceRemoval()
|
|
prm.WithAddress(addrList[i])
|
|
|
|
_, err := s.s.Delete(ctx, prm)
|
|
if err != nil && firstErr == nil {
|
|
firstErr = err
|
|
}
|
|
}
|
|
|
|
if firstErr != nil {
|
|
return nil, status.Error(codes.Internal, firstErr.Error())
|
|
}
|
|
|
|
// create and fill response
|
|
resp := new(control.DropObjectsResponse)
|
|
|
|
body := new(control.DropObjectsResponse_Body)
|
|
resp.SetBody(body)
|
|
|
|
// sign the response
|
|
if err := ctrlmessage.Sign(s.key, resp); err != nil {
|
|
return nil, status.Error(codes.Internal, err.Error())
|
|
}
|
|
|
|
return resp, nil
|
|
}
|