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
c75a2938
Commit
c75a2938
authored
9 years ago
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1080 from gatesvp/iss750
Iss750
parents
7bba8004
31ff9545
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
66 additions
and
26 deletions
+66
-26
core/commands/cat.go
core/commands/cat.go
+2
-2
core/commands/get.go
core/commands/get.go
+8
-2
core/commands/ls.go
core/commands/ls.go
+4
-3
core/commands/object.go
core/commands/object.go
+3
-3
core/commands/refs.go
core/commands/refs.go
+1
-1
core/core.go
core/core.go
+0
-4
core/corerepo/pinning.go
core/corerepo/pinning.go
+2
-2
core/pathresolver.go
core/pathresolver.go
+40
-0
path/path.go
path/path.go
+5
-2
unixfs/tar/reader.go
unixfs/tar/reader.go
+1
-7
No files found.
core/commands/cat.go
View file @
c75a2938
...
...
@@ -18,7 +18,7 @@ var CatCmd = &cmds.Command{
Helptext
:
cmds
.
HelpText
{
Tagline
:
"Show IPFS object data"
,
ShortDescription
:
`
Retrieves the object named by <ipfs-path> and outputs the data
Retrieves the object named by <ipfs-
or-ipns-
path> and outputs the data
it contains.
`
,
},
...
...
@@ -62,7 +62,7 @@ func cat(ctx context.Context, node *core.IpfsNode, paths []string) ([]io.Reader,
readers
:=
make
([]
io
.
Reader
,
0
,
len
(
paths
))
length
:=
uint64
(
0
)
for
_
,
fpath
:=
range
paths
{
dagnode
,
err
:=
nod
e
.
Resolve
r
.
ResolvePath
(
path
.
Path
(
fpath
))
dagnode
,
err
:=
cor
e
.
Resolve
(
node
,
path
.
Path
(
fpath
))
if
err
!=
nil
{
return
nil
,
0
,
err
}
...
...
This diff is collapsed.
Click to expand it.
core/commands/get.go
View file @
c75a2938
...
...
@@ -24,7 +24,7 @@ var GetCmd = &cmds.Command{
Helptext
:
cmds
.
HelpText
{
Tagline
:
"Download IPFS objects"
,
ShortDescription
:
`
Retrieves the object named by <ipfs-path> and stores the data to disk.
Retrieves the object named by <ipfs-
or-ipns-
path> and stores the data to disk.
By default, the output will be stored at ./<ipfs-path>, but an alternate path
can be specified with '--output=<path>' or '-o=<path>'.
...
...
@@ -166,5 +166,11 @@ func getCompressOptions(req cmds.Request) (int, error) {
}
func
get
(
node
*
core
.
IpfsNode
,
p
string
,
compression
int
)
(
io
.
Reader
,
error
)
{
return
utar
.
NewReader
(
path
.
Path
(
p
),
node
.
DAG
,
node
.
Resolver
,
compression
)
pathToResolve
:=
path
.
Path
(
p
)
dagnode
,
err
:=
core
.
Resolve
(
node
,
pathToResolve
)
if
err
!=
nil
{
return
nil
,
err
}
return
utar
.
NewReader
(
pathToResolve
,
node
.
DAG
,
dagnode
,
compression
)
}
This diff is collapsed.
Click to expand it.
core/commands/ls.go
View file @
c75a2938
...
...
@@ -10,9 +10,10 @@ import (
context
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
cmds
"github.com/ipfs/go-ipfs/commands"
core
"github.com/ipfs/go-ipfs/core"
merkledag
"github.com/ipfs/go-ipfs/merkledag"
path
"github.com/ipfs/go-ipfs/path"
"github.com/ipfs/go-ipfs/unixfs"
unixfs
"github.com/ipfs/go-ipfs/unixfs"
unixfspb
"github.com/ipfs/go-ipfs/unixfs/pb"
)
...
...
@@ -35,7 +36,7 @@ var LsCmd = &cmds.Command{
Helptext
:
cmds
.
HelpText
{
Tagline
:
"List links from an object."
,
ShortDescription
:
`
Retrieves the object named by <ipfs-path> and displays the links
Retrieves the object named by <ipfs-
or-ipns-
path> and displays the links
it contains, with the following format:
<link base58 hash> <link size in bytes> <link name>
...
...
@@ -65,7 +66,7 @@ it contains, with the following format:
dagnodes
:=
make
([]
*
merkledag
.
Node
,
0
)
for
_
,
fpath
:=
range
paths
{
dagnode
,
err
:=
nod
e
.
Resolve
r
.
ResolvePath
(
path
.
Path
(
fpath
))
dagnode
,
err
:=
cor
e
.
Resolve
(
node
,
path
.
Path
(
fpath
))
if
err
!=
nil
{
res
.
SetError
(
err
,
cmds
.
ErrNormal
)
return
...
...
This diff is collapsed.
Click to expand it.
core/commands/object.go
View file @
c75a2938
...
...
@@ -345,7 +345,7 @@ Data should be in the format specified by the --inputenc flag.
// objectData takes a key string and writes out the raw bytes of that node (if there is one)
func
objectData
(
n
*
core
.
IpfsNode
,
fpath
path
.
Path
)
(
io
.
Reader
,
error
)
{
dagnode
,
err
:=
n
.
Resolver
.
Resolve
Path
(
fpath
)
dagnode
,
err
:=
core
.
Resolve
(
n
,
fpath
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -357,7 +357,7 @@ func objectData(n *core.IpfsNode, fpath path.Path) (io.Reader, error) {
// objectLinks takes a key string and lists the links it points to
func
objectLinks
(
n
*
core
.
IpfsNode
,
fpath
path
.
Path
)
(
*
Object
,
error
)
{
dagnode
,
err
:=
n
.
Resolver
.
Resolve
Path
(
fpath
)
dagnode
,
err
:=
core
.
Resolve
(
n
,
fpath
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -369,7 +369,7 @@ func objectLinks(n *core.IpfsNode, fpath path.Path) (*Object, error) {
// objectGet takes a key string from args and a format option and serializes the dagnode to that format
func
objectGet
(
n
*
core
.
IpfsNode
,
fpath
path
.
Path
)
(
*
dag
.
Node
,
error
)
{
dagnode
,
err
:=
n
.
Resolver
.
Resolve
Path
(
fpath
)
dagnode
,
err
:=
core
.
Resolve
(
n
,
fpath
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
This diff is collapsed.
Click to expand it.
core/commands/refs.go
View file @
c75a2938
...
...
@@ -164,7 +164,7 @@ Displays the hashes of all local objects.
func
objectsForPaths
(
n
*
core
.
IpfsNode
,
paths
[]
string
)
([]
*
dag
.
Node
,
error
)
{
objects
:=
make
([]
*
dag
.
Node
,
len
(
paths
))
for
i
,
p
:=
range
paths
{
o
,
err
:=
n
.
Resolver
.
Resolve
Path
(
path
.
Path
(
p
))
o
,
err
:=
core
.
Resolve
(
n
,
path
.
Path
(
p
))
if
err
!=
nil
{
return
nil
,
err
}
...
...
This diff is collapsed.
Click to expand it.
core/core.go
View file @
c75a2938
...
...
@@ -345,10 +345,6 @@ func (n *IpfsNode) OnlineMode() bool {
}
}
func
(
n
*
IpfsNode
)
Resolve
(
fpath
string
)
(
*
merkledag
.
Node
,
error
)
{
return
n
.
Resolver
.
ResolvePath
(
path
.
Path
(
fpath
))
}
func (n *IpfsNode) Bootstrap(cfg BootstrapConfig) error {
// TODO what should return value be when in offlineMode?
...
...
This diff is collapsed.
Click to expand it.
core/corerepo/pinning.go
View file @
c75a2938
...
...
@@ -16,7 +16,7 @@ func Pin(n *core.IpfsNode, paths []string, recursive bool) ([]u.Key, error) {
dagnodes
:=
make
([]
*
merkledag
.
Node
,
0
)
for
_
,
fpath
:=
range
paths
{
dagnode
,
err
:=
n
.
Resolver
.
Resolve
Path
(
path
.
Path
(
fpath
))
dagnode
,
err
:=
core
.
Resolve
(
n
,
path
.
Path
(
fpath
))
if
err
!=
nil
{
return
nil
,
fmt
.
Errorf
(
"pin: %s"
,
err
)
}
...
...
@@ -51,7 +51,7 @@ func Unpin(n *core.IpfsNode, paths []string, recursive bool) ([]u.Key, error) {
dagnodes
:=
make
([]
*
merkledag
.
Node
,
0
)
for
_
,
fpath
:=
range
paths
{
dagnode
,
err
:=
n
.
Resolver
.
Resolve
Path
(
path
.
Path
(
fpath
))
dagnode
,
err
:=
core
.
Resolve
(
n
,
path
.
Path
(
fpath
))
if
err
!=
nil
{
return
nil
,
err
}
...
...
This diff is collapsed.
Click to expand it.
core/pathresolver.go
0 → 100644
View file @
c75a2938
package
core
import
(
merkledag
"github.com/ipfs/go-ipfs/merkledag"
path
"github.com/ipfs/go-ipfs/path"
"strings"
)
// Resolves the given path by parsing out /ipns/ entries and then going
// through the /ipfs/ entries and returning the final merkledage node.
// Effectively enables /ipns/ in CLI commands.
func
Resolve
(
n
*
IpfsNode
,
p
path
.
Path
)
(
*
merkledag
.
Node
,
error
)
{
strpath
:=
string
(
p
)
// for now, we only try to resolve ipns paths if
// they begin with "/ipns/". Otherwise, ambiguity
// emerges when resolving just a <hash>. Is it meant
// to be an ipfs or an ipns resolution?
if
strings
.
HasPrefix
(
strpath
,
"/ipns/"
)
{
// if it's an ipns path, try to resolve it.
// if we can't, we can give that error back to the user.
ipnsPath
:=
p
.
Segments
()[
1
]
extensions
:=
p
.
Segments
()[
2
:
]
key
,
err
:=
n
.
Namesys
.
Resolve
(
n
.
Context
(),
ipnsPath
)
if
err
!=
nil
{
return
nil
,
err
}
pathHead
:=
make
([]
string
,
2
)
pathHead
[
0
]
=
"ipfs"
pathHead
[
1
]
=
key
.
Pretty
()
p
=
path
.
FromSegments
(
append
(
pathHead
,
extensions
...
)
...
)
//p = path.RebasePath(path.FromSegments(extensions...), basePath)
}
// ok, we have an ipfs path now (or what we'll treat as one)
return
n
.
Resolver
.
ResolvePath
(
p
)
}
This diff is collapsed.
Click to expand it.
path/path.go
View file @
c75a2938
package
path
import
(
u
"github.com/ipfs/go-ipfs/util"
"path"
"strings"
u
"github.com/ipfs/go-ipfs/util"
)
// TODO: debate making this a private struct wrapped in a public interface
...
...
@@ -36,3 +35,7 @@ func (p Path) Segments() []string {
func
(
p
Path
)
String
()
string
{
return
string
(
p
)
}
func
FromSegments
(
seg
...
string
)
Path
{
return
Path
(
strings
.
Join
(
seg
,
"/"
))
}
This diff is collapsed.
Click to expand it.
unixfs/tar/reader.go
View file @
c75a2938
...
...
@@ -28,12 +28,11 @@ type Reader struct {
err
error
}
func
NewReader
(
path
path
.
Path
,
dag
mdag
.
DAGService
,
resolver
*
path
.
Resolver
,
compression
int
)
(
*
Reader
,
error
)
{
func
NewReader
(
path
path
.
Path
,
dag
mdag
.
DAGService
,
dagnode
*
mdag
.
Node
,
compression
int
)
(
*
Reader
,
error
)
{
reader
:=
&
Reader
{
signalChan
:
make
(
chan
struct
{}),
dag
:
dag
,
resolver
:
resolver
,
}
var
err
error
...
...
@@ -47,11 +46,6 @@ func NewReader(path path.Path, dag mdag.DAGService, resolver *path.Resolver, com
reader
.
writer
=
tar
.
NewWriter
(
&
reader
.
buf
)
}
dagnode
,
err
:=
resolver
.
ResolvePath
(
path
)
if
err
!=
nil
{
return
nil
,
err
}
// writeToBuf will write the data to the buffer, and will signal when there
// is new data to read
_
,
filename
:=
gopath
.
Split
(
path
.
String
())
...
...
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