Pinot.jl
Pinot is a Julia package to perform Operational Transformation. That is, it offers tools to describe and reconcile plain-text edits to implement collaborative text editing features. Pinot is based on the Delta format to describe documents and edits.
A Delta is a series of edits, which can be one of the following three sorts:
retain
insert
delete
Describing edits
Pinot.Delta.retain(0x00000004)
Pinot.Delta.delete(0x00000003)
Pinot.Delta.insert("ok")
retain(l::Integer) -> Range
Retains l
utf16 codepoints in the starting document.
retain(s::String) -> Range
Creates a range that retains the same length as s
.
"Hello"
insert(s::String) -> Range
Insertions of string s
.
"Hello World!"
delete(l::Integer) -> Range
Deletes l
utf16 codepoints from the starting document.
delete(s::String) -> Range
Creates a range that deletes the same length as s
.
""
Warning
The length of range represents the number of utf16 codepoints. This is because the Delta format is meant to interoperate with Javascript which uses UTF16 encoding for its string encoding.
Helpers to work with UTF-16 codepoint indices on valid UTF-8 backed strings.
Notice the difference in the following example when using the ncodeunits(::Char)
base function which returns the number of UTF-8 codeunits. Using Pinot.Unicode.utf16_ncodeunits(::String)
is required instead to have the right delta length.
"🍕 i🍍s great"
"🍕🍍 is great"
Throughout this section, we have been using the Pinot.apply(::String, ::Vector{Range})::String
function which applies a set of edits to a string.
apply(text::String, ranges::Vector{Range}) -> String
Applies the changes to a text.