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 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
|
/*
* zle_refresh.c - screen update
*
* This file is part of zsh, the Z shell.
*
* Copyright (c) 1992-1997 Paul Falstad
* All rights reserved.
*
* Permission is hereby granted, without written agreement and without
* license or royalty fees, to use, copy, modify, and distribute this
* software and to distribute modified versions of this software for any
* purpose, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* In no event shall Paul Falstad or the Zsh Development Group be liable
* to any party for direct, indirect, special, incidental, or consequential
* damages arising out of the use of this software and its documentation,
* even if Paul Falstad and the Zsh Development Group have been advised of
* the possibility of such damage.
*
* Paul Falstad and the Zsh Development Group specifically disclaim any
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose. The software
* provided hereunder is on an "as is" basis, and Paul Falstad and the
* Zsh Development Group have no obligation to provide maintenance,
* support, updates, enhancements, or modifications.
*
*/
#include "zle.mdh"
#ifdef MULTIBYTE_SUPPORT
/*
* We use a wint_t here, since we need an invalid character as a
* placeholder and wint_t guarantees that we can use WEOF to do this.
*/
typedef wint_t *REFRESH_STRING;
typedef wint_t REFRESH_CHAR;
/*
* Unfortunately, that means the pointer is the wrong type for
* wmemset and friends.
*/
static void
ZR_memset(wint_t *dst, wchar_t wc, int len)
{
while (len--)
*dst++ = wc;
}
#define ZR_memcpy(d, s, l) memcpy((d), (s), (l)*sizeof(wint_t))
static void
ZR_strcpy(wint_t *dst, wint_t *src)
{
while ((*dst++ = *src++) != L'\0')
;
}
static size_t
ZR_strlen(wint_t *wstr)
{
int len = 0;
while (*wstr++ != L'\0')
len++;
return len;
}
/*
* Simplified strcmp: we don't need the sign, just whether
* the strings are equal.
*/
static int
ZR_strncmp(wint_t *wstr1, wint_t *wstr2, int len)
{
while (len--) {
if (!*wstr1 || !*wstr2)
return (*wstr1 == *wstr2) ? 0 : 1;
if (*wstr1++ != *wstr2++)
return 1;
}
return 0;
}
#else
typedef char *REFRESH_STRING;
typedef char REFRESH_CHAR;
#define ZR_memset memset
#define ZR_memcpy memcpy
#define ZR_strcpy strcpy
#define ZR_strlen strlen
#define ZR_strncmp strncmp
#endif
#include "zle_refresh.pro"
/*
* Expanded prompts.
*
* These are always output from the start, except in the special
* case where we are sure each character in the prompt corresponds
* to a character on screen.
*/
/**/
char *lpromptbuf, *rpromptbuf;
/* Text attributes after displaying prompts */
/**/
unsigned pmpt_attr, rpmpt_attr;
/* number of lines displayed */
/**/
mod_export int nlnct;
/* Most lines of the buffer we've shown at once with the current list *
* showing. == 0 if there is no list. == -1 if a new list has just *
* been put on the screen. == -2 if zrefresh() needs to put up a new *
* list. */
/**/
mod_export int showinglist;
/* > 0 if a completion list is displayed below the prompt,
* < 0 if a list is displayed above the prompt. */
/**/
mod_export int listshown;
/* Length of last list displayed (if it is below the prompt). */
/**/
mod_export int lastlistlen;
/* Non-zero if ALWAYS_LAST_PROMPT has been used, meaning that the *
* screen below the buffer display should not be cleared by *
* zrefresh(), but should be by trashzle(). */
/**/
mod_export int clearflag;
/* Non-zero if zrefresh() should clear the list below the prompt. */
/**/
mod_export int clearlist;
/* Zle in trashed state - updates may be subtly altered */
/**/
int trashedzle;
/*
* Information used by PREDISPLAY and POSTDISPLAY parameters which
* add non-editable text to that being displayed.
*/
/**/
ZLE_STRING_T predisplay, postdisplay;
/**/
int predisplaylen, postdisplaylen;
#ifdef HAVE_SELECT
/* cost of last update */
/**/
int cost;
# define SELECT_ADD_COST(X) cost += X
# define zputc(a) zwcputc(a), cost++
# define zwrite(a, b) zwcwrite(a, b), cost += (b * ZLE_CHAR_SIZE)
#else
# define SELECT_ADD_COST(X)
# define zputc(a) zwcputc(a)
# define zwrite(a, b) zwcwrite(a, b)
#endif
/**/
void
zwcputc(ZLE_INT_T c)
{
#ifdef MULTIBYTE_SUPPORT
char mbtmp[MB_CUR_MAX + 1];
mbstate_t mbstate;
int i;
if (c == WEOF)
return;
memset(&mbstate, 0, sizeof(mbstate_t));
if ((i = wcrtomb(mbtmp, (wchar_t)c, &mbstate)) > 0)
fwrite(mbtmp, i, 1, shout);
#else
fputc(c, shout);
#endif
}
static int
zwcwrite(REFRESH_STRING s, size_t i)
{
#ifdef MULTIBYTE_SUPPORT
size_t j;
for (j = 0; j < i; j++)
zwcputc(s[j]);
return i; /* TODO something better for error indication */
#else
return fwrite(s, i, 1, shout);
#endif
}
/* Oct/Nov 94: <mason> some code savagely redesigned to fix several bugs -
refreshline() & tc_rightcurs() majorly rewritten; zrefresh() fixed -
I've put my fingers into just about every routine in here -
any queries about updates to mason@primenet.com.au */
static REFRESH_STRING
*nbuf = NULL, /* new video buffer line-by-line char array */
*obuf = NULL; /* old video buffer line-by-line char array */
static int more_start, /* more text before start of screen? */
more_end, /* more stuff after end of screen? */
olnct, /* previous number of lines */
ovln, /* previous video cursor position line */
lpromptw, rpromptw, /* prompt widths on screen */
lpromptwof, /* left prompt width with real end position */
lprompth, /* lines taken up by the prompt */
rprompth, /* right prompt height */
vcs, vln, /* video cursor position column & line */
vmaxln, /* video maximum number of lines */
winw, winh, rwinh, /* window width & height */
winpos; /* singlelinezle: line's position in window */
/**/
void
resetvideo(void)
{
int ln;
static int lwinw = -1, lwinh = -1; /* last window width & height */
winw = columns; /* terminal width */
if (termflags & TERM_SHORT)
winh = 1;
else
winh = (lines < 2) ? 24 : lines;
rwinh = lines; /* keep the real number of lines */
winpos = vln = vmaxln = 0;
if (lwinw != winw || lwinh != winh) {
if (nbuf) {
for (ln = 0; ln != lwinh; ln++) {
zfree(nbuf[ln], (lwinw + 2) * sizeof(**nbuf));
zfree(obuf[ln], (lwinw + 2) * sizeof(**obuf));
}
free(nbuf);
free(obuf);
}
nbuf = (REFRESH_STRING *)zshcalloc((winh + 1) * sizeof(*nbuf));
obuf = (REFRESH_STRING *)zshcalloc((winh + 1) * sizeof(*obuf));
nbuf[0] = (REFRESH_STRING)zalloc((winw + 2) * sizeof(**nbuf));
obuf[0] = (REFRESH_STRING)zalloc((winw + 2) * sizeof(**obuf));
lwinw = winw;
lwinh = winh;
}
for (ln = 0; ln != winh + 1; ln++) {
if (nbuf[ln]) {
nbuf[ln][0] = ZWC('\n');
nbuf[ln][1] = ZWC('\0');
}
if (obuf[ln]) {
obuf[ln][0] = ZWC('\n');
obuf[ln][1] = ZWC('\0');
}
}
/*
* countprompt() now correctly handles multibyte input.
*/
countprompt(lpromptbuf, &lpromptwof, &lprompth, 1);
countprompt(rpromptbuf, &rpromptw, &rprompth, 0);
if (lpromptwof != winw)
lpromptw = lpromptwof;
else {
lpromptw = 0;
lprompth++;
}
if (lpromptw) {
ZR_memset(nbuf[0], ZWC(' '), lpromptw);
ZR_memset(obuf[0], ZWC(' '), lpromptw);
nbuf[0][lpromptw] = obuf[0][lpromptw] = ZWC('\0');
}
vcs = lpromptw;
olnct = nlnct = 0;
if (showinglist > 0)
showinglist = -2;
trashedzle = 0;
}
/*
* Nov 96: <mason> changed to single line scroll
*/
/**/
static void
scrollwindow(int tline)
{
int t0;
REFRESH_STRING s;
s = nbuf[tline];
for (t0 = tline; t0 < winh - 1; t0++)
nbuf[t0] = nbuf[t0 + 1];
nbuf[winh - 1] = s;
if (!tline)
more_start = 1;
return;
}
/*
* Parameters in zrefresh used for communicating with next-line functions.
*/
struct rparams {
int canscroll; /* number of lines we are allowed to scroll */
int ln; /* current line we're working on */
int more_status; /* more stuff in status line */
int nvcs; /* video cursor column */
int nvln; /* video cursor line */
int tosln; /* tmp in statusline stuff */
REFRESH_STRING s; /* pointer into the video buffer */
REFRESH_STRING sen; /* pointer to end of the video buffer (eol) */
};
typedef struct rparams *Rparams;
static int cleareol, /* clear to end-of-line (if can't cleareod) */
clearf, /* alwayslastprompt used immediately before */
put_rpmpt, /* whether we should display right-prompt */
oput_rpmpt, /* whether displayed right-prompt last time */
oxtabs, /* oxtabs - tabs expand to spaces if set */
numscrolls, onumscrolls;
/*
* Go to the next line in the main display area. Return 1 if we should abort
* processing the line loop at this point, else 0.
*
* If wrapped is non-zero, text wrapped, so output newline.
* Otherwise, text not wrapped, so output null.
*/
static int
nextline(Rparams rpms, int wrapped)
{
nbuf[rpms->ln][winw+1] = wrapped ? ZWC('\n') : ZWC('\0');
*rpms->s = ZWC('\0');
if (rpms->ln != winh - 1)
rpms->ln++;
else {
if (!rpms->canscroll) {
if (rpms->nvln != -1 && rpms->nvln != winh - 1
&& (numscrolls != onumscrolls - 1
|| rpms->nvln <= winh / 2))
return 1;
numscrolls++;
rpms->canscroll = winh / 2;
}
rpms->canscroll--;
scrollwindow(0);
if (rpms->nvln != -1)
rpms->nvln--;
}
if (!nbuf[rpms->ln])
nbuf[rpms->ln] = (REFRESH_STRING)zalloc((winw + 2) * sizeof(**nbuf));
rpms->s = nbuf[rpms->ln];
rpms->sen = rpms->s + winw;
return 0;
}
/*
* Go to the next line in the status area.
*/
static void
snextline(Rparams rpms)
{
*rpms->s = ZWC('\0');
if (rpms->ln != winh - 1)
rpms->ln++;
else
if (rpms->tosln > rpms->ln) {
rpms->tosln--;
if (rpms->nvln > 1) {
scrollwindow(0);
rpms->nvln--;
} else
more_end = 1;
} else if (rpms->tosln > 2 && rpms->nvln > 1) {
rpms->tosln--;
if (rpms->tosln <= rpms->nvln) {
scrollwindow(0);
rpms->nvln--;
} else {
scrollwindow(rpms->tosln);
more_end = 1;
}
} else {
rpms->more_status = 1;
scrollwindow(rpms->tosln + 1);
}
if (!nbuf[rpms->ln])
nbuf[rpms->ln] = (REFRESH_STRING)zalloc((winw + 2) * sizeof(**nbuf));
rpms->s = nbuf[rpms->ln];
rpms->sen = rpms->s + winw;
}
/**/
mod_export void
zrefresh(void)
{
static int inlist; /* avoiding recursion */
int iln; /* current line as index in loops */
int t0 = -1; /* tmp */
ZLE_STRING_T tmpline, /* line with added pre/post text */
t, /* pointer into the real buffer */
scs, /* pointer to cursor position in real buffer */
u; /* pointer for status line stuff */
REFRESH_STRING *qbuf; /* tmp */
int tmpcs, tmpll; /* ditto cursor position and line length */
int tmpalloced; /* flag to free tmpline when finished */
int remetafy; /* flag that zle line is metafied */
struct rparams rpms;
if (trashedzle)
reexpandprompt();
/* If this is called from listmatches() (indirectly via trashzle()), and *
* that was called from the end of zrefresh(), then we don't need to do *
* anything. All this `inlist' code is actually unnecessary, but it *
* improves speed a little in a common case. */
if (inlist)
return;
/*
* zrefresh() is called from all over the place, so we can't
* be sure if the line is metafied for completion or not.
*/
if (zlemetaline != NULL) {
remetafy = 1;
unmetafy_line();
}
else
remetafy = 0;
if (predisplaylen || postdisplaylen) {
/* There is extra text to display at the start or end of the line */
tmpline = zalloc((zlell + predisplaylen + postdisplaylen)*sizeof(*tmpline));
if (predisplaylen)
ZS_memcpy(tmpline, predisplay, predisplaylen);
if (zlell)
ZS_memcpy(tmpline+predisplaylen, zleline, zlell);
if (postdisplaylen)
ZS_memcpy(tmpline+predisplaylen+zlell, postdisplay,
postdisplaylen);
tmpcs = zlecs + predisplaylen;
tmpll = predisplaylen + zlell + postdisplaylen;
tmpalloced = 1;
} else {
tmpline = zleline;
tmpcs = zlecs;
tmpll = zlell;
tmpalloced = 0;
}
if (clearlist && listshown > 0) {
if (tccan(TCCLEAREOD)) {
int ovln = vln, ovcs = vcs;
REFRESH_STRING nb = nbuf[vln];
nbuf[vln] = obuf[vln];
moveto(nlnct, 0);
tcout(TCCLEAREOD);
moveto(ovln, ovcs);
nbuf[vln] = nb;
} else {
invalidatelist();
moveto(0, 0);
clearflag = 0;
resetneeded = 1;
}
listshown = lastlistlen = 0;
if (showinglist != -2)
showinglist = 0;
}
clearlist = 0;
#ifdef HAVE_SELECT
cost = 0; /* reset */
#endif
/* Nov 96: <mason> I haven't checked how complete this is. sgtty stuff may
or may not work */
#if defined(SGTABTYPE)
oxtabs = ((SGTTYFLAG & SGTABTYPE) == SGTABTYPE);
#else
oxtabs = 0;
#endif
cleareol = 0; /* unset */
more_start = more_end = 0; /* unset */
if (isset(SINGLELINEZLE) || lines < 3
|| (termflags & (TERM_NOUP | TERM_BAD | TERM_UNKNOWN)))
termflags |= TERM_SHORT;
else
termflags &= ~TERM_SHORT;
if (resetneeded) {
onumscrolls = 0;
zsetterm();
#ifdef TIOCGWINSZ
if (winchanged) {
moveto(0, 0);
t0 = olnct; /* this is to clear extra lines even when */
winchanged = 0; /* the terminal cannot TCCLEAREOD */
listshown = 0;
}
#endif
resetvideo();
resetneeded = 0; /* unset */
oput_rpmpt = 0; /* no right-prompt currently on screen */
/* we probably should only have explicitly set attributes */
tsetcap(TCALLATTRSOFF, 0);
tsetcap(TCSTANDOUTEND, 0);
tsetcap(TCUNDERLINEEND, 0);
if (!clearflag) {
if (tccan(TCCLEAREOD))
tcout(TCCLEAREOD);
else
cleareol = 1; /* request: clear to end of line */
if (listshown > 0)
listshown = 0;
}
if (t0 > -1)
olnct = (t0 < winh) ? t0 : winh;
if (termflags & TERM_SHORT)
vcs = 0;
else if (!clearflag && lpromptbuf[0]) {
zputs(lpromptbuf, shout);
if (lpromptwof == winw)
zputs("\n", shout); /* works with both hasam and !hasam */
} else {
txtchange = pmpt_attr;
if (txtchangeisset(TXTNOBOLDFACE))
tsetcap(TCALLATTRSOFF, 0);
if (txtchangeisset(TXTNOSTANDOUT))
tsetcap(TCSTANDOUTEND, 0);
if (txtchangeisset(TXTNOUNDERLINE))
tsetcap(TCUNDERLINEEND, 0);
if (txtchangeisset(TXTBOLDFACE))
tsetcap(TCBOLDFACEBEG, 0);
if (txtchangeisset(TXTSTANDOUT))
tsetcap(TCSTANDOUTBEG, 0);
if (txtchangeisset(TXTUNDERLINE))
tsetcap(TCUNDERLINEBEG, 0);
}
if (clearflag) {
zputc(ZWC('\r'));
vcs = 0;
moveto(0, lpromptw);
}
fflush(shout);
clearf = clearflag;
} else if (winw != columns || rwinh != lines)
resetvideo();
/* now winw equals columns and winh equals lines
width comparisons can be made with winw, height comparisons with winh */
if (termflags & TERM_SHORT) {
singlerefresh(tmpline, tmpll, tmpcs);
goto singlelineout;
}
if (tmpcs < 0) {
#ifdef DEBUG
fprintf(stderr, "BUG: negative cursor position\n");
fflush(stderr);
#endif
tmpcs = 0;
}
scs = tmpline + tmpcs;
numscrolls = 0;
/* first, we generate the video line buffers so we know what to put on
the screen - also determine final cursor position (nvln, nvcs) */
/* Deemed necessary by PWS 1995/05/15 due to kill-line problems */
if (!*nbuf)
*nbuf = (REFRESH_STRING)zalloc((winw + 2) * sizeof(**nbuf));
memset(&rpms, 0, sizeof(rpms));
rpms.nvln = -1;
rpms.s = nbuf[rpms.ln = 0] + lpromptw;
t = tmpline;
rpms.sen = *nbuf + winw;
for (; t < tmpline+tmpll; t++) {
if (t == scs) /* if cursor is here, remember it */
rpms.nvcs = rpms.s - nbuf[rpms.nvln = rpms.ln];
if (*t == ZWC('\n')){ /* newline */
/* text not wrapped */
if (nextline(&rpms, 0))
break;
} else if (*t == ZWC('\t')) { /* tab */
t0 = rpms.s - nbuf[rpms.ln];
if ((t0 | 7) + 1 >= winw) {
/* text wrapped */
if (nextline(&rpms, 1))
break;
} else
do
*rpms.s++ = ZWC(' ');
while ((++t0) & 7);
}
#ifdef MULTIBYTE_SUPPORT
else if (iswprint(*t)) {
int width = wcwidth(*t);
if (width > rpms.sen - rpms.s) {
/*
* Too wide to fit. Insert spaces to end of current line.
*/
do {
*rpms.s++ = ZWC(' ');
} while (rpms.s < rpms.sen);
if (nextline(&rpms, 1))
break;
if (t == scs) {
/* Update cursor to this point */
rpms.nvcs = rpms.s - nbuf[rpms.nvln = rpms.ln];
}
}
if (width > rpms.sen - rpms.s) {
/*
* The screen width is too small to fit even one
* occurrence.
*/
*rpms.s++ = ZWC('?');
} else {
/* We can fit it without reaching the end of the line. */
*rpms.s++ = *t;
while (--width > 0)
*rpms.s++ = WEOF;
}
}
#endif
else if (ZC_icntrl(*t)) { /* other control character */
*rpms.s++ = ZWC('^');
if (rpms.s == rpms.sen) {
/* text wrapped */
if (nextline(&rpms, 1))
break;
}
*rpms.s++ = (((unsigned int)*t & ~0x80u) > 31) ? ZWC('?') : (*t | ZWC('@'));
} else { /* normal character */
*rpms.s++ = *t;
}
if (rpms.s == rpms.sen) {
/* text wrapped */
if (nextline(&rpms, 1))
break;
}
}
/* if we're really on the next line, don't fake it; do everything properly */
if (t == scs &&
(rpms.nvcs = rpms.s - (nbuf[rpms.nvln = rpms.ln])) == winw) {
/* text wrapped */
(void)nextline(&rpms, 1);
*rpms.s = ZWC('\0');
rpms.nvcs = 0;
rpms.nvln++;
}
if (t != tmpline + tmpll)
more_end = 1;
if (statusline) {
rpms.tosln = rpms.ln + 1;
nbuf[rpms.ln][winw + 1] = ZWC('\0'); /* text not wrapped */
snextline(&rpms);
u = statusline;
for (; u < statusline + statusll; u++) {
#ifdef MULTIBYTE_SUPPORT
if (iswprint(*u)) {
int width = wcwidth(*u);
/* Handle wide characters as above */
if (width > rpms.sen - rpms.s) {
do {
*rpms.s++ = ZWC(' ');
} while (rpms.s < rpms.sen);
nbuf[rpms.ln][winw + 1] = ZWC('\n');
snextline(&rpms);
}
if (width > rpms.sen - rpms.s) {
*rpms.s++ = ZWC('?');
} else {
*rpms.s++ = *u;
while (--width > 0)
*rpms.s++ = WEOF;
}
}
else
#endif
if (ZC_icntrl(*u)) { /* simplified processing in the status line */
*rpms.s++ = ZWC('^');
if (rpms.s == rpms.sen) {
nbuf[rpms.ln][winw + 1] = ZWC('\n');/* text wrapped */
snextline(&rpms);
}
*rpms.s++ = (((unsigned int)*u & ~0x80u) > 31) ? ZWC('?') : (*u | ZWC('@'));
} else
*rpms.s++ = *u;
if (rpms.s == rpms.sen) {
nbuf[rpms.ln][winw + 1] = ZWC('\n'); /* text wrapped */
snextline(&rpms);
}
}
if (rpms.s == rpms.sen) {
/*
* I suppose we don't modify nbuf[rpms.ln][winw+1] here
* since we're right at the end?
*/
snextline(&rpms);
}
}
*rpms.s = ZWC('\0');
/* insert <.... at end of last line if there is more text past end of screen */
/* TODO: if we start overwriting in the middle of a wide character, mayhem
* will ensue.
*/
if (more_end) {
if (!statusline)
rpms.tosln = winh;
rpms.s = nbuf[rpms.tosln - 1];
rpms.sen = rpms.s + winw - 7;
for (; rpms.s < rpms.sen; rpms.s++) {
if (*rpms.s == ZWC('\0')) {
for (; rpms.s < rpms.sen; )
*rpms.s++ = ZWC(' ');
break;
}
}
ZR_memcpy(rpms.sen, ZWS(" <.... "), 7);
nbuf[rpms.tosln - 1][winw] = nbuf[rpms.tosln - 1][winw + 1]
= ZWC('\0');
}
/* insert <....> at end of first status line if status is too big */
if (rpms.more_status) {
rpms.s = nbuf[rpms.tosln];
rpms.sen = rpms.s + winw - 8;
for (; rpms.s < rpms.sen; rpms.s++) {
if (*rpms.s == ZWC('\0')) {
for (; rpms.s < rpms.sen; )
*rpms.s++ = ZWC(' ');
break;
}
}
ZR_memcpy(rpms.sen, ZWS(" <....> "), 8);
nbuf[rpms.tosln][winw] = nbuf[rpms.tosln][winw + 1] = ZWC('\0');
}
nlnct = rpms.ln + 1;
for (iln = nlnct; iln < winh; iln++) {
zfree(nbuf[iln], (winw + 2) * sizeof(**nbuf));
nbuf[iln] = NULL;
}
/* determine whether the right-prompt exists and can fit on the screen */
if (!more_start) {
if (trashedzle && opts[TRANSIENTRPROMPT])
put_rpmpt = 0;
else
put_rpmpt = rprompth == 1 && rpromptbuf[0] &&
!strchr(rpromptbuf, '\t') &&
(int)ZR_strlen(nbuf[0]) + rpromptw < winw - 1;
} else {
/* insert >.... on first line if there is more text before start of screen */
memset(nbuf[0], ZWC(' '), lpromptw);
t0 = winw - lpromptw;
t0 = t0 > 5 ? 5 : t0;
ZR_memcpy(nbuf[0] + lpromptw, ZWS(">...."), t0);
ZR_memset(nbuf[0] + lpromptw + t0, ZWC(' '), winw - t0 - lpromptw);
nbuf[0][winw] = nbuf[0][winw + 1] = ZWC('\0');
}
for (iln = 0; iln < nlnct; iln++) {
/* if we have more lines than last time, clear the newly-used lines */
if (iln >= olnct)
cleareol = 1;
/* if old line and new line are different,
see if we can insert/delete a line to speed up update */
if (!clearf && iln > 0 && iln < olnct - 1 &&
!(hasam && vcs == winw) &&
nbuf[iln] && obuf[iln] &&
ZR_strncmp(nbuf[iln], obuf[iln], 16)) {
if (tccan(TCDELLINE) && obuf[iln + 1] &&
obuf[iln + 1][0] && nbuf[iln] &&
!ZR_strncmp(nbuf[iln], obuf[iln + 1], 16)) {
moveto(iln, 0);
tcout(TCDELLINE);
zfree(obuf[iln], (winw + 2) * sizeof(**obuf));
for (t0 = iln; t0 != olnct; t0++)
obuf[t0] = obuf[t0 + 1];
obuf[--olnct] = NULL;
}
/* don't try to insert a line if olnct = vmaxln (vmaxln is the number
of lines that have been displayed by this routine) so that we don't
go off the end of the screen. */
else if (tccan(TCINSLINE) && olnct < vmaxln && nbuf[iln + 1] &&
obuf[iln] && !ZR_strncmp(nbuf[iln + 1],
obuf[iln], 16)) {
moveto(iln, 0);
tcout(TCINSLINE);
for (t0 = olnct; t0 != iln; t0--)
obuf[t0] = obuf[t0 - 1];
obuf[iln] = NULL;
olnct++;
}
}
/* update the single line */
refreshline(iln);
/* output the right-prompt if appropriate */
if (put_rpmpt && !iln && !oput_rpmpt) {
moveto(0, winw - 1 - rpromptw);
zputs(rpromptbuf, shout);
vcs = winw - 1;
/* reset character attributes to that set by the main prompt */
txtchange = pmpt_attr;
if (txtchangeisset(TXTNOBOLDFACE) && (rpmpt_attr & TXTBOLDFACE))
tsetcap(TCALLATTRSOFF, 0);
if (txtchangeisset(TXTNOSTANDOUT) && (rpmpt_attr & TXTSTANDOUT))
tsetcap(TCSTANDOUTEND, 0);
if (txtchangeisset(TXTNOUNDERLINE) && (rpmpt_attr & TXTUNDERLINE))
tsetcap(TCUNDERLINEEND, 0);
if (txtchangeisset(TXTBOLDFACE) && (rpmpt_attr & TXTNOBOLDFACE))
tsetcap(TCBOLDFACEBEG, 0);
if (txtchangeisset(TXTSTANDOUT) && (rpmpt_attr & TXTNOSTANDOUT))
tsetcap(TCSTANDOUTBEG, 0);
if (txtchangeisset(TXTUNDERLINE) && (rpmpt_attr & TXTNOUNDERLINE))
tsetcap(TCUNDERLINEBEG, 0);
}
}
/* if old buffer had extra lines, set them to be cleared and refresh them
individually */
if (olnct > nlnct) {
cleareol = 1;
for (iln = nlnct; iln < olnct; iln++)
refreshline(iln);
}
/* reset character attributes */
if (clearf && postedit) {
if ((txtchange = pmpt_attr ? pmpt_attr : rpmpt_attr)) {
if (txtchangeisset(TXTNOBOLDFACE))
tsetcap(TCALLATTRSOFF, 0);
if (txtchangeisset(TXTNOSTANDOUT))
tsetcap(TCSTANDOUTEND, 0);
if (txtchangeisset(TXTNOUNDERLINE))
tsetcap(TCUNDERLINEEND, 0);
if (txtchangeisset(TXTBOLDFACE))
tsetcap(TCBOLDFACEBEG, 0);
if (txtchangeisset(TXTSTANDOUT))
tsetcap(TCSTANDOUTBEG, 0);
if (txtchangeisset(TXTUNDERLINE))
tsetcap(TCUNDERLINEBEG, 0);
}
}
clearf = 0;
oput_rpmpt = put_rpmpt;
/* move to the new cursor position */
moveto(rpms.nvln, rpms.nvcs);
/* swap old and new buffers - better than freeing/allocating every time */
qbuf = nbuf;
nbuf = obuf;
obuf = qbuf;
/* store current values so we can use them next time */
ovln = rpms.nvln;
olnct = nlnct;
onumscrolls = numscrolls;
if (nlnct > vmaxln)
vmaxln = nlnct;
singlelineout:
fflush(shout); /* make sure everything is written out */
if (tmpalloced)
zfree(tmpline, tmpll);
/* if we have a new list showing, note it; if part of the list has been
overwritten, redisplay it. We have to metafy line back before calling
completion code */
if (showinglist == -2 || (showinglist > 0 && showinglist < nlnct)) {
if (remetafy) {
metafy_line();
remetafy = 0;
}
inlist = 1;
listmatches();
inlist = 0;
zrefresh();
}
if (showinglist == -1)
showinglist = nlnct;
if (remetafy)
metafy_line();
}
#define tcinscost(X) (tccan(TCMULTINS) ? tclen[TCMULTINS] : (X)*tclen[TCINS])
#define tcdelcost(X) (tccan(TCMULTDEL) ? tclen[TCMULTDEL] : (X)*tclen[TCDEL])
#define tc_delchars(X) (void) tcmultout(TCDEL, TCMULTDEL, (X))
#define tc_inschars(X) (void) tcmultout(TCINS, TCMULTINS, (X))
#define tc_upcurs(X) (void) tcmultout(TCUP, TCMULTUP, (X))
#define tc_leftcurs(X) (void) tcmultout(TCLEFT, TCMULTLEFT, (X))
static int
wpfxlen(REFRESH_STRING s, REFRESH_STRING t)
{
int i = 0;
while (*s && *s == *t)
s++, t++, i++;
return i;
}
/* refresh one line, using whatever speed-up tricks are provided by the tty */
/**/
static void
refreshline(int ln)
{
REFRESH_STRING nl, ol, p1; /* line buffer pointers */
int ccs = 0, /* temporary count for cursor position */
char_ins = 0, /* number of characters inserted/deleted */
col_cleareol, /* clear to end-of-line from this column */
i, j, /* tmp */
ins_last, /* insert pushed last character off line */
nllen, ollen, /* new and old line buffer lengths */
rnllen; /* real new line buffer length */
/* 0: setup */
nl = nbuf[ln];
rnllen = nllen = nl ? ZR_strlen(nl) : 0;
if (obuf[ln]) {
ol = obuf[ln];
ollen = ZR_strlen(ol);
}
else {
static REFRESH_CHAR nullchr = ZWC('\0');
ol = &nullchr;
ollen = 0;
}
/* optimisation: can easily happen for clearing old lines. If the terminal has
the capability, then this is the easiest way to skip unnecessary stuff */
if (cleareol && !nllen && !(hasam && ln < nlnct - 1)
&& tccan(TCCLEAREOL)) {
moveto(ln, 0);
tcout(TCCLEAREOL);
return;
}
/* 1: pad out the new buffer with spaces to contain _all_ of the characters
which need to be written. do this now to allow some pre-processing */
if (cleareol /* request to clear to end of line */
|| (!nllen && (ln != 0 || !put_rpmpt)) /* no line buffer given */
|| (ln == 0 && (put_rpmpt != oput_rpmpt))) { /* prompt changed */
p1 = zhalloc((winw + 2) * sizeof(*p1));
if (nllen)
ZR_memcpy(p1, nl, nllen);
ZR_memset(p1 + nllen, ZWC(' '), winw - nllen);
p1[winw] = ZWC('\0');
p1[winw + 1] = (nllen < winw) ? ZWC('\0') : nl[winw + 1];
if (ln && nbuf[ln])
ZR_memcpy(nl, p1, winw + 2); /* next time obuf will be up-to-date */
else
nl = p1; /* don't keep the padding for prompt line */
nllen = winw;
} else if (ollen > nllen) { /* make new line at least as long as old */
p1 = zhalloc((ollen + 1) * sizeof(*p1));
ZR_memcpy(p1, nl, nllen);
ZR_memset(p1 + nllen, ZWC(' '), ollen - nllen);
p1[ollen] = ZWC('\0');
nl = p1;
nllen = ollen;
}
/* 2: see if we can clear to end-of-line, and if it's faster, work out where
to do it from - we can normally only do so if there's no right-prompt.
With automatic margins, we shouldn't do it if there is another line, in
case it messes up cut and paste. */
if (hasam && ln < nlnct - 1 && rnllen == winw)
col_cleareol = -2; /* clearing eol would be evil so don't */
else {
col_cleareol = -1;
if (tccan(TCCLEAREOL) && (nllen == winw || put_rpmpt != oput_rpmpt)) {
for (i = nllen; i && nl[i - 1] == ZWC(' '); i--);
for (j = ollen; j && ol[j - 1] == ZWC(' '); j--);
if ((j > i + tclen[TCCLEAREOL]) /* new buf has enough spaces */
|| (nllen == winw && nl[winw - 1] == ZWC(' ')))
col_cleareol = i;
}
}
/* 2b: first a new trick for automargin niceness - good for cut and paste */
if (hasam && vcs == winw) {
if (nbuf[vln] && nbuf[vln][vcs + 1] == ZWC('\n')) {
vln++, vcs = 1;
if (nbuf[vln] && *nbuf[vln]) {
zputc(*nbuf[vln]);
} else
zputc(ZWC(' ')); /* I don't think this should happen */
if (ln == vln) { /* better safe than sorry */
nl++;
if (*ol)
ol++;
ccs = 1;
} /* else hmmm... I wonder what happened */
} else {
vln++, vcs = 0;
zputc(ZWC('\n'));
}
}
ins_last = 0;
/* 2c: if we're on the first line, start checking at the end of the prompt;
we shouldn't be doing anything within the prompt */
if (ln == 0 && lpromptw) {
i = lpromptw - ccs;
j = ZR_strlen(ol);
nl += i;
ol += (i > j ? j : i); /* if ol is too short, point it to '\0' */
ccs = lpromptw;
}
/* 3: main display loop - write out the buffer using whatever tricks we can */
for (;;) {
#ifdef MULTIBYTE_SUPPORT
if ((!*nl || *nl != WEOF) && (!*ol || *ol != WEOF)) {
#endif
if (*nl && *ol && nl[1] == ol[1]) {
/* skip only if second chars match */
#ifdef MULTIBYTE_SUPPORT
int ccs_was = ccs;
#endif
/* skip past all matching characters */
for (; *nl && (*nl == *ol); nl++, ol++, ccs++) ;
#ifdef MULTIBYTE_SUPPORT
/* Make sure ol and nl are pointing to real characters */
while ((*nl == WEOF || *ol == WEOF) && ccs > ccs_was) {
nl--;
ol--;
ccs--;
}
#endif
}
if (!*nl) {
if (ccs == winw && hasam && char_ins > 0 && ins_last
&& vcs != winw) {
nl--; /* we can assume we can go back here */
moveto(ln, winw - 1);
zputc(*nl);
vcs++;
return; /* write last character in line */
}
if ((char_ins <= 0) || (ccs >= winw)) /* written everything */
return;
if (tccan(TCCLEAREOL) && (char_ins >= tclen[TCCLEAREOL])
&& col_cleareol != -2)
/* we've got junk on the right yet to clear */
col_cleareol = 0; /* force a clear to end of line */
}
moveto(ln, ccs); /* move to where we do all output from */
/* if we can finish quickly, do so */
if ((col_cleareol >= 0) && (ccs >= col_cleareol)) {
tcout(TCCLEAREOL);
return;
}
/* we've written out the new but yet to clear rubbish due to inserts */
if (!*nl) {
i = (winw - ccs < char_ins) ? (winw - ccs) : char_ins;
if (tccan(TCDEL) && (tcdelcost(i) <= i + 1))
tc_delchars(i);
else {
vcs += i;
while (i-- > 0)
zputc(ZWC(' '));
}
return;
}
/* if we've reached the end of the old buffer, then there are few tricks
we can do, so we just dump out what we must and clear if we can */
if (!*ol) {
i = (col_cleareol >= 0) ? col_cleareol : nllen;
i -= vcs;
zwrite(nl, i);
vcs += i;
if (col_cleareol >= 0)
tcout(TCCLEAREOL);
return;
}
/* inserting & deleting chars: we can if there's no right-prompt */
if ((ln || !put_rpmpt || !oput_rpmpt)
#ifdef MULTIBYTE_SUPPORT
&& *ol != WEOF && *nl != WEOF
#endif
&& nl[1] && ol[1] && nl[1] != ol[1]) {
/* deleting characters - see if we can find a match series that
makes it cheaper to delete intermediate characters
eg. oldline: hifoobar \ hopefully cheaper here to delete two
newline: foobar / characters, then we have six matches */
if (tccan(TCDEL)) {
for (i = 1; *(ol + i); i++)
if (tcdelcost(i) < wpfxlen(ol + i, nl)) {
tc_delchars(i);
ol += i;
char_ins -= i;
#ifdef MULTIBYTE_SUPPORT
while (*ol == WEOF) {
ol++;
char_ins--;
}
#endif
i = 0;
break;
}
if (!i)
continue;
}
/* inserting characters - characters pushed off the right should be
annihilated, but we don't do this if we're on the last line lest
undesired scrolling occurs due to `illegal' characters on screen */
if (tccan(TCINS) && (vln != lines - 1)) { /* not on last line */
for (i = 1; *(nl + i); i++)
if (tcinscost(i) < wpfxlen(nl + i, ol)) {
tc_inschars(i);
zwrite(nl, i);
nl += i;
#ifdef MULTIBYTE_SUPPORT
while (*nl == WEOF) {
nl++;
i++;
}
#endif
char_ins += i;
ccs = (vcs += i);
/* if we've pushed off the right, truncate oldline */
for (i = 0; *(ol + i) && i < winw - ccs; i++);
#ifdef MULTIBYTE_SUPPORT
while (ol[i] == WEOF)
i++;
#endif
if (i >= winw - ccs) {
*(ol + i) = ZWC('\0');
ins_last = 1;
}
i = 0;
break;
}
if (!i)
continue;
}
}
#ifdef MULTIBYTE_SUPPORT
}
#endif
/* we can't do any fancy tricks, so just dump the single character
and keep on trying */
#ifdef MULTIBYTE_SUPPORT
/*
* in case we were tidying up a funny-width character when we
* reached the end of the new line...
*/
if (!*nl)
break;
do {
#endif
zputc(*nl);
nl++, ol++;
ccs++, vcs++;
#ifdef MULTIBYTE_SUPPORT
/*
* Make sure we always overwrite the complete width of
* a character that was there before.
*/
} while ((*ol == WEOF && *nl) || (*nl == WEOF && *ol));
#endif
}
}
/* move the cursor to line ln (relative to the prompt line),
absolute column cl; update vln, vcs - video line and column */
/**/
void
moveto(int ln, int cl)
{
ZLE_INT_T c;
if (vcs == winw) {
vln++, vcs = 0;
if (!hasam) {
zputc(ZWC('\r'));
zputc(ZWC('\n'));
} else {
if ((vln < nlnct) && nbuf[vln] && *nbuf[vln])
c = *nbuf[vln];
else
c = ZWC(' ');
zputc(c);
zputc(ZWC('\r'));
if ((vln < olnct) && obuf[vln] && *obuf[vln])
*obuf[vln] = c;
}
}
if (ln == vln && cl == vcs)
return;
/* move up */
if (ln < vln) {
tc_upcurs(vln - ln);
vln = ln;
}
/* move down; if we might go off the end of the screen, use newlines
instead of TCDOWN */
while (ln > vln) {
if (vln < vmaxln - 1) {
if (ln > vmaxln - 1) {
if (tc_downcurs(vmaxln - 1 - vln))
vcs = 0;
vln = vmaxln - 1;
} else {
if (tc_downcurs(ln - vln))
vcs = 0;
vln = ln;
continue;
}
}
zputc(ZWC('\r')), vcs = 0; /* safety precaution */
while (ln > vln) {
zputc(ZWC('\n'));
vln++;
}
}
if (cl != vcs)
singmoveto(cl);
}
/**/
mod_export int
tcmultout(int cap, int multcap, int ct)
{
if (tccan(multcap) && (!tccan(cap) || tclen[multcap] <= tclen[cap] * ct)) {
tcoutarg(multcap, ct);
return 1;
} else if (tccan(cap)) {
while (ct--)
tcout(cap);
return 1;
}
return 0;
}
/* ct: number of characters to move across */
/**/
static void
tc_rightcurs(int ct)
{
int cl, /* ``desired'' absolute horizontal position */
i = vcs, /* cursor position after initial movements */
j;
REFRESH_STRING t;
cl = ct + vcs;
/* do a multright if we can - it's the most reliable */
if (tccan(TCMULTRIGHT)) {
tcoutarg(TCMULTRIGHT, ct);
return;
}
/* do an absolute horizontal position if we can */
if (tccan(TCHORIZPOS)) {
tcoutarg(TCHORIZPOS, cl);
return;
}
/* XXX: should really check "it" in termcap and use / and % */
/* try tabs if tabs are non destructive and multright is not possible */
if (!oxtabs && tccan(TCNEXTTAB) && ((vcs | 7) < cl)) {
i = (vcs | 7) + 1;
tcout(TCNEXTTAB);
for ( ; i + 8 <= cl; i += 8)
tcout(TCNEXTTAB);
if ((ct = cl - i) == 0) /* number of chars still to move across */
return;
}
/* otherwise _carefully_ write the contents of the video buffer.
if we're anywhere in the prompt, goto the left column and write the whole
prompt out.
If strlen(lpromptbuf) == lpromptw, we can cheat and output
the appropriate chunk of the string. This test relies on the
fact that any funny business will always make the length of
the string larger than the printing width, so if they're the same
we have only ASCII characters or a single-byte extension of ASCII.
Unfortunately this trick won't work if there are potentially
characters occupying more than one column. We could flag that
this has happened (since it's not that common to have characters
wider than one column), but for now it's easier not to use the
trick if we are using wcwidth() on the prompt. It's not that
common to be editing in the middle of the prompt anyway, I would
think.
*/
if (vln == 0 && i < lpromptw && !(termflags & TERM_SHORT)) {
#ifndef MULTIBYTE_SUPPORT
if ((int)strlen(lpromptbuf) == lpromptw)
fputs(lpromptbuf + i, shout);
else
#endif
if (tccan(TCRIGHT) && (tclen[TCRIGHT] * ct <= ztrlen(lpromptbuf)))
/* it is cheaper to send TCRIGHT than reprint the whole prompt */
for (ct = lpromptw - i; ct--; )
tcout(TCRIGHT);
else {
if (i != 0)
zputc('\r');
tc_upcurs(lprompth - 1);
zputs(lpromptbuf, shout);
if (lpromptwof == winw)
zputs("\n", shout); /* works with both hasam and !hasam */
}
i = lpromptw;
ct = cl - i;
}
if (nbuf[vln]) {
for (j = 0, t = nbuf[vln]; *t && (j < i); j++, t++);
if (j == i)
for ( ; *t && ct; ct--, t++)
zputc(*t);
}
while (ct--)
zputc(ZWC(' ')); /* not my fault your terminal can't go right */
}
/**/
mod_export int
tc_downcurs(int ct)
{
int ret = 0;
if (ct && !tcmultout(TCDOWN, TCMULTDOWN, ct)) {
while (ct--)
zputc(ZWC('\n'));
zputc(ZWC('\r')), ret = -1;
}
return ret;
}
/**/
mod_export void
tcout(int cap)
{
tputs(tcstr[cap], 1, putshout);
SELECT_ADD_COST(tclen[cap]);
}
/**/
static void
tcoutarg(int cap, int arg)
{
char *result;
result = tgoto(tcstr[cap], arg, arg);
tputs(result, 1, putshout);
SELECT_ADD_COST(strlen(result));
}
/**/
mod_export int
clearscreen(UNUSED(char **args))
{
tcout(TCCLEARSCREEN);
resetneeded = 1;
clearflag = 0;
return 0;
}
/**/
mod_export int
redisplay(UNUSED(char **args))
{
moveto(0, 0);
zputc(ZWC('\r')); /* extra care */
tc_upcurs(lprompth - 1);
resetneeded = 1;
clearflag = 0;
return 0;
}
/**/
static void
singlerefresh(ZLE_STRING_T tmpline, int tmpll, int tmpcs)
{
REFRESH_STRING vbuf, vp, /* video buffer and pointer */
*qbuf, /* tmp */
refreshop = *obuf; /* pointer to old video buffer */
int t0, /* tmp */
vsiz, /* size of new video buffer */
nvcs = 0; /* new video cursor column */
#ifdef MULTIBYTE_SUPPORT
int eol = 0; /* has mbrtowc() returned -2? */
/*
* converted lprompt and pointer: no WEOF hack here since
* we always output the full prompt and count its width.
*/
ZLE_STRING_T lpwbuf, lpwp;
char *lpptr, /* pointer into multibyte lprompt */
*lpend; /* end of multibyte lprompt */
mbstate_t mbs; /* shift state */
#endif
nlnct = 1;
/* generate the new line buffer completely */
for (vsiz = 1 + lpromptw, t0 = 0; t0 != tmpll; t0++, vsiz++)
if (tmpline[t0] == ZWC('\t'))
vsiz = (vsiz | 7) + 1;
#ifdef MULTIBYTE_SUPPORT
else if (iswprint(tmpline[t0]))
vsiz += wcwidth(tmpline[t0]);
#endif
else if (ZC_icntrl(tmpline[t0]))
vsiz++;
vbuf = (REFRESH_STRING)zalloc(vsiz * sizeof(*vbuf));
if (tmpcs < 0) {
#ifdef DEBUG
fprintf(stderr, "BUG: negative cursor position\n");
fflush(stderr);
#endif
tmpcs = 0;
}
/* only use last part of prompt */
#ifdef MULTIBYTE_SUPPORT
/*
* Convert the entire lprompt so that we know how to count
* characters.
*/
lpend = strchr(lpromptbuf, 0);
/* Worst case number of characters, not null-terminated */
lpwp = lpwbuf = (ZLE_STRING_T)zalloc((lpend - lpromptbuf)
* sizeof(*lpwbuf));
/* Reset shift state, maybe. */
memset(&mbs, '\0', sizeof mbs);
for (lpptr = lpromptbuf; lpptr < lpend; ) {
size_t cnt = eol ? MB_INVALID : mbrtowc(lpwp, lpptr, lpend-lpptr, &mbs);
switch (cnt) {
case MB_INCOMPLETE:
eol = 1;
/* FALL THROUGH */
case MB_INVALID:
memset(&mbs, '\0', sizeof mbs);
/* FALL THROUGH */
case 0:
/* dunno, try to recover */
lpptr++;
*lpwp++ = ZWC('?');
break;
default:
/* successfully converted */
lpptr += cnt;
lpwp++;
break;
}
}
if (lpwp - lpwbuf < lpromptw) {
/* Not enough characters for lpromptw. */
ZR_memcpy(vbuf, lpwbuf, lpwp - lpwbuf);
vp = vbuf + (lpwp - lpwbuf);
while (vp < vbuf + lpromptw)
*vp++ = ZWC(' ');
} else {
ZR_memcpy(vbuf, lpwp - lpromptw, lpromptw);
vp = vbuf + lpromptw;
}
*vp = ZWC('\0');
zfree(lpwbuf, lpromptw * sizeof(*lpwbuf));
#else
memcpy(vbuf, strchr(lpromptbuf, 0) - lpromptw, lpromptw);
vbuf[lpromptw] = '\0';
vp = vbuf + lpromptw;
#endif
for (t0 = 0; t0 < tmpll; t0++) {
if (tmpline[t0] == ZWC('\t')) {
for (*vp++ = ZWC(' '); (vp - vbuf) & 7; )
*vp++ = ZWC(' ');
} else if (tmpline[t0] == ZWC('\n')) {
*vp++ = ZWC('\\');
*vp++ = ZWC('n');
#ifdef MULTIBYTE_SUPPORT
} else if (iswprint(tmpline[t0])) {
int width;
*vp++ = tmpline[t0];
width = wcwidth(tmpline[t0]);
while (--width > 0)
*vp++ = WEOF;
#endif
} else if (ZC_icntrl(tmpline[t0])) {
ZLE_INT_T t = tmpline[++t0];
*vp++ = ZWC('^');
*vp++ = (((unsigned int)t & ~0x80u) > 31) ? ZWC('?') : (t | ZWC('@'));
} else
*vp++ = tmpline[t0];
if (t0 == tmpcs)
nvcs = vp - vbuf - 1;
}
if (t0 == tmpcs)
nvcs = vp - vbuf;
*vp = ZWC('\0');
/* determine which part of the new line buffer we want for the display */
if ((winpos && nvcs < winpos + 1) || (nvcs > winpos + winw - 2)) {
if ((winpos = nvcs - ((winw - hasam) / 2)) < 0)
winpos = 0;
}
if (winpos)
vbuf[winpos] = ZWC('<'); /* line continues to the left */
if ((int)ZR_strlen(vbuf + winpos) > (winw - hasam)) {
vbuf[winpos + winw - hasam - 1] = ZWC('>'); /* line continues to right */
vbuf[winpos + winw - hasam] = ZWC('\0');
}
ZR_strcpy(nbuf[0], vbuf + winpos);
zfree(vbuf, vsiz * sizeof(*vbuf));
nvcs -= winpos;
/* display the `visable' portion of the line buffer */
for (t0 = 0, vp = *nbuf;;) {
/* skip past all matching characters */
for (; *vp && *vp == *refreshop; t0++, vp++, refreshop++) ;
if (!*vp && !*refreshop)
break;
singmoveto(t0); /* move to where we do all output from */
if (!*refreshop) {
if ((t0 = ZR_strlen(vp)))
zwrite(vp, t0);
vcs += t0;
break;
}
if (!*vp) {
if (tccan(TCCLEAREOL))
tcout(TCCLEAREOL);
else
for (; *refreshop++; vcs++)
zputc(ZWC(' '));
break;
}
zputc(*vp);
vcs++, t0++;
vp++, refreshop++;
}
/* move to the new cursor position */
singmoveto(nvcs);
qbuf = nbuf;
nbuf = obuf;
obuf = qbuf;
}
/**/
static void
singmoveto(int pos)
{
if (pos == vcs)
return;
/* choose cheapest movements for ttys without multiple movement capabilities -
do this now because it's easier (to code) */
if ((!tccan(TCMULTLEFT) || pos == 0) && (pos <= vcs / 2)) {
zputc(ZWC('\r'));
vcs = 0;
}
if (pos < vcs)
tc_leftcurs(vcs - pos);
else if (pos > vcs)
tc_rightcurs(pos - vcs);
vcs = pos;
}
|