2022-08-23 13:45:24 +00:00
|
|
|
package writecache
|
|
|
|
|
|
|
|
import (
|
2023-06-22 11:55:30 +00:00
|
|
|
"os"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
common "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
2023-12-22 09:58:20 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache"
|
2023-07-06 12:36:41 +00:00
|
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
2022-08-23 13:45:24 +00:00
|
|
|
"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) {
|
2023-06-22 11:55:30 +00:00
|
|
|
var data []byte
|
|
|
|
|
2024-09-10 10:12:17 +00:00
|
|
|
db, err := writecache.OpenDB(vPath, true, os.OpenFile)
|
2023-12-22 09:58:20 +00:00
|
|
|
common.ExitOnErr(cmd, common.Errf("could not open write-cache db: %w", err))
|
|
|
|
defer db.Close()
|
2023-06-22 11:55:30 +00:00
|
|
|
|
2023-12-22 09:58:20 +00:00
|
|
|
data, err = writecache.Get(db, []byte(vAddress))
|
|
|
|
common.ExitOnErr(cmd, common.Errf("could not fetch object: %w", err))
|
2022-08-23 13:45:24 +00:00
|
|
|
|
2023-07-06 12:36:41 +00:00
|
|
|
var o objectSDK.Object
|
2022-08-23 13:45:24 +00:00
|
|
|
common.ExitOnErr(cmd, common.Errf("could not unmarshal object: %w", o.Unmarshal(data)))
|
|
|
|
|
|
|
|
common.PrintObjectHeader(cmd, o)
|
|
|
|
common.WriteObjectToFile(cmd, vOut, data)
|
|
|
|
}
|