Skip to content

Instantly share code, notes, and snippets.

@jbenet
Last active November 29, 2016 04:22
Show Gist options
  • Save jbenet/b6a4548fff768d6656f2d01a29b30f35 to your computer and use it in GitHub Desktop.
Save jbenet/b6a4548fff768d6656f2d01a29b30f35 to your computer and use it in GitHub Desktop.

Given this Data

{
  "a": "b",
  "c": [
    {},
    {
      "d": 111,
      "e": {"/": "/ipld/QmAAA..."}
    },
  ]
}
// QmBBB...


{
  "f": "g",
  "h": [0, 10, 20, 30]
}
// QmAAA...

Can use these structs to read it:

type Foo struct {
  a string
  c []FooChild
}

type FooChild struct {
  d int
  e ipld.Link
}

type Bar struct {
  f string
  h []int
}

// one interface
dag := mkDag(kvStore)
var val int
ipld.Resolve(dag, "QmBBB.../c/1/e/h/2", &val)
assert(val == 20)

// another interface
dag := mkDag(kvStore)
var val Bar
ipld.Resolve(dag, "QmBBB.../c/1/e/", &val)
assert(val.h[2] == 20)

// another interface
dag := mkDag(kvStore)
data := dag.Get("QmBBB...") // raw bytes (could be json, or cbor, or whatever)
var val int
ipld.Resolve(dag, data, "c/1/e/h/2", &val)
assert(val == 20)

Where dag is a thing that implements or uses something like this:

type Data interface { // or DAG or DagPatch or IPLDCodec or ...
  // Resolve populates value val with the value at path.
  // if path traverses beyond the confines of the available data,
  // the last value reached is used, and a pathRest is the path remaining
  // to be resolved.
  Resolve(path string, val interface{}) (pathRest string, err error)

  // Tree lists all paths starting from path, rooted at this object.
  // Effectively:
  //  > find $objhash/<path>
  Tree(path string) (paths []string, err error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment