Alexander Chuprov
033eaf77e1
All checks were successful
Build / Build Components (1.20) (pull_request) Successful in 3m52s
Build / Build Components (1.19) (pull_request) Successful in 4m1s
ci/woodpecker/pr/pre-commit Pipeline was successful
Tests and linters / Tests with -race (pull_request) Successful in 5m36s
Tests and linters / Tests (1.20) (pull_request) Successful in 5m55s
Tests and linters / Lint (pull_request) Successful in 14m40s
Tests and linters / Tests (1.19) (pull_request) Successful in 15m29s
ci/woodpecker/push/pre-commit Pipeline was successful
Standardize the alias of the import frostfs-sdk-go/object as objectSDK. Signed-off-by: Alexander Chuprov <a.chuprov@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-sdk-go/object"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/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)
|
|
}
|