@web4/bittrie-multigraph

1.0.0 • Public • Published

@web4/bittrie-multigraph

A simple directed multigraph built on Bittrie. Edges are stored in the Bittrie using keys of the form label/from/to. Currently, the API exposes an iterator that performs a depth-first graph traversal.

Installation

npm i @web4/bittrie-multigraph --save

Usage

const ram = require('random-access-memory')
const bittrie = require('@web4/bittrie')
const Graph = require('@web4/bittrie-multigraph')

const trie = bittrie(ram)
const graph = new Graph(trie)

await graph.put('a', 'b', 'my-label')
await graph.put('b', 'c', 'my-label')
await graph.put('e', 'f', 'other-label')

// Returns the edges a -> b and b -> c
const ite = graph.iterator({ from: 'a', label: 'my-label' })

// Returns the edge a -> b
const ite = graph.iterator({ from: 'a', label: 'my-label', depth: 1 })

API

const graph = new BittrieGraph(trie)

Creates a new graph that uses the trie for storage.

await graph.put(from, to, label, [cb])

Creates a labelled edge between from and to.

Returns a Promise, and can optionally be used with a callback.

await graph.del(from, to, label, [cb])

Delete an edge.

await graph.batch(ops, [cb])

Batch insert/delete many edges.

ops is an Array with entries of the form:

{
  type: 'put' | 'del',
  from: 'a',
  to: 'b',
  label: 'my-label
}

const ite = graph.iterator(opts)

Creates a depth-first graph iterator that accepts the following options:

{
  from: 'a'         // A starting node
  to: 'b'           // An ending node
  label: 'my-label' // Only iterate over edges with this label
  depth: 10         // Stop the iteration at a certain depth (defaults to infinity)
}

Omitting from or to while providing a label will return all edges with that label.

Iterator return values take the form { from, to }

License

MIT

Dependents (0)

Package Sidebar

Install

npm i @web4/bittrie-multigraph

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

9.61 kB

Total Files

6

Last publish

Collaborators

  • neothawreww