[#189] blobstor: Implement DumpInfo method

Implement method to get the information about the BLOB storage.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-11-19 16:52:37 +03:00 committed by Alex Vanin
parent dae8d3de5b
commit eaa7068e3c
4 changed files with 29 additions and 11 deletions

View file

@ -4,7 +4,6 @@ import (
"crypto/sha256"
"encoding/hex"
"errors"
"os"
"path"
objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object"
@ -15,9 +14,7 @@ type fsTree struct {
dirNameLen int
perm os.FileMode
rootDir string
Info
}
const dirNameLen = 1 // in bytes
@ -36,7 +33,7 @@ func (t *fsTree) treePath(addr *objectSDK.Address) string {
sAddr := stringifyAddress(addr)
dirs := make([]string, 0, t.depth+1+1) // 1 for root, 1 for file
dirs = append(dirs, t.rootDir)
dirs = append(dirs, t.RootPath)
for i := 0; i < t.depth; i++ {
dirs = append(dirs, sAddr[:t.dirNameLen])