]>
git.cameronkatri.com Git - mandoc.git/blob - main.c
1 /* $Id: main.c,v 1.43 2009/09/16 22:17:27 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
30 /* Account for FreeBSD and Linux in our declarations. */
33 extern int getsubopt(char **, char * const *, char **);
35 # define __dead __attribute__((__noreturn__))
37 #elif defined(__dead2)
39 # define __dead __dead2
43 typedef void (*out_mdoc
)(void *, const struct mdoc
*);
44 typedef void (*out_man
)(void *, const struct man
*);
45 typedef void (*out_free
)(void *);
68 const char *file
; /* Current parse. */
69 int fd
; /* Current parse. */
71 #define WARN_WALL (1 << 0) /* All-warnings mask. */
72 #define WARN_WERR (1 << 2) /* Warnings->errors. */
74 #define IGN_SCOPE (1 << 0) /* Ignore scope errors. */
75 #define NO_IGN_ESCAPE (1 << 1) /* Don't ignore bad escapes. */
76 #define NO_IGN_MACRO (1 << 2) /* Don't ignore bad macros. */
77 #define NO_IGN_CHARS (1 << 3) /* Don't ignore bad chars. */
78 #define IGN_ERRORS (1 << 4) /* Ignore failed parse. */
79 enum intt inttype
; /* Input parsers... */
83 struct mdoc
*lastmdoc
;
84 enum outt outtype
; /* Output devices... */
92 extern void *html_alloc(void);
93 extern void html_mdoc(void *, const struct mdoc
*);
94 extern void html_man(void *, const struct man
*);
95 extern void html_free(void *);
97 extern void *ascii_alloc(void);
98 extern void tree_mdoc(void *, const struct mdoc
*);
99 extern void tree_man(void *, const struct man
*);
100 extern void terminal_mdoc(void *, const struct mdoc
*);
101 extern void terminal_man(void *, const struct man
*);
102 extern void terminal_free(void *);
104 static int foptions(int *, char *);
105 static int toptions(enum outt
*, char *);
106 static int moptions(enum intt
*, char *);
107 static int woptions(int *, char *);
108 static int merr(void *, int, int, const char *);
109 static int mwarn(void *, int, int, const char *);
110 static int ffile(struct buf
*, struct buf
*,
111 const char *, struct curparse
*);
112 static int fdesc(struct buf
*, struct buf
*,
114 static int pset(const char *, int, struct curparse
*,
115 struct man
**, struct mdoc
**);
116 static struct man
*man_init(struct curparse
*);
117 static struct mdoc
*mdoc_init(struct curparse
*);
118 __dead
static void version(void);
119 __dead
static void usage(void);
121 extern char *__progname
;
125 main(int argc
, char *argv
[])
129 struct curparse curp
;
131 bzero(&curp
, sizeof(struct curparse
));
133 curp
.inttype
= INTT_AUTO
;
134 curp
.outtype
= OUTT_ASCII
;
137 while (-1 != (c
= getopt(argc
, argv
, "f:m:VW:T:")))
140 if ( ! foptions(&curp
.fflags
, optarg
))
141 return(EXIT_FAILURE
);
144 if ( ! moptions(&curp
.inttype
, optarg
))
145 return(EXIT_FAILURE
);
148 if ( ! toptions(&curp
.outtype
, optarg
))
149 return(EXIT_FAILURE
);
152 if ( ! woptions(&curp
.wflags
, optarg
))
153 return(EXIT_FAILURE
);
166 bzero(&ln
, sizeof(struct buf
));
167 bzero(&blk
, sizeof(struct buf
));
172 curp
.file
= "<stdin>";
173 curp
.fd
= STDIN_FILENO
;
175 c
= fdesc(&blk
, &ln
, &curp
);
176 if ( ! (IGN_ERRORS
& curp
.fflags
))
179 rc
= -1 == c
? 0 : 1;
182 while (rc
&& *argv
) {
183 c
= ffile(&blk
, &ln
, *argv
, &curp
);
184 if ( ! (IGN_ERRORS
& curp
.fflags
))
187 rc
= -1 == c
? 0 : 1;
192 if ( ! man_reset(curp
.lastman
))
195 if ( ! mdoc_reset(curp
.lastmdoc
))
198 curp
.lastmdoc
= NULL
;
207 (*curp
.outfree
)(curp
.outdata
);
209 mdoc_free(curp
.mdoc
);
213 return(rc
? EXIT_SUCCESS
: EXIT_FAILURE
);
221 (void)printf("%s %s\n", __progname
, VERSION
);
230 (void)fprintf(stderr
, "usage: %s [-V] [-foption...] "
231 "[-mformat] [-Toutput] [-Werr...]\n",
238 man_init(struct curparse
*curp
)
244 mancb
.man_err
= merr
;
245 mancb
.man_warn
= mwarn
;
247 /* Defaults from mandoc.1. */
249 pflags
= MAN_IGN_MACRO
| MAN_IGN_ESCAPE
| MAN_IGN_CHARS
;
251 if (curp
->fflags
& NO_IGN_MACRO
)
252 pflags
&= ~MAN_IGN_MACRO
;
253 if (curp
->fflags
& NO_IGN_CHARS
)
254 pflags
&= ~MAN_IGN_CHARS
;
255 if (curp
->fflags
& NO_IGN_ESCAPE
)
256 pflags
&= ~MAN_IGN_ESCAPE
;
258 if (NULL
== (man
= man_alloc(curp
, pflags
, &mancb
)))
259 warnx("memory exhausted");
266 mdoc_init(struct curparse
*curp
)
270 struct mdoc_cb mdoccb
;
272 mdoccb
.mdoc_err
= merr
;
273 mdoccb
.mdoc_warn
= mwarn
;
275 /* Defaults from mandoc.1. */
277 pflags
= MDOC_IGN_MACRO
| MDOC_IGN_ESCAPE
| MDOC_IGN_CHARS
;
279 if (curp
->fflags
& IGN_SCOPE
)
280 pflags
|= MDOC_IGN_SCOPE
;
281 if (curp
->fflags
& NO_IGN_ESCAPE
)
282 pflags
&= ~MDOC_IGN_ESCAPE
;
283 if (curp
->fflags
& NO_IGN_MACRO
)
284 pflags
&= ~MDOC_IGN_MACRO
;
285 if (curp
->fflags
& NO_IGN_CHARS
)
286 pflags
&= ~MDOC_IGN_CHARS
;
288 if (NULL
== (mdoc
= mdoc_alloc(curp
, pflags
, &mdoccb
)))
289 warnx("memory exhausted");
296 ffile(struct buf
*blk
, struct buf
*ln
,
297 const char *file
, struct curparse
*curp
)
302 if (-1 == (curp
->fd
= open(curp
->file
, O_RDONLY
, 0))) {
303 warn("%s", curp
->file
);
307 c
= fdesc(blk
, ln
, curp
);
309 if (-1 == close(curp
->fd
))
310 warn("%s", curp
->file
);
317 fdesc(struct buf
*blk
, struct buf
*ln
, struct curparse
*curp
)
322 int j
, i
, pos
, lnn
, comment
;
331 * Two buffers: ln and buf. buf is the input buffer optimised
332 * here for each file's block size. ln is a line buffer. Both
333 * growable, hence passed in by ptr-ptr.
336 if (-1 == fstat(curp
->fd
, &st
))
337 warn("%s", curp
->file
);
338 else if ((size_t)st
.st_blksize
> sz
)
342 blk
->buf
= realloc(blk
->buf
, sz
);
343 if (NULL
== blk
->buf
) {
350 /* Fill buf with file blocksize. */
352 for (lnn
= pos
= comment
= 0; ; ) {
353 if (-1 == (ssz
= read(curp
->fd
, blk
->buf
, sz
))) {
354 warn("%s", curp
->file
);
359 /* Parse the read block into partial or full lines. */
361 for (i
= 0; i
< (int)ssz
; i
++) {
362 if (pos
>= (int)ln
->sz
) {
363 ln
->sz
+= 256; /* Step-size. */
364 ln
->buf
= realloc(ln
->buf
, ln
->sz
);
365 if (NULL
== ln
->buf
) {
371 if ('\n' != blk
->buf
[i
]) {
374 ln
->buf
[pos
++] = blk
->buf
[i
];
376 /* Handle in-line `\"' comments. */
378 if (1 == pos
|| '\"' != ln
->buf
[pos
- 1])
381 for (j
= pos
- 2; j
>= 0; j
--)
382 if ('\\' != ln
->buf
[j
])
385 if ( ! ((pos
- 2 - j
) % 2))
393 /* Handle escaped `\\n' newlines. */
395 if (pos
> 0 && 0 == comment
&&
396 '\\' == ln
->buf
[pos
- 1]) {
397 for (j
= pos
- 1; j
>= 0; j
--)
398 if ('\\' != ln
->buf
[j
])
400 if ( ! ((pos
- j
) % 2)) {
410 /* If unset, assign parser in pset(). */
412 if ( ! (man
|| mdoc
) && ! pset(ln
->buf
,
413 pos
, curp
, &man
, &mdoc
))
418 /* Pass down into parsers. */
420 if (man
&& ! man_parseln(man
, lnn
, ln
->buf
))
422 if (mdoc
&& ! mdoc_parseln(mdoc
, lnn
, ln
->buf
))
427 /* NOTE a parser may not have been assigned, yet. */
429 if ( ! (man
|| mdoc
)) {
430 (void)fprintf(stderr
, "%s: not a manual\n",
435 if (mdoc
&& ! mdoc_endparse(mdoc
))
437 if (man
&& ! man_endparse(man
))
440 /* If unset, allocate output dev now (if applicable). */
442 if ( ! (curp
->outman
&& curp
->outmdoc
)) {
443 switch (curp
->outtype
) {
446 curp
->outdata
= html_alloc();
447 curp
->outman
= html_man
;
448 curp
->outmdoc
= html_mdoc
;
449 curp
->outfree
= html_free
;
453 curp
->outman
= tree_man
;
454 curp
->outmdoc
= tree_mdoc
;
459 curp
->outdata
= ascii_alloc();
460 curp
->outman
= terminal_man
;
461 curp
->outmdoc
= terminal_mdoc
;
462 curp
->outfree
= terminal_free
;
467 /* Execute the out device, if it exists. */
469 if (man
&& curp
->outman
)
470 (*curp
->outman
)(curp
->outdata
, man
);
471 if (mdoc
&& curp
->outmdoc
)
472 (*curp
->outmdoc
)(curp
->outdata
, mdoc
);
479 pset(const char *buf
, int pos
, struct curparse
*curp
,
480 struct man
**man
, struct mdoc
**mdoc
)
485 * Try to intuit which kind of manual parser should be used. If
486 * passed in by command-line (-man, -mdoc), then use that
487 * explicitly. If passed as -mandoc, then try to guess from the
488 * line: either skip dot-lines, use -mdoc when finding `.Dt', or
489 * default to -man, which is more lenient.
493 for (i
= 1; buf
[i
]; i
++)
494 if (' ' != buf
[i
] && '\t' != buf
[i
])
500 switch (curp
->inttype
) {
502 if (NULL
== curp
->mdoc
)
503 curp
->mdoc
= mdoc_init(curp
);
504 if (NULL
== (*mdoc
= curp
->mdoc
))
506 curp
->lastmdoc
= *mdoc
;
509 if (NULL
== curp
->man
)
510 curp
->man
= man_init(curp
);
511 if (NULL
== (*man
= curp
->man
))
513 curp
->lastman
= *man
;
519 if (pos
>= 3 && 0 == memcmp(buf
, ".Dd", 3)) {
520 if (NULL
== curp
->mdoc
)
521 curp
->mdoc
= mdoc_init(curp
);
522 if (NULL
== (*mdoc
= curp
->mdoc
))
524 curp
->lastmdoc
= *mdoc
;
528 if (NULL
== curp
->man
)
529 curp
->man
= man_init(curp
);
530 if (NULL
== (*man
= curp
->man
))
532 curp
->lastman
= *man
;
538 moptions(enum intt
*tflags
, char *arg
)
541 if (0 == strcmp(arg
, "doc"))
543 else if (0 == strcmp(arg
, "andoc"))
545 else if (0 == strcmp(arg
, "an"))
548 warnx("bad argument: -m%s", arg
);
557 toptions(enum outt
*tflags
, char *arg
)
560 if (0 == strcmp(arg
, "ascii"))
561 *tflags
= OUTT_ASCII
;
562 else if (0 == strcmp(arg
, "lint"))
564 else if (0 == strcmp(arg
, "tree"))
567 else if (0 == strcmp(arg
, "html"))
571 warnx("bad argument: -T%s", arg
);
580 foptions(int *fflags
, char *arg
)
585 toks
[0] = "ign-scope";
586 toks
[1] = "no-ign-escape";
587 toks
[2] = "no-ign-macro";
588 toks
[3] = "no-ign-chars";
589 toks
[4] = "ign-errors";
595 switch (getsubopt(&arg
, toks
, &v
)) {
597 *fflags
|= IGN_SCOPE
;
600 *fflags
|= NO_IGN_ESCAPE
;
603 *fflags
|= NO_IGN_MACRO
;
606 *fflags
|= NO_IGN_CHARS
;
609 *fflags
|= IGN_ERRORS
;
612 *fflags
|= NO_IGN_ESCAPE
|
613 NO_IGN_MACRO
| NO_IGN_CHARS
;
616 warnx("bad argument: -f%s", o
);
626 woptions(int *wflags
, char *arg
)
637 switch (getsubopt(&arg
, toks
, &v
)) {
639 *wflags
|= WARN_WALL
;
642 *wflags
|= WARN_WERR
;
645 warnx("bad argument: -W%s", o
);
656 merr(void *arg
, int line
, int col
, const char *msg
)
658 struct curparse
*curp
;
660 curp
= (struct curparse
*)arg
;
662 (void)fprintf(stderr
, "%s:%d:%d: error: %s\n",
663 curp
->file
, line
, col
+ 1, msg
);
670 mwarn(void *arg
, int line
, int col
, const char *msg
)
672 struct curparse
*curp
;
674 curp
= (struct curparse
*)arg
;
676 if ( ! (curp
->wflags
& WARN_WALL
))
679 (void)fprintf(stderr
, "%s:%d:%d: warning: %s\n",
680 curp
->file
, line
, col
+ 1, msg
);
682 if ( ! (curp
->wflags
& WARN_WERR
))