node.go 8.66 KB
Newer Older
1 2 3
package merkledag

import (
4
	"context"
5
	"encoding/json"
Jeromy's avatar
Jeromy committed
6
	"fmt"
Jeromy's avatar
Jeromy committed
7

Jeromy's avatar
Jeromy committed
8 9 10
	cid "github.com/ipfs/go-cid"
	ipld "github.com/ipfs/go-ipld-format"
	mh "github.com/multiformats/go-multihash"
11 12
)

13 14 15 16 17
// Common errors
var (
	ErrNotProtobuf  = fmt.Errorf("expected protobuf dag node")
	ErrLinkNotFound = fmt.Errorf("no link by that name")
)
18

19
// ProtoNode represents a node in the IPFS Merkle DAG.
20
// nodes have opaque data and a set of navigable links.
21
type ProtoNode struct {
22
	links []*ipld.Link
23
	data  []byte
24 25 26 27

	// cache encoded/marshaled value
	encoded []byte

Jeromy's avatar
Jeromy committed
28
	cached *cid.Cid
29

30 31
	// builder specifies cid version and hashing function
	builder cid.Builder
32 33
}

34
var v0CidPrefix = cid.Prefix{
35 36 37 38
	Codec:    cid.DagProtobuf,
	MhLength: -1,
	MhType:   mh.SHA2_256,
	Version:  0,
39 40
}

41 42 43 44 45 46 47
var v1CidPrefix = cid.Prefix{
	Codec:    cid.DagProtobuf,
	MhLength: -1,
	MhType:   mh.SHA2_256,
	Version:  1,
}

Kevin Atkinson's avatar
Kevin Atkinson committed
48
// V0CidPrefix returns a prefix for CIDv0
49
func V0CidPrefix() cid.Prefix { return v0CidPrefix }
Kevin Atkinson's avatar
Kevin Atkinson committed
50 51

// V1CidPrefix returns a prefix for CIDv1 with the default settings
52 53
func V1CidPrefix() cid.Prefix { return v1CidPrefix }

Kevin Atkinson's avatar
Kevin Atkinson committed
54
// PrefixForCidVersion returns the Protobuf prefix for a given CID version
55 56 57 58 59 60 61 62 63 64 65
func PrefixForCidVersion(version int) (cid.Prefix, error) {
	switch version {
	case 0:
		return v0CidPrefix, nil
	case 1:
		return v1CidPrefix, nil
	default:
		return cid.Prefix{}, fmt.Errorf("unknown CID version: %d", version)
	}
}

66 67 68 69 70 71 72 73
// Prefix returns the CID Prefix for this ProtoNode, it is never nil
func (n *ProtoNode) Prefix() cid.Builder {
	if n.builder == nil {
		n.builder = v0CidPrefix
	}
	return n.builder
}

Kevin Atkinson's avatar
Kevin Atkinson committed
74
// SetPrefix sets the CID prefix if it is non nil, if prefix is nil then
75
// it resets it the default value
76
func (n *ProtoNode) SetPrefix(prefix cid.Builder) {
77
	if prefix == nil {
78
		n.builder = v0CidPrefix
79
	} else {
80
		n.builder = prefix.WithCodec(cid.DagProtobuf)
81 82 83
		n.encoded = nil
		n.cached = nil
	}
84 85
}

86
// LinkSlice is a slice of ipld.Links
87
type LinkSlice []*ipld.Link
88 89 90 91 92

func (ls LinkSlice) Len() int           { return len(ls) }
func (ls LinkSlice) Swap(a, b int)      { ls[a], ls[b] = ls[b], ls[a] }
func (ls LinkSlice) Less(a, b int) bool { return ls[a].Name < ls[b].Name }

93
// NodeWithData builds a new Protonode with the given data.
94 95
func NodeWithData(d []byte) *ProtoNode {
	return &ProtoNode{data: d}
96 97
}

98
// AddNodeLink adds a link to another node.
99
func (n *ProtoNode) AddNodeLink(name string, that ipld.Node) error {
100
	n.encoded = nil
101

102
	lnk, err := ipld.MakeLink(that)
103 104 105 106
	if err != nil {
		return err
	}

Jeromy's avatar
Jeromy committed
107 108
	lnk.Name = name

109 110
	n.AddRawLink(name, lnk)

111 112 113
	return nil
}

114
// AddRawLink adds a copy of a link to this node
115
func (n *ProtoNode) AddRawLink(name string, l *ipld.Link) error {
116
	n.encoded = nil
117
	n.links = append(n.links, &ipld.Link{
118 119
		Name: name,
		Size: l.Size,
120
		Cid:  l.Cid,
121
	})
122 123 124 125

	return nil
}

