Commit c75a2938 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

Merge pull request #1080 from gatesvp/iss750

Iss750
parents 7bba8004 31ff9545
......@@ -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 := node.Resolver.ResolvePath(path.Path(fpath))
dagnode, err := core.Resolve(node, path.Path(fpath))
if err != nil {
return nil, 0, err
}
......
......@@ -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)
}
......@@ -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 := node.Resolver.ResolvePath(path.Path(fpath))
dagnode, err := core.Resolve(node, path.Path(fpath))
if err != nil {
res.SetError(err, cmds.ErrNormal)
return
......
......@@ -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.ResolvePath(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.ResolvePath(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.ResolvePath(fpath)
dagnode, err := core.Resolve(n, fpath)
if err != nil {
return nil, err
}
......
......@@ -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.ResolvePath(path.Path(p))
o, err := core.Resolve(n, path.Path(p))
if err != nil {
return nil, err
}
......
......@@ -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?
......
......@@ -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.ResolvePath(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.ResolvePath(path.Path(fpath))
dagnode, err := core.Resolve(n, path.Path(fpath))
if err != nil {
return nil, err
}
......
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)
}
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, "/"))
}
......@@ -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())
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment