41 lines
957 B
Go
41 lines
957 B
Go
|
package writecache
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io"
|
||
|
|
||
|
common "github.com/nspcc-dev/neofs-node/cmd/neofs-lens/internal"
|
||
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/writecache"
|
||
|
oid "github.com/nspcc-dev/neofs-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)
|
||
|
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))
|
||
|
}
|