Steven Allen's avatar
Steven Allen committed
126
// RemoveNodeLink removes a link on this node by the given name.
127
func (n *ProtoNode) RemoveNodeLink(name string) error {
128
	n.encoded = nil
129
	good := make([]*ipld.Link, 0, len(n.links))
Jeromy's avatar
Jeromy committed
130 131
	var found bool

132
	for _, l := range n.links {
Jeromy's avatar
Jeromy committed
133 134 135 136
		if l.Name != name {
			good = append(good, l)
		} else {
			found = true
137 138
		}
	}
139
	n.links = good
Jeromy's avatar
Jeromy committed
140 141

	if !found {
142
		return ipld.ErrNotFound
Jeromy's avatar
Jeromy committed
143 144 145
	}

	return nil
146 147
}

Steven Allen's avatar
Steven Allen committed
148
// GetNodeLink returns a copy of the link with the given name.
149
func (n *ProtoNode) GetNodeLink(name string) (*ipld.Link, error) {
150
	for _, l := range n.links {
151
		if l.Name == name {
152
			return &ipld.Link{
153 154
				Name: l.Name,
				Size: l.Size,
155
				Cid:  l.Cid,
156 157 158
			}, nil
		}
	}
159
	return nil, ErrLinkNotFound
160 161
}

Steven Allen's avatar
Steven Allen committed
162
// GetLinkedProtoNode returns a copy of the ProtoNode with the given name.
163
func (n *ProtoNode) GetLinkedProtoNode(ctx context.Context, ds ipld.DAGService, name string) (*ProtoNode, error) {
164 165 166 167 168 169 170 171 172 173 174 175 176
	nd, err := n.GetLinkedNode(ctx, ds, name)
	if err != nil {
		return nil, err
	}

	pbnd, ok := nd.(*ProtoNode)
	if !ok {
		return nil, ErrNotProtobuf
	}

	return pbnd, nil
}

Steven Allen's avatar
Steven Allen committed
177
// GetLinkedNode returns a copy of the IPLD Node with the given name.
178
func (n *ProtoNode) GetLinkedNode(ctx context.Context, ds ipld.DAGService, name string) (ipld.Node, error) {
179 180 181 182 183 184 185 186
	lnk, err := n.GetNodeLink(name)
	if err != nil {
		return nil, err
	}

	return lnk.GetNode(ctx, ds)
}

187
// Copy returns a copy of the node.
188
// NOTE: Does not make copies of Node objects in the links.
189
func (n *ProtoNode) Copy() ipld.Node {
190
	nnode := new(ProtoNode)
191 192 193
	if len(n.data) > 0 {
		nnode.data = make([]byte, len(n.data))
		copy(nnode.data, n.data)
Jeromy's avatar
Jeromy committed
194
	}
195

196
	if len(n.links) > 0 {
197
		nnode.links = make([]*ipld.Link, len(n.links))
198
		copy(nnode.links, n.links)
Jeromy's avatar
Jeromy committed
199
	}
200

201
	nnode.builder = n.builder
202

203 204 205
	return nnode
}

206
// RawData returns the protobuf-encoded version of the node.
207
func (n *ProtoNode) RawData() []byte {
Jeromy's avatar
Jeromy committed
208 209 210 211
	out, _ := n.EncodeProtobuf(false)
	return out
}

212
// Data returns the data stored by this node.
213
func (n *ProtoNode) Data() []byte {
214 215 216
	return n.data
}

217
// SetData stores data in this nodes.
218
func (n *ProtoNode) SetData(d []byte) {
219 220 221 222 223
	n.encoded = nil
	n.cached = nil
	n.data = d
}

224 225
// UpdateNodeLink return a copy of the node with the link name set to point to
// that. If a link of the same name existed, it is removed.
226
func (n *ProtoNode) UpdateNodeLink(name string, that *ProtoNode) (*ProtoNode, error) {
227
	newnode := n.Copy().(*ProtoNode)
228 229
	_ = newnode.RemoveNodeLink(name) // ignore error
	err := newnode.AddNodeLink(name, that)
230 231 232
	return newnode, err
}

233 234
// Size returns the total size of the data addressed by node,
// including the total sizes of references.
235
func (n *ProtoNode) Size() (uint64, error) {
236
	b, err := n.EncodeProtobuf(false)
237 238 239 240 241
	if err != nil {
		return 0, err
	}

	s := uint64(len(b))
242
	for _, l := range n.links {
243 244 245 246 247 248
		s += l.Size
	}
	return s, nil
}

