提交 1957094f 作者: Jeromy

add type to stat cmd json output

License: MIT
Signed-off-by: 's avatarJeromy <jeromyj@gmail.com>
上级 c242660d
...@@ -115,11 +115,22 @@ func statNode(ds dag.DAGService, fsn mfs.FSNode) (*Object, error) { ...@@ -115,11 +115,22 @@ func statNode(ds dag.DAGService, fsn mfs.FSNode) (*Object, error) {
return nil, err return nil, err
} }
var ndtype string
switch fsn.Type() {
case mfs.TDir:
ndtype = "directory"
case mfs.TFile:
ndtype = "file"
default:
return nil, fmt.Errorf("unrecognized node type: %s", fsn.Type())
}
return &Object{ return &Object{
Hash: k.B58String(), Hash: k.B58String(),
Blocks: len(nd.Links), Blocks: len(nd.Links),
Size: d.GetFilesize(), Size: d.GetFilesize(),
CumulativeSize: cumulsize, CumulativeSize: cumulsize,
Type: ndtype,
}, nil }, nil
} }
...@@ -187,6 +198,7 @@ type Object struct { ...@@ -187,6 +198,7 @@ type Object struct {
Size uint64 Size uint64
CumulativeSize uint64 CumulativeSize uint64
Blocks int Blocks int
Type string
} }
type FilesLsOutput struct { type FilesLsOutput struct {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论