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
|
/*
* The routines in this file deal with the region, that magic space between "."
* and mark. Some functions are commands. Some functions are just for
* internal use.
*
* $Header: /usr/build/vile/vile/RCS/region.c,v 1.149 2008/03/24 00:38:35 tom Exp $
*
*/
#include "estruct.h"
#include "edef.h"
typedef int (*CharProcFunc) (int c);
static CharProcFunc charprocfunc;
/*
* Walk through the characters in a line, applying a function. The line is
* marked changed if the function 'charprocfunc' returns other than -1. if it
* returns other than -1, then the char is replaced with that value.
*
* The ll and rr args are OFFSETS, so if you use this routine with
* do_lines_in_region, tell it to CONVERT columns to offsets.
*/
/*ARGSUSED*/
static int
do_chars_in_line(void *flagp GCC_UNUSED, int ll, int rr)
{
int c, nc;
int changed = 0;
LINE *lp;
int i;
lp = DOT.l;
if (llength(lp) >= ll) {
DOT.o = ll;
if (rr > llength(lp))
rr = llength(lp);
for (i = ll; i < rr; i += BytesAt(lp, i)) {
c = get_char2(lp, i);
nc = (charprocfunc) (c);
if (nc != -1) {
copy_for_undo(lp);
set_char2(lp, i, nc);
changed++;
}
}
DOT.o = ll;
if (changed)
chg_buff(curbp, WFHARD);
}
return TRUE;
}
/*
* The (*linefunc)() routine that this calls _must_ be prepared to
* to get empty lines passed to it from this routine.
*
* convert_cols, if true, says when we're processing a rectangle to
* convert columns to offsets.
*/
static int
do_lines_in_region(int (*linefunc) (REGN_ARGS), void *argp, int convert_cols)
{
LINE *linep;
int status;
REGION region;
C_NUM l, r;
if ((status = getregion(®ion)) == TRUE) {
/* for each line in the region, ... */
linep = region.r_orig.l;
for_ever {
/* move through the region... */
/* it's important that the linefunc get called
for every line, even if blank, since it
may want to keep track of newlines, for
instance */
DOT.l = linep;
DOT.o = w_left_margin(curwp);
if (regionshape == rgn_RECTANGLE) {
if (convert_cols) {
C_NUM reached;
l = getoff(region.r_leftcol, &reached);
if (l < 0)
l = -l + llength(linep);
r = getoff(region.r_rightcol, &reached);
if (r < 0)
r = -r + llength(linep);
if (reached > region.r_rightcol) /* a tab? */
reached = region.r_rightcol;
} else {
l = region.r_leftcol;
r = region.r_rightcol;
}
} else {
l = w_left_margin(curwp);
r = llength(DOT.l);
if (sameline(region.r_orig, DOT))
l = region.r_orig.o;
if (sameline(region.r_end, DOT)) {
r = region.r_end.o;
/*
* if we're on the end-of- region, in col 0, we're done.
* we don't want to call the line function for the empty
* case.
*/
if (r == 0)
break;
}
}
/* ...and process each line */
if ((status = (*linefunc) (argp, l, r)) != TRUE) {
return status;
}
if (linep == region.r_end.l)
break;
linep = lforw(linep);
/*
* If this happened to be a full-line region, then we've bumped the
* end-region pointer to the next line so we won't run into
* problems with the width. But we don't really want to _process_
* the end-region line, so check here also. (Leave the above check
* alone just in case the buffer is empty).
*/
if (regionshape == rgn_FULLLINE
&& linep == region.r_end.l)
break;
}
if (regionshape == rgn_FULLLINE) {
(void) kinsertlater(-1);
(void) firstnonwhite(FALSE, 1);
}
}
#if OPT_SELECTIONS
if (linefunc == kill_line) /* yuck. it's the only one that deletes */
find_release_attr(curbp, ®ion);
#endif
return status;
}
static int
killrectmaybesave(int save)
{
int s;
MARK savedot;
savedot = DOT;
if (save) {
kregcirculate(TRUE);
ksetup();
if (regionshape == rgn_FULLLINE) {
kregflag |= KLINES;
} else if (regionshape == rgn_RECTANGLE) {
kregflag |= KRECT;
}
}
s = do_lines_in_region(kill_line, (void *) &save, FALSE);
restore_dot(savedot);
if (s && do_report(klines + (kchars != 0))) {
mlwrite("[%d line%s, %d character%s killed]",
klines, PLURAL(klines),
kchars, PLURAL(kchars));
}
if (save) {
kdone();
ukb = 0;
}
return (s);
}
/* Helper function for vile commands that must access do_lines_in_region(). */
DORGNLINES
get_do_lines_rgn(void)
{
return (DORGNLINES) (do_lines_in_region);
}
/*
* Kill the region. Ask "getregion" to figure out the bounds of the region.
* Move "." to the start, and kill the characters.
*/
int
killregion(void)
{
if (regionshape == rgn_RECTANGLE)
return killrectmaybesave(TRUE);
else
return killregionmaybesave(TRUE);
}
int
killregionmaybesave(int save)
{
int status;
REGION region;
if ((status = getregion(®ion)) == TRUE) {
if (save) {
kregcirculate(TRUE);
ksetup(); /* command, so do magic */
if (regionshape == rgn_FULLLINE)
kregflag |= KLINES;
}
DOT = region.r_orig;
status = ldel_bytes(region.r_size, save);
if (save) {
kdone();
ukb = 0;
}
}
#if OPT_SELECTIONS
find_release_attr(curbp, ®ion);
#endif
return status;
}
int
kill_line(void *flagp, int l, int r)
{
int s;
int save = *(int *) flagp;
LINE *lp = DOT.l;
s = detabline((void *) FALSE, 0, 0);
if (s != TRUE)
return s;
DOT.o = l;
if (r > llength(lp))
r = llength(lp);
if (r > l) {
s = ldel_bytes((B_COUNT) (r - l), save);
if (s != TRUE)
return s;
}
if (save)
kinsert('\n');
if (b_val(curbp, MDTABINSERT))
s = entabline((void *) TRUE, 0, 0);
DOT.o = l;
return s;
}
/*
* Open up a region -- shift the "selected" area of each line by its own
* length. This is most useful for rectangular regions. Fill character is
* space, unless a string is passed in, in which case it is used instead.
*/
/*ARGSUSED*/
static int
open_hole_in_line(void *flagp, int l, int r)
{
TBUFF *tp = (TBUFF *) flagp; /* see stringrect() */
int len;
int s;
int saveo = DOT.o;
LINE *lp = DOT.l;
s = detabline((void *) FALSE, 0, 0);
if (s != TRUE)
return s;
if (llength(lp) <= l) { /* nothing to do if no string */
if (!tp) {
if (b_val(curbp, MDTABINSERT))
s = entabline((void *) TRUE, 0, 0);
DOT.o = saveo;
return s;
} else {
DOT.o = llength(lp);
if (l - DOT.o)
lins_bytes(l - DOT.o, ' ');
}
}
DOT.o = l;
if (tp) {
len = tb_length0(tp);
if (len < r - l)
len = r - l;
} else {
len = r - l;
}
s = lstrinsert(tp, len);
if (s != TRUE)
return s;
DOT.o = saveo;
if (b_val(curbp, MDTABINSERT))
s = entabline((void *) TRUE, 0, 0);
return s;
}
/*
* open up a region
*/
int
openregion(void)
{
return do_lines_in_region(open_hole_in_line, (void *) NULL, FALSE);
}
/*
* insert a shiftwidth at the front of the line
* don't do it if we're in cmode and the line starts with '#'
*/
/*ARGSUSED*/
static int
shift_right_line(void *flagp GCC_UNUSED, int l GCC_UNUSED, int r GCC_UNUSED)
{
int s, t;
if (is_empty_line(DOT)
|| (is_c_mode(curbp)
&& llength(DOT.l) > 0
&& char_at(DOT) == '#'
&& b_val(curbp, MDCINDENT))) {
return TRUE;
}
s = shiftwid_val(curbp);
t = tabstop_val(curbp);
DOT.o = w_left_margin(curwp);
if (s) { /* try to just insert tabs if possible */
if (b_val(curbp, MDTABINSERT) && s >= t && (s % t == 0)) {
lins_bytes(s / t, '\t');
} else {
detabline((void *) TRUE, 0, 0);
DOT.o = w_left_margin(curwp);
lins_bytes(s, ' ');
}
if (b_val(curbp, MDTABINSERT))
entabline((void *) TRUE, 0, 0);
}
return firstnonwhite(FALSE, 1);
}
/*
* shift region right by a tab stop
* if region is rectangular, "open it up"
*/
int
shiftrregion(void)
{
if (regionshape == rgn_RECTANGLE)
return do_lines_in_region(open_hole_in_line, (void *) NULL, FALSE);
regionshape = rgn_FULLLINE;
return do_lines_in_region(shift_right_line, (void *) 0, FALSE);
}
/*
* delete a shiftwidth-equivalent from the front of the line
*/
/*ARGSUSED*/
static int
shift_left_line(void *flagp GCC_UNUSED, int l GCC_UNUSED, int r GCC_UNUSED)
{
int i;
int lim;
int s;
LINE *linep = DOT.l;
if (llength(linep) == 0)
return TRUE;
s = shiftwid_val(curbp);
detabline((void *) TRUE, 0, 0);
/* examine the line to the end, or the first shiftwidth, whichever
comes first */
lim = (s < llength(linep)) ? s : llength(linep);
i = 0;
/* count the leading spaces */
while (lgetc(linep, i) == ' ' && i < lim)
i++;
if (i != 0) { /* did we find space/tabs to kill? */
DOT.o = w_left_margin(curwp);
if ((s = ldel_bytes((B_COUNT) i, FALSE)) != TRUE)
return s;
}
DOT.o = w_left_margin(curwp);
if (b_val(curbp, MDTABINSERT))
entabline((void *) TRUE, 0, 0);
return TRUE;
}
/*
* shift region left by a tab stop
*/
int
shiftlregion(void)
{
if (regionshape == rgn_RECTANGLE)
return killrectmaybesave(FALSE);
regionshape = rgn_FULLLINE;
return do_lines_in_region(shift_left_line, (void *) 0, FALSE);
}
/*
* change all tabs in the line to the right number of spaces.
* leadingonly says only do leading whitespace
*/
/*ARGSUSED*/
int
detabline(void *flagp, int l GCC_UNUSED, int r GCC_UNUSED)
{
int s;
int c;
int ocol;
int leadingonly = (flagp != 0);
LINE *lp = DOT.l;
if (llength(lp) == 0)
return TRUE;
ocol = getccol(FALSE);
DOT.o = 0;
/* remove tabs from the entire line */
while (DOT.o < llength(lp)) {
c = char_at(DOT);
if (leadingonly && !isSpace(c))
break;
/* if we have found a tab to remove */
if (c == '\t') {
if ((s = ldel_bytes(1L, FALSE)) != TRUE)
return s;
if ((s = insspace(TRUE,
tabstop_val(curbp)
- (DOT.o % tabstop_val(curbp)))) != TRUE)
return s;
}
DOT.o += BytesAt(DOT.l, DOT.o);
}
(void) gocol(ocol);
return TRUE;
}
/*
* change all tabs in the region to the right number of spaces
*/
int
detab_region(void)
{
regionshape = rgn_FULLLINE;
return do_lines_in_region(detabline, (void *) FALSE, FALSE);
}
/*
* change leading tabs in the region to the right number of spaces
*/
int
l_detab_region(void)
{
regionshape = rgn_FULLLINE;
return do_lines_in_region(detabline, (void *) TRUE, FALSE);
}
/*
* convert all appropriate spaces in the line to tab characters.
* leadingonly says only do leading whitespace
*/
/*ARGSUSED*/
int
entabline(void *flagp, int l GCC_UNUSED, int r GCC_UNUSED)
{
int savecol;
int leadingonly = (flagp != 0);
LINE *lp = DOT.l;
C_NUM ocol, ncol;
C_NUM ooff, noff;
int ch;
if (llength(lp) == 0)
return TRUE;
savecol = getccol(FALSE);
ooff = noff = 0;
ocol = ncol = 0;
for_ever {
if (ooff == llength(lp))
ch = '\n';
else
ch = lgetc(lp, ooff);
switch (ch) {
case ' ':
ocol++;
break;
case '\t':
ocol = next_tabcol(ocol);
break;
default:
while (next_tabcol(ncol) <= ocol) {
if (ncol + 1 == ocol)
break;
(void) lreplc(lp, noff++, '\t');
ncol = next_tabcol(ncol);
}
while (ncol < ocol) {
(void) lreplc(lp, noff++, ' ');
ncol++;
}
if (ch == '\n' || leadingonly) {
if (noff != ooff) {
while (ooff < llength(lp))
(void) lreplc(lp, noff++, lgetc(lp, ooff++));
DOT.o = noff;
if (ooff > noff)
(void) ldel_bytes(ooff - noff, FALSE);
}
(void) gocol(savecol);
return TRUE;
}
(void) lreplc(lp, noff++, ch);
ncol++, ocol++;
}
ooff++;
}
}
/*
* convert all appropriate spaces in the region to tab characters
*/
int
entab_region(void)
{
regionshape = rgn_FULLLINE;
return do_lines_in_region(entabline, (void *) FALSE, FALSE);
}
/*
* convert leading spaces in the region to tab characters
*/
int
l_entab_region(void)
{
regionshape = rgn_FULLLINE;
return do_lines_in_region(entabline, (void *) TRUE, FALSE);
}
/*
* Trim trailing whitespace from a line. dot is preserved if possible.
* (dot is even preserved if it was sitting on the newline).
*/
/*ARGSUSED*/
int
trimline(void *flag GCC_UNUSED, int l GCC_UNUSED, int r GCC_UNUSED)
{
int off;
LINE *lp;
int odoto, s;
B_COUNT delcnt;
int was_at_eol;
lp = DOT.l;
if (llength(lp) == 0)
return TRUE;
/* may return -1 if line is all whitespace. but
that's okay, since the math still works. */
off = lastchar(lp);
if (llength(lp) <= (off + 1))
return TRUE;
delcnt = llength(lp) - (off + 1);
odoto = DOT.o;
was_at_eol = (odoto == llength(lp));
DOT.o = off + 1;
s = ldel_bytes(delcnt, FALSE);
if (odoto > off) { /* do we need to back up? */
odoto = llength(lp);
if (!was_at_eol)
odoto--; /* usually we want the last char on line */
}
if (odoto < 0)
DOT.o = 0;
else
DOT.o = odoto;
return s;
}
/*
* trim trailing whitespace from a region
*/
int
trim_region(void)
{
regionshape = rgn_FULLLINE;
return do_lines_in_region(trimline, (void *) 0, FALSE);
}
/* turn line, or part, to whitespace */
/*ARGSUSED*/
static int
blankline(void *flagp, int l, int r)
{
TBUFF *tp = (TBUFF *) flagp; /* see stringrect() */
int len;
int s = TRUE;
int saveo;
LINE *lp = DOT.l;
saveo = l;
/* if the shape is rectangular, then l and r are columns, not
offsets */
if (regionshape == rgn_RECTANGLE) {
s = detabline((void *) FALSE, 0, 0);
if (s != TRUE)
return s;
}
if (llength(lp) <= l) { /* nothing to do if no string */
if (!tp) {
if (regionshape == rgn_RECTANGLE && b_val(curbp, MDTABINSERT))
s = entabline((void *) TRUE, 0, 0);
DOT.o = saveo;
return s;
} else {
DOT.o = llength(lp);
if (l - DOT.o)
lins_bytes(l - DOT.o, ' ');
}
}
DOT.o = l;
if (llength(lp) <= r) {
/* then the rect doesn't extend to the end of line */
if (llength(lp) > l)
ldel_bytes((B_COUNT) (llength(lp) - l), FALSE);
/* so there's nothing beyond the rect, so insert at
most r-l chars of the string, or nothing */
if (tp) {
len = tb_length0(tp);
if (len > r - l)
len = r - l;
} else {
len = 0;
}
} else if (r > l) {
/* the line goes on, so delete and reinsert exactly */
len = r - l;
ldel_bytes((B_COUNT) len, FALSE);
} else {
len = 0;
}
s = lstrinsert(tp, len);
if (s != TRUE)
return s;
if (regionshape == rgn_RECTANGLE && b_val(curbp, MDTABINSERT))
s = entabline((void *) TRUE, 0, 0);
return s;
}
/*
* open up a region, filling it with a supplied string
* this is pretty simplistic -- could be a lot more clever
*/
int
stringrect(void)
{
int s;
static TBUFF *buf;
s = mlreply2("Rectangle text: ", &buf);
if (s == TRUE) {
/* i couldn't decide at first whether we should be inserting or
* overwriting... this chooses.
*/
if (b_val(curbp, MDINS_RECTS)) {
/* insert_the_string */
s = do_lines_in_region(open_hole_in_line, (void *) buf, FALSE);
} else {
/* overwrite the string */
s = do_lines_in_region(blankline, (void *) buf, FALSE);
}
}
return s;
}
/*
* Copy all of the characters in the region to the kill buffer. Don't move dot
* at all. This is a bit like a kill region followed by a yank.
*/
static int
_yankchar(int ch)
{
#if OPT_MULTIBYTE
if (b_is_utfXX(curbp)) {
UCHAR buffer[10];
int len = vl_conv_to_utf8(buffer, ch, sizeof(buffer));
int n;
for (n = 0; n < len; ++n)
kinsert(buffer[n]);
} else
#endif
kinsert(ch);
/* FIXME check return value, longjmp back to yank_line */
return -1;
}
/*ARGSUSED*/
static int
yank_line(void *flagp GCC_UNUSED, int l, int r)
{
int s;
charprocfunc = _yankchar;
s = do_chars_in_line((void *) NULL, l, r);
if (s) {
if (r == llength(DOT.l) || regionshape == rgn_RECTANGLE) {
/* we don't necessarily want to insert the last newline
in a region, so we delay it */
s = kinsertlater('\n');
} else if (r > llength(DOT.l)) {
/* This can happen when selecting with the mouse. */
kinsert('\n');
}
}
return s;
}
int
yankregion(void)
{
int s;
kregcirculate(TRUE);
ksetup();
if (regionshape == rgn_FULLLINE) {
kregflag |= KLINES | KYANK;
} else if (regionshape == rgn_RECTANGLE) {
kregflag |= KRECT | KYANK;
}
s = do_lines_in_region(yank_line, (void *) 0, TRUE);
if (s && do_report(klines + (kchars != 0))) {
mlwrite("[%d line%s, %d character%s yanked]",
klines, PLURAL(klines),
kchars, PLURAL(kchars));
}
kdone();
ukb = 0;
return (s);
}
#if VILE_NEEDED
int
_blankchar(int c)
{
if (!isSpace(c))
return ' ';
return -1;
}
#endif
static int
_to_lower(int c)
{
int result = -1;
if (isUpper(c))
result = CharOf(toLower(c));
return result;
}
static int
_to_upper(int c)
{
int result = -1;
if (isLower(c))
result = CharOf(toUpper(c));
return result;
}
static int
_to_caseflip(int c)
{
int result = -1;
if (isAlpha(c)) {
if (isUpper(c))
result = CharOf(toLower(c));
else
result = CharOf(toUpper(c));
}
return result;
}
/*
* turn region to whitespace
*/
int
blank_region(void)
{
return do_lines_in_region(blankline, (void *) NULL, FALSE);
}
int
flipregion(void)
{
charprocfunc = _to_caseflip;
return do_lines_in_region(do_chars_in_line, (void *) NULL, TRUE);
}
int
lowerregion(void)
{
charprocfunc = _to_lower;
return do_lines_in_region(do_chars_in_line, (void *) NULL, TRUE);
}
int
upperregion(void)
{
charprocfunc = _to_upper;
return do_lines_in_region(do_chars_in_line, (void *) NULL, TRUE);
}
/* finish filling in the left/right column info for a rectangular region */
static void
set_rect_columns(REGION * rp)
{
if (regionshape == rgn_RECTANGLE) {
MARK lc, rc;
lc = (rp->r_orig.o < rp->r_end.o) ? rp->r_orig : rp->r_end;
rc = (rp->r_orig.o > rp->r_end.o) ? rp->r_orig : rp->r_end;
/* convert to columns */
rp->r_leftcol = getcol(lc, FALSE);
rp->r_rightcol = getcol(rc, FALSE) + 1;
}
}
static int
found_region(REGION * rp)
{
if (wantregion != 0)
*wantregion = *rp;
#if OPT_TRACE > 1
trace_region(rp, curbp);
#endif
return2Code(TRUE);
}
/*
* This routine figures out the bounds of the region in the current window, and
* fills in the fields of the "REGION" structure pointed to by "rp". Because
* the dot and mark are usually very close together, we scan outward from dot
* looking for mark. This should save time. Return a standard code.
*/
int
getregion(REGION * rp)
{
LINE *flp;
LINE *blp;
B_COUNT fsize;
B_COUNT bsize;
int len_rs = len_record_sep(curbp);
TRACE2((T_CALLED "getregion\n"));
memset(rp, 0, sizeof(*rp));
if (haveregion) {
*rp = *haveregion;
haveregion = NULL;
return found_region(rp);
}
#if OPT_SELECTIONS
rp->r_attr_id = (USHORT) assign_attr_id();
#endif
/*
* If the buffer is completely empty, the region has to match.
*/
if (valid_buffer(curbp) && is_empty_buf(curbp)) {
memset(rp, 0, sizeof(*rp));
rp->r_orig.l = rp->r_end.l = buf_head(curbp);
return2Code(TRUE);
}
if (MK.l == NULL) {
mlforce("BUG: getregion: no mark set in this window");
return2Code(FALSE);
}
if (sameline(DOT, MK)) {
rp->r_orig =
rp->r_end = DOT;
if (regionshape == rgn_FULLLINE) {
rp->r_orig.o =
rp->r_end.o = w_left_margin(curwp);
rp->r_end.l = lforw(DOT.l);
rp->r_size = (B_COUNT) (line_length(DOT.l) - w_left_margin(curwp));
} else {
if (DOT.o < MK.o) {
rp->r_orig.o = rp->r_leftcol = DOT.o;
rp->r_end.o = rp->r_rightcol = MK.o;
} else {
rp->r_orig.o = rp->r_leftcol = MK.o;
rp->r_end.o = rp->r_rightcol = DOT.o;
}
rp->r_size = rp->r_end.o - rp->r_orig.o;
set_rect_columns(rp);
}
return found_region(rp);
}
#if !SMALLER
if (b_is_counted(curbp)) { /* we have valid line numbers */
LINE *flp_start;
L_NUM dno, mno;
dno = line_no(curbp, DOT.l);
mno = line_no(curbp, MK.l);
if (mno > dno) {
flp = DOT.l;
blp = MK.l;
rp->r_orig = DOT;
rp->r_end = MK;
} else {
flp = MK.l;
blp = DOT.l;
rp->r_orig = MK;
rp->r_end = DOT;
}
fsize = (B_COUNT) (line_length(flp) -
((regionshape == rgn_FULLLINE) ?
w_left_margin(curwp) : rp->r_orig.o));
flp_start = flp;
while (flp != blp) {
flp = lforw(flp);
if (flp != buf_head(curbp) && flp != flp_start) {
fsize += line_length(flp) - w_left_margin(curwp);
} else if (flp != blp) {
mlforce("BUG: hit buf end in getregion");
return2Code(FALSE);
}
if (flp == blp) {
if (regionshape == rgn_FULLLINE) {
rp->r_orig.o =
rp->r_end.o = w_left_margin(curwp);
rp->r_end.l = lforw(rp->r_end.l);
} else {
fsize -=
(line_length(flp) - rp->r_end.o);
set_rect_columns(rp);
}
rp->r_size = fsize;
return found_region(rp);
}
}
} else
#endif /* !SMALLER */
{
blp = DOT.l;
flp = DOT.l;
if (regionshape == rgn_FULLLINE) {
bsize = fsize =
(B_COUNT) (line_length(blp) - w_left_margin(curwp));
} else {
bsize = (B_COUNT) (DOT.o - w_left_margin(curwp));
fsize = (B_COUNT) (line_length(flp) - DOT.o);
}
while ((flp != buf_head(curbp)) ||
(lback(blp) != buf_head(curbp))) {
if (flp != buf_head(curbp)) {
flp = lforw(flp);
if (flp != buf_head(curbp))
fsize += line_length(flp) - w_left_margin(curwp);
if (flp == MK.l) {
rp->r_orig = DOT;
rp->r_end = MK;
if (regionshape == rgn_FULLLINE) {
rp->r_orig.o =
rp->r_end.o = w_left_margin(curwp);
rp->r_end.l = lforw(rp->r_end.l);
} else {
fsize -= (line_length(flp) - MK.o);
set_rect_columns(rp);
}
rp->r_size = fsize;
return found_region(rp);
}
}
if (lback(blp) != buf_head(curbp)) {
blp = lback(blp);
bsize += line_length(blp) - w_left_margin(curwp);
if (blp == MK.l) {
rp->r_orig = MK;
rp->r_end = DOT;
if (regionshape == rgn_FULLLINE) {
rp->r_orig.o =
rp->r_end.o = w_left_margin(curwp);
rp->r_end.l = lforw(rp->r_end.l);
} else {
bsize -= (MK.o - w_left_margin(curwp));
set_rect_columns(rp);
}
rp->r_size = bsize;
return found_region(rp);
}
}
}
}
mlforce("BUG: lost mark");
return2Code(FALSE);
}
int
get_fl_region(REGION * rp)
{
int status;
regionshape = rgn_FULLLINE;
status = getregion(rp);
regionshape = rgn_EXACT;
return status;
}
#if OPT_SELECTIONS
typedef struct {
TBUFF **enc_list;
REGION enc_region;
} ENCODEREG;
static void
encode_one_attribute(TBUFF **result, int count, char *hypercmd, VIDEO_ATTR attr)
{
char temp[80];
tb_append(result, CONTROL_A);
sprintf(temp, "%d", count);
tb_sappend(result, temp);
if (attr & VAUL)
tb_append(result, 'U');
if (attr & VABOLD)
tb_append(result, 'B');
if (attr & (VAREV | VASEL))
tb_append(result, 'R');
if (attr & VAITAL)
tb_append(result, 'I');
if (attr & VACOLOR) {
sprintf(temp, "C%X", VCOLORNUM(attr));
tb_sappend(result, temp);
}
#if OPT_HYPERTEXT
if (hypercmd != 0) {
tb_append(result, 'H');
tb_sappend(result, hypercmd);
tb_append(result, EOS);
}
#endif
tb_sappend(result, ":");
}
static void
recompute_regionsize(REGION * region)
{
MARK save_DOT;
MARK save_MK;
save_DOT = DOT;
save_MK = MK;
DOT = region->r_orig;
MK = region->r_end;
getregion(region);
DOT = save_DOT;
MK = save_MK;
}
/*
* Compute the corresponding text of the given line with attributes expanded
* back to ^A-sequences.
*/
TBUFF *
encode_attributes(LINE *lp, BUFFER *bp, REGION * top_region)
{
TBUFF *result = 0;
int j, k, len;
if ((len = llength(lp)) > 0) {
AREGION *ap;
AREGION *my_list = 0;
AREGION ar_temp;
int my_used = 0;
int my_size = 0;
L_NUM top_rsl = line_no(bp, top_region->r_orig.l);
L_NUM top_rel = line_no(bp, top_region->r_end.l);
L_NUM tst_rsl, tst_rel;
L_NUM this_line = line_no(bp, lp);
tb_init(&result, EOS);
memset(&ar_temp, 0, sizeof(ar_temp));
/*
* Make a list of the attribute-regions which include this line.
* If they do not start/end with this line, we will compare against
* the top_region within which we are encoding, and compute an adjusted
* attribute region which does not extend out of that region.
*/
for (ap = bp->b_attribs; ap != NULL; ap = ap->ar_next) {
int found = 0;
if (lp == ap->ar_region.r_orig.l) {
ar_temp = *ap;
found = 1;
if (lp != ap->ar_region.r_end.l) {
found = -1;
tst_rel = line_no(bp, ap->ar_region.r_end.l);
if (tst_rel > top_rel) {
ar_temp.ar_region.r_end = top_region->r_end;
}
}
} else if (this_line == top_rsl) {
tst_rsl = line_no(bp, ap->ar_region.r_orig.l);
tst_rel = line_no(bp, ap->ar_region.r_end.l);
if (tst_rsl <= this_line && tst_rel >= this_line) {
ar_temp = *ap;
found = -2;
if (tst_rsl < top_rsl)
ar_temp.ar_region.r_orig = top_region->r_orig;
if (tst_rel > top_rel)
ar_temp.ar_region.r_end = top_region->r_end;
}
}
if (found) {
if (found < 0) { /* recompute limits */
recompute_regionsize(&ar_temp.ar_region);
}
if (my_list == 0)
my_list = typeallocn(AREGION, my_size = 10);
else if (my_used + 1 > my_size)
my_list = typereallocn(AREGION, my_list, my_size *= 2);
if (my_list == 0) {
no_memory("encode_attributes");
return 0;
}
my_list[my_used++] = ar_temp;
}
}
/*
* Now, walk through the line, emitting attributes as needed before
* each character.
*/
for (j = 0; j < len; ++j) {
/* get the buffer attributes for this line, by column */
for (k = 0; k < my_used; ++k) {
if (j == my_list[k].ar_region.r_orig.o) {
encode_one_attribute(&result,
my_list[k].ar_region.r_size,
#if OPT_HYPERTEXT
my_list[k].ar_hypercmd,
#else
(char *) 0,
#endif
my_list[k].ar_vattr);
}
}
#if OPT_LINE_ATTRS
if (lp->l_attrs != 0) {
if (lp->l_attrs[j] > 1
&& (j == 0 || lp->l_attrs[j - 1] != lp->l_attrs[j])) {
for (k = j + 1; k < len; ++k) {
if (lp->l_attrs[j] != lp->l_attrs[k])
break;
}
encode_one_attribute(&result, k - j, (char *) 0,
line_attr_tbl[lp->l_attrs[j]].vattr);
}
}
#endif
if (tb_append(&result, lgetc(lp, j)) == 0) {
break;
}
}
FreeIfNeeded(my_list);
if (result == 0)
(void) no_memory("encode_attributes");
}
return result;
}
static int
encode_line(void *flagp GCC_UNUSED, int l GCC_UNUSED, int r GCC_UNUSED)
{
LINE *lp = DOT.l;
TBUFF *text;
ENCODEREG *work = (ENCODEREG *) flagp;
L_NUM this_line = line_no(curbp, lp);
L_NUM base_line = line_no(curbp, work->enc_region.r_orig.l);
if (llength(lp) != 0) {
if ((text = encode_attributes(lp, curbp, &(work->enc_region))) == 0) {
return FALSE;
}
work->enc_list[this_line - base_line] = text;
} else {
work->enc_list[this_line - base_line] = 0;
}
return TRUE;
}
/*
* This builds an array of TBUFF's which represents the result of the encoding.
* When the encoding is complete, we can use it to replace the region. That
* avoids entanglement with the attribute pointers moving around.
*/
static int
encode_region(void)
{
ENCODEREG work;
int status;
L_NUM base_line;
L_NUM last_line;
L_NUM total, n;
TRACE((T_CALLED "encode_region()\n"));
regionshape = rgn_FULLLINE;
if ((status = getregion(&work.enc_region)) == TRUE
&& (base_line = line_no(curbp, work.enc_region.r_orig.l)) > 0
&& (last_line = line_no(curbp, work.enc_region.r_end.l)) > base_line) {
total = (last_line - base_line);
if ((work.enc_list = typeallocn(TBUFF *, total)) == 0) {
status = no_memory("encode_region");
} else {
status = do_lines_in_region(encode_line, (void *) &work, FALSE);
if (status == TRUE) {
/*
* Clear attributes for the range we're operating upon, and
* disable highlighting to prevent autocolor from trying to
* fix it.
*/
videoattribute = 0;
attributeregion();
#if OPT_MAJORMODE
make_local_b_val(curbp, MDHILITE);
set_b_val(curbp, MDHILITE, FALSE);
#endif
DOT = work.enc_region.r_orig;
for (n = 0; n < total; ++n) {
TBUFF *text = work.enc_list[n];
DOT.o = b_left_margin(curbp);
regionshape = rgn_EXACT;
deltoeol(TRUE, 1);
DOT.o = b_left_margin(curbp);
lstrinsert(text, (int) tb_length(text));
forwbline(FALSE, 1);
gotobol(FALSE, 1);
tb_free(&(text));
}
}
free(work.enc_list);
}
}
returnCode(status);
}
/*
* Decode the current attributes back to ^A-sequences.
*/
int
operattrencode(int f, int n)
{
opcmd = OPOTHER;
return vile_op(f, n, encode_region, "Encoding");
}
/*
* Write attributed text to a file
*/
int
oper_wrenc(int f, int n)
{
int s;
char fname[NFILEN];
if (ukb != 0) {
if ((s = mlreply_file("Write to file: ", (TBUFF **) 0,
FILEC_WRITE | FILEC_PROMPT, fname)) != TRUE)
return s;
return kwrite(fname, TRUE);
} else {
opcmd = OPOTHER;
return vile_op(f, n, write_enc_region, "File write (encoded)");
}
}
#endif /* OPT_SELECTIONS */
|