The Plaintext OT Type, with proper unicode positions
This OT type can be used to edit plaintext documents, like sourcecode or
markdown.
For documentation on the API spec this type implements, see ottypes/docs.
Usage
# npm add ot-text-unicode
then use it like any other OT type:
const {type} = require('ot-text-unicode')
type.apply('hi there', [3, {d:5}, '🤖👻💃'])
Using a rope with text-ot
This library has also been extended to allow you to specify your own fancy rope type, and apply operations efficiently. Neato 🌯! To use it, you'll need to implement your own rope type:
const myRopeFns = {
create(str) { return new Rope(str) },
toString(rope) { return rope.toString() },
builder(rope) {
let pos = 0
return {
skip(n) { pos += n },
append(s) {
rope.insert(pos, s)
pos += unicodeLength(s)
},
del(n) {
rope.del(pos, n)
},
build() {
return rope
},
}
}
}
Then use it:
const type = require('ot-text-unicode').makeType(myRopeFns)
let doc = type.create('hi there')
doc = type.apply(doc, [3, {d:5}, '🤖👻💃'])
Transforming cursor positions
If you have another user's cursor position, you can transform that cursor using type.transformPosition
or type.transformSelection
:
const {type} = require('ot-text-unicode')
let doc = '...'
let cursors = [{user: 'jane', pos: 5}, {user: 'fred', pos: 100}]
function onRemoteOp(op) {
for (let user of cursors) {
user.pos = type.transformPosition(user.pos, doc, op)
}
doc = type.apply(doc, op)
}
Spec
The plaintext OT type thinks of the document as a giant unicode string, and
edits index unicode characters in the string. This is different from most text
editors, which break up a document into an array of lines. For small documents
on modern computers, the conversion isn't particularly expensive. However, if
you have giant documents you should be using a rope library like
jumprope or
librope.
Each operation describes a traversal over the document. The traveral can edit
the document as it goes.
For example, given the document:
"ABCDEFG"
You could apply the operation
[1, ' hi ', 2, {d:3}]
This operation will skip the first character (1), insert ' hi ', skip 2 more
characters then delete the next 3 characters. The result would be:
"A hi BCG"
Operations
Operations are lists of components, which move along the document. Each
component is one of
- Number N: Skip forward N characters in the document
- "str": Insert "str" at the current position in the document
- {d:N}: Delete N characters at the current position in the document
The operation does not have to skip the last characters in the document.
Selections
The text type also has methods for manipulating selections.
Selection ranges are either a single number (the cursor position) or a pair of
[anchor, focus] numbers (aka [start, end]) of the selection range. Be aware
that end can be before start.
Other implementations
I have compatible implementations of this OT type in:
- C. This implementation is insanely fast (~20M transforms / second on my old laptop, not that that will ever be a bottleneck.)
- Rust. This code is much less mature, but far more concise and beautiful than the C or JS implementations.
This is the 4th iteration of ShareJS's plaintext type.
The first
iteration
was similar, except it is invertable. Invertability is nice, but I want to
eventually build an arbitrary P2P OT system, and in a p2p setting
invertibillity becomes impractical to achieve. I don't want systems to depend
on it.
The second iteration made each component specify a location and an edit there.
Operations were lists of these edits. Because the components were not sorted,
if you transform two big operations by one another it requires M*N
time to transform. The components could be sorted to fix this, but if you're
going to do that you may as well just make them sorted by design - which is
what the current text implementation does. I thought the individual edits style
was better because I expected it to be simpler, but when I implemented it I
found the implementation of each method was almost identical in size.
The 3rd iteration is 99% identical to this
codebase, except it used UTF16 word offsets instead of unicode codepoints.
This implementation considers emoji 🤸🏼♀️ as 1 character. ottypes/text
considers that as 2 characters instead, because it takes a pair of UTF16
values to store ("🤓".length === 2
in javascript). This makes it awkward to
build cross-platform OT systems spanning platforms which don't accept use JS's
awkward unicode encoding.
License
All code contributed to this repository is licensed under the standard MIT license:
Copyright 2011 ottypes library contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following condition:
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.