Skip to content

Commit

Permalink
merkledag: respond with correct cid to Cid() method
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Jeromy <why@ipfs.io>
  • Loading branch information
whyrusleeping committed Nov 29, 2016
1 parent cd6d2d2 commit 13f6528
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 14 deletions.
10 changes: 3 additions & 7 deletions merkledag/coding.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
pb "github.com/ipfs/go-ipfs/merkledag/pb"

node "gx/ipfs/QmRSU5EqqWVZSNdbU51yXmVoF1uNw3JgTNB6RaiL7DZM16/go-ipld-node"
mh "gx/ipfs/QmYDds3421prZgqKbLpEK7T9Aa2eVdQ7o3YarX1LVLdP2J/go-multihash"
cid "gx/ipfs/QmcTcsTvfaeEBRFo1TkFgT8sRmgi1n1LTZpecfVP8fzpGD/go-cid"
)

Expand Down Expand Up @@ -84,13 +83,10 @@ func (n *ProtoNode) EncodeProtobuf(force bool) ([]byte, error) {
}

if n.cached == nil {
if n.prefix.MhType == 0 { // unset
n.prefix.Codec = cid.DagProtobuf
n.prefix.MhLength = -1
n.prefix.MhType = mh.SHA2_256
n.prefix.Version = 0
if n.Prefix.Codec == 0 { // unset
n.Prefix = defaultCidPrefix
}
c, err := n.prefix.Sum(n.encoded)
c, err := n.Prefix.Sum(n.encoded)
if err != nil {
return nil, err
}
Expand Down
2 changes: 1 addition & 1 deletion merkledag/merkledag.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func decodeBlock(b blocks.Block) (node.Node, error) {
}

decnd.cached = b.Cid()
decnd.prefix = b.Cid().Prefix()
decnd.Prefix = b.Cid().Prefix()
return decnd, nil
case cid.Raw:
return NewRawNode(b.RawData()), nil
Expand Down
35 changes: 35 additions & 0 deletions merkledag/merkledag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"sync"
"testing"

blocks "github.com/ipfs/go-ipfs/blocks"
bserv "github.com/ipfs/go-ipfs/blockservice"
bstest "github.com/ipfs/go-ipfs/blockservice/test"
offline "github.com/ipfs/go-ipfs/exchange/offline"
Expand Down Expand Up @@ -450,3 +451,37 @@ func TestProtoNodeResolve(t *testing.T) {
t.Fatal("expected tree to return []{\"foo\"}")
}
}

func TestCidRetention(t *testing.T) {
nd := new(ProtoNode)
nd.SetData([]byte("fooooo"))

pref := nd.Cid().Prefix()
pref.Version = 1

c2, err := pref.Sum(nd.RawData())
if err != nil {
t.Fatal(err)
}

blk, err := blocks.NewBlockWithCid(nd.RawData(), c2)
if err != nil {
t.Fatal(err)
}

bs := dstest.Bserv()
_, err = bs.AddBlock(blk)
if err != nil {
t.Fatal(err)
}

ds := NewDAGService(bs)
out, err := ds.Get(context.Background(), c2)
if err != nil {
t.Fatal(err)
}

if !out.Cid().Equals(c2) {
t.Fatal("output cid didnt match")
}
}
28 changes: 24 additions & 4 deletions merkledag/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,15 @@ type ProtoNode struct {

cached *cid.Cid

// prefix specifies cid version and hashing function
prefix cid.Prefix
// Prefix specifies cid version and hashing function
Prefix cid.Prefix
}

var defaultCidPrefix = cid.Prefix{
Codec: cid.DagProtobuf,
MhLength: -1,
MhType: mh.SHA2_256,
Version: 0,
}

type LinkSlice []*node.Link
Expand Down Expand Up @@ -222,9 +229,22 @@ func (n *ProtoNode) Loggable() map[string]interface{} {
}

func (n *ProtoNode) Cid() *cid.Cid {
h := n.Multihash()
if n.encoded != nil && n.cached != nil {
return n.cached
}

if n.Prefix.Codec == 0 {
n.Prefix = defaultCidPrefix
}

c, err := n.Prefix.Sum(n.RawData())
if err != nil {
// programmer error
panic(err)
}

return cid.NewCidV0(h)
n.cached = c
return c
}

func (n *ProtoNode) String() string {
Expand Down
7 changes: 5 additions & 2 deletions merkledag/test/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ import (
)

func Mock() dag.DAGService {
return dag.NewDAGService(Bserv())
}

func Bserv() bsrv.BlockService {
bstore := blockstore.NewBlockstore(dssync.MutexWrap(ds.NewMapDatastore()))
bserv := bsrv.New(bstore, offline.Exchange(bstore))
return dag.NewDAGService(bserv)
return bsrv.New(bstore, offline.Exchange(bstore))
}

0 comments on commit 13f6528

Please sign in to comment.