Anton Nikiforov
8dcd06c587
All checks were successful
ci/woodpecker/push/pre-commit Pipeline was successful
Signed-off-by: Anton Nikiforov <an.nikiforov@yadro.com>
39 lines
939 B
Go
39 lines
939 B
Go
package blobovnicza
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
common "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-lens/internal"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobovnicza"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var listCMD = &cobra.Command{
|
|
Use: "list",
|
|
Short: "Object listing",
|
|
Long: `List all objects stored in a blobovnicza.`,
|
|
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
|
|
}
|
|
|
|
blz := openBlobovnicza(cmd)
|
|
defer blz.Close()
|
|
|
|
err := blobovnicza.IterateAddresses(context.Background(), blz, wAddr)
|
|
common.ExitOnErr(cmd, common.Errf("blobovnicza iterator failure: %w", err))
|
|
}
|