mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 20:37:53 +08:00
67 lines
1.2 KiB
Go
67 lines
1.2 KiB
Go
package coredag
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
"math"
|
|
|
|
"github.com/ipfs/go-ipfs/merkledag"
|
|
|
|
cid "gx/ipfs/QmNp85zy9RLrQ5oQD4hPyS39ezrrXpcaa7R4Y9kxdWQLLQ/go-cid"
|
|
node "gx/ipfs/QmPN7cwmpcc4DWXb4KTB9dNAJgjuPY69h3npsMfhRrQL9c/go-ipld-format"
|
|
mh "gx/ipfs/QmU9a9NV9RdPNwZQDYd5uKsm6N6LJLSvLbywDDYFbaaC6P/go-multihash"
|
|
)
|
|
|
|
func dagpbJSONParser(r io.Reader, mhType uint64, mhLen int) ([]node.Node, error) {
|
|
data, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
nd := &merkledag.ProtoNode{}
|
|
|
|
err = nd.UnmarshalJSON(data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
nd.SetPrefix(cidPrefix(mhType, mhLen))
|
|
|
|
return []node.Node{nd}, nil
|
|
}
|
|
|
|
func dagpbRawParser(r io.Reader, mhType uint64, mhLen int) ([]node.Node, error) {
|
|
data, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
nd, err := merkledag.DecodeProtobuf(data)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
nd.SetPrefix(cidPrefix(mhType, mhLen))
|
|
|
|
return []node.Node{nd}, nil
|
|
}
|
|
|
|
func cidPrefix(mhType uint64, mhLen int) *cid.Prefix {
|
|
if mhType == math.MaxUint64 {
|
|
mhType = mh.SHA2_256
|
|
}
|
|
|
|
prefix := &cid.Prefix{
|
|
MhType: mhType,
|
|
MhLength: mhLen,
|
|
Version: 1,
|
|
Codec: cid.DagProtobuf,
|
|
}
|
|
|
|
if mhType == mh.SHA2_256 {
|
|
prefix.Version = 0
|
|
}
|
|
|
|
return prefix
|
|
}
|