Skip to content

Commit ca726a8

Browse files
authored
Update readme.md
1 parent 44e947e commit ca726a8

File tree

1 file changed

+5
-301
lines changed

1 file changed

+5
-301
lines changed

antimatter/readme.md

+5-301
Original file line numberDiff line numberDiff line change
@@ -5,310 +5,14 @@
55
This package implements an antimatter peer composed of three objects:
66

77
```js
8-
var {sequence, json, antimatter} = require('@braidjs/antimatter')
8+
var {create_antimatter_crdt, create_json_crdt, sequence_crdt} = require('@braidjs/antimatter')
99
```
1010

11-
- `sequence` is a pruneable sequence CRDT — sequence meaning it represents a javascript string or array, CRDT meaning this structure can be merged with other ones, and pruneable meaning that it supports an operation to remove meta-data when it is no longer needed (whereas CRDT's often keep track of this meta-data forever).
12-
- `json` is a pruneable JSON CRDT — JSON meaning it represents an arbitrary JSON datstructure, and CRDT and pruneable having the same meaning as for `sequence` above. `json` makes recursive use of `sequence` structures to represent arbitrary JSON (for instance, a map is represented with a `sequence` structure for each value, where the first element in the sequence is the value).
13-
- `antimatter` subclasses the `json` CRDT object, and adds antimatter algorithm methods to it so that it can communicate with other peers to learn which history can be pruned, and tells the `json` object to prune it.
11+
- *antimatter_crdt*: created using `create_antimatter_crdt`, this object is a json_crdt with antimatter algorithm methods added to it so that it can communicate with other peers to learn which history can be pruned, and tells the underlying json_crdt object to prune it.
12+
- *json_crdt*: created using `create_json_crdt`, this object is a pruneable JSON CRDT — "JSON" meaning it represents an arbitrary JSON datstructure, and "CRDT" and "pruneable" having the same meaning as for sequence_crdt below. The json_crdt makes recursive use of sequence_crdt structures to represent arbitrary JSON (for instance, a map is represented with a sequence_crdt structure for each value, where the first element in the sequence is the value).
13+
- *sequence_crdt*: methods to manipulate a pruneable sequence CRDT — "sequence" meaning it represents a javascript string or array, "CRDT" meaning this structure can be merged with other ones, and "pruneable" meaning that it supports an operation to remove meta-data when it is no longer needed (whereas CRDT's often keep track of this meta-data forever).
1414

1515
The Antimatter Algorithm was invented by Michael Toomim and Greg Little in the
1616
[Braid Project](https://braid.org) of [Invisible College](https://invisible.college/).
1717

18-
[Click here to see this README side-by-side with the source code.](https://braid-org.github.io/braidjs/antimatter/doc.html)
19-
20-
# API
21-
22-
# antimatter.create(send[, init])
23-
Creates and returns a new antimatter object (or adds antimatter methods and properties to `init`).
24-
* `send`: A callback function to be called whenever this antimatter wants to send a message over a connection registered with `get` or `connect`. The sole parameter to this function is a JSONafiable object that hopes to be passed to the `receive` method on the antimatter object at the other end of the connection specified in the `conn` key.
25-
* `init`: (optional) An antimatter object to start with, which we'll add any properties to that it doesn't have, and we'll add all the antimatter methods to it. This option exists so you can serialize an antimatter instance as JSON, and then restore it later.
26-
27-
``` js
28-
var antimatter_instance = antimatter.create(msg => {
29-
websockets[msg.conn].send(JSON.stringify(msg))
30-
}, JSON.parse(fs.readFileSync('./antimatter.backup')))
31-
```
32-
33-
# antimatter_instance.receive(message)
34-
Let this antimatter object "receive" a message from another antimatter object, presumably from its `send` callback.
35-
36-
``` js
37-
websocket.on('message', data => {
38-
antimatter_instance.receive(JSON.parse(data))
39-
});
40-
```
41-
42-
You generally do not need to mess with a message object directly, but below are the various message objects you might see, categorized by their `cmd` entry. Note that each object also contains a `conn` entry with the id of the connection the message is sent over.
43-
44-
## message `get`
45-
`get` is the first message sent over a connection, and the peer at the other end will respond with `welcome`.
46-
47-
``` js
48-
{cmd: 'get', peer: 'SENDER_ID', conn: 'CONN_ID'}
49-
```
50-
51-
## message `forget`
52-
Used to disconnect without creating a fissure, presumably meaning the sending peer doesn't plan to make any edits while they're disconnected.
53-
54-
``` js
55-
{cmd: 'forget', conn: 'CONN_ID'}
56-
```
57-
58-
## message forget `ack`
59-
Sent in response to `forget`.. so they know we forgot them.
60-
61-
``` js
62-
{cmd: 'ack', forget: true, conn: 'CONN_ID'}
63-
```
64-
65-
## message `fissure`
66-
Sent to alert peers about a fissure. The `fissure` entry contains information about the two peers involved in the fissure, the specific connection id that broke, the `versions` that need to be protected, and the `time` of the fissure (in case we want to ignore it after some time). It is also possible to send multiple `fissures` in an array.
67-
68-
``` js
69-
{
70-
cmd: 'fissure',
71-
fissure: { // or fissures: [{...}, {...}, ...],
72-
a: 'PEER_A_ID',
73-
b: 'PEER_B_ID',
74-
conn: 'CONN_ID',
75-
versions: {'VERSION_ID': true, ...},
76-
time: Date.now()
77-
},
78-
conn: 'CONN_ID'
79-
}
80-
```
81-
82-
## message `set`
83-
Sent to alert peers about a change in the document. The change is represented as a version, with a unique id, a set of parent versions (the most recent versions known before adding this version), and an array of patches, where the offsets in the patches do not take into account the application of other patches in the same array.
84-
85-
``` js
86-
{
87-
cmd: 'set',
88-
version: 'VERSION_ID',
89-
parents: {'PARENT_VERSION_ID': true, ...},
90-
patches: [
91-
{range: '.json.path.a.b', content: 42}, ...
92-
],
93-
conn: 'CONN_ID'
94-
}
95-
```
96-
97-
## message local `ack`
98-
Sent in response to `set`, but not right away; a peer will first send the `set` over all its other connections, and only after they have all responded with a local `ack` — and we didn't see a `fissure` message while waiting — will the peer send a local `ack` over the originating connection.
99-
100-
``` js
101-
{cmd: 'ack', seen: 'local', version: 'VERSION_ID', conn: 'CONN_ID'}
102-
```
103-
104-
## message global `ack`
105-
Sent after an originating peer has received a local `ack` over all its connections, or after any peer receives a global `ack`, so that everyone may come to know that this version has been seen by everyone in this peer group.
106-
107-
``` js
108-
{cmd: 'ack', seen: 'global', version: 'VERSION_ID', conn: 'CONN_ID'}
109-
```
110-
111-
## message `welcome`
112-
Sent in response to a `get`, basically contains the initial state of the document; incoming `welcome` messages are also propagated over all our other connections (but only with information that was new to us, so that the propagation will eventually stop). When sent in response to a `get` (rather than being propogated), we include a `peer` entry with the id of the sending peer, so they know who we are, and to trigger them to send us their own `welcome` message.
113-
114-
``` js
115-
{
116-
cmd: 'welcome',
117-
versions: [each version looks like a set message...],
118-
fissures: [each fissure looks as it would in a fissure message...],
119-
parents: {'PARENT_VERSION_ID': true,
120-
...versions you must have before consuming these new versions},
121-
[ peer: 'SENDER_ID', ] // if sent in response to a get
122-
conn: 'CONN_ID'
123-
}
124-
```
125-
126-
# antimatter_instance.get(conn) or connect(conn)
127-
Register a new connection with id `conn` — triggers this antimatter object to send a `get` message over the given connection.
128-
129-
``` js
130-
alice_antimatter_instance.get('connection_to_bob')
131-
```
132-
133-
# antimatter_instance.forget(conn)
134-
Disconnect the given connection without creating a fissure — we don't need to reconnect with them.. it seems.. if we do, then we need to call `disconnect` instead, which will create a fissure allowing us to reconnect.
135-
136-
``` js
137-
alice_antimatter_instance.forget('connection_to_bob')
138-
```
139-
140-
# antimatter_instance.disconnect(conn)
141-
If we detect that a connection has closed, let the antimatter object know by calling this method with the given connection id — this will create a fissure so we can reconnect with whoever was on the other end of the connection later on.
142-
143-
``` js
144-
alice_antimatter_instance.disconnect('connection_to_bob')
145-
```
146-
147-
# antimatter_instance.set(...patches)
148-
Modify this antimatter object by applying the given patches. Each patch looks like `{range: '.life.meaning', content: 42}`. Calling this method will trigger calling the `send` callback to let our peers know about this change.
149-
150-
``` js
151-
antimatter_instance.set({range: '.life.meaning', content: 42})
152-
```
153-
154-
---
155-
156-
# json.create([init])
157-
Create a new `json` crdt object (or start with `init`, and add stuff to that).
158-
159-
``` js
160-
var json_instance = json.create()
161-
```
162-
163-
# json_instance.read()
164-
Returns an instance of the `json` object represented by this json data-structure.
165-
166-
``` js
167-
console.log(json_instance.read())
168-
```
169-
170-
# json_instance.generate_braid(versions)
171-
Returns an array of `set` messages that each look like this: `{version, parents, patches, sort_keys}`, such that if we pass all these messages to `antimatter.receive()`, we'll reconstruct the data in this `json` datastructure, assuming the recipient already has the given `versions` (which is represented as an object where each key is a version, and each value is `true`).
172-
173-
``` js
174-
json_instance.generate_braid({alice2: true, bob3: true})
175-
```
176-
177-
# json_instance.apply_bubbles(to_bubble)
178-
This method helps prune away meta data and compress stuff when we have determined that certain versions can be renamed to other versions — these renamings are expressed in `to_bubble`, where keys are versions and values are "bubbles", each bubble represented with an array of two elements, the first element is the "bottom" of the bubble, and the second element is the "top" of the bubble; "bottom" and "top" make sense when viewing versions in a directed graph with the oldest version(s) at the top, and each version pointing up to it's parents. A bubble is then a set of versions where the only arrows leaving the bubble upward are from the "top" version, and the only arrows leaving the bubble downward are from the "bottom" version. This method effectively combines all the versions in a bubble into a single version, and may allow the data structure to be compressed, since now we don't need to distinguish between certain versions that we used to need to.
179-
180-
``` js
181-
json_instance.apply_bubbles({alice4: ['bob5', 'alice4'], bob5: ['bob5', 'alice4']})
182-
```
183-
184-
# json_instance.add_version(version, parents, patches[, sort_keys])
185-
The main method for modifying a `json` data structure.
186-
* `version`: Unique string associated with this edit.
187-
* `parents`: A set of versions that this version is aware of, represented as a map with versions as keys, and values of `true`.
188-
* `patches`: An array of patches, where each patch is an object like this `{range: '.life.meaning', content: 42}`.
189-
* `sort_keys`: (optional) An object where each key is an index, and the value is a sort_key to use with the patch at the given index in the `patches` array — a sort_key overrides the version for a patch for the purposes of sorting. This can be useful after doing some pruning.
190-
191-
``` js
192-
json_instance.add_version('alice6',
193-
{alice5: true, bob7: true},
194-
[{range: '.a.b', content: 'c'}])
195-
```
196-
197-
# json_instance.get_child_map()
198-
Returns a map where each key is a version, and each value is a set of child versions, represented as a map with versions as keys, and values of `true`.
199-
200-
``` js
201-
json_instance.get_child_map()
202-
```
203-
204-
# json_instance.ancestors(versions, ignore_nonexistent=false)
205-
Gather `versions` and all their ancestors into a set. `versions` is a set of versions, i.e. a map with version-keys and values of true — we'll basically return a larger set. If `ignore_nonexistent` is `true`, then we won't throw an exception if we encounter a version that we don't have in our datastructure.
206-
207-
``` js
208-
json_instance.ancestors({alice12: true, bob10: true})
209-
```
210-
211-
# json_instance.descendants(versions, ignore_nonexistent=false)
212-
Gather `versions` and all their descendants into a set. `versions` is a set of versions, i.e. a map with version-keys and values of true — we'll basically return a larger set. If `ignore_nonexistent` is `true`, then we won't throw an exception if we encounter a version that we don't have in our datastructure.
213-
214-
``` js
215-
json_instance.descendants({alice12: true, bob10: true})
216-
```
217-
218-
# json_instance.get_leaves(versions)
219-
Returns a set of versions from `versions` which don't also have a child in `versions`. `versions` is itself a set of versions, represented as an object with version keys and `true` values, and the return value is represented the same way.
220-
221-
# json_instance.parse_patch(patch)
222-
Takes a patch in the form `{range, content}`, and returns an object of the form `{path: [...], [slice: [...]], [delete: true], content}`; basically calling `parse_json_path` on `patch.range`, and adding `patch.content` along for the ride.
223-
224-
# json_instance.parse_json_path(json_path)
225-
Parses the string `json_path` into an object like: `{path: [...], [slice: [...]], [delete: true]}`.
226-
* `a.b[3]` --> `{path: ['a', 'b', 3]}`
227-
* `a.b[3:5]` --> `{path: ['a', 'b'], slice: [3, 5]}`
228-
* `delete a.b` --> `{path: ['a', 'b'], delete: true}`
229-
230-
``` js
231-
console.log(json_instance.parse_json_path('a.b.c'))
232-
```
233-
234-
---
235-
236-
# sequence.create_node(version, elems, [end_cap, sort_key])
237-
Creates a node for a `sequence` sequence CRDT with the given properties. The resulting node will look like this:
238-
239-
``` js
240-
{
241-
version, // globally unique string
242-
elems, // a string or array representing actual data elements of the underlying sequence
243-
end_cap, // this is useful for dealing with replace operations
244-
sort_key, // version to pretend this is for the purposes of sorting
245-
deleted_by : {}, // if this node gets deleted, we'll mark it here
246-
nexts : [], // array of nodes following this one
247-
next : null // final node following this one (after all the nexts)
248-
}
249-
250-
var sequence_node = sequence.create_node('alice1', 'hello')
251-
```
252-
253-
# sequence.generate_braid(root_node, version, is_anc)
254-
Reconstructs an array of splice-information which can be passed to `sequence.add_version` in order to add `version` to another `sequence` instance — the returned array looks like: `[[insert_pos, delete_count, insert_elems, sort_key], ...]`. `is_anc` is a function which accepts a version string and returns `true` if and only if the given version is an ancestor of `version` (i.e. a version which the author of `version` knew about when they created that version).
255-
256-
``` js
257-
var root_node = sequence.create_node('alice1', 'hello')
258-
console.log(sequence.generate_braid(root_node, 'alice1', x => false)) // outputs [0, 0, "hello"]
259-
```
260-
261-
# sequence.apply_bubbles(root_node, to_bubble)
262-
This method helps prune away meta data and compress stuff when we have determined that certain versions can be renamed to other versions — these renamings are expressed in `to_bubble`, where keys are versions and values are "bubbles", each bubble represented with an array of two elements, the first element is the "bottom" of the bubble, and the second element is the "top" of the bubble. We will rename the given version to the "bottom" of the bubble. "bottom" and "top" make sense when viewing versions in a directed graph with the oldest version(s) at the top, and each version pointing up to it's parents. A bubble is then a set of versions where the only arrows leaving the bubble upward are from the "top" version, and the only arrows leaving the bubble downward are from the "bottom" version. This method effectively combines all the versions in a bubble into a single version, and may allow the data structure to be compressed, since now we don't need to distinguish between certain versions that we used to need to.
263-
264-
``` js
265-
sequence.apply_bubbles(root_node, {alice4: ['bob5', 'alice4'], bob5: ['bob5', 'alice4']})
266-
```
267-
268-
# sequence.get(root_node, i, is_anc)
269-
Returns the element at the `i`th position (0-based) in the `sequence` rooted at `root_node`, when only considering versions which result in `true` when passed to `is_anc`.
270-
271-
``` js
272-
var x = sequence.get(root_node, 2, {alice1: true})
273-
```
274-
275-
# sequence.set(root_node, i, v, is_anc)
276-
Sets the element at the `i`th position (0-based) in the `sequence` rooted at `root_node` to the value `v`, when only considering versions which result in `true` when passed to `is_anc`.
277-
278-
``` js
279-
sequence.set(root_node, 2, 'x', {alice1: true})
280-
```
281-
282-
# sequence.length(root_node, is_anc)
283-
Returns the length of the `sequence` rooted at `root_node`, when only considering versions which result in `true` when passed to `is_anc`.
284-
285-
``` js
286-
console.log(sequence.length(root_node, {alice1: true}))
287-
```
288-
289-
# sequence.break_node(node, break_position, end_cap, new_next)
290-
This method breaks apart a `sequence` node into two nodes, each representing a subsequence of the sequence represented by the original node; the `node` parameter is modified into the first node, and the second node is returned. The first node represents the elements of the sequence before `break_position`, and the second node represents the rest of the elements. If `end_cap` is truthy, then the first node will have `end_cap` set — this is generally done if the elements in the second node are being replaced. This method will add `new_next` to the first node's `nexts` array.
291-
292-
``` js
293-
var node = sequence.create_node('alice1', 'hello')
294-
// node node.elems == 'hello'
295-
296-
var second = sequence.break_node(node, 2)
297-
// now node.elems == 'he',
298-
// and second.elems == 'llo'
299-
```
300-
301-
# sequence.add_version(root_node, version, splices, [is_anc])
302-
This is the main method of `sequence`, used to modify the sequence. The modification must be given a unique `version` string, and the modification itself is represented as an array of `splices`, where each splice looks like this: `[position, num_elements_to_delete, elements_to_insert, optional_sort_key]`. Note that all positions are relative to the original sequence, before any splices have been applied. Positions are counted by only considering nodes with versions which result in `true` when passed to `is_anc` (and are not `deleted_by` any versions which return `true` when passed to `is_anc`).
303-
304-
``` js
305-
var node = sequence.create_node('alice1', 'hello')
306-
sequence.add_version(node, 'alice2', [[5, 0, ' world']], null, v => v == 'alice1')
307-
```
308-
309-
# sequence.traverse(root_node, is_anc, callback, [view_deleted, tail_callback])
310-
Traverses the subset of nodes in the tree rooted at `root_node` whos versions return `true` when passed to `is_anc`. For each node, `callback` is called with these parameters: `node, offset, has_nexts, prev, version, deleted`, where `node` is the current node being traversed; `offset` says how many elements we have passed so far getting here; `has_nexts` is true if some of this node's `nexts` will be traversed according to `is_anc`; `prev` is a pointer to the node whos `next` points to this one, or `null` if this is the root node; `version` is the version of this node, or this node's `prev` if our version is `null`, or that node's `prev` if it is also `null`, etc; `deleted` is true if this node is deleted according to `is_anc` (usually we skip deleted nodes when traversing, but we'll include them if `view_deleted` is `true`). `tail_callback` is an optional callback that will get called with a single parameter `node` after all of that node's children `nexts` and `next` have been traversed.
311-
312-
``` js
313-
sequence.traverse(node, () => true, node => process.stdout.write(node.elems))
314-
```
18+
[Click here to see more details, and the API side-by-side with the source code.]([Antimatter](https://braid.org/antimatter)

0 commit comments

Comments
 (0)