Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --format option to mfs stat command #2706

Merged
merged 5 commits into from
May 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 52 additions & 5 deletions core/commands/files/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ on the files in question, then data may be lost. This also applies to running
},
}

var formatError = errors.New("Format was set by multiple options. Only one format option is allowed")

var FilesStatCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Display file status.",
Expand All @@ -61,7 +63,24 @@ var FilesStatCmd = &cmds.Command{
Arguments: []cmds.Argument{
cmds.StringArg("path", true, false, "Path to node to stat."),
},
Options: []cmds.Option{
cmds.StringOption("format", "Print statistics in given format. Allowed tokens: "+
"<hash> <size> <cumulsize> <type> <childs>. Conflicts with other format options.").Default(
`<hash>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be prefixed with Hash: <hash> -- otherwise it only prints the hash in one line and then Key: Value format.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this was this way in the past-- it seems like it was a bug.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was always like that, changing it would break CLI compatibility.

It is so you could do ipfs files stat /file | head -1 to get the hash before format options were a thing.

Size: <size>
CumulativeSize: <cumulsize>
ChildBlocks: <childs>
Type: <type>`),
cmds.BoolOption("hash", "Print only hash. Implies '--format=<hash>. Conflicts with other format options.").Default(false),
cmds.BoolOption("size", "Print only size. Implies '--format=<cumulsize>. Conflicts with other format options.").Default(false),
},
Run: func(req cmds.Request, res cmds.Response) {

_, err := statGetFormatOptions(req)
if err != nil {
res.SetError(err, cmds.ErrClient)
}

node, err := req.InvocContext().GetNode()
if err != nil {
res.SetError(err, cmds.ErrNormal)
Expand Down Expand Up @@ -90,19 +109,47 @@ var FilesStatCmd = &cmds.Command{
},
Marshalers: cmds.MarshalerMap{
cmds.Text: func(res cmds.Response) (io.Reader, error) {

out := res.Output().(*Object)
buf := new(bytes.Buffer)
fmt.Fprintln(buf, out.Hash)
fmt.Fprintf(buf, "Size: %d\n", out.Size)
fmt.Fprintf(buf, "CumulativeSize: %d\n", out.CumulativeSize)
fmt.Fprintf(buf, "ChildBlocks: %d\n", out.Blocks)
fmt.Fprintf(buf, "Type: %s\n", out.Type)

s, _ := statGetFormatOptions(res.Request())
s = strings.Replace(s, "<hash>", out.Hash, -1)
s = strings.Replace(s, "<size>", fmt.Sprintf("%d", out.Size), -1)
s = strings.Replace(s, "<cumulsize>", fmt.Sprintf("%d", out.CumulativeSize), -1)
s = strings.Replace(s, "<childs>", fmt.Sprintf("%d", out.Blocks), -1)
s = strings.Replace(s, "<type>", out.Type, -1)

fmt.Fprintln(buf, s)
return buf, nil
},
},
Type: Object{},
}

func moreThanOne(a, b, c bool) bool {
return a && b || b && c || a && c
}

func statGetFormatOptions(req cmds.Request) (string, error) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'd write this function as:

hash, _, _ := req.Option("hash").Bool()
size, _, _ := req.Option("size").Bool()
format, found, _ := req.Option("format").Found()

if moreThanOne(hash, size, found) {
    return "", formatError
}

if hash {
    return "<hash>", nil
} else if size {
    return "<cumulsize>", nil
} else {
    return format, nil
}

Copy link
Member Author

@Kubuxu Kubuxu May 17, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do, I was quite sleepy when I was doing it.
EDIT: done


hash, _, _ := req.Option("hash").Bool()
size, _, _ := req.Option("size").Bool()
format, found, _ := req.Option("format").String()

if moreThanOne(hash, size, found) {
return "", formatError
}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am 100% sure there is better pattern to do it. My C tainted mind where I would just add them couldn't find it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think this works:

func moreThanOne(a,b,c bool) bool {
    return !((a == b == c) && !(a && b && c)) && (a || b || c)
}

it can probably be reduced...

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

better:
return a && b || b && c || a && c

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, it is so easy 😢 😄


if hash {
return "<hash>", nil
} else if size {
return "<cumulsize>", nil
} else {
return format, nil
}
}

func statNode(ds dag.DAGService, fsn mfs.FSNode) (*Object, error) {
nd, err := fsn.GetNode()
if err != nil {
Expand Down
48 changes: 39 additions & 9 deletions test/sharness/t0250-files-api.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,17 +64,47 @@ test_files_api() {
test_expect_success "directory is empty" '
verify_dir_contents /cats
'
# we do verification of stat formatting now as we depend on it

test_expect_success "stat works" '
ipfs files stat / >stat
'

test_expect_success "hash is first line of stat" '
ipfs ls $(head -1 stat) | grep "cats"
'

test_expect_success "stat --hash gives only hash" '
ipfs files stat --hash / >actual &&
head -n1 stat >expected &&
test_cmp expected actual
'

test_expect_success "stat with multiple format options should fail" '
test_must_fail ipfs files stat --hash --size /
'

test_expect_success "compare hash option with format" '
ipfs files stat --hash / >expected &&
ipfs files stat --format='"'"'<hash>'"'"' / >actual &&
test_cmp expected actual
'
test_expect_success "compare size option with format" '
ipfs files stat --size / >expected &&
ipfs files stat --format='"'"'<cumulsize>'"'"' / >actual &&
test_cmp expected actual
'

test_expect_success "check root hash" '
ipfs files stat / | head -n1 > roothash
ipfs files stat --hash / > roothash
'

test_expect_success "cannot mkdir /" '
test_expect_code 1 ipfs files mkdir /
'

test_expect_success "check root hash was not changed" '
ipfs files stat / | head -n1 > roothashafter &&
ipfs files stat --hash / > roothashafter &&
test_cmp roothash roothashafter
'

Expand Down Expand Up @@ -167,15 +197,15 @@ test_files_api() {
'

test_expect_success "check root hash" '
ipfs files stat / | head -n1 > roothash
ipfs files stat --hash / > roothash
'

test_expect_success "cannot remove root" '
test_expect_code 1 ipfs files rm -r /
'

test_expect_success "check root hash was not changed" '
ipfs files stat / | head -n1 > roothashafter &&
ipfs files stat --hash / > roothashafter &&
test_cmp roothash roothashafter
'

Expand Down Expand Up @@ -273,12 +303,12 @@ test_files_api() {
'

test_expect_success "cant write to negative offset" '
ipfs files stat /cats/ipfs | head -n1 > filehash &&
ipfs files stat --hash /cats/ipfs > filehash &&
test_expect_code 1 ipfs files write --offset -1 /cats/ipfs < output
'

test_expect_success "verify file was not changed" '
ipfs files stat /cats/ipfs | head -n1 > afterhash &&
ipfs files stat --hash /cats/ipfs > afterhash &&
test_cmp filehash afterhash
'

Expand All @@ -305,12 +335,12 @@ test_files_api() {
'

test_expect_success "cannot write to directory" '
ipfs files stat /cats | head -n1 > dirhash &&
ipfs files stat --hash /cats > dirhash &&
test_expect_code 1 ipfs files write /cats < output
'

test_expect_success "verify dir was not changed" '
ipfs files stat /cats | head -n1 > afterdirhash &&
ipfs files stat --hash /cats > afterdirhash &&
test_cmp dirhash afterdirhash
'

Expand All @@ -333,7 +363,7 @@ test_files_api() {
'

test_expect_success "changes bubbled up to root on inspection" '
ipfs files stat / | head -n1 > root_hash
ipfs files stat --hash / > root_hash
'

test_expect_success "root hash looks good" '
Expand Down