2022-08-23 13:45:24 +00:00
|
|
|
package writecache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
2022-12-23 17:35:35 +00:00
|
|
|
common "github.com/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
|
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache"
|
|
|
|
oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
|
2022-08-23 13:45:24 +00:00
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
2022-08-24 12:09:52 +00:00
|
|
|
db := openWC(cmd)
|
2022-08-23 13:45:24 +00:00
|
|
|
defer db.Close()
|
|
|
|
|
2022-08-24 12:09:52 +00:00
|
|
|
err := writecache.IterateDB(db, wAddr)
|
2022-08-23 13:45:24 +00:00
|
|
|
common.ExitOnErr(cmd, common.Errf("write-cache iterator failure: %w", err))
|
|
|
|
}
|