mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 03:47:45 +08:00
67 lines
1.1 KiB
Go
67 lines
1.1 KiB
Go
package coredag
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
"math"
|
|
|
|
"github.com/ipfs/go-merkledag"
|
|
|
|
cid "github.com/ipfs/go-cid"
|
|
ipld "github.com/ipfs/go-ipld-format"
|
|
mh "github.com/multiformats/go-multihash"
|
|
)
|
|
|
|
func dagpbJSONParser(r io.Reader, mhType uint64, mhLen int) ([]ipld.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.SetCidBuilder(cidPrefix(mhType, mhLen))
|
|
|
|
return []ipld.Node{nd}, nil
|
|
}
|
|
|
|
func dagpbRawParser(r io.Reader, mhType uint64, mhLen int) ([]ipld.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.SetCidBuilder(cidPrefix(mhType, mhLen))
|
|
|
|
return []ipld.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
|
|
}
|