Dmitrii Stepanov
68029d756e
All checks were successful
DCO action / DCO (pull_request) Successful in 1m57s
Vulncheck / Vulncheck (pull_request) Successful in 2m6s
Tests and linters / Run gofumpt (pull_request) Successful in 2m9s
Build / Build Components (1.22) (pull_request) Successful in 2m37s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m49s
Tests and linters / Tests (1.21) (pull_request) Successful in 3m1s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m4s
Tests and linters / Staticcheck (pull_request) Successful in 3m0s
Tests and linters / Tests with -race (pull_request) Successful in 3m9s
Tests and linters / Lint (pull_request) Successful in 3m30s
Tests and linters / gopls check (pull_request) Successful in 3m40s
Build / Build Components (1.21) (pull_request) Successful in 1m12s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
40 lines
1,013 B
Go
40 lines
1,013 B
Go
package writecache
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
common "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var listCMD = &cobra.Command{
|
|
Use: "inspect",
|
|
Short: "Object inspection",
|
|
Long: `Inspect specific object in a write-cache.`,
|
|
Run: listFunc,
|
|
}
|
|
|
|
func init() {
|
|
common.AddComponentPathFlag(listCMD, &vPath)
|
|
}
|
|
|
|
func listFunc(cmd *cobra.Command, _ []string) {
|
|
// other targets can be supported
|
|
w := cmd.OutOrStderr()
|
|
|
|
wAddr := func(addr oid.Address) error {
|
|
_, err := io.WriteString(w, fmt.Sprintf("%s\n", addr))
|
|
return err
|
|
}
|
|
|
|
db, err := writecache.OpenDB(vPath, true, os.OpenFile, 0)
|
|
common.ExitOnErr(cmd, common.Errf("could not open write-cache db: %w", err))
|
|
defer db.Close()
|
|
|
|
err = writecache.IterateDB(db, wAddr)
|
|
common.ExitOnErr(cmd, common.Errf("write-cache iterator failure: %w", err))
|
|
}
|