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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
|
#include <string.h>
#include <stdlib.h>
#include <wchar.h>
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include "view.h"
#include "text.h"
#include "text-motions.h"
#include "text-util.h"
#include "util.h"
typedef struct {
char *symbol;
} SyntaxSymbol;
enum {
SYNTAX_SYMBOL_SPACE,
SYNTAX_SYMBOL_TAB,
SYNTAX_SYMBOL_TAB_FILL,
SYNTAX_SYMBOL_EOL,
SYNTAX_SYMBOL_EOF,
SYNTAX_SYMBOL_LAST,
};
/* A selection is made up of two marks named cursor and anchor.
* While the anchor remains fixed the cursor mark follows cursor motions.
* For a selection (indicated by []), the marks (^) are placed as follows:
*
* [some text] [!]
* ^ ^ ^
* ^
*
* That is the marks point to the *start* of the first and last character
* of the selection. In particular for a single character selection (as
* depicted on the right above) both marks point to the same location.
*
* The view_selections_{get,set} functions take care of adding/removing
* the necessary offset for the last character.
*/
struct Selection {
Mark cursor; /* other selection endpoint where it changes */
Mark anchor; /* position where the selection was created */
bool anchored; /* whether anchor remains fixed */
size_t pos; /* in bytes from the start of the file */
int row, col; /* in terms of zero based screen coordinates */
int lastcol; /* remembered column used when moving across lines */
Line *line; /* screen line on which cursor currently resides */
int generation; /* used to filter out newly created cursors during iteration */
int number; /* how many cursors are located before this one */
View *view; /* associated view to which this cursor belongs */
Selection *prev, *next; /* previous/next cursors ordered by location at creation time */
};
struct View {
Text *text; /* underlying text management */
char *textbuf; /* scratch buffer used for drawing */
UiWin *ui; /* corresponding ui window */
Cell cell_blank; /* used for empty/blank cells */
int width, height; /* size of display area */
size_t start, end; /* currently displayed area [start, end] in bytes from the start of the file */
size_t start_last; /* previously used start of visible area, used to update the mark */
Mark start_mark; /* mark to keep track of the start of the visible area */
size_t lines_size; /* number of allocated bytes for lines (grows only) */
Line *lines; /* view->height number of lines representing view content */
Line *topline; /* top of the view, first line currently shown */
Line *lastline; /* last currently used line, always <= bottomline */
Line *bottomline; /* bottom of view, might be unused if lastline < bottomline */
Selection *selection; /* primary selection, always placed within the visible viewport */
Selection *selection_latest; /* most recently created cursor */
Selection *selection_dead; /* primary cursor which was disposed, will be removed when another cursor is created */
int selection_count; /* how many cursors do currently exist */
Line *line; /* used while drawing view content, line where next char will be drawn */
int col; /* used while drawing view content, column where next char will be drawn */
const SyntaxSymbol *symbols[SYNTAX_SYMBOL_LAST]; /* symbols to use for white spaces etc */
int tabwidth; /* how many spaces should be used to display a tab character */
Selection *selections; /* all cursors currently active */
int selection_generation; /* used to filter out newly created cursors during iteration */
bool need_update; /* whether view has been redrawn */
bool large_file; /* optimize for displaying large files */
int colorcolumn;
};
static const SyntaxSymbol symbols_none[] = {
[SYNTAX_SYMBOL_SPACE] = { " " },
[SYNTAX_SYMBOL_TAB] = { " " },
[SYNTAX_SYMBOL_TAB_FILL] = { " " },
[SYNTAX_SYMBOL_EOL] = { " " },
[SYNTAX_SYMBOL_EOF] = { " " },
};
static const SyntaxSymbol symbols_default[] = {
[SYNTAX_SYMBOL_SPACE] = { "·" /* Middle Dot U+00B7 */ },
[SYNTAX_SYMBOL_TAB] = { "›" /* Single Right-Pointing Angle Quotation Mark U+203A */ },
[SYNTAX_SYMBOL_TAB_FILL] = { " " },
[SYNTAX_SYMBOL_EOL] = { "↵" /* Downwards Arrow with Corner Leftwards U+21B5 */ },
[SYNTAX_SYMBOL_EOF] = { "~" },
};
static Cell cell_unused;
/* move visible viewport n-lines up/down, redraws the view but does not change
* cursor position which becomes invalid and should be corrected by calling
* view_cursor_to. the return value indicates wether the visible area changed.
*/
static bool view_viewport_up(View *view, int n);
static bool view_viewport_down(View *view, int n);
static void view_clear(View *view);
static bool view_addch(View *view, Cell *cell);
static void selection_free(Selection*);
/* set/move current cursor position to a given (line, column) pair */
static size_t cursor_set(Selection*, Line *line, int col);
void view_tabwidth_set(View *view, int tabwidth) {
view->tabwidth = tabwidth;
view_draw(view);
}
/* reset internal view data structures (cell matrix, line offsets etc.) */
static void view_clear(View *view) {
memset(view->lines, 0, view->lines_size);
if (view->start != view->start_last) {
if (view->start == 0)
view->start_mark = EMARK;
else
view->start_mark = text_mark_set(view->text, view->start);
} else {
size_t start;
if (view->start_mark == EMARK)
start = 0;
else
start = text_mark_get(view->text, view->start_mark);
if (start != EPOS)
view->start = start;
}
view->start_last = view->start;
view->topline = view->lines;
view->topline->lineno = view->large_file ? 1 : text_lineno_by_pos(view->text, view->start);
view->lastline = view->topline;
size_t line_size = sizeof(Line) + view->width*sizeof(Cell);
size_t end = view->height * line_size;
Line *prev = NULL;
for (size_t i = 0; i < end; i += line_size) {
Line *line = (Line*)(((char*)view->lines) + i);
line->prev = prev;
if (prev)
prev->next = line;
prev = line;
}
view->bottomline = prev ? prev : view->topline;
view->bottomline->next = NULL;
view->line = view->topline;
view->col = 0;
if (view->ui)
view->cell_blank.style = view->ui->style_get(view->ui, UI_STYLE_DEFAULT);
}
Filerange view_viewport_get(View *view) {
return (Filerange){ .start = view->start, .end = view->end };
}
/* try to add another character to the view, return whether there was space left */
static bool view_addch(View *view, Cell *cell) {
if (!view->line)
return false;
int width;
size_t lineno = view->line->lineno;
unsigned char ch = (unsigned char)cell->data[0];
cell->style = view->cell_blank.style;
switch (ch) {
case '\t':
cell->width = 1;
width = view->tabwidth - (view->col % view->tabwidth);
for (int w = 0; w < width; w++) {
if (view->col + 1 > view->width) {
view->line = view->line->next;
view->col = 0;
if (!view->line)
return false;
view->line->lineno = lineno;
}
cell->len = w == 0 ? 1 : 0;
int t = w == 0 ? SYNTAX_SYMBOL_TAB : SYNTAX_SYMBOL_TAB_FILL;
strncpy(cell->data, view->symbols[t]->symbol, sizeof(cell->data)-1);
view->line->cells[view->col] = *cell;
view->line->len += cell->len;
view->line->width += cell->width;
view->col++;
}
cell->len = 1;
return true;
case '\n':
cell->width = 1;
if (view->col + cell->width > view->width) {
view->line = view->line->next;
view->col = 0;
if (!view->line)
return false;
view->line->lineno = lineno;
}
strncpy(cell->data, view->symbols[SYNTAX_SYMBOL_EOL]->symbol, sizeof(cell->data)-1);
view->line->cells[view->col] = *cell;
view->line->len += cell->len;
view->line->width += cell->width;
for (int i = view->col + 1; i < view->width; i++)
view->line->cells[i] = view->cell_blank;
view->line = view->line->next;
if (view->line)
view->line->lineno = lineno + 1;
view->col = 0;
return true;
default:
if (ch < 128 && !isprint(ch)) {
/* non-printable ascii char, represent it as ^(char + 64) */
*cell = (Cell) {
.data = { '^', ch == 127 ? '?' : ch + 64, '\0' },
.len = 1,
.width = 2,
.style = cell->style,
};
}
if (ch == ' ') {
strncpy(cell->data, view->symbols[SYNTAX_SYMBOL_SPACE]->symbol, sizeof(cell->data)-1);
}
if (view->col + cell->width > view->width) {
for (int i = view->col; i < view->width; i++)
view->line->cells[i] = view->cell_blank;
view->line = view->line->next;
view->col = 0;
}
if (view->line) {
view->line->width += cell->width;
view->line->len += cell->len;
view->line->lineno = lineno;
view->line->cells[view->col] = *cell;
view->col++;
/* set cells of a character which uses multiple columns */
for (int i = 1; i < cell->width; i++)
view->line->cells[view->col++] = cell_unused;
return true;
}
return false;
}
}
static void cursor_to(Selection *s, size_t pos) {
Text *txt = s->view->text;
s->cursor = text_mark_set(txt, pos);
if (!s->anchored)
s->anchor = s->cursor;
if (pos != s->pos)
s->lastcol = 0;
s->pos = pos;
if (!view_coord_get(s->view, pos, &s->line, &s->row, &s->col)) {
if (s->view->selection == s) {
s->line = s->view->topline;
s->row = 0;
s->col = 0;
}
return;
}
// TODO: minimize number of redraws
view_draw(s->view);
}
bool view_coord_get(View *view, size_t pos, Line **retline, int *retrow, int *retcol) {
int row = 0, col = 0;
size_t cur = view->start;
Line *line = view->topline;
if (pos < view->start || pos > view->end) {
if (retline) *retline = NULL;
if (retrow) *retrow = -1;
if (retcol) *retcol = -1;
return false;
}
while (line && line != view->lastline && cur < pos) {
if (cur + line->len > pos)
break;
cur += line->len;
line = line->next;
row++;
}
if (line) {
int max_col = MIN(view->width, line->width);
while (cur < pos && col < max_col) {
cur += line->cells[col].len;
/* skip over columns occupied by the same character */
while (++col < max_col && line->cells[col].len == 0);
}
} else {
line = view->bottomline;
row = view->height - 1;
}
if (retline) *retline = line;
if (retrow) *retrow = row;
if (retcol) *retcol = col;
return true;
}
/* move the cursor to the character at pos bytes from the begining of the file.
* if pos is not in the current viewport, redraw the view to make it visible */
void view_cursor_to(View *view, size_t pos) {
view_cursors_to(view->selection, pos);
}
/* redraw the complete with data starting from view->start bytes into the file.
* stop once the screen is full, update view->end, view->lastline */
void view_draw(View *view) {
view_clear(view);
/* read a screenful of text considering each character as 4-byte UTF character*/
const size_t size = view->width * view->height * 4;
/* current buffer to work with */
char *text = view->textbuf;
/* remaining bytes to process in buffer */
size_t rem = text_bytes_get(view->text, view->start, size, text);
/* NUL terminate text section */
text[rem] = '\0';
/* absolute position of character currently being added to display */
size_t pos = view->start;
/* current position into buffer from which to interpret a character */
char *cur = text;
/* start from known multibyte state */
mbstate_t mbstate = { 0 };
Cell cell = { .data = "", .len = 0, .width = 0, }, prev_cell = cell;
while (rem > 0) {
/* current 'parsed' character' */
wchar_t wchar;
size_t len = mbrtowc(&wchar, cur, rem, &mbstate);
if (len == (size_t)-1 && errno == EILSEQ) {
/* ok, we encountered an invalid multibyte sequence,
* replace it with the Unicode Replacement Character
* (FFFD) and skip until the start of the next utf8 char */
mbstate = (mbstate_t){0};
for (len = 1; rem > len && !ISUTF8(cur[len]); len++);
cell = (Cell){ .data = "\xEF\xBF\xBD", .len = len, .width = 1 };
} else if (len == (size_t)-2) {
/* not enough bytes available to convert to a
* wide character. Advance file position and read
* another junk into buffer.
*/
rem = text_bytes_get(view->text, pos+prev_cell.len, size, text);
text[rem] = '\0';
cur = text;
continue;
} else if (len == 0) {
/* NUL byte encountered, store it and continue */
cell = (Cell){ .data = "\x00", .len = 1, .width = 2 };
} else {
if (len >= sizeof(cell.data))
len = sizeof(cell.data)-1;
for (size_t i = 0; i < len; i++)
cell.data[i] = cur[i];
cell.data[len] = '\0';
cell.len = len;
cell.width = wcwidth(wchar);
if (cell.width == -1)
cell.width = 1;
}
if (cell.width == 0) {
strncat(prev_cell.data, cell.data, sizeof(prev_cell.data)-strlen(prev_cell.data)-1);
prev_cell.len += cell.len;
} else {
if (prev_cell.len && !view_addch(view, &prev_cell))
break;
pos += prev_cell.len;
prev_cell = cell;
}
rem -= cell.len;
cur += cell.len;
memset(&cell, 0, sizeof cell);
}
if (prev_cell.len && view_addch(view, &prev_cell))
pos += prev_cell.len;
/* set end of viewing region */
view->end = pos;
if (view->line) {
bool eof = view->end == text_size(view->text);
if (view->line->len == 0 && eof && view->line->prev)
view->lastline = view->line->prev;
else
view->lastline = view->line;
} else {
view->lastline = view->bottomline;
}
/* clear remaining of line, important to show cursor at end of file */
if (view->line) {
for (int x = view->col; x < view->width; x++)
view->line->cells[x] = view->cell_blank;
}
/* resync position of cursors within visible area */
for (Selection *s = view->selections; s; s = s->next) {
size_t pos = view_cursors_pos(s);
if (!view_coord_get(view, pos, &s->line, &s->row, &s->col) &&
s == view->selection) {
s->line = view->topline;
s->row = 0;
s->col = 0;
}
}
view->need_update = true;
}
void view_invalidate(View *view) {
view->need_update = true;
}
bool view_update(View *view) {
if (!view->need_update)
return false;
for (Line *l = view->lastline->next; l; l = l->next) {
for (int x = 0; x < view->width; x++)
l->cells[x] = view->cell_blank;
}
view->need_update = false;
return true;
}
bool view_resize(View *view, int width, int height) {
if (width <= 0)
width = 1;
if (height <= 0)
height = 1;
if (view->width == width && view->height == height) {
view->need_update = true;
return true;
}
char *textbuf = malloc(width * height * 4 + 1);
if (!textbuf)
return false;
size_t lines_size = height*(sizeof(Line) + width*sizeof(Cell));
if (lines_size > view->lines_size) {
Line *lines = realloc(view->lines, lines_size);
if (!lines) {
free(textbuf);
return false;
}
view->lines = lines;
view->lines_size = lines_size;
}
free(view->textbuf);
view->textbuf = textbuf;
view->width = width;
view->height = height;
memset(view->lines, 0, view->lines_size);
view_draw(view);
return true;
}
int view_height_get(View *view) {
return view->height;
}
int view_width_get(View *view) {
return view->width;
}
void view_free(View *view) {
if (!view)
return;
while (view->selections)
selection_free(view->selections);
free(view->textbuf);
free(view->lines);
free(view);
}
void view_reload(View *view, Text *text) {
view->text = text;
view_selections_clear_all(view);
view_cursor_to(view, 0);
}
View *view_new(Text *text) {
if (!text)
return NULL;
View *view = calloc(1, sizeof(View));
if (!view)
return NULL;
view->text = text;
if (!view_selections_new(view, 0)) {
view_free(view);
return NULL;
}
view->cell_blank = (Cell) {
.width = 0,
.len = 0,
.data = " ",
};
view->tabwidth = 8;
view_options_set(view, 0);
if (!view_resize(view, 1, 1)) {
view_free(view);
return NULL;
}
view_cursor_to(view, 0);
return view;
}
void view_ui(View *view, UiWin* ui) {
view->ui = ui;
}
static size_t cursor_set(Selection *sel, Line *line, int col) {
int row = 0;
View *view = sel->view;
size_t pos = view->start;
/* get row number and file offset at start of the given line */
for (Line *l = view->topline; l && l != line; l = l->next) {
pos += l->len;
row++;
}
/* for characters which use more than 1 column, make sure we are on the left most */
while (col > 0 && line->cells[col].len == 0)
col--;
/* calculate offset within the line */
for (int i = 0; i < col; i++)
pos += line->cells[i].len;
sel->col = col;
sel->row = row;
sel->line = line;
cursor_to(sel, pos);
return pos;
}
static bool view_viewport_down(View *view, int n) {
Line *line;
if (view->end >= text_size(view->text))
return false;
if (n >= view->height) {
view->start = view->end;
} else {
for (line = view->topline; line && n > 0; line = line->next, n--)
view->start += line->len;
}
view_draw(view);
return true;
}
static bool view_viewport_up(View *view, int n) {
/* scrolling up is somewhat tricky because we do not yet know where
* the lines start, therefore scan backwards but stop at a reasonable
* maximum in case we are dealing with a file without any newlines
*/
if (view->start == 0)
return false;
size_t max = view->width * view->height;
char c;
Iterator it = text_iterator_get(view->text, view->start - 1);
if (!text_iterator_byte_get(&it, &c))
return false;
size_t off = 0;
/* skip newlines immediately before display area */
if (c == '\n' && text_iterator_byte_prev(&it, &c))
off++;
do {
if (c == '\n' && --n == 0)
break;
if (++off > max)
break;
} while (text_iterator_byte_prev(&it, &c));
view->start -= MIN(view->start, off);
view_draw(view);
return true;
}
void view_redraw_top(View *view) {
Line *line = view->selection->line;
for (Line *cur = view->topline; cur && cur != line; cur = cur->next)
view->start += cur->len;
view_draw(view);
view_cursor_to(view, view->selection->pos);
}
void view_redraw_center(View *view) {
int center = view->height / 2;
size_t pos = view->selection->pos;
for (int i = 0; i < 2; i++) {
int linenr = 0;
Line *line = view->selection->line;
for (Line *cur = view->topline; cur && cur != line; cur = cur->next)
linenr++;
if (linenr < center) {
view_slide_down(view, center - linenr);
continue;
}
for (Line *cur = view->topline; cur && cur != line && linenr > center; cur = cur->next) {
view->start += cur->len;
linenr--;
}
break;
}
view_draw(view);
view_cursor_to(view, pos);
}
void view_redraw_bottom(View *view) {
size_t pos = view->selection->pos;
view_viewport_up(view, view->height);
while (pos >= view->end && view_viewport_down(view, 1));
cursor_to(view->selection, pos);
}
size_t view_slide_up(View *view, int lines) {
Selection *sel = view->selection;
if (view_viewport_down(view, lines)) {
if (sel->line == view->topline)
cursor_set(sel, view->topline, sel->col);
else
view_cursor_to(view, sel->pos);
} else {
view_screenline_down(sel);
}
return sel->pos;
}
size_t view_slide_down(View *view, int lines) {
Selection *sel = view->selection;
bool lastline = sel->line == view->lastline;
size_t col = sel->col;
if (view_viewport_up(view, lines)) {
if (lastline)
cursor_set(sel, view->lastline, col);
else
view_cursor_to(view, sel->pos);
} else {
view_screenline_up(sel);
}
return sel->pos;
}
size_t view_scroll_up(View *view, int lines) {
Selection *sel = view->selection;
if (view_viewport_up(view, lines)) {
Line *line = sel->line < view->lastline ? sel->line : view->lastline;
cursor_set(sel, line, view->selection->col);
} else {
view_cursor_to(view, 0);
}
return sel->pos;
}
size_t view_scroll_page_up(View *view) {
Selection *sel = view->selection;
if (view->start == 0) {
view_cursor_to(view, 0);
} else {
view_cursor_to(view, view->start-1);
view_redraw_bottom(view);
view_screenline_begin(sel);
}
return sel->pos;
}
size_t view_scroll_page_down(View *view) {
view_scroll_down(view, view->height);
return view_screenline_begin(view->selection);
}
size_t view_scroll_halfpage_up(View *view) {
Selection *sel = view->selection;
if (view->start == 0) {
view_cursor_to(view, 0);
} else {
view_cursor_to(view, view->start-1);
view_redraw_center(view);
view_screenline_begin(sel);
}
return sel->pos;
}
size_t view_scroll_halfpage_down(View *view) {
size_t end = view->end;
size_t pos = view_scroll_down(view, view->height/2);
if (pos < text_size(view->text))
view_cursor_to(view, end);
return view->selection->pos;
}
size_t view_scroll_down(View *view, int lines) {
Selection *sel = view->selection;
if (view_viewport_down(view, lines)) {
Line *line = sel->line > view->topline ? sel->line : view->topline;
cursor_set(sel, line, sel->col);
} else {
view_cursor_to(view, text_size(view->text));
}
return sel->pos;
}
size_t view_line_up(Selection *sel) {
View *view = sel->view;
int lastcol = sel->lastcol;
if (!lastcol)
lastcol = sel->col;
size_t pos = text_line_up(sel->view->text, sel->pos);
bool offscreen = view->selection == sel && pos < view->start;
view_cursors_to(sel, pos);
if (offscreen)
view_redraw_top(view);
if (sel->line)
cursor_set(sel, sel->line, lastcol);
sel->lastcol = lastcol;
return sel->pos;
}
size_t view_line_down(Selection *sel) {
View *view = sel->view;
int lastcol = sel->lastcol;
if (!lastcol)
lastcol = sel->col;
size_t pos = text_line_down(sel->view->text, sel->pos);
bool offscreen = view->selection == sel && pos > view->end;
view_cursors_to(sel, pos);
if (offscreen)
view_redraw_bottom(view);
if (sel->line)
cursor_set(sel, sel->line, lastcol);
sel->lastcol = lastcol;
return sel->pos;
}
size_t view_screenline_up(Selection *sel) {
if (!sel->line)
return view_line_up(sel);
int lastcol = sel->lastcol;
if (!lastcol)
lastcol = sel->col;
if (!sel->line->prev)
view_scroll_up(sel->view, 1);
if (sel->line->prev)
cursor_set(sel, sel->line->prev, lastcol);
sel->lastcol = lastcol;
return sel->pos;
}
size_t view_screenline_down(Selection *sel) {
if (!sel->line)
return view_line_down(sel);
int lastcol = sel->lastcol;
if (!lastcol)
lastcol = sel->col;
if (!sel->line->next && sel->line == sel->view->bottomline)
view_scroll_down(sel->view, 1);
if (sel->line->next)
cursor_set(sel, sel->line->next, lastcol);
sel->lastcol = lastcol;
return sel->pos;
}
size_t view_screenline_begin(Selection *sel) {
if (!sel->line)
return sel->pos;
return cursor_set(sel, sel->line, 0);
}
size_t view_screenline_middle(Selection *sel) {
if (!sel->line)
return sel->pos;
return cursor_set(sel, sel->line, sel->line->width / 2);
}
size_t view_screenline_end(Selection *sel) {
if (!sel->line)
return sel->pos;
int col = sel->line->width - 1;
return cursor_set(sel, sel->line, col >= 0 ? col : 0);
}
size_t view_cursor_get(View *view) {
return view_cursors_pos(view->selection);
}
Line *view_lines_first(View *view) {
return view->topline;
}
Line *view_lines_last(View *view) {
return view->lastline;
}
Line *view_cursors_line_get(Selection *sel) {
return sel->line;
}
void view_scroll_to(View *view, size_t pos) {
view_cursors_scroll_to(view->selection, pos);
}
void view_options_set(View *view, enum UiOption options) {
const int mapping[] = {
[SYNTAX_SYMBOL_SPACE] = UI_OPTION_SYMBOL_SPACE,
[SYNTAX_SYMBOL_TAB] = UI_OPTION_SYMBOL_TAB,
[SYNTAX_SYMBOL_TAB_FILL] = UI_OPTION_SYMBOL_TAB_FILL,
[SYNTAX_SYMBOL_EOL] = UI_OPTION_SYMBOL_EOL,
[SYNTAX_SYMBOL_EOF] = UI_OPTION_SYMBOL_EOF,
};
for (int i = 0; i < LENGTH(mapping); i++) {
view->symbols[i] = (options & mapping[i]) ? &symbols_default[i] :
&symbols_none[i];
}
if (options & UI_OPTION_LINE_NUMBERS_ABSOLUTE)
options &= ~UI_OPTION_LARGE_FILE;
view->large_file = (options & UI_OPTION_LARGE_FILE);
if (view->ui)
view->ui->options_set(view->ui, options);
}
enum UiOption view_options_get(View *view) {
return view->ui ? view->ui->options_get(view->ui) : 0;
}
void view_colorcolumn_set(View *view, int col) {
if (col >= 0)
view->colorcolumn = col;
}
int view_colorcolumn_get(View *view) {
return view->colorcolumn;
}
size_t view_screenline_goto(View *view, int n) {
size_t pos = view->start;
for (Line *line = view->topline; --n > 0 && line != view->lastline; line = line->next)
pos += line->len;
return pos;
}
static Selection *selections_new(View *view, size_t pos, bool force) {
if (pos > text_size(view->text))
return NULL;
Selection *s = calloc(1, sizeof(*s));
if (!s)
return NULL;
s->view = view;
s->generation = view->selection_generation;
if (!view->selections) {
view->selection = s;
view->selection_latest = s;
view->selections = s;
view->selection_count = 1;
return s;
}
Selection *prev = NULL, *next = NULL;
Selection *latest = view->selection_latest ? view->selection_latest : view->selection;
size_t cur = view_cursors_pos(latest);
if (pos == cur) {
prev = latest;
next = prev->next;
} else if (pos > cur) {
prev = latest;
for (next = prev->next; next; prev = next, next = next->next) {
cur = view_cursors_pos(next);
if (pos <= cur)
break;
}
} else if (pos < cur) {
next = latest;
for (prev = next->prev; prev; next = prev, prev = prev->prev) {
cur = view_cursors_pos(prev);
if (pos >= cur)
break;
}
}
if (pos == cur && !force)
goto err;
for (Selection *after = next; after; after = after->next)
after->number++;
s->prev = prev;
s->next = next;
if (next)
next->prev = s;
if (prev) {
prev->next = s;
s->number = prev->number + 1;
} else {
view->selections = s;
}
view->selection_latest = s;
view->selection_count++;
view_selections_dispose(view->selection_dead);
view_cursors_to(s, pos);
return s;
err:
free(s);
return NULL;
}
Selection *view_selections_new(View *view, size_t pos) {
return selections_new(view, pos, false);
}
Selection *view_selections_new_force(View *view, size_t pos) {
return selections_new(view, pos, true);
}
int view_selections_count(View *view) {
return view->selection_count;
}
int view_selections_number(Selection *sel) {
return sel->number;
}
int view_selections_column_count(View *view) {
Text *txt = view->text;
int cpl_max = 0, cpl = 0; /* cursors per line */
size_t line_prev = 0;
for (Selection *sel = view->selections; sel; sel = sel->next) {
size_t pos = view_cursors_pos(sel);
size_t line = text_lineno_by_pos(txt, pos);
if (line == line_prev)
cpl++;
else
cpl = 1;
line_prev = line;
if (cpl > cpl_max)
cpl_max = cpl;
}
return cpl_max;
}
static Selection *selections_column_next(View *view, Selection *sel, int column) {
size_t line_cur = 0;
int column_cur = 0;
Text *txt = view->text;
if (sel) {
size_t pos = view_cursors_pos(sel);
line_cur = text_lineno_by_pos(txt, pos);
column_cur = INT_MIN;
} else {
sel = view->selections;
}
for (; sel; sel = sel->next) {
size_t pos = view_cursors_pos(sel);
size_t line = text_lineno_by_pos(txt, pos);
if (line != line_cur) {
line_cur = line;
column_cur = 0;
} else {
column_cur++;
}
if (column == column_cur)
return sel;
}
return NULL;
}
Selection *view_selections_column(View *view, int column) {
return selections_column_next(view, NULL, column);
}
Selection *view_selections_column_next(Selection *sel, int column) {
return selections_column_next(sel->view, sel, column);
}
static void selection_free(Selection *s) {
if (!s)
return;
for (Selection *after = s->next; after; after = after->next)
after->number--;
if (s->prev)
s->prev->next = s->next;
if (s->next)
s->next->prev = s->prev;
if (s->view->selections == s)
s->view->selections = s->next;
if (s->view->selection == s)
s->view->selection = s->next ? s->next : s->prev;
if (s->view->selection_dead == s)
s->view->selection_dead = NULL;
if (s->view->selection_latest == s)
s->view->selection_latest = s->prev ? s->prev : s->next;
s->view->selection_count--;
free(s);
}
bool view_selections_dispose(Selection *sel) {
if (!sel)
return true;
View *view = sel->view;
if (!view->selections || !view->selections->next)
return false;
selection_free(sel);
view_selections_primary_set(view->selection);
return true;
}
bool view_selections_dispose_force(Selection *sel) {
if (view_selections_dispose(sel))
return true;
View *view = sel->view;
if (view->selection_dead)
return false;
view_selection_clear(sel);
view->selection_dead = sel;
return true;
}
Selection *view_selection_disposed(View *view) {
Selection *sel = view->selection_dead;
view->selection_dead = NULL;
return sel;
}
Selection *view_selections(View *view) {
view->selection_generation++;
return view->selections;
}
Selection *view_selections_primary_get(View *view) {
view->selection_generation++;
return view->selection;
}
void view_selections_primary_set(Selection *s) {
if (!s)
return;
s->view->selection = s;
Mark anchor = s->anchor;
view_cursors_to(s, view_cursors_pos(s));
s->anchor = anchor;
}
Selection *view_selections_prev(Selection *s) {
View *view = s->view;
for (s = s->prev; s; s = s->prev) {
if (s->generation != view->selection_generation)
return s;
}
view->selection_generation++;
return NULL;
}
Selection *view_selections_next(Selection *s) {
View *view = s->view;
for (s = s->next; s; s = s->next) {
if (s->generation != view->selection_generation)
return s;
}
view->selection_generation++;
return NULL;
}
size_t view_cursors_pos(Selection *s) {
return text_mark_get(s->view->text, s->cursor);
}
size_t view_cursors_line(Selection *s) {
size_t pos = view_cursors_pos(s);
return text_lineno_by_pos(s->view->text, pos);
}
size_t view_cursors_col(Selection *s) {
size_t pos = view_cursors_pos(s);
return text_line_char_get(s->view->text, pos) + 1;
}
int view_cursors_cell_get(Selection *s) {
return s->line ? s->col : -1;
}
int view_cursors_cell_set(Selection *s, int cell) {
if (!s->line || cell < 0)
return -1;
cursor_set(s, s->line, cell);
return s->col;
}
void view_cursors_scroll_to(Selection *s, size_t pos) {
View *view = s->view;
if (view->selection == s) {
view_draw(view);
while (pos < view->start && view_viewport_up(view, 1));
while (pos > view->end && view_viewport_down(view, 1));
}
view_cursors_to(s, pos);
}
void view_cursors_to(Selection *s, size_t pos) {
View *view = s->view;
if (pos == EPOS)
return;
size_t size = text_size(view->text);
if (pos > size)
pos = size;
if (s->view->selection == s) {
/* make sure we redraw changes to the very first character of the window */
if (view->start == pos)
view->start_last = 0;
if (view->end == pos && view->lastline == view->bottomline) {
view->start += view->topline->len;
view_draw(view);
}
if (pos < view->start || pos > view->end) {
view->start = pos;
view_viewport_up(view, view->height / 2);
}
if (pos <= view->start || pos > view->end) {
view->start = text_line_begin(view->text, pos);
view_draw(view);
}
if (pos <= view->start || pos > view->end) {
view->start = pos;
view_draw(view);
}
}
cursor_to(s, pos);
}
void view_cursors_place(Selection *s, size_t line, size_t col) {
Text *txt = s->view->text;
size_t pos = text_pos_by_lineno(txt, line);
pos = text_line_char_set(txt, pos, col > 0 ? col-1 : col);
view_cursors_to(s, pos);
}
void view_selections_anchor(Selection *s, bool anchored) {
s->anchored = anchored;
}
void view_selection_clear(Selection *s) {
s->anchored = false;
s->anchor = s->cursor;
s->view->need_update = true;
}
void view_selections_flip(Selection *s) {
Mark temp = s->anchor;
s->anchor = s->cursor;
s->cursor = temp;
view_cursors_to(s, text_mark_get(s->view->text, s->cursor));
}
bool view_selections_anchored(Selection *s) {
return s->anchored;
}
void view_selections_clear_all(View *view) {
for (Selection *s = view->selections; s; s = s->next)
view_selection_clear(s);
view_draw(view);
}
void view_selections_dispose_all(View *view) {
Selection *last = view->selections;
while (last->next)
last = last->next;
for (Selection *s = last, *prev; s; s = prev) {
prev = s->prev;
if (s != view->selection)
selection_free(s);
}
view_draw(view);
}
Filerange view_selection_get(View *view) {
return view_selections_get(view->selection);
}
Filerange view_selections_get(Selection *s) {
if (!s)
return text_range_empty();
Text *txt = s->view->text;
size_t anchor = text_mark_get(txt, s->anchor);
size_t cursor = text_mark_get(txt, s->cursor);
Filerange sel = text_range_new(anchor, cursor);
if (text_range_valid(&sel))
sel.end = text_char_next(txt, sel.end);
return sel;
}
bool view_selections_set(Selection *s, const Filerange *r) {
Text *txt = s->view->text;
size_t max = text_size(txt);
if (!text_range_valid(r) || r->start >= max)
return false;
size_t anchor = text_mark_get(txt, s->anchor);
size_t cursor = text_mark_get(txt, s->cursor);
bool left_extending = anchor != EPOS && anchor > cursor;
size_t end = r->end > max ? max : r->end;
if (r->start != end)
end = text_char_prev(txt, end);
view_cursors_to(s, left_extending ? r->start : end);
s->anchor = text_mark_set(txt, left_extending ? end : r->start);
return true;
}
Filerange view_regions_restore(View *view, SelectionRegion *s) {
Text *txt = view->text;
size_t anchor = text_mark_get(txt, s->anchor);
size_t cursor = text_mark_get(txt, s->cursor);
Filerange sel = text_range_new(anchor, cursor);
if (text_range_valid(&sel))
sel.end = text_char_next(txt, sel.end);
return sel;
}
bool view_regions_save(View *view, Filerange *r, SelectionRegion *s) {
Text *txt = view->text;
size_t max = text_size(txt);
if (!text_range_valid(r) || r->start >= max)
return false;
size_t end = r->end > max ? max : r->end;
if (r->start != end)
end = text_char_prev(txt, end);
s->anchor = text_mark_set(txt, r->start);
s->cursor = text_mark_set(txt, end);
return true;
}
void view_selections_set_all(View *view, Array *arr, bool anchored) {
Selection *s;
Filerange *r;
size_t i = 0;
for (s = view->selections; s; s = s->next) {
if (!(r = array_get(arr, i++)) || !view_selections_set(s, r)) {
for (Selection *next; s; s = next) {
next = view_selections_next(s);
if (i == 1 && s == view->selection)
view_selection_clear(s);
else
view_selections_dispose(s);
}
break;
}
s->anchored = anchored;
}
while ((r = array_get(arr, i++))) {
s = view_selections_new_force(view, r->start);
if (!s || !view_selections_set(s, r))
break;
s->anchored = anchored;
}
view_selections_primary_set(view->selections);
}
Array view_selections_get_all(View *view) {
Array arr;
array_init_sized(&arr, sizeof(Filerange));
if (!array_reserve(&arr, view_selections_count(view)))
return arr;
for (Selection *s = view->selections; s; s = s->next) {
Filerange r = view_selections_get(s);
if (text_range_valid(&r))
array_add(&arr, &r);
}
return arr;
}
void view_selections_normalize(View *view) {
Selection *prev = NULL;
Filerange range_prev = text_range_empty();
for (Selection *s = view->selections, *next; s; s = next) {
next = s->next;
Filerange range = view_selections_get(s);
if (!text_range_valid(&range)) {
view_selections_dispose(s);
} else if (prev && text_range_overlap(&range_prev, &range)) {
range_prev = text_range_union(&range_prev, &range);
view_selections_dispose(s);
} else {
if (prev)
view_selections_set(prev, &range_prev);
range_prev = range;
prev = s;
}
}
if (prev)
view_selections_set(prev, &range_prev);
}
Text *view_text(View *view) {
return view->text;
}
char *view_symbol_eof_get(View *view) {
return view->symbols[SYNTAX_SYMBOL_EOF]->symbol;
}
bool view_style_define(View *view, enum UiStyle id, const char *style) {
return view->ui->style_define(view->ui, id, style);
}
void view_style(View *view, enum UiStyle style_id, size_t start, size_t end) {
if (end < view->start || start > view->end)
return;
CellStyle style = view->ui->style_get(view->ui, style_id);
size_t pos = view->start;
Line *line = view->topline;
/* skip lines before range to be styled */
while (line && pos + line->len <= start) {
pos += line->len;
line = line->next;
}
if (!line)
return;
int col = 0, width = view->width;
/* skip columns before range to be styled */
while (pos < start && col < width)
pos += line->cells[col++].len;
do {
while (pos <= end && col < width) {
pos += line->cells[col].len;
line->cells[col++].style = style;
}
col = 0;
} while (pos <= end && (line = line->next));
}
|