Some checks failed
ci/woodpecker/pr/pre-commit Pipeline was successful
Build / Build Components (1.19) (pull_request) Successful in 2m45s
Build / Build Components (1.20) (pull_request) Successful in 8m1s
Tests and linters / Tests (1.19) (pull_request) Failing after 3m0s
Tests and linters / Tests (1.20) (pull_request) Failing after 3m20s
Tests and linters / Lint (pull_request) Failing after 9m45s
Tests and linters / Tests with -race (pull_request) Failing after 4m38s
Tests and linters / Staticcheck (pull_request) Failing after 9m4s
Signed-off-by: Airat Arifullin a.arifullin@yadro.com
35 lines
1,003 B
Go
35 lines
1,003 B
Go
package writecache
|
|
|
|
import (
|
|
common "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache"
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var inspectCMD = &cobra.Command{
|
|
Use: "inspect",
|
|
Short: "Object inspection",
|
|
Long: `Inspect specific object in a write-cache.`,
|
|
Run: inspectFunc,
|
|
}
|
|
|
|
func init() {
|
|
common.AddAddressFlag(inspectCMD, &vAddress)
|
|
common.AddComponentPathFlag(inspectCMD, &vPath)
|
|
common.AddOutputFileFlag(inspectCMD, &vOut)
|
|
}
|
|
|
|
func inspectFunc(cmd *cobra.Command, _ []string) {
|
|
db := openWC(cmd)
|
|
defer db.Close()
|
|
|
|
data, err := writecache.Get(db, []byte(vAddress))
|
|
common.ExitOnErr(cmd, common.Errf("could not fetch object: %w", err))
|
|
|
|
o := *objectSDK.New()
|
|
common.ExitOnErr(cmd, common.Errf("could not unmarshal object: %w", o.Unmarshal(data)))
|
|
|
|
common.PrintObjectHeader(cmd, o)
|
|
common.WriteObjectToFile(cmd, vOut, data)
|
|
}
|