mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 10:57:42 +08:00
This fixes all golint warnings in the importers module, adding documentation and module descriptions. License: MIT Signed-off-by: Hector Sanjuan <hector@protocol.ai>
109 lines
2.8 KiB
Go
109 lines
2.8 KiB
Go
// Package balanced provides methods to build balanced DAGs.
|
|
// In a balanced DAG, nodes are added to a single root
|
|
// until the maximum number of links is reached (with leaves
|
|
// being at depth 0). Then, a new root is created, and points to the
|
|
// old root, and incorporates a new child, which proceeds to be
|
|
// filled up (link) to more leaves. In all cases, the Data (chunks)
|
|
// is stored only at the leaves, with the rest of nodes only
|
|
// storing links to their children.
|
|
//
|
|
// In a balanced DAG, nodes fill their link capacity before
|
|
// creating new ones, thus depth only increases when the
|
|
// current tree is completely full.
|
|
//
|
|
// Balanced DAGs are generalistic DAGs in which all leaves
|
|
// are at the same distance from the root.
|
|
package balanced
|
|
|
|
import (
|
|
"errors"
|
|
|
|
h "github.com/ipfs/go-ipfs/importer/helpers"
|
|
|
|
ipld "gx/ipfs/Qme5bWv7wtjUNGsK2BNGVUFPKiuxWrsqrtvYwCLRw8YFES/go-ipld-format"
|
|
)
|
|
|
|
// Layout builds a balanced DAG. Data is stored at the leaves
|
|
// and depth only increases when the tree is full, that is, when
|
|
// the root node has reached the maximum number of links.
|
|
func Layout(db *h.DagBuilderHelper) (ipld.Node, error) {
|
|
var offset uint64
|
|
var root *h.UnixfsNode
|
|
for level := 0; !db.Done(); level++ {
|
|
|
|
nroot := db.NewUnixfsNode()
|
|
db.SetPosInfo(nroot, 0)
|
|
|
|
// add our old root as a child of the new root.
|
|
if root != nil { // nil if it's the first node.
|
|
if err := nroot.AddChild(root, db); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// fill it up.
|
|
if err := fillNodeRec(db, nroot, level, offset); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
offset = nroot.FileSize()
|
|
root = nroot
|
|
|
|
}
|
|
if root == nil {
|
|
root = db.NewUnixfsNode()
|
|
}
|
|
|
|
out, err := db.Add(root)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = db.Close()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return out, nil
|
|
}
|
|
|
|
// fillNodeRec will fill the given node with data from the dagBuilders input
|
|
// source down to an indirection depth as specified by 'depth'
|
|
// it returns the total dataSize of the node, and a potential error
|
|
//
|
|
// warning: **children** pinned indirectly, but input node IS NOT pinned.
|
|
func fillNodeRec(db *h.DagBuilderHelper, node *h.UnixfsNode, depth int, offset uint64) error {
|
|
if depth < 0 {
|
|
return errors.New("attempt to fillNode at depth < 0")
|
|
}
|
|
|
|
// Base case
|
|
if depth <= 0 { // catch accidental -1's in case error above is removed.
|
|
child, err := db.GetNextDataNode()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
node.Set(child)
|
|
return nil
|
|
}
|
|
|
|
// while we have room AND we're not done
|
|
for node.NumChildren() < db.Maxlinks() && !db.Done() {
|
|
child := db.NewUnixfsNode()
|
|
db.SetPosInfo(child, offset)
|
|
|
|
err := fillNodeRec(db, child, depth-1, offset)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := node.AddChild(child, db); err != nil {
|
|
return err
|
|
}
|
|
offset += child.FileSize()
|
|
}
|
|
|
|
return nil
|
|
}
|