-
Notifications
You must be signed in to change notification settings - Fork 262
/
text.h
424 lines (411 loc) · 11.9 KB
/
text.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#ifndef TEXT_H
#define TEXT_H
#include <stdbool.h>
#include <stdint.h>
#include <time.h>
#include <unistd.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
/** A mark. */
typedef uintptr_t Mark;
/** An invalid mark, lookup of which will yield ``EPOS``. */
#define EMARK ((Mark)0)
/** An invalid position. */
#define EPOS ((size_t)-1)
/** A range. */
typedef struct {
size_t start; /**< Absolute byte position. */
size_t end; /**< Absolute byte position. */
} Filerange;
/**
* Text object storing the buffer content being edited.
*/
typedef struct Text Text;
typedef struct Piece Piece;
typedef struct TextSave TextSave;
/** A contiguous part of the text. */
typedef struct {
const char *data; /**< Content, might not be NUL-terminated. */
size_t len; /**< Length in bytes. */
} TextString;
/**
* Iterator used to navigate the buffer content.
*
* Captures the position within a Piece.
*
* @rst
* .. warning:: Any change to the Text will invalidate the iterator state.
* .. note:: Should be treated as an opaque type.
* @endrst
*/
typedef struct {
const char *start; /**< Start of the piece data. */
const char *end; /**< End of piece data. Addressable range is ``[start, end)``. */
const char *text; /**< Current position within piece. Invariant ``start <= text < end`` holds. */
const Piece *piece; /**< Internal state of current piece. */
size_t pos; /**< Absolute position in bytes from start of buffer. */
} Iterator;
/**
* @defgroup load
* @{
*/
/**
* Method used to load existing file content.
*/
enum TextLoadMethod {
/** Automatically chose best option. */
TEXT_LOAD_AUTO,
/**
* Read file content and copy it to an in-memory buffer.
* Subsequent changes to the underlying file will have no
* effect on this text instance.
*
* @rst
* .. note:: Load time is linear in the file size.
* @endrst
*/
TEXT_LOAD_READ,
/**
* Memory map the file from disk. Use file system / virtual memory
* subsystem as a caching layer.
* @rst
* .. note:: Load time is (almost) independent of the file size.
* .. warning:: Inplace modifications of the underlying file
* will be reflected in the current text content.
* In particular, truncation will raise ``SIGBUS``
* and result in data loss.
* @endrst
*/
TEXT_LOAD_MMAP,
};
/**
* Create a text instance populated with the given file content.
*
* @rst
* .. note:: Equivalent to ``text_load_method(filename, TEXT_LOAD_AUTO)``.
* @endrst
*/
Text *text_load(const char *filename);
Text *text_loadat(int dirfd, const char *filename);
/**
* Create a text instance populated with the given file content.
*
* @param filename The name of the file to load, if ``NULL`` an empty text is created.
* @param method How the file content should be loaded.
* @return The new Text object or ``NULL`` in case of an error.
* @rst
* .. note:: When attempting to load a non-regular file, ``errno`` will be set to:
*
* - ``EISDIR`` for a directory.
* - ``ENOTSUP`` otherwise.
* @endrst
*/
Text *text_load_method(const char *filename, enum TextLoadMethod);
Text *text_loadat_method(int dirfd, const char *filename, enum TextLoadMethod);
/** Release all resources associated with this text instance. */
void text_free(Text*);
/**
* @}
* @defgroup state
* @{
*/
/** Return the size in bytes of the whole text. */
size_t text_size(const Text*);
/**
* Get file information at time of load or last save, whichever happened more
* recently.
* @rst
* .. note:: If an empty text instance was created using ``text_load(NULL)``
* and it has not yet been saved, an all zero ``struct stat`` will
* be returned.
* @endrst
* @return See ``stat(2)`` for details.
*/
struct stat text_stat(const Text*);
/** Query whether the text contains any unsaved modifications. */
bool text_modified(const Text*);
/**
* @}
* @defgroup modify
* @{
*/
/**
* Insert data at the given byte position.
*
* @param pos The absolute byte position.
* @param data The data to insert.
* @param len The length of the data in bytes.
* @return Whether the insertion succeeded.
*/
bool text_insert(Text*, size_t pos, const char *data, size_t len);
/**
* Delete data at given byte position.
*
* @param pos The absolute byte position.
* @param len The number of bytes to delete, starting from ``pos``.
* @return Whether the deletion succeeded.
*/
bool text_delete(Text*, size_t pos, size_t len);
bool text_delete_range(Text*, const Filerange*);
bool text_printf(Text*, size_t pos, const char *format, ...) __attribute__((format(printf, 3, 4)));
bool text_appendf(Text*, const char *format, ...) __attribute__((format(printf, 2, 3)));
/**
* @}
* @defgroup history
* @{
*/
/**
* Create a text snapshot, that is a vertex in the history graph.
*/
bool text_snapshot(Text*);
/**
* Revert to previous snapshot along the main branch.
* @rst
* .. note:: Takes an implicit snapshot.
* @endrst
* @return The position of the first change or ``EPOS``, if already at the
* oldest state i.e. there was nothing to undo.
*/
size_t text_undo(Text*);
/**
* Reapply an older change along the main branch.
* @rst
* .. note:: Takes an implicit snapshot.
* @endrst
* @return The position of the first change or ``EPOS``, if already at the
* newest state i.e. there was nothing to redo.
*/
size_t text_redo(Text*);
size_t text_earlier(Text*);
size_t text_later(Text*);
/**
* Restore the text to the state closest to the time given
*/
size_t text_restore(Text*, time_t);
/**
* Get creation time of current state.
* @rst
* .. note:: TODO: This is currently not the same as the time of the last snapshot.
* @endrst
*/
time_t text_state(const Text*);
/**
* @}
* @defgroup lines
* @{
*/
size_t text_pos_by_lineno(Text*, size_t lineno);
size_t text_lineno_by_pos(Text*, size_t pos);
/**
* @}
* @defgroup access
* @{
*/
/**
* Get byte stored at ``pos``.
* @param pos The absolute position.
* @param byte Destination address to store the byte.
* @return Whether ``pos`` was valid and ``byte`` updated accordingly.
* @rst
* .. note:: Unlike :c:func:`text_iterator_byte_get()` this function does not
* return an artificial NUL byte at EOF.
* @endrst
*/
bool text_byte_get(const Text*, size_t pos, char *byte);
/**
* Store at most ``len`` bytes starting from ``pos`` into ``buf``.
* @param pos The absolute starting position.
* @param len The length in bytes.
* @param buf The destination buffer.
* @return The number of bytes (``<= len``) stored at ``buf``.
* @rst
* .. warning:: ``buf`` will not be NUL terminated.
* @endrst
*/
size_t text_bytes_get(const Text*, size_t pos, size_t len, char *buf);
/**
* Fetch text range into newly allocate memory region.
* @param pos The absolute starting position.
* @param len The length in bytes.
* @return A contiguous NUL terminated buffer holding the requested range, or
* ``NULL`` in error case.
* @rst
* .. warning:: The returned pointer must be freed by the caller.
* @endrst
*/
char *text_bytes_alloc0(const Text*, size_t pos, size_t len);
/**
* @}
* @defgroup iterator
* @{
*/
Iterator text_iterator_get(const Text*, size_t pos);
bool text_iterator_init(const Text*, Iterator*, size_t pos);
const Text *text_iterator_text(const Iterator*);
bool text_iterator_valid(const Iterator*);
bool text_iterator_has_next(const Iterator*);
bool text_iterator_has_prev(const Iterator*);
bool text_iterator_next(Iterator*);
bool text_iterator_prev(Iterator*);
/**
* @}
* @defgroup iterator_byte
* @{
*/
bool text_iterator_byte_get(const Iterator*, char *b);
bool text_iterator_byte_prev(Iterator*, char *b);
bool text_iterator_byte_next(Iterator*, char *b);
bool text_iterator_byte_find_prev(Iterator*, char b);
bool text_iterator_byte_find_next(Iterator*, char b);
/**
* @}
* @defgroup iterator_code
* @{
*/
bool text_iterator_codepoint_next(Iterator *it, char *c);
bool text_iterator_codepoint_prev(Iterator *it, char *c);
/**
* @}
* @defgroup iterator_char
* @{
*/
bool text_iterator_char_next(Iterator*, char *c);
bool text_iterator_char_prev(Iterator*, char *c);
/**
* @}
* @defgroup mark
* @{
*/
/**
* Set a mark.
* @rst
* .. note:: Setting a mark to ``text_size`` will always return the
* current text size upon lookup.
* @endrst
* @param pos The position at which to store the mark.
* @return The mark or ``EMARK`` if an invalid position was given.
*/
Mark text_mark_set(Text*, size_t pos);
/**
* Lookup a mark.
* @param mark The mark to look up.
* @return The byte position or ``EPOS`` for an invalid mark.
*/
size_t text_mark_get(const Text*, Mark);
/**
* @}
* @defgroup save
* @{
*/
/**
* Method used to save the text.
*/
enum TextSaveMethod {
/** Automatically chose best option. */
TEXT_SAVE_AUTO,
/**
* Save file atomically using ``rename(2)``.
*
* Creates a temporary file, restores all important meta data,
* before moving it atomically to its final (possibly already
* existing) destination using ``rename(2)``. For new files,
* permissions are set to ``0666 & ~umask``.
*
* @rst
* .. warning:: This approach does not work if:
*
* - The file is a symbolic link.
* - The file is a hard link.
* - File ownership can not be preserved.
* - File group can not be preserved.
* - Directory permissions do not allow creation of a new file.
* - POSIX ACL can not be preserved (if enabled).
* - SELinux security context can not be preserved (if enabled).
* @endrst
*/
TEXT_SAVE_ATOMIC,
/**
* Overwrite file in place.
* @rst
* .. warning:: I/O failure might cause data loss.
* @endrst
*/
TEXT_SAVE_INPLACE,
};
/**
* Save the whole text to the given file name.
*
* @rst
* .. note:: Equivalent to ``text_save_method(filename, TEXT_SAVE_AUTO)``.
* @endrst
*/
bool text_save(Text*, const char *filename);
bool text_saveat(Text*, int dirfd, const char *filename);
/**
* Save the whole text to the given file name, using the specified method.
*/
bool text_save_method(Text*, const char *filename, enum TextSaveMethod);
bool text_saveat_method(Text*, int dirfd, const char *filename, enum TextSaveMethod);
/**
* Setup a sequence of write operations.
*
* The returned ``TextSave`` pointer can be used to write multiple, possibly
* non-contiguous, file ranges.
* @rst
* .. warning:: For every call to ``text_save_begin`` there must be exactly
* one matching call to either ``text_save_commit`` or
* ``text_save_cancel`` to release the underlying resources.
* @endrst
*/
TextSave *text_save_begin(Text*, int dirfd, const char *filename, enum TextSaveMethod);
/**
* Write file range.
* @return The number of bytes written or ``-1`` in case of an error.
*/
ssize_t text_save_write_range(TextSave*, const Filerange*);
/**
* Commit changes to disk.
* @return Whether changes have been saved.
* @rst
* .. note:: Releases the underlying resources and frees the given ``TextSave``
* pointer which must no longer be used.
* @endrst
*/
bool text_save_commit(TextSave*);
/**
* Abort a save operation.
* @rst
* .. note:: Does not guarantee to undo the previous writes (they might have been
* performed in-place). However, it releases the underlying resources and
* frees the given ``TextSave`` pointer which must no longer be used.
* @endrst
*/
void text_save_cancel(TextSave*);
/**
* Write whole text content to file descriptor.
* @return The number of bytes written or ``-1`` in case of an error.
*/
ssize_t text_write(const Text*, int fd);
/**
* Write file range to file descriptor.
* @return The number of bytes written or ``-1`` in case of an error.
*/
ssize_t text_write_range(const Text*, const Filerange*, int fd);
/**
* @}
* @defgroup misc
* @{
*/
/**
* Check whether ``ptr`` is part of a memory mapped region associated with
* this text instance.
*/
bool text_mmaped(const Text*, const char *ptr);
/**
* Write complete buffer to file descriptor.
* @return The number of bytes written or ``-1`` in case of an error.
*/
ssize_t write_all(int fd, const char *buf, size_t count);
/** @} */
#endif