// Stat returns statistics on the node.
249
func (n *ProtoNode) Stat() (*ipld.NodeStat, error) {
250
	enc, err := n.EncodeProtobuf(false)
251
	if err != nil {
252
		return nil, err
253 254 255 256
	}

	cumSize, err := n.Size()
	if err != nil {
257
		return nil, err
258 259
	}

260
	return &ipld.NodeStat{
Jeromy's avatar
Jeromy committed
261
		Hash:           n.Cid().String(),
262
		NumLinks:       len(n.links),
263
		BlockSize:      len(enc),
264 265
		LinksSize:      len(enc) - len(n.data), // includes framing.
		DataSize:       len(n.data),
266 267 268 269
		CumulativeSize: int(cumSize),
	}, nil
}

270
// Loggable implements the ipfs/go-log.Loggable interface.
271
func (n *ProtoNode) Loggable() map[string]interface{} {
Jeromy's avatar
Jeromy committed
272 273 274 275 276
	return map[string]interface{}{
		"node": n.String(),
	}
}

277
// UnmarshalJSON reads the node fields from a JSON-encoded byte slice.
Jeromy's avatar
Jeromy committed
278 279 280
func (n *ProtoNode) UnmarshalJSON(b []byte) error {
	s := struct {
		Data  []byte       `json:"data"`
281
		Links []*ipld.Link `json:"links"`
Jeromy's avatar
Jeromy committed
282 283 284 285 286 287 288 289 290 291 292 293
	}{}

	err := json.Unmarshal(b, &s)
	if err != nil {
		return err
	}

	n.data = s.Data
	n.links = s.Links
	return nil
}

294
// MarshalJSON returns a JSON representation of the node.
295 296 297 298 299 300 301 302 303
func (n *ProtoNode) MarshalJSON() ([]byte, error) {
	out := map[string]interface{}{
		"data":  n.data,
		"links": n.links,
	}

	return json.Marshal(out)
}

304 305
// Cid returns the node's Cid, calculated according to its prefix
// and raw data contents.
306
func (n *ProtoNode) Cid() *cid.Cid {
307 308 309 310
	if n.encoded != nil && n.cached != nil {
		return n.cached
	}

311
	c, err := n.builder.Sum(n.RawData())
312 313
	if err != nil {
		// programmer error
314
		err = fmt.Errorf("invalid CID of length %d: %x: %v", len(n.RawData()), n.RawData(), err)
315 316
		panic(err)
	}
Jeromy's avatar
Jeromy committed
317

318 319
	n.cached = c
	return c
Jeromy's avatar
Jeromy committed
320 321
}

322
// String prints the node's Cid.
323
func (n *ProtoNode) String() string {
Jeromy's avatar
Jeromy committed
324 325 326
	return n.Cid().String()
}

327
// Multihash hashes the encoded data of this node.
328
func (n *ProtoNode) Multihash() mh.Multihash {
329
	// NOTE: EncodeProtobuf generates the hash and puts it in n.cached.
330
	_, err := n.EncodeProtobuf(false)
331
	if err != nil {
Jeromy's avatar
Jeromy committed
332 333
		// Note: no possibility exists for an error to be returned through here
		panic(err)
334 335
	}

Jeromy's avatar
Jeromy committed
336
	return n.cached.Hash()
337
}
338

339
// Links returns the node links.
340
func (n *ProtoNode) Links() []*ipld.Link {
341 342 343
	return n.links
}

344
// SetLinks replaces the node links with the given ones.
345
func (n *ProtoNode) SetLinks(links []*ipld.Link) {
346 347 348
	n.links = links
}

349
// Resolve is an alias for ResolveLink.
350 351 352 353
func (n *ProtoNode) Resolve(path []string) (interface{}, []string, error) {
	return n.ResolveLink(path)
}

354 355 356
// ResolveLink consumes the first element of the path and obtains the link
// corresponding to it from the node. It returns the link
// and the path without the consumed element.
357
func (n *ProtoNode) ResolveLink(path []string) (*ipld.Link, []string, error) {
358 359 360 361 362 363 364 365 366 367 368 369
	if len(path) == 0 {
		return nil, nil, fmt.Errorf("end of path, no more links to resolve")
	}

	lnk, err := n.GetNodeLink(path[0])
	if err != nil {
		return nil, nil, err
	}

	return lnk, path[1:], nil
}

370 371 372
// Tree returns the link names of the ProtoNode.
// ProtoNodes are only ever one path deep, so anything different than an empty
// string for p results in nothing. The depth parameter is ignored.
373 374 375 376 377
func (n *ProtoNode) Tree(p string, depth int) []string {
	if p != "" {
		return nil
	}

378 379 380 381 382 383
	out := make([]string, 0, len(n.links))
	for _, lnk := range n.links {
		out = append(out, lnk.Name)
	}
	return out
}