HOME

TheInfoList



OR:

In
computing Computing is any goal-oriented activity requiring, benefiting from, or creating computer, computing machinery. It includes the study and experimentation of algorithmic processes, and the development of both computer hardware, hardware and softw ...
, a piece table is a
data structure In computer science, a data structure is a data organization and storage format that is usually chosen for Efficiency, efficient Data access, access to data. More precisely, a data structure is a collection of data values, the relationships amo ...
typically used to represent a text document while it is edited in a
text editor A text editor is a type of computer program that edits plain text. An example of such program is "notepad" software (e.g. Windows Notepad). Text editors are provided with operating systems and software development packages, and can be used to c ...
. Initially a reference (or 'span') to the whole of the original file is created, which represents the as yet unchanged file. Subsequent inserts and deletes replace a span by combinations of one, two, or three references to sections of either the original document or to a buffer holding inserted text. Typically the text of the original document is held in one
immutable In object-oriented (OO) and functional programming, an immutable object (unchangeable object) is an object whose state cannot be modified after it is created.Goetz et al. ''Java Concurrency in Practice''. Addison Wesley Professional, 2006, Secti ...
block, and the text of each subsequent insert is stored in new immutable blocks. Because even deleted text is still included in the piece table, this makes multi-level or unlimited
undo Undo is an interaction technique which is implemented in many computer programs. It erases the last change done to the document, reverting it to an older state. In some more advanced programs, such as graphic processing, undo will negate the las ...
easier to implement with a piece table than with alternative data structures such as a gap buffer. This data structure was invented by
J Strother Moore J Strother Moore (his first name is the alphabetic character "J" – not an abbreviated "J.") is an American computer scientist. He is a co-developer of the Boyer–Moore string-search algorithm, Boyer–Moore majority vote algorithm, and the Boy ...
. David Lu
"What's been wrought using the Piece Table?"

discussion


Description

For this description, we use
buffer Buffer may refer to: Science * Buffer gas, an inert or nonflammable gas * Buffer solution, a solution used to prevent changes in pH * Lysis buffer, in cell biology * Metal ion buffer * Mineral redox buffer, in geology Technology and engineeri ...
as the immutable block to hold the contents. A piece table consists of three columns: * Which buffer * Start index in the buffer * Length in the buffer In addition to the table, two buffers are used to handle edits: * "''Original buffer''": A buffer to the original text document. This buffer is read-only. * "''Add buffer''": A buffer to a temporary file. This buffer is append-only.


Operations


Index

''Definition:'' Index(i): return the character at position ''i''
To retrieve the ''i''-th character, the appropriate entry in a piece table is read.


Example

Given the following buffers and piece table: To access the ''i''-th character, the appropriate entry in the piece table is looked up. For instance, to get the value of Index(15), the 3rd entry of piece table is retrieved. This is because the 3rd entry describes the characters from index 11 to 16 (the first entry describes characters in index 0 to 5, the next one is 6 to 10). The piece table entry instructs the program to look for the characters in the "''add file''" buffer, starting at index 17 in that buffer. The relative index in that entry is 15-11 = 4, which is added to the start position of the entry in the buffer to obtain index of the letter: 4+17 = 21. The value of Index(15) is the 21st character of the "add file" buffer, which is the character "o". For the buffers and piece table given above, the following text is shown: Lorem ipsum dolor sit amet


Insert

Inserting characters to the text consists of: * Appending characters to the "add file" buffer, and * Updating the entry in piece table (breaking an entry into two or three)


Delete

Single character deletion can be one of two possible conditions: * The deletion is at the start or end of a piece entry, in which case the appropriate entry in piece table is modified. * The deletion is in the middle of a piece entry, in which case the entry is split then one of the successor entries is modified as above.


Usage

Several
text editor A text editor is a type of computer program that edits plain text. An example of such program is "notepad" software (e.g. Windows Notepad). Text editors are provided with operating systems and software development packages, and can be used to c ...
s use an in-RAM piece table internally, including
Bravo Bravo(s) or The Bravo(s) may refer to: Arts and entertainment Music Groups and labels * Bravo (band), a Russian rock band * Bravo (Spanish group), represented Spain at Eurovision 1984 * Bravo Music, an American concert band music publishing compa ...
, Abiword,James Brown
"Piece Chains: Design & Implementation of a Win32 Text Editor"
Atom Atoms are the basic particles of the chemical elements. An atom consists of a atomic nucleus, nucleus of protons and generally neutrons, surrounded by an electromagnetically bound swarm of electrons. The chemical elements are distinguished fr ...
and
Visual Studio Code Visual Studio Code, commonly referred to as VS Code, is an integrated development environment developed by Microsoft for Windows, Linux, macOS and web browsers. Features include support for debugging, syntax highlighting, intelligent code comp ...
. The "fast save" feature in some versions of Microsoft Word uses a piece table for the on-disk file format. The on-disk representation of text files in the Oberon System uses a piece chain technique that allows pieces of one document to point to text stored in some other document, similar to
transclusion In computer science, transclusion is the inclusion of part or all of an electronic document into one or more other documents by reference via hypertext. Transclusion is usually performed when the referencing document is displayed, and is norma ...
. Niklaus Wirth, Jürg Gutknecht
"Project Oberon: The Design of an Operating System and Compiler"
. 2005. p. 90.


See also

* Rope (computer science) * Gap buffer, a data structure commonly used in text editors that allows efficient insertion and deletion operations clustered near the same location *
Enfilade Enfilade and defilade are concepts in military tactics used to describe a military formation's exposure to enemy fire. A formation or position is "in enfilade" if weapon fire can be directed along its longest axis. A unit or position is "in de ...
, the Model-T Enfilade is a piece table with a tree-based implementation.


References

{{reflist String data structures