Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
afd8fadb
Commit
afd8fadb
authored
10 years ago
by
Matt Bell
Committed by
Juan Batiz-Benet
10 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/commands: Added 'cat' command
parent
aea52132
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
16 deletions
+28
-16
core/commands/cat.go
core/commands/cat.go
+24
-16
core/commands/root.go
core/commands/root.go
+4
-0
No files found.
core/commands/cat.go
View file @
afd8fadb
...
...
@@ -4,26 +4,34 @@ import (
"fmt"
"io"
"github.com/jbenet/go-ipfs/co
re
"
cmds
"github.com/jbenet/go-ipfs/co
mmands
"
uio
"github.com/jbenet/go-ipfs/unixfs/io"
)
func
Cat
(
n
*
core
.
IpfsNode
,
args
[]
string
,
opts
map
[
string
]
interface
{},
out
io
.
Writer
)
error
{
for
_
,
fn
:=
range
args
{
dagnode
,
err
:=
n
.
Resolver
.
ResolvePath
(
fn
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"catFile error: %v"
,
er
r
)
}
var
cat
=
&
cmds
.
Command
{
Help
:
"TODO"
,
Run
:
func
(
req
cmds
.
Request
,
res
cmds
.
Response
)
{
node
:=
req
.
Context
()
.
Node
fmt
.
Println
(
node
.
Resolve
r
)
readers
:=
make
([]
io
.
Reader
,
0
,
len
(
req
.
Arguments
()))
read
,
err
:=
uio
.
NewDagReader
(
dagnode
,
n
.
DAG
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"cat error: %v"
,
err
)
}
for
_
,
path
:=
range
req
.
Arguments
()
{
dagnode
,
err
:=
node
.
Resolver
.
ResolvePath
(
path
)
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
_
,
err
=
io
.
Copy
(
out
,
read
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"cat error: %v"
,
err
)
read
,
err
:=
uio
.
NewDagReader
(
dagnode
,
node
.
DAG
)
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
}
readers
=
append
(
readers
,
read
)
}
}
return
nil
reader
:=
io
.
MultiReader
(
readers
...
)
res
.
SetValue
(
reader
)
},
}
This diff is collapsed.
Click to expand it.
core/commands/root.go
View file @
afd8fadb
...
...
@@ -43,6 +43,10 @@ Advanced Commands:
Use "ipfs help <command>" for more information about a command.
`
,
Subcommands
:
map
[
string
]
*
cmds
.
Command
{
"cat"
:
cat
,
// test subcommands
// TODO: remove these when we don't need them anymore
"beep"
:
&
cmds
.
Command
{
Run
:
func
(
req
cmds
.
Request
,
res
cmds
.
Response
)
{
v
:=
&
TestOutput
{
"hello, world"
,
1337
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment