-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create new Format interface for creating CIDs.
- Loading branch information
Showing
2 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package cid | ||
|
||
import ( | ||
mh "github.com/multiformats/go-multihash" | ||
) | ||
|
||
type Format interface { | ||
Sum(data []byte) (*Cid, error) | ||
} | ||
|
||
type FormatV0 struct{} | ||
|
||
type FormatV1 struct { | ||
Codec uint64 | ||
HashFun uint64 | ||
HashLen int // 0 (or -1 for compatibility) means the default length | ||
} | ||
|
||
func PrefixToFormat(p Prefix) Format { | ||
if p.Version == 0 { | ||
return FormatV0{} | ||
} | ||
mhLen := p.MhLength | ||
if p.MhType == mh.ID { | ||
mhLen = 0 | ||
} | ||
if mhLen == -1 { | ||
mhLen = 0 | ||
} | ||
return FormatV1{ | ||
Codec: p.Codec, | ||
HashFun: p.MhType, | ||
HashLen: mhLen, | ||
} | ||
} | ||
|
||
func (p FormatV0) Sum(data []byte) (*Cid, error) { | ||
hash, err := mh.Sum(data, mh.SHA2_256, -1) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return NewCidV0(hash), nil | ||
} | ||
|
||
func (p FormatV1) Sum(data []byte) (*Cid, error) { | ||
mhLen := p.HashLen | ||
if mhLen == 0 { | ||
mhLen = -1 | ||
} | ||
hash, err := mh.Sum(data, p.HashFun, mhLen) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return NewCidV1(p.Codec, hash), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
package cid | ||
|
||
import ( | ||
"testing" | ||
|
||
mh "github.com/multiformats/go-multihash" | ||
) | ||
|
||
func TestFormatV1(t *testing.T) { | ||
data := []byte("this is some test content") | ||
|
||
// Construct c1 | ||
format := FormatV1{Codec: DagCBOR, HashFun: mh.SHA2_256} | ||
c1, err := format.Sum(data) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// Construct c2 | ||
hash, err := mh.Sum(data, mh.SHA2_256, -1) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
c2 := NewCidV1(DagCBOR, hash) | ||
|
||
if !c1.Equals(c2) { | ||
t.Fatal("cids mismatch") | ||
} | ||
if c1.Prefix() != c2.Prefix() { | ||
t.Fatal("prefixes mismatch") | ||
} | ||
} | ||
|
||
func TestFormatV0(t *testing.T) { | ||
data := []byte("this is some test content") | ||
|
||
// Construct c1 | ||
format := FormatV0{} | ||
c1, err := format.Sum(data) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
// Construct c2 | ||
hash, err := mh.Sum(data, mh.SHA2_256, -1) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
c2 := NewCidV0(hash) | ||
|
||
if !c1.Equals(c2) { | ||
t.Fatal("cids mismatch") | ||
} | ||
if c1.Prefix() != c2.Prefix() { | ||
t.Fatal("prefixes mismatch") | ||
} | ||
} | ||
|