2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1980, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)checknr.c 8.1 (Berkeley) 6/6/93
36 * $DragonFly: src/usr.bin/checknr/checknr.c,v 1.4 2003/11/03 19:31:28 eirikn Exp $
40 * checknr: check an nroff/troff input file for matching macro calls.
41 * we also attempt to match size and font changes, but only the embedded
42 * kind. These must end in \s0 and \fP resp. Maybe more sophistication
43 * later but for now think of these restrictions as contributions to
44 * structured typesetting.
51 #define MAXSTK 100 /* Stack size */
52 #define MAXBR 100 /* Max number of bracket pairs known */
53 #define MAXCMDS 500 /* Max number of commands known */
58 void checkknown(char *);
59 void chkcmd(char *, char *);
61 int eq(char *, char *);
66 static void usage(void);
69 * The stack on which we remember what we've seen so far.
72 int opno
; /* number of opening bracket */
73 int pl
; /* '+', '-', ' ' for \s, 1 for \f, 0 for .ft */
74 int parm
; /* parm to size, font, etc */
75 int lno
; /* line number the thing came in in */
80 * The kinds of opening and closing brackets.
86 /* A few bare bones troff commands */
88 {"sz", "sz"}, /* also \s */
90 {"ft", "ft"}, /* also \f */
104 /* the -ms package */
120 /* The -me package */
129 /* Things needed by preprocessors */
138 * All commands known to nroff, plus macro packages.
139 * Used so we can complain about unrecognized commands.
141 char *knowncmds
[MAXCMDS
] = {
142 "$c", "$f", "$h", "$p", "$s", "(b", "(c", "(d", "(f", "(l", "(q", "(t",
143 "(x", "(z", ")b", ")c", ")d", ")f", ")l", ")q", ")t", ")x", ")z", "++",
144 "+c", "1C", "1c", "2C", "2c", "@(", "@)", "@C", "@D", "@F", "@I", "@M",
145 "@c", "@e", "@f", "@h", "@m", "@n", "@o", "@p", "@r", "@t", "@z", "AB",
146 "AE", "AF", "AI", "AL", "AM", "AS", "AT", "AU", "AX", "B", "B1", "B2",
147 "BD", "BE", "BG", "BL", "BS", "BT", "BX", "C1", "C2", "CD", "CM", "CT",
148 "D", "DA", "DE", "DF", "DL", "DS", "DT", "EC", "EF", "EG", "EH", "EM",
149 "EN", "EQ", "EX", "FA", "FD", "FE", "FG", "FJ", "FK", "FL", "FN", "FO",
150 "FQ", "FS", "FV", "FX", "H", "HC", "HD", "HM", "HO", "HU", "I", "ID",
151 "IE", "IH", "IM", "IP", "IX", "IZ", "KD", "KE", "KF", "KQ", "KS", "LB",
152 "LC", "LD", "LE", "LG", "LI", "LP", "MC", "ME", "MF", "MH", "ML", "MR",
153 "MT", "ND", "NE", "NH", "NL", "NP", "NS", "OF", "OH", "OK", "OP", "P",
154 "P1", "PF", "PH", "PP", "PT", "PX", "PY", "QE", "QP", "QS", "R", "RA",
155 "RC", "RE", "RL", "RP", "RQ", "RS", "RT", "S", "S0", "S2", "S3", "SA",
156 "SG", "SH", "SK", "SM", "SP", "SY", "T&", "TA", "TB", "TC", "TD", "TE",
157 "TH", "TL", "TM", "TP", "TQ", "TR", "TS", "TX", "UL", "US", "UX", "VL",
158 "WC", "WH", "XA", "XD", "XE", "XF", "XK", "XP", "XS", "[", "[-", "[0",
159 "[1", "[2", "[3", "[4", "[5", "[<", "[>", "[]", "]", "]-", "]<", "]>",
160 "][", "ab", "ac", "ad", "af", "am", "ar", "as", "b", "ba", "bc", "bd",
161 "bi", "bl", "bp", "br", "bx", "c.", "c2", "cc", "ce", "cf", "ch", "cs",
162 "ct", "cu", "da", "de", "di", "dl", "dn", "ds", "dt", "dw", "dy", "ec",
163 "ef", "eh", "el", "em", "eo", "ep", "ev", "ex", "fc", "fi", "fl", "fo",
164 "fp", "ft", "fz", "hc", "he", "hl", "hp", "ht", "hw", "hx", "hy", "i",
165 "ie", "if", "ig", "in", "ip", "it", "ix", "lc", "lg", "li", "ll", "ln",
166 "lo", "lp", "ls", "lt", "m1", "m2", "m3", "m4", "mc", "mk", "mo", "n1",
167 "n2", "na", "ne", "nf", "nh", "nl", "nm", "nn", "np", "nr", "ns", "nx",
168 "of", "oh", "os", "pa", "pc", "pi", "pl", "pm", "pn", "po", "pp", "ps",
169 "q", "r", "rb", "rd", "re", "rm", "rn", "ro", "rr", "rs", "rt", "sb",
170 "sc", "sh", "sk", "so", "sp", "ss", "st", "sv", "sz", "ta", "tc", "th",
171 "ti", "tl", "tm", "tp", "tr", "u", "uf", "uh", "ul", "vs", "wh", "xp",
175 int lineno
; /* current line number in input file */
176 char line
[256]; /* the current line */
177 char *cfilename
; /* name of current file */
178 int nfiles
; /* number of files to process */
179 int fflag
; /* -f: ignore \f */
180 int sflag
; /* -s: ignore \s */
181 int ncmds
; /* size of knowncmds */
182 int slot
; /* slot in knowncmds found by binsrch */
185 main(int argc
, char **argv
)
192 /* Figure out how many known commands there are */
193 while (knowncmds
[ncmds
])
195 while (argc
> 1 && argv
[1][0] == '-') {
198 /* -a: add pairs of macros */
200 i
= strlen(argv
[1]) - 2;
203 /* look for empty macro slots */
204 for (i
=0; br
[i
].opbr
; i
++)
206 for (cp
=argv
[1]+3; cp
[-1]; cp
+= 6) {
207 br
[i
].opbr
= malloc(3);
208 strncpy(br
[i
].opbr
, cp
, 2);
209 br
[i
].clbr
= malloc(3);
210 strncpy(br
[i
].clbr
, cp
+3, 2);
211 addmac(br
[i
].opbr
); /* knows pairs are also known cmds */
217 /* -c: add known commands */
219 i
= strlen(argv
[1]) - 2;
222 for (cp
=argv
[1]+3; cp
[-1]; cp
+= 3) {
223 if (cp
[2] && cp
[2] != '.')
231 /* -f: ignore font changes */
236 /* -s: ignore size changes */
249 for (i
=1; i
<argc
; i
++) {
251 f
= fopen(cfilename
, "r");
268 "usage: checknr [-a.xx.yy.xx.yy...] [-c.xx.xx.xx...] [-s] [-f] file\n");
276 char mac
[5]; /* The current macro or nroff command */
280 for (lineno
= 1; fgets(line
, sizeof line
, f
); lineno
++) {
281 if (line
[0] == '.') {
283 * find and isolate the macro/command name.
285 strncpy(mac
, line
+1, 4);
286 if (isspace(mac
[0])) {
288 printf("Empty command\n");
289 } else if (isspace(mac
[1])) {
291 } else if (isspace(mac
[2])) {
293 } else if (mac
[0] != '\\' || mac
[1] != '\"') {
295 printf("Command too long\n");
299 * Is it a known command?
313 * At this point we process the line looking
316 for (i
=0; line
[i
]; i
++)
317 if (line
[i
]=='\\' && (i
==0 || line
[i
-1]!='\\')) {
318 if (!sflag
&& line
[++i
]=='s') {
325 while (isdigit(line
[++i
]))
326 n
= 10 * n
+ line
[i
] - '0';
329 if (stk
[stktop
].opno
== SZ
) {
333 printf("unmatched \\s0\n");
336 stk
[++stktop
].opno
= SZ
;
338 stk
[stktop
].parm
= n
;
339 stk
[stktop
].lno
= lineno
;
341 } else if (!fflag
&& line
[i
]=='f') {
344 if (stk
[stktop
].opno
== FT
) {
348 printf("unmatched \\fP\n");
351 stk
[++stktop
].opno
= FT
;
353 stk
[stktop
].parm
= n
;
354 stk
[stktop
].lno
= lineno
;
360 * We've hit the end and look at all this stuff that hasn't been
361 * matched yet! Complain, complain.
363 for (i
=stktop
; i
>=0; i
--) {
372 printf("Unmatched ");
381 printf(".%s", br
[stk
[i
].opno
].opbr
);
382 else switch(stk
[i
].opno
) {
384 printf("\\s%c%d", stk
[i
].pl
, stk
[i
].parm
);
387 printf("\\f%c", stk
[i
].parm
);
390 printf("Bug: stk[%d].opno = %d = .%s, .%s",
391 i
, stk
[i
].opno
, br
[stk
[i
].opno
].opbr
, br
[stk
[i
].opno
].clbr
);
396 chkcmd(char *line
, char *mac
)
401 * Check to see if it matches top of stack.
403 if (stktop
>= 0 && eq(mac
, br
[stk
[stktop
].opno
].clbr
))
404 stktop
--; /* OK. Pop & forget */
406 /* No. Maybe it's an opener */
407 for (i
=0; br
[i
].opbr
; i
++) {
408 if (eq(mac
, br
[i
].opbr
)) {
409 /* Found. Push it. */
411 stk
[stktop
].opno
= i
;
413 stk
[stktop
].parm
= 0;
414 stk
[stktop
].lno
= lineno
;
418 * Maybe it's an unmatched closer.
419 * NOTE: this depends on the fact
420 * that none of the closers can be
423 if (eq(mac
, br
[i
].clbr
)) {
437 * Look for a match further down on stack
438 * If we find one, it suggests that the stuff in
439 * between is supposed to match itself.
441 for (j
=stktop
; j
>=0; j
--)
442 if (eq(mac
,br
[stk
[j
].opno
].clbr
)) {
443 /* Found. Make a good diagnostic. */
446 * Check for special case \fx..\fR and don't
449 if (stk
[j
+1].opno
==FT
&& stk
[j
+1].parm
!='R'
450 && stk
[j
+2].opno
==FT
&& stk
[j
+2].parm
=='R') {
455 * We have two unmatched frobs. Chances are
456 * they were intended to match, so we mention
461 printf(" does not match %d: ", stk
[j
+2].lno
);
464 } else for (i
=j
+1; i
<= stktop
; i
++) {
470 /* Didn't find one. Throw this away. */
472 printf("Unmatched .%s\n", mac
);
475 /* eq: are two strings equal? */
477 eq(char *s1
, char *s2
)
479 return (strcmp(s1
, s2
) == 0);
482 /* print the first part of an error message, given the line number */
487 printf("%s: ", cfilename
);
488 printf("%d: ", lineno
);
492 checkknown(char *mac
)
497 if (binsrch(mac
) >= 0)
499 if (mac
[0] == '\\' && mac
[1] == '"') /* comments */
503 printf("Unknown command: .%s\n", mac
);
507 * We have a .de xx line in "line". Add xx to the list of known commands.
514 /* grab the macro being defined */
516 while (isspace(*mac
))
520 printf("illegal define: %s\n", line
);
524 if (isspace(mac
[1]) || mac
[1] == '\\')
526 if (ncmds
>= MAXCMDS
) {
527 printf("Only %d known commands allowed\n", MAXCMDS
);
534 * Add mac to the list. We should really have some kind of tree
535 * structure here but this is a quick-and-dirty job and I just don't
536 * have time to mess with it. (I wonder if this will come back to haunt
537 * me someday?) Anyway, I claim that .de is fairly rare in user
538 * nroff programs, and the register loop below is pretty fast.
543 register char **src
, **dest
, **loc
;
545 if (binsrch(mac
) >= 0){ /* it's OK to redefine something */
547 printf("binsrch(%s) -> already in table\n", mac
);
551 /* binsrch sets slot as a side effect */
553 printf("binsrch(%s) -> %d\n", mac
, slot
);
555 loc
= &knowncmds
[slot
];
556 src
= &knowncmds
[ncmds
-1];
564 printf("after: %s %s %s %s %s, %d cmds\n", knowncmds
[slot
-2], knowncmds
[slot
-1], knowncmds
[slot
], knowncmds
[slot
+1], knowncmds
[slot
+2], ncmds
);
569 * Do a binary search in knowncmds for mac.
570 * If found, return the index. If not, return -1.
575 register char *p
; /* pointer to current cmd in list */
576 register int d
; /* difference if any */
577 register int mid
; /* mid point in binary search */
578 register int top
, bot
; /* boundaries of bin search, inclusive */
595 slot
= bot
; /* place it would have gone */