-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer.c
538 lines (439 loc) · 9.35 KB
/
buffer.c
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#include "pos.h"
#include "region.h"
#include "list.h"
#include "buffer.h"
#include "mem.h"
#include "yank.h"
#include "macros.h"
#include "ncurses.h"
#include "str.h"
#include "retain.h"
#include "buffers.h"
void buffer_free(buffer_t *b)
{
list_free(b->head);
free(b->fname);
free(b);
}
buffer_t *buffer_new()
{
buffer_t *b = umalloc(sizeof *b);
retain_init(b);
b->head = list_new(NULL);
b->eol = true; /* default to nice eol */
return b;
}
void buffer_replace_list(buffer_t *b, list_t *l)
{
list_free(b->head);
b->head = l;
}
static int buffer_replace_file(buffer_t *b, FILE *f)
{
list_t *l = list_new_file(f, &b->eol);
if(!l)
return 0;
buffer_replace_list(b, l);
b->mtime = time(NULL);
return 1;
}
void buffer_replace_fname(
buffer_t *const b, const char *fname,
const char **const err)
{
*err = NULL;
FILE *f = fopen(fname, "r");
if(!f){
err:
*err = strerror(errno);
return;
}
if(!buffer_replace_file(b, f)){
fclose(f);
goto err;
}
fclose(f);
buffer_set_fname(b, fname);
}
buffer_t *buffer_new_file_nofind(FILE *f)
{
buffer_t *b = buffer_new();
if(buffer_replace_file(b, f))
return b;
buffer_free(b);
return NULL;
}
void buffer_new_fname(
buffer_t **pb, const char *fname,
const char **const err)
{
*err = NULL;
/* look for an existing buffer first */
buffer_t *b = buffers_find(fname);
if(b){
*pb = retain(b);
return;
}
FILE *f = fopen(fname, "r");
if(!f){
got_err:
*err = strerror(errno);
b = buffer_new();
b->modified = false; /* editing a non-existant file, etc */
goto fin;
}
b = buffer_new_file_nofind(f);
fclose(f);
if(!b){
if(errno == EISDIR){
DIR *d = opendir(fname);
if(!d)
goto got_err;
list_t *l = list_from_dir(d);
const int save_errno = errno;
closedir(d);
errno = save_errno;
if(!l)
goto got_err;
b = buffer_new();
buffer_replace_list(b, l);
}else{
goto got_err;
}
}
fin:
buffer_set_fname(b, fname);
*pb = b;
}
int buffer_opencount(const buffer_t *b)
{
return b->retains.rcount;
}
int buffer_write_file(buffer_t *b, int n, FILE *f, bool eol)
{
int r = list_write_file(b->head, n, f, eol);
b->mtime = time(NULL);
b->modified = false;
return r;
}
void buffer_set_fname(buffer_t *b, const char *s)
{
if(b->fname != s){
free(b->fname);
b->fname = ustrdup(s);
}
}
const char *buffer_fname(const buffer_t *b)
{
return b->fname;
}
static list_t *buffer_last_indent_line(buffer_t *buf, int y)
{
list_t *l = list_seek(buf->head, y, false);
if(!l)
return NULL;
/* scan backwards until we hit a non-empty line */
while(l->prev){
l = l->prev;
if(!isallspace(l->line, l->len_line))
return l;
}
return NULL;
}
static int list_count_indent(list_t *l)
{
int indent = 0;
/* count indent */
for(unsigned i = 0; i < l->len_line; i++, indent++)
if(!isspace(l->line[i]))
break;
/* if it ends with a '{', increase indent */
if(l->len_line > 0 && l->line[l->len_line - 1] == '{')
indent++;
return indent;
}
void buffer_smartindent(buffer_t *buf, int *const x, int y)
{
list_t *l = buffer_last_indent_line(buf, y);
if(!l){
*x = 0;
return;
}
int indent = list_count_indent(l);
/* don't insert space, just move */
*x = indent;
}
static void buffer_unindent_empty(buffer_t *buf, int *const x, int y)
{
if(y == 0)
return;
list_t *l = buffer_last_indent_line(buf, y);
if(!l)
return;
if(!l->line || !isallspace(l->line, *x))
return;
int indent = list_count_indent(l);
if(indent == 0)
return;
*x = indent - 1;
}
void buffer_inschar_at(buffer_t *buf, char ch, int *x, int *y)
{
bool indent = false;
bool inschar = true;
switch(ch){
case CTRL_AND('?'):
case CTRL_AND('H'):
case 127:
if(*x > 0)
buffer_delchar(buf, x, y);
inschar = false;
break;
case '}':
/* if we've just started a new line, this unindents */
buffer_unindent_empty(buf, x, *y);
indent = false;
break;
case '\n':
indent = true;
}
if(inschar){
list_inschar(buf->head, x, y, ch, /*autogap*/0);
if(indent)
buffer_smartindent(buf, x, *y);
}
buf->modified = true;
}
void buffer_inscolchar(
buffer_t *buf, char ch, unsigned ncols,
point_t *const ui_pos)
{
for(int i = ncols - 1; i >= 0; i--){
int y = ui_pos->y + i;
int x = ui_pos->x;
int *px = &x;
int *py = &y;
/* update x and y in the last case */
if(i == 0){
px = &ui_pos->x;
py = &ui_pos->y;
}
buffer_inschar_at(buf, ch, px, py);
}
}
void buffer_delchar(buffer_t *buf, int *x, int *y)
{
list_delchar(buf->head, x, y);
buf->modified = true;
}
static
void buffer_delregion_f(buffer_t *buf, const region_t *region, point_t *out)
{
list_t *del = list_delregion(&buf->head, region);
if(del){
release(yank_push(yank_new(del, region->type)), yank_free);
buf->modified = true;
}
}
struct buffer_action buffer_delregion = {
.fn = buffer_delregion_f
};
static
void buffer_yankregion_f(buffer_t *buf, const region_t *region, point_t *out)
{
list_t *yanked = list_delregion(&buf->head, region);
if(yanked){
yank *yank = yank_new(yanked, region->type);
yank_push(yank);
point_t ui_pos = region->begin;
buffer_insyank(buf, yank, &ui_pos,
/*prepend:*/true, /*modify:*/false);
release(yank, yank_free);
}
/* restore ui pos (set in buffer_insyank) */
*out = region->begin;
}
struct buffer_action buffer_yankregion = {
.fn = buffer_yankregion_f
};
void buffer_insyank(
buffer_t *buf, const yank *y,
point_t *ui_pos,
bool prepend, bool modify)
{
yank_put_in_list(y,
&buf->head,
prepend,
&ui_pos->y,
&ui_pos->x);
if(modify)
buf->modified = true;
}
static
void buffer_joinregion_f(
buffer_t *buf,
const region_t *region,
point_t *out,
const bool space)
{
/* could use 'how' here - columns and lines only make sense */
list_t *l = list_seek(buf->head, region->begin.y, 0);
const int mid = l ? l->len_line : 0;
list_joinregion(&buf->head, region, space);
if(l)
out->x = mid;
buf->modified = true;
}
static
void buffer_joinregion_space_f(buffer_t *buf, const region_t *region, point_t *out)
{
buffer_joinregion_f(buf, region, out, true);
}
static
void buffer_joinregion_nospace_f(buffer_t *buf, const region_t *region, point_t *out)
{
buffer_joinregion_f(buf, region, out, false);
}
struct buffer_action buffer_joinregion_space = {
.fn = buffer_joinregion_space_f,
.always_linewise = true
};
struct buffer_action buffer_joinregion_nospace = {
.fn = buffer_joinregion_nospace_f,
.always_linewise = true
};
static
void buffer_indent2(
buffer_t *buf, const region_t *region,
point_t *out, int dir)
{
/* region is sorted by y */
const int min_x = MIN(region->begin.x, region->end.x);
list_t *pos = dir < 0
? list_seek(buf->head, region->begin.y, 0)
: NULL;
for(int y = region->begin.y; y <= region->end.y; y++){
int x = 0;
switch(region->type){
case REGION_CHAR:
case REGION_LINE:
break;
case REGION_COL:
/* indent from the first col onwards */
x = min_x;
}
if(dir > 0){
buffer_inschar_at(buf, '\t', &x, &y);
}else{
if(pos){
if(pos->len_line > 0 && pos->line[0] == '\t')
memmove(pos->line, pos->line + 1, --pos->len_line);
pos = pos->next;
}else{
break;
}
}
}
buf->modified = true;
}
int buffer_filter(
buffer_t *buf, const region_t *reg,
const char *cmd)
{
buf->modified = true;
return list_filter(&buf->head, reg, cmd);
}
static
void buffer_indent_f(buffer_t *buf, const region_t *region, point_t *out)
{
buffer_indent2(buf, region, out, 1);
buf->modified = true;
}
struct buffer_action buffer_indent = {
.fn = buffer_indent_f,
.always_linewise = true
};
static
void buffer_unindent_f(buffer_t *buf, const region_t *region, point_t *out)
{
buffer_indent2(buf, region, out, -1);
buf->modified = true;
}
struct buffer_action buffer_unindent = {
.fn = buffer_unindent_f,
.always_linewise = true
};
static int ctoggle(int c)
{
return islower(c) ? toupper(c) : tolower(c);
}
static bool buffer_case_cb(char *s, list_t *l, int y, void *ctx)
{
*s = (*(int (**)(int))ctx)(*s);
return true;
}
void buffer_caseregion(
buffer_t *buf,
enum case_tog tog_type,
const region_t *r)
{
int (*f)(int) = NULL;
switch(tog_type){
case CASE_TOGGLE: f = ctoggle; break;
case CASE_UPPER: f = toupper; break;
case CASE_LOWER: f = tolower; break;
}
assert(f);
list_iter_region(buf->head, r, 0, buffer_case_cb, &f);
buf->modified = true;
}
void buffer_insline(buffer_t *buf, int dir, point_t *ui_pos)
{
list_insline(&buf->head, &ui_pos->x, &ui_pos->y, dir);
buf->modified = true;
}
unsigned buffer_nlines(const buffer_t *b)
{
return list_count(b->head);
}
static char *buffer_find2(
char *haystack, size_t haystack_sz,
const char *needle,
unsigned off, int dir)
{
return dir < 0
? tim_strrevstr(haystack, off, needle)
: tim_strstr(haystack + off, haystack_sz - off, needle);
}
bool buffer_findat(const buffer_t *buf, const char *search, point_t *at, int dir)
{
list_t *l = list_seek(buf->head, at->y, 0);
if(!l){
if(dir < 0){
l = list_last(buf->head, &at->y);
}else{
return false;
}
}
/* search at the next char */
l = list_advance_x(l, dir, &at->y, &at->x);
while(l){
char *p;
if((unsigned)at->x < l->len_line
&& (p = buffer_find2(l->line, l->len_line, search, at->x, dir)))
{
at->x = p - l->line;
at->y = at->y;
return true;
}
l = list_advance_y(l, dir, &at->y, &at->x);
}
return false;
}