forked from mintty/mintty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
termline.c
1441 lines (1290 loc) · 40 KB
/
termline.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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// termline.c (part of mintty)
// Copyright 2008-12 Andy Koppe, -2024 Thomas Wolff
// Adapted from code from PuTTY-0.60 by Simon Tatham and team.
// Licensed under the terms of the GNU General Public License v3 or later.
#include "termpriv.h"
#include "win.h" // cfg.bidi
#define newn_1(poi, type, count) {poi = newn(type, count + 1); poi++;}
#define renewn_1(poi, count) {poi--; poi = renewn(poi, count + 1); poi++;}
termline *
newline(int cols, int bce)
{
termline *line = new(termline);
newn_1(line->chars, termchar, cols);
//! Note: line->chars is based @ index -1
for (int j = -1; j < cols; j++)
line->chars[j] = (bce ? term.erase_char : basic_erase_char);
line->cols = line->size = cols;
line->lattr = LATTR_NORM;
line->temporary = false;
line->cc_free = 0;
return line;
}
void
freeline(termline *line)
{
assert(line);
//! Note: line->chars is based @ index -1
free(&line->chars[-1]);
free(line);
}
/*
* Compress and decompress a termline into an RLE-based format for
* storing in scrollback. (Since scrollback almost never needs to
* be modified and exists in huge quantities, this is a sensible
* tradeoff, particularly since it allows us to continue adding
* features to the main termchar structure without proportionally
* bloating the terminal emulator's memory footprint unless those
* features are in constant use.)
*/
struct buf {
uchar *data;
int len, size;
};
static void
add(struct buf *b, uchar c)
{
assert(b);
if (b->len >= b->size) {
b->size = (b->len * 3 / 2) + 512;
b->data = renewn(b->data, b->size);
}
b->data[b->len++] = c;
}
static int
get(struct buf *b)
{
return b->data[b->len++];
}
/*
* Add a combining character to a character cell.
*/
void
add_cc(termline *line, int col, wchar chr, cattr attr)
{
assert(col >= -1 && col < line->cols);
/*
* Start by extending the cols array if the free list is empty.
*/
if (!line->cc_free) {
int n = line->size;
line->size += 16 + (line->size - line->cols) / 2;
renewn_1(line->chars, line->size);
line->cc_free = n;
do
line->chars[n].cc_next = 1;
while (++n < line->size - 1);
line->chars[n].cc_next = 0; // Terminates the free list.
}
/*
* Now walk the cc list of the cell in question.
*/
while (line->chars[col].cc_next)
col += line->chars[col].cc_next;
/*
* `col' now points at the last cc currently in this cell;
* so we simply add another one.
*/
int newcc = line->cc_free;
if (line->chars[newcc].cc_next)
line->cc_free = newcc + line->chars[newcc].cc_next;
else
line->cc_free = 0;
line->chars[newcc].cc_next = 0;
line->chars[newcc].chr = chr;
line->chars[newcc].attr = attr;
line->chars[col].cc_next = newcc - col;
}
/*
* Clear the combining character list in a character cell.
*/
void
clear_cc(termline *line, int col)
{
assert(col >= -1 && col < line->cols);
if (!line->chars[col].cc_next)
return; /* nothing needs doing */
int oldfree = line->cc_free;
int origcol = col;
line->cc_free = col + line->chars[col].cc_next;
while (line->chars[col].cc_next)
col += line->chars[col].cc_next;
if (oldfree)
line->chars[col].cc_next = oldfree - col;
else
line->chars[col].cc_next = 0;
line->chars[origcol].cc_next = 0;
}
/*
* Compare two character cells for equality. Special case required in
* do_paint() where we override what we expect the chr and attr fields to be.
*/
int
termchars_equal_override(termchar *a, termchar *b, uint bchr, cattr battr)
{
/* FULL-TERMCHAR */
if (a->chr != bchr)
return false;
if ((a->attr.attr & ~DATTR_MASK) != (battr.attr & ~DATTR_MASK))
return false;
if (a->attr.truefg != battr.truefg)
return false;
if (a->attr.truebg != battr.truebg)
return false;
if (a->attr.ulcolr != battr.ulcolr)
return false;
while (a->cc_next || b->cc_next) {
if (!a->cc_next || !b->cc_next)
return false; /* one cc-list ends, other does not */
a += a->cc_next;
b += b->cc_next;
if (a->chr != b->chr)
return false;
}
return true;
}
int
termchars_equal(termchar *a, termchar *b)
{
return termchars_equal_override(a, b, b->chr, b->attr);
}
/*
* Copy a character cell. (Requires a pointer to the destination termline,
* so as to access its free list.)
*/
void
copy_termchar(termline *destline, int x, termchar *src)
{
clear_cc(destline, x);
destline->chars[x] = *src; /* copy everything except cc-list */
destline->chars[x].cc_next = 0; /* and make sure this is zero */
while (src->cc_next) {
src += src->cc_next;
add_cc(destline, x, src->chr, src->attr);
}
}
/*
* Move a character cell within its termline.
*/
void
move_termchar(termline * line, termchar *dest, termchar *src)
{
/* First clear the cc list from the original char, just in case. */
clear_cc(line, dest - line->chars);
/* Move the character cell and adjust its cc_next. */
*dest = *src; /* copy everything except cc-list */
if (src->cc_next)
dest->cc_next = src->cc_next - (dest - src);
/* Ensure the original cell doesn't have a cc list. */
src->cc_next = 0;
}
static void
makeliteral_chr(struct buf *buf, termchar *c)
{
/*
* The encoding for characters assigns one-byte codes to printable
* ASCII characters and NUL, and two-byte codes to anything else up
* to 0x96FF. UTF-16 surrogates also get two-byte codes, to avoid non-BMP
* characters exploding to six bytes. Anything else is three bytes long.
*/
wchar wc = c->chr;
if (wc == 0 || (wc >= 0x20 && wc < 0x7F))
;
else {
uchar b = wc >> 8;
if (b < 0x80)
b += 0x80;
else if (b < 0x97)
b -= 0x7F;
else if (b >= 0xD8 && b < 0xE0)
b -= 0xC0;
else
add(buf, 0x7F);
add(buf, b);
}
add(buf, wc);
}
static void
makeliteral_attr(struct buf *b, termchar *c)
{
/*
* My encoding for attributes is 16-bit-granular and assumes
* that the top bit of the word is never required. I either
* store a two-byte value with the top bit clear (indicating
* just that value), or a four-byte value with the top bit set
* (indicating the same value with its top bit clear).
*
* However, first I permute the bits of the attribute value, so
* that the eight bits of colour (four in each of fg and bg)
* which are never non-zero unless xterm 256-colour mode is in
* use are placed higher up the word than everything else. This
* ensures that attribute values remain 16-bit _unless_ the
* user uses extended colour.
*/
cattrflags attr = c->attr.attr & ~DATTR_STARTRUN; // keep cursor for reflow
int link = c->attr.link;
int imgi = c->attr.imgi;
colour truefg = c->attr.truefg;
colour truebg = c->attr.truebg;
colour ulcolr = c->attr.ulcolr;
if (attr < 0x800000 && !truefg && !truebg
&& link == -1 && !imgi && ulcolr == (colour)-1) {
add(b, (uchar) ((attr >> 16) & 0xFF));
add(b, (uchar) ((attr >> 8) & 0xFF));
add(b, (uchar) (attr & 0xFF));
}
else {
add(b, (uchar) ((attr >> 56) & 0xFF) | 0x80);
add(b, (uchar) ((attr >> 48) & 0xFF));
add(b, (uchar) ((attr >> 40) & 0xFF));
add(b, (uchar) ((attr >> 32) & 0xFF));
add(b, (uchar) ((attr >> 24) & 0xFF));
add(b, (uchar) ((attr >> 16) & 0xFF));
add(b, (uchar) ((attr >> 8) & 0xFF));
add(b, (uchar) (attr & 0xFF));
add(b, (uchar) ((link >> 24) & 0xFF));
add(b, (uchar) ((link >> 16) & 0xFF));
add(b, (uchar) ((link >> 8) & 0xFF));
add(b, (uchar) (link & 0xFF));
add(b, (uchar) ((imgi >> 24) & 0xFF));
add(b, (uchar) ((imgi >> 16) & 0xFF));
add(b, (uchar) ((imgi >> 8) & 0xFF));
add(b, (uchar) (imgi & 0xFF));
add(b, (uchar) ((truefg >> 16) & 0xFF));
add(b, (uchar) ((truefg >> 8) & 0xFF));
add(b, (uchar) (truefg & 0xFF));
add(b, (uchar) ((truebg >> 16) & 0xFF));
add(b, (uchar) ((truebg >> 8) & 0xFF));
add(b, (uchar) (truebg & 0xFF));
add(b, (uchar) ((ulcolr >> 16) & 0xFF));
add(b, (uchar) ((ulcolr >> 8) & 0xFF));
add(b, (uchar) (ulcolr & 0xFF));
}
}
static void
makeliteral_cc(struct buf *b, termchar *c)
{
/*
* For combining characters, I just encode a bunch of ordinary
* chars using makeliteral_chr, and terminate with a \0
* character (which I know won't come up as a combining char itself).
*/
termchar z;
while (c->cc_next) {
c += c->cc_next;
assert(c->chr != 0);
makeliteral_chr(b, c);
makeliteral_attr(b, c);
}
z.chr = 0;
makeliteral_chr(b, &z);
}
static void
readliteral_chr(struct buf *buf, termchar *c, termline *unused(line))
{
uchar b = get(buf);
if (b == 0 || (b >= 0x20 && b < 0x7F))
c->chr = b;
else {
if (b >= 0x80)
b -= 0x80;
else if (b < 0x18)
b += 0x7F;
else if (b < 0x20)
b += 0xC0;
else
b = get(buf);
c->chr = b << 8 | get(buf);
}
}
static void
readliteral_attr(struct buf *b, termchar *c, termline *unused(line))
{
cattrflags attr;
int link = -1;
int imgi = 0;
uint fg = 0;
uint bg = 0;
colour ul = (colour)-1;
attr = get(b) << 16;
attr |= get(b) << 8;
attr |= get(b);
if (attr >= 0x800000) {
attr &= ~0x800000;
attr <<= 8;
attr |= get(b);
attr <<= 8;
attr |= get(b);
attr <<= 8;
attr |= get(b);
attr <<= 8;
attr |= get(b);
attr <<= 8;
attr |= get(b);
link = get(b) << 24;
link |= get(b) << 16;
link |= get(b) << 8;
link |= get(b);
imgi = get(b) << 24;
imgi |= get(b) << 16;
imgi |= get(b) << 8;
imgi |= get(b);
fg = get(b) << 16;
fg |= get(b) << 8;
fg |= get(b);
bg = get(b) << 16;
bg |= get(b) << 8;
bg |= get(b);
ul = get(b) << 16;
ul |= get(b) << 8;
ul |= get(b);
}
c->attr.attr = attr;
c->attr.link = link;
c->attr.imgi = imgi;
c->attr.truefg = fg;
c->attr.truebg = bg;
c->attr.ulcolr = ul;
}
static void
readliteral_cc(struct buf *b, termchar *c, termline *line)
{
termchar n;
int x = c - line->chars;
c->cc_next = 0;
while (1) {
readliteral_chr(b, &n, line);
if (!n.chr)
break;
readliteral_attr(b, &n, line);
add_cc(line, x, n.chr, n.attr);
}
}
static void
makerle(struct buf *b, termline *line,
void (*makeliteral) (struct buf *b, termchar *c))
{
int hdrpos, hdrsize, prevlen, prevpos, thislen, thispos, prev2;
termchar *c = line->chars;
int n = line->cols;
//! Note: line->chars is based @ index -1
c--;
n++;
hdrpos = b->len;
hdrsize = 0;
add(b, 0);
prevlen = prevpos = 0;
prev2 = false;
while (n-- > 0) {
thispos = b->len;
makeliteral(b, c++);
thislen = b->len - thispos;
if (thislen == prevlen &&
!memcmp(b->data + prevpos, b->data + thispos, thislen)) {
/*
* This literal precisely matches the previous one.
* Turn it into a run if it's worthwhile.
*
* With one-byte literals, it costs us two bytes to encode a run,
* plus another byte to write the header to resume normal output;
* so a three-element run is neutral, and anything beyond that
* is unconditionally worthwhile.
* With two-byte literals or more, even a 2-run is a win.
*/
if (thislen > 1 || prev2) {
int runpos, runlen;
/*
* It's worth encoding a run. Start at prevpos,
* unless hdrsize == 0 in which case we can back up
* another one and start by overwriting hdrpos.
*/
hdrsize--; /* remove the literal at prevpos */
if (prev2) {
assert(hdrsize > 0);
hdrsize--;
prevpos -= prevlen; /* and possibly another one */
}
if (hdrsize == 0) {
assert(prevpos == hdrpos + 1);
runpos = hdrpos;
b->len = prevpos + prevlen;
}
else {
memmove(b->data + prevpos + 1, b->data + prevpos, prevlen);
runpos = prevpos;
b->len = prevpos + prevlen + 1;
/*
* Terminate the previous run of ordinary literals.
*/
assert(hdrsize >= 1 && hdrsize <= 128);
b->data[hdrpos] = hdrsize - 1;
}
runlen = prev2 ? 3 : 2;
while (n > 0 && runlen < 129) {
int tmppos, tmplen;
tmppos = b->len;
makeliteral(b, c);
tmplen = b->len - tmppos;
b->len = tmppos;
if (tmplen != thislen ||
memcmp(b->data + runpos + 1, b->data + tmppos, tmplen)) {
break; /* run over */
}
n--, c++, runlen++;
}
assert(runlen >= 2 && runlen <= 129);
b->data[runpos] = runlen + 0x80 - 2;
hdrpos = b->len;
hdrsize = 0;
add(b, 0);
/* And ensure this run doesn't interfere with the next. */
prevlen = prevpos = 0;
prev2 = false;
continue;
}
else {
/*
* Just flag that the previous two literals were identical,
* in case we find a third identical one we want to turn into a run.
*/
prev2 = true;
prevlen = thislen;
prevpos = thispos;
}
}
else {
prev2 = false;
prevlen = thislen;
prevpos = thispos;
}
/*
* This character isn't (yet) part of a run. Add it to hdrsize.
*/
hdrsize++;
if (hdrsize == 128) {
b->data[hdrpos] = hdrsize - 1;
hdrpos = b->len;
hdrsize = 0;
add(b, 0);
prevlen = prevpos = 0;
prev2 = false;
}
}
/* Clean up. */
if (hdrsize > 0) {
assert(hdrsize <= 128);
b->data[hdrpos] = hdrsize - 1;
}
else {
b->len = hdrpos;
}
}
uchar *
compressline(termline *line)
{
#ifdef dont_compress_scrollback_buffer
uchar * cl = malloc(sizeof(termline) + (line->size + 1) * sizeof(termchar));
memcpy(cl, line, sizeof(termline));
memcpy(cl + sizeof(termline), &line->chars[-1], (line->size + 1) * sizeof(termchar));
return cl;
#endif
struct buf buffer = { null, 0, 0 }, *b = &buffer;
/*
* First, store the column count, 7 bits at a time, least significant
* `digit' first, with the high bit set on all but the last.
*/
{
int n = line->cols;
while (n >= 128) {
add(b, (uchar) ((n & 0x7F) | 0x80));
n >>= 7;
}
add(b, (uchar) (n));
}
/*
* Next store the line attributes; same principle.
*/
{
int n = line->lattr;
while (n >= 128) {
add(b, (uchar) ((n & 0x7F) | 0x80));
n >>= 7;
}
add(b, (uchar) (n));
}
/*
* Store the wrap position if used.
*/
if (line->lattr & LATTR_WRAPPED) {
int n = line->wrappos;
while (n >= 128) {
add(b, (uchar) ((n & 0x7F) | 0x80));
n >>= 7;
}
add(b, (uchar) (n));
}
/*
* Now we store a sequence of separate run-length encoded
* fragments, each containing exactly as many symbols as there
* are columns in the line.
*
* All of these have a common basic format:
*
* - a byte 00-7F indicates that X+1 literals follow it
* - a byte 80-FF indicates that a single literal follows it
* and expects to be repeated (X-0x80)+2 times.
*
* The format of the `literals' varies between the fragments.
*/
makerle(b, line, makeliteral_chr);
makerle(b, line, makeliteral_attr);
makerle(b, line, makeliteral_cc);
/*
* Trim the allocated memory so we don't waste any, and return.
*/
#ifdef debug_compressline
printf("compress %d chars -> %d bytes\n", line->size, b->len);
#endif
return renewn(b->data, b->len);
}
static void
readrle(struct buf *b, termline *line,
void (*readliteral) (struct buf *b, termchar *c, termline *line))
{
//! Note: line->chars is based @ index -1
int n = -1;
while (n < line->cols) {
int hdr = get(b);
if (hdr >= 0x80) {
/* A run. */
int pos = b->len, count = hdr + 2 - 0x80;
while (count--) {
assert(n < line->cols);
b->len = pos;
readliteral(b, line->chars + n, line);
n++;
}
}
else {
/* Just a sequence of consecutive literals. */
int count = hdr + 1;
while (count--) {
assert(n < line->cols);
readliteral(b, line->chars + n, line);
n++;
}
}
}
assert(n == line->cols);
}
termline *
decompressline(uchar *data, int *bytes_used)
{
#ifdef dont_compress_scrollback_buffer
termline * tl = malloc(sizeof(termline));
memcpy(tl, data, sizeof(termline));
termchar * tc = malloc((tl->size + 1) * sizeof(termchar));
memcpy(tc, data + sizeof(termline), (tl->size + 1) * sizeof(termchar));
tl->chars = &tc[1];
return tl;
#endif
int ncols, byte, shift;
struct buf buffer, *b = &buffer;
termline *line;
b->data = data;
b->len = 0;
/*
* First read in the column count.
*/
ncols = shift = 0;
do {
byte = get(b);
ncols |= (byte & 0x7F) << shift;
shift += 7;
} while (byte & 0x80);
/*
* Now create the output termline.
*/
line = new(termline);
newn_1(line->chars, termchar, ncols);
line->cols = line->size = ncols;
line->temporary = true;
line->cc_free = 0;
/*
* We must set all the cc pointers in line->chars to 0 right now,
* so that cc diagnostics that verify the integrity of the whole line
* will make sense while we're in the middle of building it up.
*/
//! Note: line->chars is based @ index -1
for (int i = -1; i < line->cols; i++)
line->chars[i].cc_next = 0;
/*
* Now read in the line attributes.
*/
line->lattr = shift = 0;
do {
byte = get(b);
line->lattr |= (byte & 0x7F) << shift;
shift += 7;
} while (byte & 0x80);
/*
* Read the wrap position if used.
*/
if (line->lattr & LATTR_WRAPPED) {
ncols = shift = 0;
do {
byte = get(b);
ncols |= (byte & 0x7F) << shift;
shift += 7;
} while (byte & 0x80);
line->wrappos = ncols;
}
/*
* Now we read in each of the RLE streams in turn.
*/
readrle(b, line, readliteral_chr);
readrle(b, line, readliteral_attr);
readrle(b, line, readliteral_cc);
/* Return the number of bytes read, for diagnostic purposes. */
if (bytes_used)
*bytes_used = b->len;
return line;
}
/*
* Clear a line, throwing away any combining characters.
*/
void
clearline(termline *line)
{
line->lattr = LATTR_NORM;
//! Note: line->chars is based @ index -1
for (int j = -1; j < line->cols; j++)
line->chars[j] = term.erase_char;
if (line->size > line->cols) {
line->size = line->cols;
renewn_1(line->chars, line->size);
line->cc_free = 0;
}
}
/*
* Make sure the line is at least `cols' columns wide.
*/
void
resizeline(termline *line, int cols)
{
int oldcols = line->cols;
if (cols > oldcols) {
/*
* Leave the same amount of cc space as there was to begin with.
*/
line->size += cols - oldcols;
renewn_1(line->chars, line->size);
line->cols = cols;
/*
* Move the cc section.
*/
memmove(line->chars + cols, line->chars + oldcols,
(line->size - cols) * sizeof(termchar));
/*
* Adjust the first cc_next pointer in each list. (All the
* subsequent ones are still valid because they are
* relative offsets within the cc block.) Also do the same
* to the head of the cc_free list.
*/
//! Note: line->chars is based @ index -1
for (int i = -1; i < oldcols; i++)
if (line->chars[i].cc_next)
line->chars[i].cc_next += cols - oldcols;
if (line->cc_free)
line->cc_free += cols - oldcols;
/*
* And finally fill in the new space with erase chars. (We
* don't have to worry about cc lists here, because we
* _know_ the erase char doesn't have one.)
*/
for (int i = oldcols; i < cols; i++)
line->chars[i] = basic_erase_char;
}
}
/*
* Get the number of lines in the scrollback.
*/
int
sblines(void)
{
return term.on_alt_screen ^ term.show_other_screen ? 0 : term.sblines;
}
/*
* Retrieve a line of the screen or of the scrollback, according to
* whether the y coordinate is non-negative or negative (respectively).
*/
termline *
fetch_line(int y)
{
termlines *lines = term.show_other_screen ? term.other_lines : term.lines;
termline *line;
if (y >= 0) {
assert(y < term_allrows);
line = lines[y];
}
else {
assert(-y <= term.sblines);
y += term.sbpos;
if (y < 0)
y += term.sbsize; // scrollback buffer has wrapped round
uchar *cline = term.scrollback[y];
line = decompressline(cline, null);
resizeline(line, term.cols);
}
assert(line);
return line;
}
/* Release a screen or scrollback line */
void
release_line(termline *line)
{
assert(line);
if (line->temporary)
freeline(line);
}
/*
* To prevent having to run the reasonably tricky bidi algorithm
* too many times, we maintain a cache of the last lineful of data
* fed to the algorithm on each line of the display.
*/
static int
term_bidi_cache_hit(int line, termchar *lbefore, ushort lattr, int width)
{
int i;
if (!term.pre_bidi_cache)
return false; /* cache doesn't even exist yet! */
if (line >= term.bidi_cache_size)
return false; /* cache doesn't have this many lines */
if (!term.pre_bidi_cache[line].chars)
return false; /* cache doesn't contain _this_ line */
if (term.pre_bidi_cache[line].lattr != (lattr & LATTR_BIDIMASK))
return false; /* bidi attributes may be different */
if (term.pre_bidi_cache[line].width != width)
return false; /* line is wrong width */
for (i = 0; i < width; i++)
if (!termchars_equal(term.pre_bidi_cache[line].chars + i, lbefore + i))
return false; /* line doesn't match cache */
return true; /* all termchars matched */
}
static void
term_bidi_cache_store(int line,
termchar *lbefore, termchar *lafter, bidi_char *wcTo,
ushort lattr, int width, int size, int bidisize)
{
#ifdef debug_bidi_cache
printf("cache_store w %d s %d bs %d\n", width, size, bidisize);
#endif
int i;
if (!term.pre_bidi_cache || term.bidi_cache_size <= line) {
int j = term.bidi_cache_size;
term.bidi_cache_size = line + 1;
term.pre_bidi_cache = renewn(term.pre_bidi_cache, term.bidi_cache_size);
term.post_bidi_cache = renewn(term.post_bidi_cache, term.bidi_cache_size);
while (j < term.bidi_cache_size) {
term.pre_bidi_cache[j].chars = term.post_bidi_cache[j].chars = null;
term.pre_bidi_cache[j].lattr = -1;
term.pre_bidi_cache[j].width = term.post_bidi_cache[j].width = -1;
term.pre_bidi_cache[j].forward = term.post_bidi_cache[j].forward = null;
term.pre_bidi_cache[j].backward = term.post_bidi_cache[j].backward = null;
j++;
}
}
free(term.pre_bidi_cache[line].chars);
free(term.post_bidi_cache[line].chars);
free(term.post_bidi_cache[line].forward);
free(term.post_bidi_cache[line].backward);
term.pre_bidi_cache[line].lattr = lattr & LATTR_BIDIMASK;
term.pre_bidi_cache[line].width = width;
term.pre_bidi_cache[line].chars = newn(termchar, size);
term.post_bidi_cache[line].width = width;
term.post_bidi_cache[line].chars = newn(termchar, size);
term.post_bidi_cache[line].forward = newn(int, width);
term.post_bidi_cache[line].backward = newn(int, width);
memcpy(term.pre_bidi_cache[line].chars, lbefore, size * sizeof(termchar));
memcpy(term.post_bidi_cache[line].chars, lafter, size * sizeof(termchar));
memset(term.post_bidi_cache[line].forward, 0, width * sizeof(int));
memset(term.post_bidi_cache[line].backward, 0, width * sizeof(int));
int ib = 0;
for (i = 0; i < width; i++) {
while (wcTo[ib].index == -1)
ib++;
int p = wcTo[ib].index;
assert(0 <= p && p < width);
term.post_bidi_cache[line].backward[i] = p;
term.post_bidi_cache[line].forward[p] = i;
if (wcTo[ib].wide && i + 1 < width) {
// compensate for skipped wide character right half
i++;
p++;
term.post_bidi_cache[line].backward[i] = p;
term.post_bidi_cache[line].forward[p] = i;
#ifdef support_triple_width
# ifdef support_quadruple_width
int wide = wcTo[ib].wide;
while (wide > 1 && i + 1 < width) {
i++;
p++;
term.post_bidi_cache[line].backward[i] = p;
term.post_bidi_cache[line].forward[p] = i;
}
# else
if (wcTo[ib].wide > 1 && i + 1 < width) {
i++;
p++;
term.post_bidi_cache[line].backward[i] = p;
term.post_bidi_cache[line].forward[p] = i;
}
# endif
#endif
}
ib++;
}
(void)bidisize;
assert(ib == bidisize);
}
#define dont_debug_bidi
#ifdef debug_bidi
void trace_bidi(char * tag, bidi_char * wc, int ib)
{
printf("%s[%d]", tag, ib);
for (int i = 0; i < ib; i++)
//if (wc[i].wc != ' ')
printf(" [2m%2d:[m%02X", wc[i].index, wc[i].wc);
printf("\n");
}
#else
#define trace_bidi(tag, wc, ib)
#endif
wchar *
wcsline(termline * line)
{
static wchar * wcs = 0;
wcs = renewn(wcs, term.cols + 1);
for (int i = 0; i < term.cols; i++)
wcs[i] = line->chars[i].chr;
wcs[term.cols] = 0;
return wcs;
}
ushort
getparabidi(termline * line)
{
ushort parabidi = line->lattr & LATTR_BIDIMASK;
if (parabidi & (LATTR_BIDISEL | LATTR_AUTOSEL))
return parabidi;
// autodetection of line direction (UBA P2 and P3);
// this needs in fact to be done both when called from
// write_char (output phase) and term_bidi_line (display phase)