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
|
/*-
* Copyright (c) 1999 Timmy M. Vanderhoek
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
/*
* These functions handle evaluation of primitive commands. In general,
* commands either come from macro.h as it expands user input, or
* directly from a .morerc file (in which case only a limited set of
* commands is valid.
*
* Commands are matched by command() against a command table. The rest
* of the command line string passed to command() is then passed to a
* function corresponding to the given command. The specific command
* function evaluates the remainder of the command string with the help
* of getstr() and getnumb(), both of which also handle variable expansion
* into a single word. It may in the future be desirable to add a special
* getsstring(), get-search-string, function. Specific command functions
* should not try grokking the command string by themselves.
*
* A command and its arguments are terminated by either a NUL or a ';'.
* This is recognized by both getstr() and getint(). Specific command
* functions return a pointer to the end of the command (and its arguments)
* thus allowing command() to accept commands that are chained together
* by semicolons. If a specific command fails it returns NULL preventing
* any proceeding commands (chained together with ';') from being parsed.
* This can be considered as a feature.
*
* All variable-access functions and variable state are internal to
* ncommand.c. The sole exceptions are setvar() and setvari().
*/
#include <sys/param.h>
#include <assert.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "less.h"
#include "pathnames.h"
static int getint __P((long *numb, const char **line));
static getstr_free();
static void **getstr_raisectxt();
/* The internal command table. */
static const char *cscroll(), *cquit(), *cerror(), *ceval(), *cset(),
*cflush(), *cmacro(), *caskfile(), *cusercom(),
*ctags(), *chscroll(), *cgomisc(), *cgoend(), *csearch(),
*cstat(), *cdeftog(), *ccondition(), *chelp(), *cfile(),
*cfile_list(), *cedit(), *cmark(), *creadrc();
/* An enum identifying each command */
enum cident {
DEFTOG, /* Initialize toggle values */
EVAL, /* Evaluate a subexpression */
SET, /* Set a variable */
MACRO, /* Create a new macro */
ERROR, /* Print a notification message */
CONDITION, /* Condition evaluation of (almost) _all_ commands */
CONDITION_N, /* CONDITION with an inverse truth table */
CONDITION_TOGGLE,/* Switch to the reverse sense of the last condition */
USERCOM, /* Get the user to type in a direct command */
READRC, /* Read-in a named rc file */
QUIT, /* Quit */
HELP, /* Help */
FLUSH, /* Flush file buffer and friends */
REPAINT, /* Redraw the screen (useful if it got trashed) */
FORW_SCROLL, /* Scroll forward N lines */
BACK_SCROLL, /* Scroll backward N lines */
FORW, /* Jump or scroll forward N lines */
BACK, /* Jump or scroll backwards N lines */
LSCROLL, /* Scroll horizontally leftwards */
RSCROLL, /* Scroll horizontally to the right */
GOLINE, /* Goto line number N */
GOPERCENT, /* Goto percent N of the file */
GOEND, /* Goto the end of the file */
EDIT, /* Edit the current file, using getenv(EDITOR) */
ASKFILE, /* Ask for a different, new file */
CFILE, /* Page/view the N'th next or prev file */
FILE_LIST, /* List the files that CFILE moves around in */
STAT, /* List detailed file statistics in prompt */
MAGICASKSEARCH, /* Ask for a regexp search string */
SEARCH, /* Search for a regexp */
RESEARCH, /* Search for the next N'th occurrence */
SETMARK, /* Set a bookmark to the current position */
GOMARK, /* Goto a previously set bookmark */
ASKFTAG, /* Ask for a tag to goto */
NEXTFTAG, /* Move forward N in the tag queue */
PREVFTAG, /* Move backwards N in the tag queue */
};
static struct ctable {
const char *cname;
enum cident cident;
const char * (*cfunc)(enum cident, const char *args);
} ctable[] = {
{ "deftog", DEFTOG, cdeftog },
{ "eval", EVAL, ceval },
{ "set", SET, cset },
{ "macro", MACRO, cmacro },
{ "error", ERROR, cerror },
{ "condition", CONDITION, ccondition },
{ "condition_!", CONDITION_N, ccondition },
{ "condition_toggle", CONDITION_TOGGLE, ccondition },
{ "condition_else", CONDITION_TOGGLE, ccondition },
{ "usercom", USERCOM, cusercom },
{ "readrc", READRC, creadrc },
{ "quit", QUIT, cquit },
{ "help", HELP, chelp },
{ "flush", FLUSH, cflush },
{ "repaint", REPAINT, cflush },
{ "forw_scroll", FORW_SCROLL, cscroll },
{ "back_scroll", BACK_SCROLL, cscroll },
{ "forw", FORW, cscroll },
{ "back", BACK, cscroll },
{ "rscroll", RSCROLL, chscroll },
{ "lscroll", LSCROLL, chscroll },
{ "goline", GOLINE, cgomisc },
{ "gopercent", GOPERCENT, cgomisc },
{ "goend", GOEND, cgoend },
{ "edit", EDIT, cedit },
{ "askfile", ASKFILE, caskfile },
{ "file", CFILE, cfile },
{ "file_list", FILE_LIST, cfile_list },
{ "stat", STAT, cstat },
{ "magicasksearch", MAGICASKSEARCH, csearch },
{ "search", SEARCH, csearch },
{ "research", RESEARCH, csearch },
{ "setmark", SETMARK, cmark },
{ "gomark", GOMARK, cmark },
{ "asktag", ASKFTAG, ctags },
{ "nexttag", NEXTFTAG, ctags },
{ "prevtag", PREVFTAG, ctags },
};
/* I believe this is just for cosmetic purposes. */
#define CMD_EXEC lower_left(); flush()
/*
* Prototypes are for people who can't program.
*/
/*
* The main command string evaluator. Returns -1 if an error occurred
* in the command or in executing the command, returns 0 otherwise. If an
* error occurs while evaluating a command line containing multiple commands,
* commands after the error are not processed. Multiple commands may be
* separated by ';' or '\n'. (Multiple commands may also be separated by
* a ' ', but this is really a bug...)
*/
int
command(line)
const char *line;
{
struct ctable *i;
donextcommand:
while (isspace(*line) || *line == ';' || *line == '\n') line++;
if (!*line)
return 0;
for (i = ctable; i != ctable + sizeof(ctable) / sizeof(struct ctable);
i++) {
if (!strncmp(i->cname, line, strlen(i->cname)) &&
(line[strlen(i->cname)] == ' ' ||
line[strlen(i->cname)] == ';' ||
line[strlen(i->cname)] == '\0')) {
/* Found a match! */
void **ctxt;
CMD_EXEC;
ctxt = getstr_raisectxt();
line = i->cfunc (i->cident, line + strlen(i->cname));
getstr_free(ctxt);
if (!line)
return -1; /* error evaluating command */
goto donextcommand;
}
}
SETERRSTR(E_BOGCOM, "invalid command: ``%s''", line);
(void) command("condition true");
return -1;
}
/*****************************************************************************
*
* Functions to help specific command functions to parse their arguments.
*
* The three functions here, getstr(), getint(), and gettog() could in theory
* have vastly different concepts of what a number is, and what a string is,
* etc., but in practice they don't.
*/
static char *readvar();
#define NCTXTS 30
void *getstr_ctxts[NCTXTS]; /* could easily be made dynamic... */
void **getstr_curctxt = getstr_ctxts;
/*
* Read a single argument string from a command string. This understands
* $variables, "double quotes", 'single quotes', and backslash escapes
* for \\, \$, \n, \e, \t, and \" (the latter only inside double quotes). A
* string may be delimited by double quotes or spaces, not both (duh). It
* may be worthwhile to add another quotation style in which arithmetic
* expressions are expanded. Currently an arithmetic expression is expanded
* iff it is the only component of the string.
*
* Returns a pointer to the beginning of the string or NULL if it was unable to
* read a string. The line is modified to point somewhere between the end of
* the command argument just read-in and the beginning of the next command
* argument (if any). The returned pointer will be free()'d by calling
* getstr_free().
*/
static char *
getstr(line)
const char **line; /* Where to look for the return string */
{
int doquotes = 0; /* Doing a double-quote string */
char *retr;
if (getstr_curctxt - getstr_ctxts == NCTXTS) {
SETERRSTR(E_COMPLIM,
"compile-time limit exceeded: command contexts");
return NULL; /* wouldn't be able to register return pointer */
}
while (isspace(**line)) (*line)++;
if (**line == '\'') {
/* Read until closing quote or '\0'. */
char *nextw = retr = malloc(1);
const char *c = ++(*line);
int l;
for (; *c; c++) {
if (*c == '\'') {
if (c[-1] == '\\') {
nextw[-1] = '\'';
continue;
} else {
*nextw = '\0';
*line = c + 1;
*getstr_curctxt = retr;
getstr_curctxt++;
return retr;
}
}
l = nextw - retr;
/* XXX How many realloc()'s can you make per second? */
if (!(retr = reallocf(retr, c - *line + 250))) {
SETERR (E_MALLOC);
return NULL;
}
nextw = retr + l;
*nextw = *c;
nextw++;
}
SETERR(E_CANTPARSE);
return NULL;
}
if (**line == '"') {
doquotes = 1;
(*line)++;
}
if (**line == '(') {
/* An arithmetic expression instead of a string... Well, I
* guess this is valid. See comment leading this function. */
long n;
if (getint(&n, line))
return NULL;
retr = NULL;
asprintf(&retr, "%ld", n);
if (!retr)
SETERR (E_MALLOC);
*getstr_curctxt = retr;
getstr_curctxt++;
return retr;
}
if (!FMALLOC(1, retr))
return NULL;
*retr = '\0';
for (;;) {
char *c, hack[2];
switch (**line) {
case '\\':
switch (*(*line + 1)) {
case '\\': case '$': case '\'':
case 't': case ' ': case ';':
hack[0] = *(*line + 1);
hack[1] = '\0';
c = hack;
(*line) += 2;
break;
case 'n':
c = "\n";
(*line) += 2;
break;
case 'e':
c = "\e";
(*line) += 2;
break;
case '"':
if (doquotes) {
c = "\"";
(*line) += 2;
break;
} else
; /* fallthrough */
default:
c = "\\";
(*line)++;
break;
}
break;
case '$':
(*line)++;
if (!(c = readvar(line))) {
free (retr);
return NULL;
}
break;
case ' ': case '\t': case ';':
if (!doquotes) {
doquotes = 1;
case '"':
if (doquotes) {
/* The end of the string */
(*line)++;
case '\0':
*getstr_curctxt = retr;
getstr_curctxt++;
return retr;
}
}
/* fallthrough */
default:
hack[0] = **line;
hack[1] = '\0';
c = hack;
(*line)++;
break;
}
retr = reallocf(retr, strlen(retr) + strlen(c) + 1);
if (!retr) {
SETERR (E_MALLOC);
return NULL;
}
strcat(retr, c);
}
}
/*
* Returns a new context that should be passed to getstr_free() so that
* getstr_free() only free()'s memory from that particular context.
*/
static void **
getstr_raisectxt()
{
return getstr_curctxt;
}
/*
* Calls free() on all memory from context or higher.
*/
static
getstr_free(context)
void **context;
{
while (getstr_curctxt != context) {
getstr_curctxt--;
free (*getstr_curctxt);
}
}
/*
* Reads an integer value from a command string. Typed numbers must be
* in base10. If a '(' is found as the first character of the integer value,
* then getint() will read until a closing ')' unless interupted by an
* end-of-command marker (error). The parentheses are expected to contain a
* simple arithmetic statement involving only one '*', '/', etc. operation. The
* rightmost digit or the closing parenthesis should be followed by either a
* space or an end-of-command marker.
*
* Returns 0 on success, -1 on failure. The line will be modified to just
* after the last piece of text parsed.
*
* XXX We may add support for negative numbers, someday...
*/
static int
getint(numb, line)
long *numb; /* The read-in number is returned through this */
const char **line; /* The command line from which to read numb */
{
long n;
int j;
char *p;
const char *t;
while (isspace(**line)) (*line)++;
switch (**line) {
case '(':
(*line)++;
if (getint(numb, line))
return -1;
while (isspace(**line)) (*line)++;
j = **line;
(*line)++;
if (j == ')')
return 0;
if (**line == '=' && (j == '!' || j == '=')
|| j == '&' && **line == '&' || j == '|' && **line == '|')
j = (j << 8) + *((*line)++);
if (getint(&n, line))
return -1;
while (isspace(**line)) (*line)++;
if (**line != ')') {
SETERRSTR (E_BADMATH,
"missing arithmetic close parenthesis");
return -1;
} else
(*line)++;
switch (j) {
case ('!' << 8) + '=':
*numb = *numb != n;
return 0;
case ('=' << 8) + '=':
*numb = *numb == n;
return 0;
case ('&' << 8) + '&':
*numb = *numb && n;
return 0;
case ('|' << 8) + '|':
*numb = *numb || n;
return 0;
case '+':
*numb += n;
return 0;
case '-':
*numb -= n;
return 0;
case '*':
*numb *= n;
return 0;
case '/':
if (n == 0)
*numb = 1;
else
*numb /= n;
return 0;
default:
SETERRSTR (E_BADMATH,
"bad arithmetic operator: ``%c''", j);
return -1;
}
case '$':
t = (*line)++;
if (!(p = readvar(line)))
return -1;
if (!isdigit(*p)) {
SETERRSTR (E_BADMATH,
"non-number found (``%s'') "
"after expanding variable at ``%s''", p, t);
return -1;
}
*numb = atol(p);
return 0;
case '9': case '0': case '8': case '1': case '7': case '2': case '6':
case '3': case '5': case '4':
*numb = atol(*line);
while (isdigit(**line)) (*line)++;
return 0;
case '"': case '\'':
/* Uh-oh. It's really a string. We'll go through getstr()
* and hope for the best, but this isn't looking good. */
if (!(p = getstr(line)))
return -1;
*numb = atol(p);
return 0;
default:
SETERRSTR (E_BADMATH,
"non-number found, number expected, before parsing ``%s''",
*line);
return -1;
}
}
/*
* Read an argument from the command string and match that argument against
* a series of legitimate values. For example,
*
* command <<opt0|opt1|opt2>>
*
* This command by be given to the command() processor as a variant of either
* "command opt1" or "command 4", both of which will cause this function to
* return the value 1. This function returns -1 on failure.
*
* Note that an option (eg. "opt1") must _not_ start with a digit!!
*/
static int
gettog(const char **line, int nopts, ...)
{
char *str;
int n;
va_list opts;
if (!(str = getstr(line)))
return -1;
if (isdigit(*str)) {
n = atol(str) % nopts;
return n;
}
va_start(opts, nopts);
for (n=0; n < nopts; n++) {
if (!strcasecmp(str, va_arg(opts, const char *))) {
va_end(opts);
return n;
}
}
va_end(opts);
SETERR (E_NOTOG); /* XXX would be nice to list valid toggles... */
return -1;
}
/*
* A companion function for gettog(). Example,
*
* optnumb = gettog(&args, 3, "opt1", "opt2", "opt3");
* settog("_lastoptnumb", optnumb, "opt1", "opt2", "opt3");
*
* And the variable named _lastoptnumb_s will be set to one of "opt1", "opt2",
* or "opt3" as per the value of optnumb. The variable _lastoptnumb_n will
* also be set to a corresponding value. The optnumb argument had better
* be within the correct range (between 0 and 2 in the above example)!!
*/
settog(const char *varname, int optval, int nargs, ...)
{
va_list opts;
char *s;
int optval_orig = optval;
assert(optval < nargs); assert(optval >= 0);
if (!(s = malloc(strlen(varname) + 3)))
return;
strcpy (s, varname);
va_start(opts, nargs);
for (; optval; optval--) va_arg(opts, const char *);
s[strlen(varname)] = '_';
s[strlen(varname) + 1] = 's';
s[strlen(varname) + 2] = '\0';
(void) setvar(s, va_arg(opts, const char *));
s[strlen(varname) + 1] = 'n';
(void) setvari(s, (long) optval_orig);
clear_error();
va_end(opts);
free(s);
}
/*
* Read {text} and return the string associated with the variable named
* <<text>>. Returns NULL on failure.
*/
static char *
readvar(line)
char **line;
{
int vlength;
char *vstart;
static char *getvar();
if (**line != '{') {
SETERR (E_BADVAR);
return NULL;
}
(*line)++;
for (vlength = 0, vstart = *line; **line &&
(isalpha(**line) || **line == '_'); (*line)++)
vlength++;
if (**line != '}' || vlength == 0) {
SETERRSTR (E_BADVAR,
"bad character ``%c'' in variable ``%.*s''", **line,
vlength, vstart);
return NULL;
}
(*line)++;
return getvar(vstart, vlength);
}
/*****************************************************************************
*
* Track variables.
*
*/
static struct vble {
struct vble *next;
char *name;
char *value;
} *vble_l; /* linked-list of existing variables */
/*
* Return a pointer to the string that variable var represents. Returns
* NULL if a match could not be found and sets erreur.
*/
static const char *
getvar(var, len)
char *var;
int len; /* strncmp(var, varmatch, len); is used to match variables */
{
struct vble *i;
for (i = vble_l; i; i = i->next) {
if (!strncasecmp (i->name, var, len))
return i->value;
}
SETERRSTR (E_BADVAR, "variable ``%.*s'' not set", len, var);
return NULL;
}
/*
* Set variable var to val. Returns -1 on failure, 0 on success.
*/
int
setvar(var, val)
char *var; /* variable to set */
char *val; /* value to set variable to */
{
struct vble *i, *last;
char *var_n, *val_n;
char *c;
for (c = var; *c && (isalpha(*c) || *c == '_'); c++) ;
if (*c) {
SETERRSTR (E_BADVAR,
"bad character ``%c'' in variable ``%s''", *c, var);
return -1;
}
for (i = vble_l; i; last = i, i = i->next) {
if (!strcasecmp (i->name, var)) {
if (!FMALLOC(strlen(val) + 1, val_n))
return -1;
free(i->value);
i->value = val_n;
strcpy(i->value, val);
return 0;
}
}
/* Need to add another variable to the list vble_l */
if (!FMALLOC(strlen(var) + 1, var_n))
return -1;
if (!FMALLOC(strlen(val) + 1, val_n))
return -1;
if (!vble_l) {
if (!FMALLOC(sizeof(struct vble), vble_l))
return -1;
i = vble_l;
} else {
if (!FMALLOC(sizeof(struct vble), last->next))
return -1;
i = last->next;
}
i->next = NULL;
i->name = var_n; strcpy(i->name, var);
i->value = val_n; strcpy(i->value, val);
return 0;
}
/*
* Set or reset, as appropriate, variable var to val.
*/
int
setvari(var, val)
const char *var;
long val;
{
char n[21]; /* XXX */
snprintf(n, sizeof(n), "%ld", val);
n[20] = '\0';
setvar(var, n);
}
/*****************************************************************************
*
* Specific command functions. These aren't actually individual functions,
* since using a gigantic switch statement is faster to type, but they
* pretend to be individual functions.
*
*/
int condition_eval = 1; /* false if we just parse commands, but do nothing */
#define ARGSTR(v) do { \
if (!((v) = getstr(&args))) return NULL; \
} while (0)
#define ARGNUM(v) do { \
if (getint(&(v), &args)) return NULL; \
} while (0)
/* semi-gratuitous use of GNU cpp extension */
#define ARGTOG(v, n, togs...) do { \
if (((v) = gettog(&args, n, togs)) == -1) \
return NULL; \
} while (0)
#define ENDPARSE do { \
if (!condition_eval) return args; \
} while (0)
/*
* deftog
*
* Set all toggle options to their default values, provided the toggle option
* is registered with this function. This command is meant to be used at the
* beginning of the startup command list.
*/
static const char *
cdeftog(cident, args)
enum cident cident;
const char *args;
{
extern int horiz_off, wraplines;
ENDPARSE;
settog("_statprompt", 1, 2, "on", "off");
settog("_ls_direction", 0, 2, "forw", "back");
settog("_ls_sense", 0, 2, "noinvert", "invert");
setvari("_curhscroll", (long) horiz_off);
settog("_wraplines", wraplines, 2, "off", "on");
setvar("_ls_regexp", "");
/*
* not present: _file_direction
*/
return args;
}
/*
* eval <<string>>
*
* Passes string back into the command evaluator.
*/
static const char *
ceval(cident, args)
enum cident cident;
const char *args;
{
const char *com;
ARGSTR(com); /* The command line to evaluate */
ENDPARSE;
/* It's not clear what to do with the command() return code */
(void) command(com);
return args;
}
/*
* set <<variablename>> <<variablestring>>
*
* Sets variable variablename to string variablestring.
*/
static const char *
cset(cident, args)
enum cident cident;
const char *args;
{
const char *str, *var;
ARGSTR(var); /* name of variable to set */
ARGSTR(str); /* value to set variable to */
ENDPARSE;
if (*var == '_') {
SETERRSTR (E_BADVAR,
"variables beginning with '_' are reserved");
return NULL;
}
if (setvar(var, str))
return NULL;
return args;
}
/*
* macro <<default_number>> <<keys>> <<command>>
*
* Associates the macro keys with command.
*/
static const char *
cmacro(cident, args)
enum cident cident;
const char *args;
{
const char *keys, *com;
long num;
ARGNUM(num); /* the default number N for this macro */
ARGSTR(keys); /* string of keys representing a macro */
ARGSTR(com); /* command line to associate with macro */
ENDPARSE;
if (setmacro(keys, com))
return NULL;
if (setmacnumb(keys, num))
return NULL;
return args;
}
/*
* error <<string>>
*
* Prints a notification message.
*/
static const char *
cerror(cident, args)
enum cident cident;
const char *args;
{
char *s;
ARGSTR(s); /* error message */
ENDPARSE;
error(s);
return args;
}
/*
* condition <<boolean>>
* condition_! <<boolean>>
*
* If boolean is false, causes all commands except for other condition
* commands to be ignored. The <<boolean>> may be specified as a number
* (in which case even numbers are true, odd numbers are false), or one
* of "on", "off", "true", and "false".
*/
static const char *
ccondition(cident, args)
enum cident cident;
const char *args;
{
/* ENDPARSE; */
if (cident == CONDITION_TOGGLE) {
condition_eval = !condition_eval;
return args;
}
switch (gettog(&args, 4, "off", "on", "false", "true")) {
case 0: case 2:
condition_eval = 0;
break;
case 1: case 3:
condition_eval = 1;
break;
case -1:
return NULL;
}
if (cident == CONDITION_N)
condition_eval = !condition_eval;
return args;
}
/*
* usercom
*
* Accept a direct command from the user's terminal.
*/
static const char *
cusercom(cident, args)
enum cident cident;
const char *args;
{
char buf[125]; /* XXX should avoid static buffer... */
ENDPARSE;
if (getinput("Command: ", buf, sizeof(buf)))
return args; /* abort the command */
if (command(buf))
return NULL;
return args;
}
/*
* readrc <<filename>>
*
* Read-in rc commands from the named file.
*/
static const char *
creadrc(cident, args)
enum cident cident;
const char *args;
{
const char *file;
FILE *fd;
ARGSTR(file);
ENDPARSE;
if (!*file)
return args;
/*
* Should perhaps warn user if file perms or ownership look suspicious.
*/
fd = fopen(file, "r");
if (!fd) {
SETERRSTR (E_NULL, "could not open file ``%s''", file);
return NULL;
}
readrc(fd);
fclose(fd);
return args;
}
/*
* quit
*
* Performs as advertised.
*/
static const char *
cquit(cident, args)
enum cident cident;
const char *args;
{
ENDPARSE;
quit();
return NULL; /* oh boy... */
}
/*
* help
*
* Doesn't do much.
*/
static const char *
chelp(cident, args)
enum cident cident;
const char *args;
{
extern int ac, curr_ac;
extern char **av;
ENDPARSE;
if (ac > 0 && !strcmp(_PATH_HELPFILE, av[curr_ac])) {
SETERRSTR(E_NULL, "already viewing help");
return NULL;
}
help();
return args;
}
/*
* flush
* repaint
*
* Flushes the file buffer, provided we are not reading from a pipe.
* Frees any other memory that I can get my hands on from here.
*/
static const char *
cflush(cident, args)
enum cident cident;
const char *args;
{
extern int ispipe;
ENDPARSE;
if (cident == FLUSH && !ispipe) {
ch_init(0, 0); /* XXX should this be ch_init(ctags,0) */
clr_linenum();
}
repaint();
return args;
}
/*
* forw_scroll <<n>>
* back_scroll <<n>>
* forw <<n>>
* back <<n>>
*
* Move forward number n lines. The _scroll variants force a scroll, the
* others may scroll or may just redraw the screen at the appropriate location,
* whichever is faster.
*/
static const char *
cscroll(cident, args)
enum cident cident;
const char *args;
{
long n;
char *retr;
ARGNUM(n); /* number of lines to move by */
ENDPARSE;
switch (cident) {
case FORW_SCROLL:
forward(n, 0);
break;
case BACK_SCROLL:
backward(n, 0);
break;
case FORW:
forward(n, 1);
break;
case BACK:
backward(n, 1);
break;
}
return args;
}
/*
* rscroll <<n>>
* lscroll <<n>>
*
* Scroll left or right by n lines.
*/
static const char *
chscroll(cident, args)
enum cident cident;
const char *args;
{
long n;
char *retr;
extern int horiz_off, wraplines;
ARGNUM(n); /* Number of columns to scroll by */
ENDPARSE;
if (n == 0)
return args;
switch (cident) {
case RSCROLL:
if (wraplines) {
wraplines = 0;
assert (horiz_off == 0);
} else {
horiz_off += n;
if (horiz_off < 0)
horiz_off = INT_MAX; /* disaster control */
}
break;
case LSCROLL:
if (horiz_off != 0) {
horiz_off -= n;
if (horiz_off < 0)
horiz_off = 0;
} else
wraplines = 1;
break;
}
repaint(); /* screen_trashed = 1 */
setvari("_curhscroll", (long) horiz_off);
settog("_wraplines", wraplines, 2, "off", "on");
return args;
}
/*
* goline <<line>>
* gopercent <<percent>>
*
* Goto the line numbered <<line>>, if possible. Goto <<percent>> percent of
* the file. Whole-numbered percents only, of course.
*/
static const char *
cgomisc(cident, args)
enum cident cident;
const char *args;
{
long n;
ARGNUM(n); /* number N */
ENDPARSE;
switch (cident) {
case GOLINE:
jump_back(n);
break;
case GOPERCENT:
if (n > 100)
n = 100;
jump_percent(n);
break;
}
return args;
}
/*
* goend
*
* Goto the end of the file. Future variation should include the GNU less(1)-
* style follow a-la tail(1).
*/
static const char *
cgoend(cident, args)
enum cident cident;
const char *args;
{
ENDPARSE;
jump_forw();
return args;
}
/*
* edit
*
* Edits the current file with a word editor. This command is just begging
* to be extended to allow the user to specify an editor. Additionally, this
* would require some kind of getenv command or similar change.
*/
static const char *
cedit(cident, args)
enum cident cident;
const char *args;
{
extern ispipe;
ENDPARSE;
if (ispipe) {
SETERRSTR(E_NULL, "cannot edit standard input");
return NULL;
}
editfile();
/*
* XXX less-than brilliant things happen if the user while editing
* deletes a large section at the end of the file where we think we
* are currently viewing...
*/
ch_init(0, 0); /* Clear the internal file buffer */
clr_linenum();
return args;
}
/*
* askfile
*
* Loads a new file. Queries the user for the name of the new file.
*/
static const char *
caskfile(cident, args)
enum cident cident;
const char *args;
{
char buf[MAXPATHLEN + 1];
ENDPARSE;
if (getinput("Examine: ", buf, sizeof(buf)))
return args; /* abort */
/* Abort is different from a "" answer in that "" causes the current
* file to be re-opened. */
/* XXX should modify this() or edit() to handle lists of file, ie.
* the type of lists that I get if I try to glob("*") */
(void)edit(glob(buf));
return args;
}
/*
* file <<next|previous>> <<N>>
*
* Loads the N'th next or previous file, typically from the list of files
* given on the command line.
*/
static const char *
cfile(cident, args)
enum cident cident;
const char *args;
{
enum { FORW=0, BACK=1 } direction;
long N;
ARGTOG(direction, 10, "next", "previous", "forward", "backward",
"forwards", "backwards", "next", "prev", "forw", "back");
ARGNUM(N);
ENDPARSE;
direction %= 2;
/* next_file() and prev_file() call error() directly (bad) */
switch (direction) {
case FORW:
next_file(N);
break;
case BACK:
prev_file(N);
break;
}
settog("_file_direction", direction, 2, "next", "previous");
return args;
}
/*
* file_list
*
* Lists the files the "file next" and "file prev" are moving around in.
*/
static const char *
cfile_list(cident, args)
enum cident cident;
const char *args;
{
ENDPARSE;
showlist();
repaint(); /* screen_trashed = 1; */
return args;
}
/*
* stat <<on|off>>
*
* Display the detailed statistics as part of the prompt. The toggle option
* variable is called _statprompt (giving ${_statprompt_s} and
* ${_statprompt_n}).
*/
static const char *
cstat(cident, args)
enum cident cident;
const char *args;
{
int onoff;
ARGTOG(onoff, 2, "on", "off");
ENDPARSE;
statprompt(onoff);
settog("_statprompt", onoff, 2, "on", "off");
return args;
}
/*
* magicasksearch <<forw|back>> <<n>>
* search <<forw|back>> <<n>> <<<noinvert|invert>> <searchstring>>
* research <<forw|back>> <<n>>
*
* Arguments specifying an option (ie. <<forw|back>> and <<noinvert|invert>>
* may be specified either as text (eg. "forw"), or as a number, in which case
* even numbers specify the former setting and odd numbers the latter setting.
*
* The magicasksearch will ask the user for a regexp and intuit whether they
* want to invert the sense of matching or not: if the first character of the
* regexp is a '!', it is removed and the sense is inverted. If the regexp
* entered is null, then we will use ${_ls_regexp} (error if not set).
*
* The toggle options are called _ls_direction and _ls_sense. In addition,
* ${_ls_regexp} is set to the regexp used. These variables are only set
* when the search and magicsearch commands are used.
*/
static const char *
csearch(cident, args)
enum cident cident;
const char *args;
{
char buf[100], *str;
enum { FORW=0, BACK=1 } direction;
static enum { NOINVERT=0, INVERT=1 } sense;
long N;
int abrt = 0;
ARGTOG(direction, 6, "forw", "back", "forward", "backward",
"forwards", "backwards");
ARGNUM(N);
if (cident == SEARCH) {
ARGTOG(sense, 2, "noinvert", "invert");
ARGSTR(str);
}
ENDPARSE;
direction %= 2;
/* Get the search string, one way or another */
switch (cident) {
case MAGICASKSEARCH:
biggetinputhack(); /* It's magic, boys */
if (direction == FORW)
abrt = getinput("Search: /", buf, 2);
else
abrt = getinput("Search: ?", buf, 2);
switch (*buf) {
case '!':
/* Magic */
if (direction == FORW)
abrt = getinput("Search: !/", buf, sizeof(buf));
else
abrt = getinput("Search: !?", buf, sizeof(buf));
sense = INVERT;
break;
default:
/* No magic */
ungetcc(*buf);
if (direction == FORW)
abrt = getinput("Search: /", buf, sizeof(buf));
else
abrt = getinput("Search: ?", buf, sizeof(buf));
case '\0':
sense = NOINVERT;
break;
}
str = buf;
break;
case SEARCH:
break;
case RESEARCH:
str = NULL;
break;
}
if (abrt)
return args;
if (cident == SEARCH || cident == MAGICASKSEARCH) {
settog("_ls_direction", direction, 2, "forw", "back");
settog("_ls_sense", sense, 2, "noinvert", "invert");
if (*str)
setvar("_ls_regexp", str);
}
/*
* XXX Currently search() contains magic to deal with (*str=='\0').
* This magic should be moved into this function so that we can work
* as described in the function comment header.
*/
search(!direction, str, N, !sense);
return args;
}
/*
* setmark <<character>>
* gomark <<character>>
*
* Set a marker at the current position, or goto a previously set marker.
* Character may be a-z, or '?' to ask the user to enter a character. The
* special mark '\'' may not be set, but may be the target of a goto.
*/
static const char *
cmark(cident, args)
enum cident cident;
const char *args;
{
char smark[2];
const char *mark;
ARGSTR(mark);
ENDPARSE;
/* gomark() and setmark() will further check mark's validity */
if (!*mark || mark[1]) {
SETERRSTR(E_NULL, "bad mark character");
return NULL;
}
if (*mark == '?') {
biggetinputhack(); /* so getinput() returns after one char */
switch (cident) {
case GOMARK:
getinput("goto mark: ", smark, sizeof smark);
break;
case SETMARK:
getinput("set mark: ", smark, sizeof smark);
break;
}
if (!*smark)
return args;
mark = smark;
}
switch (cident) {
case GOMARK:
gomark(*mark);
break;
case SETMARK:
setmark(*mark);
break;
}
return args;
}
/*
* asktag
* nexttag <<number>>
* prevtag <<number>>
*
* Asks the user for a tag, or moves around the tag queue.
*/
static const char *
ctags(cident, args)
enum cident cident;
const char *args;
{
extern char *tagfile; /* XXX No reason for this to be a global... */
long n;
if (cident != ASKFTAG)
ARGNUM(n);
ENDPARSE;
if (cident == ASKFTAG) {
char buf[100]; /* XXX should do something else... */
getinput("Tag: ", buf, sizeof(buf));
if (!*buf)
return args;
findtag(buf);
} else {
switch (cident) {
case NEXTFTAG:
nexttag(n);
break;
case PREVFTAG:
prevtag(n);
break;
}
}
/* Load the tagfile and position ourselves. */
if (tagfile == NULL)
return NULL;
if (edit(tagfile))
tagsearch();
return args; /* tag stuff still calls error() on its own */
}
|