Some checks failed
DCO action / DCO (pull_request) Successful in 1m30s
Vulncheck / Vulncheck (pull_request) Successful in 3m41s
Build / Build Components (1.21) (pull_request) Successful in 4m17s
Build / Build Components (1.20) (pull_request) Successful in 4m30s
Tests and linters / Lint (pull_request) Successful in 6m37s
Tests and linters / Staticcheck (pull_request) Successful in 6m17s
Tests and linters / Tests (1.21) (pull_request) Successful in 8m51s
Tests and linters / Tests (1.20) (pull_request) Successful in 9m10s
Tests and linters / Tests with -race (pull_request) Successful in 9m1s
Tests and linters / gopls check (pull_request) Failing after 15m55s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package blobovnicza
|
|
|
|
import (
|
|
common "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobovnicza"
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/sdk/object"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/sdk/object/id"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var inspectCMD = &cobra.Command{
|
|
Use: "inspect",
|
|
Short: "Object inspection",
|
|
Long: `Inspect specific object in a blobovnicza.`,
|
|
Run: inspectFunc,
|
|
}
|
|
|
|
func init() {
|
|
common.AddAddressFlag(inspectCMD, &vAddress)
|
|
common.AddComponentPathFlag(inspectCMD, &vPath)
|
|
common.AddOutputFileFlag(inspectCMD, &vOut)
|
|
}
|
|
|
|
func inspectFunc(cmd *cobra.Command, _ []string) {
|
|
var addr oid.Address
|
|
|
|
err := addr.DecodeString(vAddress)
|
|
common.ExitOnErr(cmd, common.Errf("invalid address argument: %w", err))
|
|
|
|
blz := openBlobovnicza(cmd)
|
|
defer blz.Close()
|
|
|
|
var prm blobovnicza.GetPrm
|
|
prm.SetAddress(addr)
|
|
|
|
res, err := blz.Get(cmd.Context(), prm)
|
|
common.ExitOnErr(cmd, common.Errf("could not fetch object: %w", err))
|
|
|
|
data := res.Object()
|
|
|
|
var o objectSDK.Object
|
|
common.ExitOnErr(cmd, common.Errf("could not unmarshal object: %w",
|
|
o.Unmarshal(data)),
|
|
)
|
|
|
|
common.PrintObjectHeader(cmd, o)
|
|
common.WriteObjectToFile(cmd, vOut, data)
|
|
}
|