]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc.c
1 /* $Id: mdoc.c,v 1.230 2014/11/28 01:05:43 schwarze Exp $ */
3 * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/types.h>
32 #include "mandoc_aux.h"
34 #include "libmandoc.h"
36 const char *const __mdoc_macronames
[MDOC_MAX
+ 1] = {
37 "Ap", "Dd", "Dt", "Os",
38 "Sh", "Ss", "Pp", "D1",
39 "Dl", "Bd", "Ed", "Bl",
40 "El", "It", "Ad", "An",
41 "Ar", "Cd", "Cm", "Dv",
42 "Er", "Ev", "Ex", "Fa",
43 "Fd", "Fl", "Fn", "Ft",
44 "Ic", "In", "Li", "Nd",
45 "Nm", "Op", "Ot", "Pa",
46 "Rv", "St", "Va", "Vt",
47 "Xr", "%A", "%B", "%D",
48 "%I", "%J", "%N", "%O",
49 "%P", "%R", "%T", "%V",
50 "Ac", "Ao", "Aq", "At",
51 "Bc", "Bf", "Bo", "Bq",
52 "Bsx", "Bx", "Db", "Dc",
53 "Do", "Dq", "Ec", "Ef",
54 "Em", "Eo", "Fx", "Ms",
55 "No", "Ns", "Nx", "Ox",
56 "Pc", "Pf", "Po", "Pq",
57 "Qc", "Ql", "Qo", "Qq",
58 "Re", "Rs", "Sc", "So",
59 "Sq", "Sm", "Sx", "Sy",
60 "Tn", "Ux", "Xc", "Xo",
61 "Fo", "Fc", "Oo", "Oc",
62 "Bk", "Ek", "Bt", "Hf",
63 "Fr", "Ud", "Lb", "Lp",
64 "Lk", "Mt", "Brq", "Bro",
65 "Brc", "%C", "Es", "En",
66 "Dx", "%Q", "br", "sp",
67 "%U", "Ta", "ll", "text",
70 const char *const __mdoc_argnames
[MDOC_ARG_MAX
] = {
71 "split", "nosplit", "ragged",
72 "unfilled", "literal", "file",
73 "offset", "bullet", "dash",
74 "hyphen", "item", "enum",
75 "tag", "diag", "hang",
76 "ohang", "inset", "column",
77 "width", "compact", "std",
78 "filled", "words", "emphasis",
79 "symbolic", "nested", "centered"
82 const char * const *mdoc_macronames
= __mdoc_macronames
;
83 const char * const *mdoc_argnames
= __mdoc_argnames
;
85 static void mdoc_node_free(struct mdoc_node
*);
86 static void mdoc_node_unlink(struct mdoc
*,
88 static void mdoc_free1(struct mdoc
*);
89 static void mdoc_alloc1(struct mdoc
*);
90 static struct mdoc_node
*node_alloc(struct mdoc
*, int, int,
91 enum mdoct
, enum mdoc_type
);
92 static void node_append(struct mdoc
*, struct mdoc_node
*);
93 static int mdoc_ptext(struct mdoc
*, int, char *, int);
94 static int mdoc_pmacro(struct mdoc
*, int, char *, int);
97 const struct mdoc_node
*
98 mdoc_node(const struct mdoc
*mdoc
)
104 const struct mdoc_meta
*
105 mdoc_meta(const struct mdoc
*mdoc
)
112 * Frees volatile resources (parse tree, meta-data, fields).
115 mdoc_free1(struct mdoc
*mdoc
)
119 mdoc_node_delete(mdoc
, mdoc
->first
);
120 free(mdoc
->meta
.msec
);
121 free(mdoc
->meta
.vol
);
122 free(mdoc
->meta
.arch
);
123 free(mdoc
->meta
.date
);
124 free(mdoc
->meta
.title
);
126 free(mdoc
->meta
.name
);
130 * Allocate all volatile resources (parse tree, meta-data, fields).
133 mdoc_alloc1(struct mdoc
*mdoc
)
136 memset(&mdoc
->meta
, 0, sizeof(struct mdoc_meta
));
138 mdoc
->lastnamed
= mdoc
->lastsec
= SEC_NONE
;
139 mdoc
->last
= mandoc_calloc(1, sizeof(struct mdoc_node
));
140 mdoc
->first
= mdoc
->last
;
141 mdoc
->last
->type
= MDOC_ROOT
;
142 mdoc
->last
->tok
= MDOC_MAX
;
143 mdoc
->next
= MDOC_NEXT_CHILD
;
147 * Free up volatile resources (see mdoc_free1()) then re-initialises the
148 * data with mdoc_alloc1(). After invocation, parse data has been reset
149 * and the parser is ready for re-invocation on a new tree; however,
150 * cross-parse non-volatile data is kept intact.
153 mdoc_reset(struct mdoc
*mdoc
)
161 * Completely free up all volatile and non-volatile parse resources.
162 * After invocation, the pointer is no longer usable.
165 mdoc_free(struct mdoc
*mdoc
)
173 * Allocate volatile and non-volatile parse resources.
176 mdoc_alloc(struct roff
*roff
, struct mparse
*parse
,
177 const char *defos
, int quick
)
181 p
= mandoc_calloc(1, sizeof(struct mdoc
));
194 mdoc_endparse(struct mdoc
*mdoc
)
197 return(mdoc_macroend(mdoc
));
201 mdoc_addeqn(struct mdoc
*mdoc
, const struct eqn
*ep
)
205 n
= node_alloc(mdoc
, ep
->ln
, ep
->pos
, MDOC_MAX
, MDOC_EQN
);
207 if (ep
->ln
> mdoc
->last
->line
)
208 n
->flags
|= MDOC_LINE
;
209 node_append(mdoc
, n
);
210 mdoc
->next
= MDOC_NEXT_SIBLING
;
215 mdoc_addspan(struct mdoc
*mdoc
, const struct tbl_span
*sp
)
219 n
= node_alloc(mdoc
, sp
->line
, 0, MDOC_MAX
, MDOC_TBL
);
221 node_append(mdoc
, n
);
222 mdoc
->next
= MDOC_NEXT_SIBLING
;
227 * Main parse routine. Parses a single line -- really just hands off to
228 * the macro (mdoc_pmacro()) or text parser (mdoc_ptext()).
231 mdoc_parseln(struct mdoc
*mdoc
, int ln
, char *buf
, int offs
)
234 if (mdoc
->last
->type
!= MDOC_EQN
|| ln
> mdoc
->last
->line
)
235 mdoc
->flags
|= MDOC_NEWLINE
;
238 * Let the roff nS register switch SYNOPSIS mode early,
239 * such that the parser knows at all times
240 * whether this mode is on or off.
241 * Note that this mode is also switched by the Sh macro.
243 if (roff_getreg(mdoc
->roff
, "nS"))
244 mdoc
->flags
|= MDOC_SYNOPSIS
;
246 mdoc
->flags
&= ~MDOC_SYNOPSIS
;
248 return(roff_getcontrol(mdoc
->roff
, buf
, &offs
) ?
249 mdoc_pmacro(mdoc
, ln
, buf
, offs
) :
250 mdoc_ptext(mdoc
, ln
, buf
, offs
));
254 mdoc_macro(MACRO_PROT_ARGS
)
256 assert(tok
< MDOC_MAX
);
258 if (mdoc
->flags
& MDOC_PBODY
) {
259 if (tok
== MDOC_Dt
) {
260 mandoc_vmsg(MANDOCERR_DT_LATE
,
261 mdoc
->parse
, line
, ppos
,
262 "Dt %s", buf
+ *pos
);
265 } else if ( ! (mdoc_macros
[tok
].flags
& MDOC_PROLOGUE
)) {
266 if (mdoc
->meta
.title
== NULL
) {
267 mandoc_vmsg(MANDOCERR_DT_NOTITLE
,
268 mdoc
->parse
, line
, ppos
, "%s %s",
269 mdoc_macronames
[tok
], buf
+ *pos
);
270 mdoc
->meta
.title
= mandoc_strdup("UNTITLED");
272 if (NULL
== mdoc
->meta
.vol
)
273 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
274 mdoc
->flags
|= MDOC_PBODY
;
277 return((*mdoc_macros
[tok
].fp
)(mdoc
, tok
, line
, ppos
, pos
, buf
));
282 node_append(struct mdoc
*mdoc
, struct mdoc_node
*p
)
287 assert(MDOC_ROOT
!= p
->type
);
289 switch (mdoc
->next
) {
290 case MDOC_NEXT_SIBLING
:
291 mdoc
->last
->next
= p
;
292 p
->prev
= mdoc
->last
;
293 p
->parent
= mdoc
->last
->parent
;
295 case MDOC_NEXT_CHILD
:
296 mdoc
->last
->child
= p
;
297 p
->parent
= mdoc
->last
;
307 * Copy over the normalised-data pointer of our parent. Not
308 * everybody has one, but copying a null pointer is fine.
313 if (ENDBODY_NOT
!= p
->end
)
319 p
->norm
= p
->parent
->norm
;
325 mdoc_valid_pre(mdoc
, p
);
329 assert(MDOC_BLOCK
== p
->parent
->type
);
333 assert(MDOC_BLOCK
== p
->parent
->type
);
339 assert(MDOC_BLOCK
== p
->parent
->type
);
352 mdoc_valid_post(mdoc
);
359 static struct mdoc_node
*
360 node_alloc(struct mdoc
*mdoc
, int line
, int pos
,
361 enum mdoct tok
, enum mdoc_type type
)
365 p
= mandoc_calloc(1, sizeof(struct mdoc_node
));
366 p
->sec
= mdoc
->lastsec
;
375 if (MDOC_SYNOPSIS
& mdoc
->flags
)
376 p
->flags
|= MDOC_SYNPRETTY
;
378 p
->flags
&= ~MDOC_SYNPRETTY
;
379 if (MDOC_NEWLINE
& mdoc
->flags
)
380 p
->flags
|= MDOC_LINE
;
381 mdoc
->flags
&= ~MDOC_NEWLINE
;
387 mdoc_tail_alloc(struct mdoc
*mdoc
, int line
, int pos
, enum mdoct tok
)
391 p
= node_alloc(mdoc
, line
, pos
, tok
, MDOC_TAIL
);
392 node_append(mdoc
, p
);
393 mdoc
->next
= MDOC_NEXT_CHILD
;
398 mdoc_head_alloc(struct mdoc
*mdoc
, int line
, int pos
, enum mdoct tok
)
405 p
= node_alloc(mdoc
, line
, pos
, tok
, MDOC_HEAD
);
406 node_append(mdoc
, p
);
407 mdoc
->next
= MDOC_NEXT_CHILD
;
412 mdoc_body_alloc(struct mdoc
*mdoc
, int line
, int pos
, enum mdoct tok
)
416 p
= node_alloc(mdoc
, line
, pos
, tok
, MDOC_BODY
);
417 node_append(mdoc
, p
);
418 mdoc
->next
= MDOC_NEXT_CHILD
;
423 mdoc_endbody_alloc(struct mdoc
*mdoc
, int line
, int pos
, enum mdoct tok
,
424 struct mdoc_node
*body
, enum mdoc_endbody end
)
428 p
= node_alloc(mdoc
, line
, pos
, tok
, MDOC_BODY
);
430 p
->norm
= body
->norm
;
432 node_append(mdoc
, p
);
433 mdoc
->next
= MDOC_NEXT_SIBLING
;
438 mdoc_block_alloc(struct mdoc
*mdoc
, int line
, int pos
,
439 enum mdoct tok
, struct mdoc_arg
*args
)
443 p
= node_alloc(mdoc
, line
, pos
, tok
, MDOC_BLOCK
);
458 p
->norm
= mandoc_calloc(1, sizeof(union mdoc_data
));
463 node_append(mdoc
, p
);
464 mdoc
->next
= MDOC_NEXT_CHILD
;
469 mdoc_elem_alloc(struct mdoc
*mdoc
, int line
, int pos
,
470 enum mdoct tok
, struct mdoc_arg
*args
)
474 p
= node_alloc(mdoc
, line
, pos
, tok
, MDOC_ELEM
);
481 p
->norm
= mandoc_calloc(1, sizeof(union mdoc_data
));
486 node_append(mdoc
, p
);
487 mdoc
->next
= MDOC_NEXT_CHILD
;
492 mdoc_word_alloc(struct mdoc
*mdoc
, int line
, int pos
, const char *p
)
496 n
= node_alloc(mdoc
, line
, pos
, MDOC_MAX
, MDOC_TEXT
);
497 n
->string
= roff_strdup(mdoc
->roff
, p
);
498 node_append(mdoc
, n
);
499 mdoc
->next
= MDOC_NEXT_SIBLING
;
504 mdoc_word_append(struct mdoc
*mdoc
, const char *p
)
507 char *addstr
, *newstr
;
510 addstr
= roff_strdup(mdoc
->roff
, p
);
511 mandoc_asprintf(&newstr
, "%s %s", n
->string
, addstr
);
515 mdoc
->next
= MDOC_NEXT_SIBLING
;
519 mdoc_node_free(struct mdoc_node
*p
)
522 if (MDOC_BLOCK
== p
->type
|| MDOC_ELEM
== p
->type
)
527 mdoc_argv_free(p
->args
);
532 mdoc_node_unlink(struct mdoc
*mdoc
, struct mdoc_node
*n
)
535 /* Adjust siblings. */
538 n
->prev
->next
= n
->next
;
540 n
->next
->prev
= n
->prev
;
546 if (n
->parent
->child
== n
)
547 n
->parent
->child
= n
->prev
? n
->prev
: n
->next
;
548 if (n
->parent
->last
== n
)
549 n
->parent
->last
= n
->prev
? n
->prev
: NULL
;
552 /* Adjust parse point, if applicable. */
554 if (mdoc
&& mdoc
->last
== n
) {
556 mdoc
->last
= n
->prev
;
557 mdoc
->next
= MDOC_NEXT_SIBLING
;
559 mdoc
->last
= n
->parent
;
560 mdoc
->next
= MDOC_NEXT_CHILD
;
564 if (mdoc
&& mdoc
->first
== n
)
569 mdoc_node_delete(struct mdoc
*mdoc
, struct mdoc_node
*p
)
574 mdoc_node_delete(mdoc
, p
->child
);
576 assert(0 == p
->nchild
);
578 mdoc_node_unlink(mdoc
, p
);
583 mdoc_node_relink(struct mdoc
*mdoc
, struct mdoc_node
*p
)
586 mdoc_node_unlink(mdoc
, p
);
587 node_append(mdoc
, p
);
592 * Parse free-form text, that is, a line that does not begin with the
596 mdoc_ptext(struct mdoc
*mdoc
, int line
, char *buf
, int offs
)
605 * Divert directly to list processing if we're encountering a
606 * columnar MDOC_BLOCK with or without a prior MDOC_BLOCK entry
607 * (a MDOC_BODY means it's already open, in which case we should
608 * process within its context in the normal way).
611 if (MDOC_Bl
== n
->tok
&& MDOC_BODY
== n
->type
&&
612 LIST_column
== n
->norm
->Bl
.type
) {
613 /* `Bl' is open without any children. */
614 mdoc
->flags
|= MDOC_FREECOL
;
615 return(mdoc_macro(mdoc
, MDOC_It
, line
, offs
, &offs
, buf
));
618 if (MDOC_It
== n
->tok
&& MDOC_BLOCK
== n
->type
&&
620 MDOC_Bl
== n
->parent
->tok
&&
621 LIST_column
== n
->parent
->norm
->Bl
.type
) {
622 /* `Bl' has block-level `It' children. */
623 mdoc
->flags
|= MDOC_FREECOL
;
624 return(mdoc_macro(mdoc
, MDOC_It
, line
, offs
, &offs
, buf
));
628 * Search for the beginning of unescaped trailing whitespace (ws)
629 * and for the first character not to be output (end).
632 /* FIXME: replace with strcspn(). */
634 for (c
= end
= buf
+ offs
; *c
; c
++) {
642 * Always warn about trailing tabs,
643 * even outside literal context,
644 * where they should be put on the next line.
649 * Strip trailing tabs in literal context only;
650 * outside, they affect the next line.
652 if (MDOC_LITERAL
& mdoc
->flags
)
656 /* Skip the escaped character, too, if any. */
669 mandoc_msg(MANDOCERR_SPACE_EOL
, mdoc
->parse
,
670 line
, (int)(ws
-buf
), NULL
);
672 if ('\0' == buf
[offs
] && ! (MDOC_LITERAL
& mdoc
->flags
)) {
673 mandoc_msg(MANDOCERR_FI_BLANK
, mdoc
->parse
,
674 line
, (int)(c
- buf
), NULL
);
677 * Insert a `sp' in the case of a blank line. Technically,
678 * blank lines aren't allowed, but enough manuals assume this
679 * behaviour that we want to work around it.
681 if ( ! mdoc_elem_alloc(mdoc
, line
, offs
, MDOC_sp
, NULL
))
684 mdoc
->next
= MDOC_NEXT_SIBLING
;
686 mdoc_valid_post(mdoc
);
690 if ( ! mdoc_word_alloc(mdoc
, line
, offs
, buf
+offs
))
693 if (MDOC_LITERAL
& mdoc
->flags
)
697 * End-of-sentence check. If the last character is an unescaped
698 * EOS character, then flag the node as being the end of a
699 * sentence. The front-end will know how to interpret this.
704 if (mandoc_eos(buf
+offs
, (size_t)(end
-buf
-offs
)))
705 mdoc
->last
->flags
|= MDOC_EOS
;
711 * Parse a macro line, that is, a line beginning with the control
715 mdoc_pmacro(struct mdoc
*mdoc
, int ln
, char *buf
, int offs
)
726 * Copy the first word into a nil-terminated buffer.
727 * Stop when a space, tab, escape, or eoln is encountered.
731 while (i
< 4 && strchr(" \t\\", buf
[offs
]) == NULL
)
732 mac
[i
++] = buf
[offs
++];
736 tok
= (i
> 1 && i
< 4) ? mdoc_hash_find(mac
) : MDOC_MAX
;
738 if (tok
== MDOC_MAX
) {
739 mandoc_msg(MANDOCERR_MACRO
, mdoc
->parse
,
740 ln
, sv
, buf
+ sv
- 1);
744 /* Skip a leading escape sequence or tab. */
749 mandoc_escape(&cp
, NULL
, NULL
);
759 /* Jump to the next non-whitespace word. */
761 while (buf
[offs
] && ' ' == buf
[offs
])
765 * Trailing whitespace. Note that tabs are allowed to be passed
766 * into the parser as "text", so we only warn about spaces here.
769 if ('\0' == buf
[offs
] && ' ' == buf
[offs
- 1])
770 mandoc_msg(MANDOCERR_SPACE_EOL
, mdoc
->parse
,
774 * If an initial macro or a list invocation, divert directly
775 * into macro processing.
778 if (NULL
== mdoc
->last
|| MDOC_It
== tok
|| MDOC_El
== tok
)
779 return(mdoc_macro(mdoc
, tok
, ln
, sv
, &offs
, buf
));
785 * If the first macro of a `Bl -column', open an `It' block
786 * context around the parsed macro.
789 if (MDOC_Bl
== n
->tok
&& MDOC_BODY
== n
->type
&&
790 LIST_column
== n
->norm
->Bl
.type
) {
791 mdoc
->flags
|= MDOC_FREECOL
;
792 return(mdoc_macro(mdoc
, MDOC_It
, ln
, sv
, &sv
, buf
));
796 * If we're following a block-level `It' within a `Bl -column'
797 * context (perhaps opened in the above block or in ptext()),
798 * then open an `It' block context around the parsed macro.
801 if (MDOC_It
== n
->tok
&& MDOC_BLOCK
== n
->type
&&
803 MDOC_Bl
== n
->parent
->tok
&&
804 LIST_column
== n
->parent
->norm
->Bl
.type
) {
805 mdoc
->flags
|= MDOC_FREECOL
;
806 return(mdoc_macro(mdoc
, MDOC_It
, ln
, sv
, &sv
, buf
));
809 /* Normal processing of a macro. */
811 if ( ! mdoc_macro(mdoc
, tok
, ln
, sv
, &offs
, buf
))
814 /* In quick mode (for mandocdb), abort after the NAME section. */
816 if (mdoc
->quick
&& MDOC_Sh
== tok
&&
817 SEC_NAME
!= mdoc
->last
->sec
)
824 mdoc_isdelim(const char *p
)
837 return(DELIM_MIDDLE
);
861 if (0 == strcmp(p
+ 1, "."))
863 if (0 == strcmp(p
+ 1, "fR|\\fP"))
864 return(DELIM_MIDDLE
);
870 mdoc_deroff(char **dest
, const struct mdoc_node
*n
)
875 if (MDOC_TEXT
!= n
->type
) {
876 for (n
= n
->child
; n
; n
= n
->next
)
877 mdoc_deroff(dest
, n
);
881 /* Skip leading whitespace. */
883 for (cp
= n
->string
; '\0' != *cp
; cp
++)
884 if (0 == isspace((unsigned char)*cp
))
887 /* Skip trailing whitespace. */
889 for (sz
= strlen(cp
); sz
; sz
--)
890 if (0 == isspace((unsigned char)cp
[sz
-1]))
893 /* Skip empty strings. */
899 *dest
= mandoc_strndup(cp
, sz
);
903 mandoc_asprintf(&cp
, "%s %*s", *dest
, (int)sz
, cp
);