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
|
/* $Id: ng.c,v 3.0 1992/02/01 03:09:32 davison Trn $
*/
/* This software is Copyright 1991 by Stan Barber.
*
* Permission is hereby granted to copy, reproduce, redistribute or otherwise
* use this software as long as: there is no monetary profit gained
* specifically from the use or reproduction of this software, it is not
* sold, rented, traded or otherwise marketed, and this copyright notice is
* included prominently in any copy made.
*
* The authors make no claims as to the fitness or correctness of this software
* for any use whatsoever, and it is provided as is. Any use of this software
* is at the user's own risk.
*/
#include "EXTERN.h"
#include "common.h"
#include "trn.h"
#include "term.h"
#include "final.h"
#include "util.h"
#include "cache.h"
#include "bits.h"
#include "artsrch.h"
#include "help.h"
#include "kfile.h"
#include "rcstuff.h"
#include "head.h"
#include "art.h"
#include "artio.h"
#include "ngstuff.h"
#include "intrp.h"
#include "respond.h"
#include "ngdata.h"
#include "backpage.h"
#include "rcln.h"
#include "sw.h"
#include "last.h"
#include "search.h"
#include "nntp.h"
#include "rthread.h"
#include "rt-select.h"
#include "rt-wumpus.h"
#include "decode.h"
#include "charsubst.h"
#include "INTERN.h"
#include "ng.h"
#include "artstate.h" /* somebody has to do it */
/* art_switch() return values */
#define AS_NORM 0
#define AS_INP 1
#define AS_ASK 2
#define AS_CLEAN 3
int exit_code = NG_NORM;
void
ng_init()
{
#ifdef KILLFILES
open_kfile(KF_GLOBAL);
#endif
#ifdef CUSTOMLINES
init_compex(&hide_compex);
init_compex(&page_compex);
#endif
}
/* do newsgroup on line ng with name ngname */
/* assumes that we are chdir'ed to NEWSSPOOL, and assures that that is
* still true upon return, but chdirs to NEWSSPOOL/ngname in between
*
* If you can understand this routine, you understand most of the program.
* The basic structure is:
* for each desired article
* for each desired page
* for each line on page
* if we need another line from file
* get it
* if it's a header line
* do special things
* for each column on page
* put out a character
* end loop
* end loop
* end loop
* end loop
*
* (Actually, the pager is in another routine.)
*
* The chief problem is deciding what is meant by "desired". Most of
* the messiness of this routine is due to the fact that people want
* to do unstructured things all the time. I have used a few judicious
* goto's where I thought it improved readability. The rest of the messiness
* arises from trying to be both space and time efficient. Have fun.
*/
int
do_newsgroup(start_command)
char *start_command; /* command to fake up first */
{
char oldmode = mode;
#ifdef CHARSUBST
char *whatnext = "%s%sWhat next? [%s]";
charsubst = charsets;
#else
char *whatnext = "%sWhat next? [%s]";
#endif
exit_code = NG_NORM;
localkf_changes = 0;
killfirst = 0;
if (extractdest) {
free(extractdest);
extractdest = Nullch;
}
if (extractprog) {
free(extractprog);
extractprog = Nullch;
}
/* initialize the newsgroup data structures */
if (!access_ng())
return -1;
#ifdef ARTSEARCH
srchahead = (scanon && !ThreadedGroup /* did they say -S? */
&& ((ART_NUM)toread[ng]) >= scanon ? -1 : 0);
#endif
/* FROM HERE ON, RETURN THRU CLEANUP OR WE ARE SCREWED */
forcelast = TRUE; /* if 0 unread, do not bomb out */
recent_artp = curr_artp = Nullart;
recent_art = curr_art = lastart+1;
prompt = whatnext;
/* remember what newsgroup we were in for sake of posterity */
writelast();
/* see if there are any special searches to do */
has_normal_kills = FALSE;
#ifdef KILLFILES
open_kfile(KF_LOCAL);
# ifdef VERBOSE
IF(verbose)
kill_unwanted(firstart,"Processing memorized commands...\n\n",TRUE);
ELSE
# endif
# ifdef TERSE
kill_unwanted(firstart,"Auto-processing...\n\n",TRUE);
# endif
#endif
if (!selected_count)
selected_only = FALSE;
top_article();
/* do they want a special top line? */
firstline = getval("FIRSTLINE",Nullch);
/* custom line suppression, custom page ending */
#ifdef CUSTOMLINES
if (hideline = getval("HIDELINE",Nullch))
compile(&hide_compex,hideline,TRUE,TRUE);
if (pagestop = getval("PAGESTOP",Nullch))
compile(&page_compex,pagestop,TRUE,TRUE);
#endif
/* now read each unread article */
rc_changed = doing_ng = TRUE; /* enter the twilight zone */
if (!unsafe_rc_saves)
checkcount = 0; /* do not checkpoint for a while */
do_fseek = FALSE; /* start 1st article at top */
for (; art<=lastart+1; ) { /* for each article */
mode = 'a';
/* do we need to "grow" the newsgroup? */
if ((art > lastart || forcegrow) && !keep_the_group_static) {
ART_NUM oldlast = lastart;
#ifdef USE_NNTP
if ((actfp || getngsize(ng) > lastart)
&& !nntp_group(ngname,ng)) {
fprintf(stderr,"Your server went south for the winter:\n%s\n",
ser_line);
finalize(1);
}
if (ngmax[ng] > lastart) {
grow_ng(ngmax[ng]);
}
#else
grow_ng(getngsize(ng));
#endif
if (forcelast && art > oldlast)
art = lastart+1;
}
if (!artp || (artp->flags & AF_TMPMEM) != AF_TMPMEM || art != 0)
artp = find_article(art);
if (start_command) { /* do we have an initial command? */
hide_pending();
pushstring(start_command, 0);
free(start_command);
start_command = Nullch;
art = curr_art = lastart+1;
artp = curr_artp = Nullart;
if (input_pending())
goto reinp_article;
}
if (art>lastart) { /* are we off the end still? */
ARTICLE *ap;
ART_NUM i;
art = lastart + 1; /* keep pointer references sane */
if (!forcelast && toread[ng] && selected_only && !selected_count) {
art = curr_art;
artp = curr_artp;
strcpy(buf, "+");
goto article_level;
}
count_subjects(CS_RETAIN);
for (i = absfirst, ap = article_ptr(i); i <= lastart; i++, ap++)
if (!(ap->flags & (AF_READ|AF_CACHED)))
article_count++;
toread[ng] = (ART_UNREAD)article_count;
if (artp != curr_artp) {
recent_art = curr_art; /* remember last article # (for '-') */
curr_art = art; /* set current article # */
recent_artp = curr_artp;
curr_artp = artp;
}
if (erase_screen)
clear(); /* clear the screen */
else
fputs("\n\n",stdout) FLUSH;
#ifdef VERBOSE
IF(verbose)
printf("End of newsgroup %s.",ngname);
/* print pseudo-article */
ELSE
#endif
#ifdef TERSE
printf("End of %s",ngname);
#endif
if (article_count) {
if (selected_only)
printf(" (%ld + %ld articles still unread)",
(long)selected_count,
(long)article_count-selected_count);
else
printf(" (%ld article%s still unread)",
(long)article_count,article_count==1?nullstr:"s");
}
if (redirected) {
if (redirected == nullstr)
printf("\n\n** This group has been disabled by your news admin **");
else
printf("\n\n** Please start using %s **", redirected);
} else if (!article_count && !forcelast)
goto cleanup; /* actually exit newsgroup */
mode = 'e';
prompt = whatnext;
#ifdef ARTSEARCH
srchahead = 0; /* no more subject search mode */
#endif
fputs("\n\n",stdout) FLUSH;
}
else if (!reread && (was_read(art) || (artp->flags & AF_MISSING)
|| (selected_only && !(artp->flags & AF_SEL)))) {
/* has this article been read? */
inc_art(selected_only,FALSE);/* then skip it */
continue;
}
else if (!reread && !parseheader(art)) {
oneless(artp); /* mark deleted as read */
ng_skip();
}
else { /* we have a real live article */
if (artp != curr_artp) {
recent_art = curr_art; /* remember last article # (for '-') */
curr_art = art; /* set current article # */
recent_artp = curr_artp;
curr_artp = artp;
}
if (!do_fseek) { /* starting at top of article? */
artline = 0; /* start at the beginning */
topline = -1; /* and remember top line of screen */
/* (line # within article file) */
}
clear(); /* clear screen */
#ifdef USE_NNTP
if (art == 0 && artp && artp->msgid
&& !(artp->flags & AF_CACHED)) {
art = nntp_stat_id(artp->msgid);
if (art)
artp = find_article(art);
}
#endif
if (!artopen(art)) { /* make sure article is found & open */
char tmpbuf[256];
ART_LINE linenum;
/* see if we have tree data for this article anyway */
init_tree();
sprintf(tmpbuf,"%s: article is not available.",ngname);
if (artp && !(artp->flags & AF_CACHED)) {
if (absfirst < first_cached || last_cached < lastart
|| !cached_all_in_range)
sprintf(tmpbuf,"%s: article may show up in a moment.",
ngname);
}
linenum = tree_puts(tmpbuf,0,0);
vwtary(artline,(ART_POS)0);
finish_tree(linenum);
prompt = whatnext;
#ifdef ARTSEARCH
srchahead = 0;
#endif
}
else { /* found it, so print it */
switch (do_article()) {
case DA_CLEAN: /* quit newsgroup */
goto cleanup;
case DA_TOEND: /* do not mark as read */
goto reask_article;
case DA_RAISE: /* reparse command at end of art */
goto article_level;
case DA_NORM: /* normal end of article */
break;
}
}
if (art >= absfirst) /* don't mark non-existant articles */
mark_as_read(); /* mark current article as read */
do_hiding = TRUE;
#ifdef ROTATION
rotate = FALSE;
#endif
}
/* if these gotos bother you, think of this as a little state machine */
reask_article:
#ifdef MAILCALL
setmail(FALSE);
#endif
setdfltcmd();
#ifdef CLEAREOL
if (erase_screen && can_home_clear)
clear_rest();
#endif /* CLEAREOL */
unflush_output(); /* disable any ^O in effect */
standout(); /* enter standout mode */
/* print prompt, whatever it is */
interp(cmd_buf, sizeof cmd_buf, mailcall);
#ifdef CHARSUBST
printf(prompt,cmd_buf,current_charsubst(),dfltcmd);
#else
printf(prompt,cmd_buf,dfltcmd);
#endif
un_standout(); /* leave standout mode */
putchar(' ');
fflush(stdout);
reinp_article:
reread = FALSE;
forcelast = FALSE;
eat_typeahead();
#ifdef PENDING
look_ahead(); /* see what we can do in advance */
cache_until_key();
#endif
art = curr_art;
artp = curr_artp;
getcmd(buf);
if (errno || *buf == '\f') {
if (LINES < 100 && !int_count)
*buf = '\f'; /* on CONT fake up refresh */
else {
putchar('\n') FLUSH; /* but only on a crt */
goto reask_article;
}
}
article_level:
output_chase_phrase = TRUE;
/* parse and process article level command */
switch (art_switch()) {
case AS_INP: /* multichar command rubbed out */
goto reinp_article;
case AS_ASK: /* reprompt "End of article..." */
goto reask_article;
case AS_CLEAN: /* exit newsgroup */
goto cleanup;
case AS_NORM: /* display article art */
break;
}
} /* end of article selection loop */
/* shut down newsgroup */
cleanup:
decode_end();
#ifdef KILLFILES
kill_unwanted(firstart,"\nCleaning up...\n\n",FALSE);
/* do cleanup from KILL file, if any */
#endif
chase_xrefs(FALSE);
in_ng = FALSE; /* leave newsgroup state */
if (artfp != Nullfp) { /* article still open? */
fclose(artfp); /* close it */
artfp = Nullfp; /* and tell the world */
openart = 0;
}
putchar('\n') FLUSH;
deselect_all();
yankback(); /* do a Y command */
bits_to_rc(); /* reconstitute .newsrc line */
doing_ng = FALSE; /* tell sig_catcher to cool it */
if (!unsafe_rc_saves)
write_rc(); /* and update .newsrc */
rc_changed = FALSE; /* tell sig_catcher it is ok */
if (chdir(spool)) {
printf(nocd,spool) FLUSH;
sig_catcher(0);
}
#ifdef KILLFILES
if (localkfp) {
fclose(localkfp);
localkfp = Nullfp;
}
#endif
mode = oldmode;
return exit_code;
} /* Whew! */
/* decide what to do at the end of an article */
int
art_switch()
{
register ART_NUM i;
setdef(buf,dfltcmd);
#ifdef VERIFY
printcmd();
#endif
switch (*buf) {
case '<': /* goto previous subject/thread */
visit_prev_thread();
return AS_NORM;
case '>': /* goto next subject/thread */
visit_next_thread();
return AS_NORM;
case 'U': { /* unread some articles */
char *u_prompt, *u_help_thread;
if (!artp) {
u_help_thread = nullstr;
#ifdef VERBOSE
IF(verbose)
u_prompt = "\nSet unread: +select or all?";
ELSE
#endif
#ifdef TERSE
u_prompt = "\nSet unread?";
#endif
dfltcmd = "+an";
}
else {
#ifdef VERBOSE
IF(verbose) {
u_prompt = "\n\
Set unread: +select, thread, subthread, or all?";
u_help_thread = "\
Type t or SP to mark this thread's articles as unread.\n\
Type s to mark the current article and its descendants as unread.\n";
}
ELSE
#endif
#ifdef TERSE
{
u_prompt = "\nSet unread?";
u_help_thread = "\
t or SP to mark thread unread.\n\
s to mark subthread unread.\n";
}
#endif
dfltcmd = "+tsan";
}
reask_unread:
in_char(u_prompt,'u',dfltcmd);
#ifdef VERIFY
printcmd();
#endif
putchar('\n') FLUSH;
if (*buf == 'h') {
#ifdef VERBOSE
IF(verbose)
{
fputs("\
Type + to enter select thread mode using all the already-read articles.\n\
(The selected threads will be marked as unread and displayed as usual.)\n\
",stdout) FLUSH;
fputs(u_help_thread,stdout);
fputs("\
Type a to mark all articles in this group as unread.\n\
Type n to change nothing.\n\
",stdout) FLUSH;
}
ELSE
#endif
#ifdef TERSE
{
fputs("\
+ to select threads from the unread.\n\
",stdout) FLUSH;
fputs(u_help_thread,stdout);
fputs("\
a to mark all articles unread.\n\
n to change nothing.\n\
",stdout) FLUSH;
}
#endif
goto reask_unread;
}
else if (*buf == 'n' || *buf == 'q')
return AS_ASK;
else if (*buf == 't' && u_help_thread != nullstr) {
unkill_thread(artp->subj->thread);
if ((artp = first_art(artp->subj)) != Nullart)
art = article_num(artp);
} else if (*buf == 's' && u_help_thread != nullstr)
unkill_subthread(artp);
else if (*buf == 'a') {
register ARTICLE *ap;
check_first(absfirst);
ap = article_ptr(absfirst);
for (i = absfirst; i <= lastart; i++, ap++)
if ((ap->flags & (AF_READ|AF_MISSING)) == AF_READ) {
ap->flags &= ~AF_READ; /* mark as unread */
toread[ng]++;
}
count_subjects(CS_NORM);
}
else if (*buf == '+') {
*buf = 'U';
goto run_the_selector;
}
else {
fputs(hforhelp,stdout) FLUSH;
settle_down();
goto reask_unread;
}
return AS_NORM;
}
case '[': /* goto parent article */
case '{': /* goto thread's root article */
if (artp && ThreadedGroup) {
if (!find_parent(*buf == '{')) {
register char *cp = (*buf=='['?"parent":"root");
#ifdef VERBOSE
IF(verbose)
printf("\nThere is no %s article prior to this one.\n",
cp) FLUSH;
ELSE
#endif
#ifdef TERSE
printf("\nNo prior %s.\n",cp) FLUSH;
#endif
return AS_ASK;
}
reread = TRUE;
return AS_NORM;
}
not_threaded:
if (!artp) {
#ifdef VERBOSE
IF(verbose)
fputs("\nYou're at the end of the group.\n",stdout) FLUSH;
ELSE
#endif
#ifdef TERSE
fputs("\nEnd of group.\n",stdout) FLUSH;
#endif
return AS_ASK;
}
#ifdef VERBOSE
IF(verbose)
fputs("\nThis group is not threaded.\n",stdout) FLUSH;
ELSE
#endif
#ifdef TERSE
fputs("\nUnthreaded group.\n",stdout) FLUSH;
#endif
return AS_ASK;
case ']': /* goto child article */
case '}': /* goto thread's leaf article */
if (artp && ThreadedGroup) {
if (!find_leaf(*buf == '}')) {
#ifdef VERBOSE
IF(verbose)
fputs("\n\
This is the last leaf in this tree.\n",stdout) FLUSH;
ELSE
#endif
#ifdef TERSE
fputs("\nLast leaf.\n",stdout) FLUSH;
#endif
return AS_ASK;
}
reread = TRUE;
return AS_NORM;
}
goto not_threaded;
case '(': /* goto previous sibling */
case ')': /* goto next sibling */
if (artp && ThreadedGroup) {
if (!(*buf == '(' ? find_prev_sib() : find_next_sib())) {
register char *cp = (*buf == '(' ? "previous" : "next");
#ifdef VERBOSE
IF(verbose)
printf("\nThis article has no %s sibling.\n",cp) FLUSH;
ELSE
#endif
#ifdef TERSE
printf("\nNo %s sibling.\n",cp) FLUSH;
#endif
return AS_ASK;
}
reread = TRUE;
return AS_NORM;
}
goto not_threaded;
case 'T':
if (!ThreadedGroup)
goto not_threaded;
/* FALL THROUGH */
case 'A':
if (!artp)
goto not_threaded;
switch (ask_memorize(*buf)) {
case ',': case 'j':
return AS_NORM;
}
return AS_ASK;
case 'K':
if (!artp)
goto not_threaded;
/* first, write kill-subject command */
(void)art_search(buf, (sizeof buf), TRUE);
art = curr_art;
artp = curr_artp;
kill_subject(artp->subj,KF_ALL);/* take care of any prior subjects */
return AS_NORM;
case ',': /* kill this node and all descendants */
if (!artp)
goto not_threaded;
if (ThreadedGroup)
kill_subthread(artp,KF_ALL);
else if (art >= absfirst && art <= lastart)
mark_as_read();
return AS_NORM;
case 'J': /* Junk all nodes in this thread */
if (!artp)
goto not_threaded;
if (ThreadedGroup) {
kill_thread(artp->subj->thread,KF_ALL);
return AS_NORM;
}
/* FALL THROUGH */
case 'k': /* kill current subject */
if (!artp)
goto not_threaded;
kill_subject(artp->subj,KF_ALL);
if (!ThreadedGroup || last_cached < lastart) {
*buf = 'k';
goto normal_search;
}
return AS_NORM;
case 't':
carriage_return();
#ifndef CLEAREOL
erase_eol(); /* erase the prompt */
#else
if (erase_screen && can_home_clear)
clear_rest();
else
erase_eol(); /* erase the prompt */
#endif /* CLEAREOL */
fflush(stdout);
page_line = 1;
entire_tree(curr_artp);
return AS_ASK;
case ':': /* execute command on selected articles */
page_line = 1;
if (!thread_perform())
return AS_INP;
putchar('\n');
art = curr_art;
artp = curr_artp;
return AS_ASK;
case 'p': /* find previous unread article */
do {
dec_art(selected_only,FALSE);
} while (art >= firstart && (was_read(art) || !parseheader(art)));
#ifdef ARTSEARCH
srchahead = 0;
#endif
if (art >= firstart)
return AS_NORM;
art = absfirst;
/* FALL THROUGH */
case 'P': /* goto previous article */
dec_art(FALSE,TRUE);
check_dec_art:
if (art < absfirst) {
#ifdef VERBOSE
IF(verbose)
printf("\nThere are no%s%s articles prior to this one.\n",
*buf=='P'?nullstr:" unread",
selected_only?" selected":nullstr) FLUSH;
ELSE
#endif
#ifdef TERSE
printf("\nNo previous%s%s articles\n",
*buf=='P'?nullstr:" unread",
selected_only?" selected":nullstr) FLUSH;
#endif
art = curr_art;
artp = curr_artp;
return AS_ASK;
}
reread = TRUE;
#ifdef ARTSEARCH
srchahead = 0;
#endif
return AS_NORM;
case '-':
if (recent_art >= 0) {
art = recent_art;
artp = recent_artp;
reread = TRUE;
forcelast = TRUE;
#ifdef ARTSEARCH
srchahead = -(srchahead != 0);
#endif
return AS_NORM;
}
else {
exit_code = NG_MINUS;
return AS_CLEAN;
}
case 'n': /* find next unread article? */
if (art > lastart) {
if (!toread[ng])
return AS_CLEAN;
top_article();
}
#ifdef ARTSEARCH
else if (scanon && !ThreadedGroup && srchahead) {
*buf = Ctl('n');
if (!next_art_with_subj())
goto normal_search;
return AS_NORM;
}
#endif
else {
inc_art(selected_only,FALSE);
if (art > lastart)
top_article();
}
#ifdef ARTSEARCH
srchahead = 0;
#endif
return AS_NORM;
case 'N': /* goto next article */
if (art > lastart)
if (!first_subject) {
art = absfirst;
artp = article_ptr(art);
} else {
artp = first_subject->articles;
if (artp->flags & AF_MISSING)
inc_art(FALSE,TRUE);
else
art = article_num(artp);
}
else
inc_art(FALSE,TRUE);
if (art <= lastart)
reread = TRUE;
else
forcelast = TRUE;
#ifdef ARTSEARCH
srchahead = 0;
#endif
return AS_NORM;
case '$':
art = lastart+1;
artp = Nullart;
forcelast = TRUE;
#ifdef ARTSEARCH
srchahead = 0;
#endif
return AS_NORM;
case '1': case '2': case '3': /* goto specified article */
case '4': case '5': case '6': /* or do something with a range */
case '7': case '8': case '9': case '.':
forcelast = TRUE;
switch (numnum()) {
case NN_INP:
return AS_INP;
case NN_ASK:
return AS_ASK;
case NN_REREAD:
reread = TRUE;
#ifdef ARTSEARCH
if (srchahead)
srchahead = -1;
#endif
break;
case NN_NORM:
if (was_read(art)) {
top_article();
pad(just_a_sec/3);
}
else {
putchar('\n');
return AS_ASK;
}
break;
}
return AS_NORM;
case Ctl('k'):
edit_kfile();
return AS_ASK;
case Ctl('n'): /* search for next article with same subject */
case Ctl('p'): /* search for previous article with same subject */
if (*buf == Ctl('n')? next_art_with_subj() : prev_art_with_subj())
return AS_NORM;
case '/': case '?':
normal_search:
#ifdef ARTSEARCH
{ /* search for article by pattern */
char cmd = *buf;
reread = TRUE; /* assume this */
page_line = 1;
switch (art_search(buf, (sizeof buf), TRUE)) {
case SRCH_ERROR:
art = curr_art;
return AS_ASK;
case SRCH_ABORT:
art = curr_art;
return AS_INP;
case SRCH_INTR:
#ifdef VERBOSE
IF(verbose)
printf("\n(Interrupted at article %ld)\n",(long)art) FLUSH;
ELSE
#endif
#ifdef TERSE
printf("\n(Intr at %ld)\n",(long)art) FLUSH;
#endif
art = curr_art; /* restore to current article */
return AS_ASK;
case SRCH_DONE:
fputs("done\n",stdout) FLUSH;
pad(just_a_sec/3); /* 1/3 second */
if (!srchahead) {
art = curr_art;
return AS_ASK;
}
top_article();
reread = FALSE;
return AS_NORM;
case SRCH_SUBJDONE:
#ifdef UNDEF
fputs("\n\n\n\nSubject not found.\n",stdout) FLUSH;
pad(just_a_sec/3); /* 1/3 second */
#endif
top_article();
reread = FALSE;
return AS_NORM;
case SRCH_NOTFOUND:
fputs("\n\n\n\nNot found.\n",stdout) FLUSH;
art = curr_art; /* restore to current article */
return AS_ASK;
case SRCH_FOUND:
if (cmd == Ctl('n') || cmd == Ctl('p')) {
oldsubject = TRUE;
reread = FALSE;
}
break;
}
return AS_NORM;
}
#else /* !ARTSEARCH */
buf[1] = '\0';
notincl(buf);
return AS_ASK;
#endif
case 'u': /* unsubscribe from this newsgroup? */
rcchar[ng] = NEGCHAR;
return AS_CLEAN;
case 'M':
if (art <= lastart) {
delay_unmark(artp);
oneless(artp);
printf("\nArticle %ld will return.\n",(long)art) FLUSH;
}
return AS_ASK;
case 'm':
if (art >= absfirst && art <= lastart) {
unmark_as_read();
printf("\nArticle %ld marked as still unread.\n",(long)art) FLUSH;
}
return AS_ASK;
case 'c': /* catch up */
switch (ask_catchup()) {
case 'n':
return AS_ASK;
case 'u':
return AS_CLEAN;
}
art = lastart+1;
artp = Nullart;
forcelast = FALSE;
return AS_NORM;
case 'Q':
exit_code = NG_ASK;
/* FALL THROUGH */
case 'q': /* go back up to newsgroup level? */
return AS_CLEAN;
case 'j':
putchar('\n') FLUSH;
if (art >= absfirst && art <= lastart)
mark_as_read();
return AS_ASK;
case 'h': { /* help? */
int cmd;
if ((cmd = help_art()) > 0)
pushchar(cmd);
return AS_ASK;
}
case '&':
if (switcheroo()) /* get rest of command */
return AS_INP; /* if rubbed out, try something else */
return AS_ASK;
case '#':
#ifdef VERBOSE
IF(verbose)
printf("\nThe last article is %ld.\n",(long)lastart) FLUSH;
ELSE
#endif
#ifdef TERSE
printf("\n%ld\n",(long)lastart) FLUSH;
#endif
return AS_ASK;
case '+': /* enter selection mode */
run_the_selector:
*buf = do_selector(*buf);
switch (*buf) {
case '+':
putchar('\n') FLUSH;
return AS_ASK;
case 'Q':
exit_code = NG_ASK;
/* FALL THROUGH */
case 'q':
break;
case 'N':
exit_code = NG_SELNEXT;
break;
case 'P':
exit_code = NG_SELPRIOR;
break;
default:
if (toread[ng])
return AS_NORM;
break;
}
return AS_CLEAN;
case '=': { /* list subjects */
char tmpbuf[256];
ART_NUM oldart = art;
int cmd, len;
char *s;
char *subjline = getval("SUBJLINE",Nullch);
ARTICLE *ap = article_ptr(firstart);
page_init();
for (i=firstart; i<=lastart && !int_count; i++, ap++) {
if (!(ap->flags & AF_READ) && (s = fetchsubj(i,FALSE)) != Nullch) {
sprintf(tmpbuf,"%5ld ", i);
len = strlen(tmpbuf);
if (subjline) {
art = i;
interp(tmpbuf + len, sizeof tmpbuf - len, subjline);
}
else
safecpy(tmpbuf + len, s, sizeof tmpbuf - len);
if (cmd = print_lines(tmpbuf,NOMARKING)) {
if (cmd > 0)
pushchar(cmd);
break;
}
}
}
int_count = 0;
art = oldart;
return AS_ASK;
}
case '^':
top_article();
#ifdef ARTSEARCH
srchahead = 0;
#endif
return AS_NORM;
#ifdef DEBUG
case 'D':
printf("\nFirst article: %ld\n",(long)firstart) FLUSH;
{
ARTICLE *ap = article_ptr(firstart);
for (i = firstart; i <= lastart && !int_count; i++, ap++) {
if (ap->subj)
printf("%5ld %c %s\n",i,(was_read(i)?'y':'n'),
ap->subj->str) FLUSH;
}
}
int_count = 0;
return AS_ASK;
#endif
case 'v':
if (art <= lastart) {
reread = TRUE;
do_hiding = FALSE;
}
return AS_NORM;
#ifdef ROTATION
case Ctl('x'):
#endif
case Ctl('r'):
#ifdef ROTATION
rotate = (*buf==Ctl('x'));
#endif
if (art <= lastart)
reread = TRUE;
else
forcelast = TRUE;
return AS_NORM;
#ifdef ROTATION
case 'X':
rotate = !rotate;
/* FALL THROUGH */
#else
case Ctl('x'):
case 'x':
case 'X':
notincl("x");
return AS_ASK;
#endif
case 'l': case Ctl('l'): /* refresh screen */
refresh_screen:
if (art <= lastart) {
reread = TRUE;
clear();
do_fseek = TRUE;
artline = topline;
if (artline < 0)
artline = 0;
}
return AS_NORM;
case Ctl('^'):
carriage_return();
erase_eol(); /* erase the prompt */
#ifdef MAILCALL
setmail(TRUE); /* force a mail check */
#endif
return AS_ASK;
#ifdef INNERSEARCH
case Ctl('e'):
if (art <= lastart) {
reread = TRUE;
do_fseek = TRUE;
innerlight = artline - 1;
topline = artline;
innersearch = artsize;
gline = 0;
hide_everything = 'b';
}
return AS_NORM;
#endif
case 'B': /* back up one line */
case 'b': case Ctl('b'): /* back up a page */
if (art <= lastart) {
ART_LINE target;
reread = TRUE;
clear();
do_fseek = TRUE;
if (*buf == 'B')
target = topline - 1;
else {
target = topline - (LINES - 2);
if (marking && (marking_areas & BACKPAGE_MARKING)) {
highlight = topline;
}
}
artline = topline;
if (artline >= 0) do {
artline--;
} while(artline >= 0 && artline > target && vrdary(artline-1) >= 0);
topline = artline;
if (artline < 0)
artline = 0;
}
return AS_NORM;
case '!': /* shell escape */
if (escapade())
return AS_INP;
return AS_ASK;
case 'C': {
cancel_article();
return AS_ASK;
}
case 'Z':
case 'z': {
supersede_article(); /* supersedes */
return AS_ASK;
}
case 'R':
case 'r': { /* reply? */
reply();
return AS_ASK;
}
case 'F':
case 'f': { /* followup command */
followup();
forcegrow = TRUE; /* recalculate lastart */
return AS_ASK;
}
case Ctl('f'): { /* forward? */
forward();
return AS_ASK;
}
case '|':
case 'w': case 'W':
case 's': case 'S': /* save command */
case 'e': /* extract command */
if (save_article() == SAVE_ABORT)
return AS_INP;
int_count = 0;
return AS_ASK;
case 'E':
if (decode_fp)
decode_end();
else
putchar('\n') FLUSH;
return AS_ASK;
case 'Y': /* yank back M articles */
yankback();
top_article(); /* from the beginning */
return AS_NORM; /* pretend nothing happened */
#ifdef STRICTCR
case '\n':
fputs(badcr,stdout) FLUSH;
return AS_ASK;
#endif
case '_':
if (!finish_dblchar())
return AS_INP;
switch (buf[1] & 0177) {
case 'P':
art--;
goto check_dec_art;
case 'N':
if (art > lastart)
art = absfirst;
else
art++;
if (art <= lastart)
reread = TRUE;
#ifdef ARTSEARCH
srchahead = 0;
#endif
return AS_NORM;
case '+':
if (!artp)
goto not_threaded;
if (ThreadedGroup) {
select_arts_thread(artp, 0);
printf("\nSelected all articles in this thread.\n");
} else {
select_arts_subject(artp, 0);
printf("\nSelected all articles in this subject.\n");
}
if ((artp = first_art(artp->subj)) != Nullart) {
if (art == article_num(artp))
return AS_ASK;
art = article_num(artp);
}
return AS_NORM;
case '-':
if (!artp)
goto not_threaded;
if (sel_mode == SM_THREAD) {
deselect_arts_thread(artp);
printf("\nDeselected all articles in this thread.\n");
} else {
deselect_arts_subject(artp);
printf("\nDeselected all articles in this subject.\n");
}
return AS_ASK;
#ifdef CHARSUBST
case 'C':
if (!*(++charsubst))
charsubst = charsets;
goto refresh_screen;
#endif
case 'a': case 's': case 't': case 'T':
*buf = buf[1];
goto run_the_selector;
}
/* FALL THROUGH */
default:
printf("\n%s",hforhelp) FLUSH;
settle_down();
break;
}
return AS_ASK;
}
#ifdef MAILCALL
/* see if there is any mail */
void
setmail(force)
bool_int force;
{
if (force)
mailcount = 0;
if (!(mailcount++)) {
char *mailfile = filexp(getval("MAILFILE",MAILFILE));
if (stat(mailfile,&filestat) < 0 || !filestat.st_size
|| filestat.st_atime > filestat.st_mtime)
mailcall = nullstr;
else
mailcall = getval("MAILCALL","(Mail) ");
}
mailcount %= 5; /* check every 5 articles */
}
#endif
void
setdfltcmd()
{
if (!toread[ng]) {
if (art > lastart)
dfltcmd = "qnp";
else
dfltcmd = "npq";
}
else {
#ifdef ARTSEARCH
if (srchahead)
dfltcmd = "^Nnpq";
else
#endif
dfltcmd = "npq";
}
}
/* Ask the user about catching-up the current group. Returns 'y' if yes,
** 'n' or 'N' if no ('N' means we used one line when in the selector),
** or 'u' for yes with unsubscribe. Actually performs the catchup and
** unsubscription as needed.
*/
char
ask_catchup()
{
char ch;
bool use_one_line = (mode == 't');
int leave = 0;
if (!use_one_line)
putchar('\n') FLUSH;
reask_catchup:
#ifdef VERBOSE
IF(verbose)
in_char("Do you really want to mark everything as read?",'C',"yn#h");
ELSE
#endif
#ifdef TERSE
in_char("Really?",'C',"ynh");
#endif
#ifdef VERIFY
printcmd();
#endif
if ((ch = *buf) == 'h') {
use_one_line = FALSE;
#ifdef VERBOSE
IF(verbose)
fputs("\n\
Type y or SP to mark all articles as read.\n\
Type n to leave articles marked as they are.\n\
Enter a number to mark all but the last # articles as read.\n\
Type u to mark everything read and unsubscribe.\n\n\
",stdout) FLUSH;
ELSE
#endif
#ifdef TERSE
fputs("\n\
y or SP to mark all read.\n\
n to forget it.\n\
u to mark all and unsubscribe.\n\n\
",stdout) FLUSH;
#endif
goto reask_catchup;
}
if (ch == 'n' || ch == 'q') {
if (use_one_line)
return 'N';
putchar('\n') FLUSH;
return 'n';
}
if (ch == '#') {
use_one_line = FALSE;
in_char("\nEnter the number of articles to leave unread: ", 'C', "0");
if ((ch = *buf) == '0')
ch = 'y';
}
if (isdigit(ch)) {
buf[1] = FINISHCMD;
if (!finish_command(FALSE)) {
use_one_line = FALSE;
putchar('\n') FLUSH;
goto reask_catchup;
}
else {
leave = atoi(buf);
ch = 'y';
}
}
if (ch != 'y' && ch != 'u') {
use_one_line = FALSE;
printf("\n%s\n", hforhelp) FLUSH;
settle_down();
goto reask_catchup;
}
if (mode == 'n') {
putchar('\n') FLUSH;
catch_up(ng, leave);
}
else {
int i;
ARTICLE *ap;
for (i = firstart, ap = article_ptr(i); i <= lastart-leave; i++, ap++)
ap->flags = ((ap->flags & ~sel_mask) | AF_READ);
selected_count = selected_subj_cnt = selected_only = 0;
toread[ng] = 0;
if (dmcount)
yankback();
putchar('\n') FLUSH;
}
if (ch == 'u') {
rcchar[ng] = NEGCHAR;
printf("(If you meant to hit 'y' instead of 'u', press '-'.)\n");
}
return ch;
}
char
ask_memorize(ch)
char_int ch;
{
bool thread_cmd = (ch == 'T');
bool use_one_line = (mode == 't');
char *mode_string = (thread_cmd? "thread" : "subject");
char *mode_phrase = (thread_cmd? "replies to this article" :
"this subject and all replies");
ART_NUM art_hold = art;
ARTICLE *artp_hold = artp;
if (!use_one_line)
putchar('\n') FLUSH;
sprintf(cmd_buf,"Memorize %s command:", mode_string);
reask_memorize:
in_char(cmd_buf, 'm', "+.j,cC");
#ifdef VERIFY
printcmd();
#endif
if ((ch = *buf) == 'h') {
use_one_line = FALSE;
#ifdef VERBOSE
IF(verbose)
printf("\n\
Type + or SP to auto-select this %s (i.e. includes future articles).\n\
Type . to auto-select %s.\n\
Type j to auto-kill (junk) this %s.\n\
Type , to auto-kill %s.\n\
Type c to clear all selection/killing on this %s.\n\
Type C to clear all selection/killing on %s.\n\
Type q to abort the operation.\n\n\
",mode_string,mode_phrase,mode_string,mode_phrase,mode_string,mode_phrase) FLUSH;
ELSE
#endif
#ifdef TERSE
printf("\n\
+ or SP auto-selects this %s.\n\
. auto-selects %s.\n\
j auto-kills this %s.\n\
, auto-kills %s.\n\
c clears auto-commands for this %s.\n\
C clears auto-commands for %s.\n\
q aborts.\n\n\
",mode_string,mode_phrase,mode_string,mode_phrase,mode_string,mode_phrase) FLUSH;
#endif
goto reask_memorize;
}
if (ch == 'q') {
if (use_one_line)
return 'Q';
putchar('\n');
return 'q';
}
if (ch == '+') {
if (!thread_cmd) {
(void)art_search(buf, (sizeof buf), TRUE);
art = art_hold;
artp = artp_hold;
ch = '.';
} else
ch = (use_one_line? '+' : '.');
if (thread_cmd)
select_arts_thread(artp, AUTO_SELECTALL);
else
select_arts_subject(artp, 0);
if (mode != 't')
printf("\nSelection memorized.\n");
} else if (ch == '.') {
if (!thread_cmd) {
(void)art_search(buf, (sizeof buf), TRUE);
art = art_hold;
artp = artp_hold;
} else
ch = (use_one_line? '+' : '.');
select_subthread(artp,thread_cmd? AUTO_SELECT : 0);
if (mode != 't')
printf("\nSelection memorized.\n");
} else if (ch == 'j') {
if (!thread_cmd) {
*buf = 'K';
(void)art_search(buf, (sizeof buf), TRUE);
art = art_hold;
artp = artp_hold;
}
if (thread_cmd)
kill_thread(artp->subj->thread,KF_ALL|KF_KILLFILE);
else
kill_subject(artp->subj,KF_ALL);
if (mode != 't')
printf("\nKill memorized.\n");
} else if (ch == ',') {
if (!thread_cmd) {
(void)art_search(buf, (sizeof buf), TRUE);
art = art_hold;
artp = artp_hold;
}
kill_subthread(artp,KF_ALL|(thread_cmd?KF_KILLFILE:0));
if (mode != 't')
printf("\nKill memorized.\n");
} else if (ch == 'c') {
if (thread_cmd)
clear_thread(artp->subj->thread);
else
clear_subject(artp->subj);
} else if (ch == 'C') {
clear_subthread(artp);
} else {
use_one_line = FALSE;
printf("\n%s\n", hforhelp) FLUSH;
settle_down();
goto reask_memorize;
}
if (!use_one_line)
putchar('\n') FLUSH;
return ch;
}
|