path.go 4.67 KB
Newer Older
1 2 3
package iface

import (
Steven Allen's avatar
Steven Allen committed
4
	ipfspath "gx/ipfs/QmQ3YSqfxunT5QBg6KBVskKyRE26q6hjSMyhpxchpm7jEN/go-path"
5
	"gx/ipfs/QmR8BauakNcBa3RbE4nbQu76PDiJgoQgz8AJdhJuiU4TAw/go-cid"
6 7
)

8 9
//TODO: merge with ipfspath so we don't depend on it

10 11
// Path is a generic wrapper for paths used in the API. A path can be resolved
// to a CID using one of Resolve functions in the API.
Łukasz Magiera's avatar
Łukasz Magiera committed
12 13 14 15 16 17 18
//
// Paths must be prefixed with a valid prefix:
//
// * /ipfs - Immutable unixfs path (files)
// * /ipld - Immutable ipld path (data)
// * /ipns - Mutable names. Usually resolves to one of the immutable paths
//TODO: /local (MFS)
19 20 21
type Path interface {
	// String returns the path as a string.
	String() string
22

23 24 25
	// Namespace returns the first component of the path.
	//
	// For example path "/ipfs/QmHash", calling Namespace() will return "ipfs"
26
	Namespace() string
Łukasz Magiera's avatar
Łukasz Magiera committed
27 28 29 30 31 32

	// Mutable returns false if the data pointed to by this path in guaranteed
	// to not change.
	//
	// Note that resolved mutable path can be immutable.
	Mutable() bool
33 34
}

35
// ResolvedPath is a path which was resolved to the last resolvable node
36
type ResolvedPath interface {
37 38
	// Cid returns the CID of the node referenced by the path. Remainder of the
	// path is guaranteed to be within the node.
39
	//
40 41 42 43 44 45 46 47
	// Examples:
	// If you have 3 linked objects: QmRoot -> A -> B:
	//
	// cidB := {"foo": {"bar": 42 }}
	// cidA := {"B": {"/": cidB }}
	// cidRoot := {"A": {"/": cidA }}
	//
	// And resolve paths:
48
	//
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	// * "/ipfs/${cidRoot}"
	//   * Calling Cid() will return `cidRoot`
	//   * Calling Root() will return `cidRoot`
	//   * Calling Remainder() will return ``
	//
	// * "/ipfs/${cidRoot}/A"
	//   * Calling Cid() will return `cidA`
	//   * Calling Root() will return `cidRoot`
	//   * Calling Remainder() will return ``
	//
	// * "/ipfs/${cidRoot}/A/B/foo"
	//   * Calling Cid() will return `cidB`
	//   * Calling Root() will return `cidRoot`
	//   * Calling Remainder() will return `foo`
	//
	// * "/ipfs/${cidRoot}/A/B/foo/bar"
	//   * Calling Cid() will return `cidB`
	//   * Calling Root() will return `cidRoot`
	//   * Calling Remainder() will return `foo/bar`
68
	Cid() cid.Cid
69

70 71 72 73 74
	// Root returns the CID of the root object of the path
	//
	// Example:
	// If you have 3 linked objects: QmRoot -> A -> B, and resolve path
	// "/ipfs/QmRoot/A/B", the Root method will return the CID of object QmRoot
75 76
	//
	// For more examples see the documentation of Cid() method
77
	Root() cid.Cid
78

Łukasz Magiera's avatar
Łukasz Magiera committed
79
	// Remainder returns unresolved part of the path
80 81 82 83 84
	//
	// Example:
	// If you have 2 linked objects: QmRoot -> A, where A is a CBOR node
	// containing the following data:
	//
85
	// {"foo": {"bar": 42 }}
86 87
	//
	// When resolving "/ipld/QmRoot/A/foo/bar", Remainder will return "foo/bar"
88 89
	//
	// For more examples see the documentation of Cid() method
Łukasz Magiera's avatar
Łukasz Magiera committed
90
	Remainder() string
91 92

	Path
93
}
94 95 96 97 98 99 100 101 102

// path implements coreiface.Path
type path struct {
	path ipfspath.Path
}

// resolvedPath implements coreiface.resolvedPath
type resolvedPath struct {
	path
103 104
	cid       cid.Cid
	root      cid.Cid
105 106 107
	remainder string
}

108 109 110 111 112 113
// Join appends provided segments to the base path
func Join(base Path, a ...string) Path {
	s := ipfspath.Join(append([]string{base.String()}, a...))
	return &path{path: ipfspath.FromString(s)}
}

114
// IpfsPath creates new /ipfs path from the provided CID
115
func IpfsPath(c cid.Cid) ResolvedPath {
116 117 118 119 120 121 122 123 124
	return &resolvedPath{
		path:      path{ipfspath.Path("/ipfs/" + c.String())},
		cid:       c,
		root:      c,
		remainder: "",
	}
}

// IpldPath creates new /ipld path from the provided CID
125
func IpldPath(c cid.Cid) ResolvedPath {
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
	return &resolvedPath{
		path:      path{ipfspath.Path("/ipld/" + c.String())},
		cid:       c,
		root:      c,
		remainder: "",
	}
}

// ParsePath parses string path to a Path
func ParsePath(p string) (Path, error) {
	pp, err := ipfspath.ParsePath(p)
	if err != nil {
		return nil, err
	}

	return &path{path: pp}, nil
}

// NewResolvedPath creates new ResolvedPath. This function performs no checks
// and is intended to be used by resolver implementations. Incorrect inputs may
// cause panics. Handle with care.
147
func NewResolvedPath(ipath ipfspath.Path, c cid.Cid, root cid.Cid, remainder string) ResolvedPath {
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
	return &resolvedPath{
		path:      path{ipath},
		cid:       c,
		root:      root,
		remainder: remainder,
	}
}

func (p *path) String() string {
	return p.path.String()
}

func (p *path) Namespace() string {
	if len(p.path.Segments()) < 1 {
		panic("path without namespace") //this shouldn't happen under any scenario
	}
	return p.path.Segments()[0]
}

func (p *path) Mutable() bool {
	//TODO: MFS: check for /local
	return p.Namespace() == "ipns"
}

172
func (p *resolvedPath) Cid() cid.Cid {
173 174 175
	return p.cid
}

176
func (p *resolvedPath) Root() cid.Cid {
177 178 179 180 181 182
	return p.root
}

func (p *resolvedPath) Remainder() string {
	return p.remainder
}