]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_macro.c
1 /* $Id: mdoc_macro.c,v 1.142 2014/08/21 12:57:17 schwarze Exp $ */
3 * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010, 2012, 2013 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 "libmandoc.h"
34 enum rew
{ /* see rew_dohalt() */
43 static int blk_full(MACRO_PROT_ARGS
);
44 static int blk_exp_close(MACRO_PROT_ARGS
);
45 static int blk_part_exp(MACRO_PROT_ARGS
);
46 static int blk_part_imp(MACRO_PROT_ARGS
);
47 static int ctx_synopsis(MACRO_PROT_ARGS
);
48 static int in_line_eoln(MACRO_PROT_ARGS
);
49 static int in_line_argn(MACRO_PROT_ARGS
);
50 static int in_line(MACRO_PROT_ARGS
);
51 static int phrase_ta(MACRO_PROT_ARGS
);
53 static int dword(struct mdoc
*, int, int, const char *,
55 static int append_delims(struct mdoc
*,
57 static enum mdoct
lookup(enum mdoct
, const char *);
58 static enum mdoct
lookup_raw(const char *);
59 static int make_pending(struct mdoc_node
*, enum mdoct
,
60 struct mdoc
*, int, int);
61 static int phrase(struct mdoc
*, int, int, char *);
62 static enum mdoct
rew_alt(enum mdoct
);
63 static enum rew
rew_dohalt(enum mdoct
, enum mdoc_type
,
64 const struct mdoc_node
*);
65 static int rew_elem(struct mdoc
*, enum mdoct
);
66 static int rew_last(struct mdoc
*,
67 const struct mdoc_node
*);
68 static int rew_sub(enum mdoc_type
, struct mdoc
*,
69 enum mdoct
, int, int);
71 const struct mdoc_macro __mdoc_macros
[MDOC_MAX
] = {
72 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ap */
73 { in_line_eoln
, MDOC_PROLOGUE
}, /* Dd */
74 { in_line_eoln
, MDOC_PROLOGUE
}, /* Dt */
75 { in_line_eoln
, MDOC_PROLOGUE
}, /* Os */
76 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* Sh */
77 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* Ss */
78 { in_line_eoln
, 0 }, /* Pp */
79 { blk_part_imp
, MDOC_PARSED
| MDOC_JOIN
}, /* D1 */
80 { blk_part_imp
, MDOC_PARSED
| MDOC_JOIN
}, /* Dl */
81 { blk_full
, MDOC_EXPLICIT
}, /* Bd */
82 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ed */
83 { blk_full
, MDOC_EXPLICIT
}, /* Bl */
84 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* El */
85 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* It */
86 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ad */
87 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* An */
88 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ar */
89 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Cd */
90 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Cm */
91 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dv */
92 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Er */
93 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ev */
94 { in_line_eoln
, 0 }, /* Ex */
95 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fa */
96 { in_line_eoln
, 0 }, /* Fd */
97 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fl */
98 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fn */
99 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ft */
100 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ic */
101 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* In */
102 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Li */
103 { blk_full
, MDOC_JOIN
}, /* Nd */
104 { ctx_synopsis
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nm */
105 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Op */
106 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ot */
107 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Pa */
108 { in_line_eoln
, 0 }, /* Rv */
109 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* St */
110 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Va */
111 { ctx_synopsis
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Vt */
112 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Xr */
113 { in_line_eoln
, MDOC_JOIN
}, /* %A */
114 { in_line_eoln
, MDOC_JOIN
}, /* %B */
115 { in_line_eoln
, MDOC_JOIN
}, /* %D */
116 { in_line_eoln
, MDOC_JOIN
}, /* %I */
117 { in_line_eoln
, MDOC_JOIN
}, /* %J */
118 { in_line_eoln
, 0 }, /* %N */
119 { in_line_eoln
, MDOC_JOIN
}, /* %O */
120 { in_line_eoln
, 0 }, /* %P */
121 { in_line_eoln
, MDOC_JOIN
}, /* %R */
122 { in_line_eoln
, MDOC_JOIN
}, /* %T */
123 { in_line_eoln
, 0 }, /* %V */
124 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
125 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ac */
126 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
127 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ao */
128 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Aq */
129 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* At */
130 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
131 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bc */
132 { blk_full
, MDOC_EXPLICIT
}, /* Bf */
133 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
134 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bo */
135 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Bq */
136 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bsx */
137 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bx */
138 { in_line_eoln
, 0 }, /* Db */
139 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
140 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Dc */
141 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
142 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Do */
143 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Dq */
144 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Ec */
145 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ef */
146 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Em */
147 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Eo */
148 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fx */
149 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ms */
150 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
|
151 MDOC_IGNDELIM
| MDOC_JOIN
}, /* No */
152 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
|
153 MDOC_IGNDELIM
| MDOC_JOIN
}, /* Ns */
154 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nx */
155 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ox */
156 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
157 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Pc */
158 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_IGNDELIM
}, /* Pf */
159 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
160 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Po */
161 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Pq */
162 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
163 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Qc */
164 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ql */
165 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
166 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Qo */
167 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Qq */
168 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Re */
169 { blk_full
, MDOC_EXPLICIT
}, /* Rs */
170 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
171 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Sc */
172 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
173 MDOC_EXPLICIT
| MDOC_JOIN
}, /* So */
174 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sq */
175 { in_line_eoln
, 0 }, /* Sm */
176 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sx */
177 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sy */
178 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Tn */
179 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ux */
180 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Xc */
181 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Xo */
182 { blk_full
, MDOC_EXPLICIT
| MDOC_CALLABLE
}, /* Fo */
183 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
184 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Fc */
185 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
186 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Oo */
187 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
188 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Oc */
189 { blk_full
, MDOC_EXPLICIT
}, /* Bk */
190 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ek */
191 { in_line_eoln
, 0 }, /* Bt */
192 { in_line_eoln
, 0 }, /* Hf */
193 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fr */
194 { in_line_eoln
, 0 }, /* Ud */
195 { in_line
, 0 }, /* Lb */
196 { in_line_eoln
, 0 }, /* Lp */
197 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Lk */
198 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Mt */
199 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Brq */
200 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
201 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bro */
202 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
203 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Brc */
204 { in_line_eoln
, MDOC_JOIN
}, /* %C */
205 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Es */
206 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* En */
207 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dx */
208 { in_line_eoln
, MDOC_JOIN
}, /* %Q */
209 { in_line_eoln
, 0 }, /* br */
210 { in_line_eoln
, 0 }, /* sp */
211 { in_line_eoln
, 0 }, /* %U */
212 { phrase_ta
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ta */
213 { in_line_eoln
, 0 }, /* ll */
216 const struct mdoc_macro
* const mdoc_macros
= __mdoc_macros
;
220 * This is called at the end of parsing. It must traverse up the tree,
221 * closing out open [implicit] scopes. Obviously, open explicit scopes
225 mdoc_macroend(struct mdoc
*mdoc
)
229 /* Scan for open explicit scopes. */
231 n
= MDOC_VALID
& mdoc
->last
->flags
?
232 mdoc
->last
->parent
: mdoc
->last
;
234 for ( ; n
; n
= n
->parent
)
235 if (MDOC_BLOCK
== n
->type
&&
236 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
)
237 mandoc_msg(MANDOCERR_BLK_NOEND
, mdoc
->parse
,
238 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
240 /* Rewind to the first. */
242 return(rew_last(mdoc
, mdoc
->first
));
246 * Look up a macro from within a subsequent context.
249 lookup(enum mdoct from
, const char *p
)
252 if ( ! (MDOC_PARSED
& mdoc_macros
[from
].flags
))
254 return(lookup_raw(p
));
258 * Lookup a macro following the initial line macro.
261 lookup_raw(const char *p
)
265 if (MDOC_MAX
== (res
= mdoc_hash_find(p
)))
267 if (MDOC_CALLABLE
& mdoc_macros
[res
].flags
)
273 rew_last(struct mdoc
*mdoc
, const struct mdoc_node
*to
)
275 struct mdoc_node
*n
, *np
;
278 mdoc
->next
= MDOC_NEXT_SIBLING
;
281 while (mdoc
->last
!= to
) {
283 * Save the parent here, because we may delete the
284 * mdoc->last node in the post-validation phase and reset
285 * it to mdoc->last->parent, causing a step in the closing
288 np
= mdoc
->last
->parent
;
289 if ( ! mdoc_valid_post(mdoc
))
294 mdoc
->last
->last
= n
;
297 return(mdoc_valid_post(mdoc
));
301 * For a block closing macro, return the corresponding opening one.
302 * Otherwise, return the macro itself.
305 rew_alt(enum mdoct tok
)
347 * Rewinding to tok, how do we have to handle *p?
348 * REWIND_NONE: *p would delimit tok, but no tok scope is open
349 * inside *p, so there is no need to rewind anything at all.
350 * REWIND_THIS: *p matches tok, so rewind *p and nothing else.
351 * REWIND_MORE: *p is implicit, rewind it and keep searching for tok.
352 * REWIND_FORCE: *p is explicit, but tok is full, force rewinding *p.
353 * REWIND_LATER: *p is explicit and still open, postpone rewinding.
354 * REWIND_ERROR: No tok block is open at all.
357 rew_dohalt(enum mdoct tok
, enum mdoc_type type
,
358 const struct mdoc_node
*p
)
362 * No matching token, no delimiting block, no broken block.
363 * This can happen when full implicit macros are called for
364 * the first time but try to rewind their previous
367 if (MDOC_ROOT
== p
->type
)
368 return(MDOC_BLOCK
== type
&&
369 MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
?
370 REWIND_ERROR
: REWIND_NONE
);
373 * When starting to rewind, skip plain text
374 * and nodes that have already been rewound.
376 if (MDOC_TEXT
== p
->type
|| MDOC_VALID
& p
->flags
)
380 * The easiest case: Found a matching token.
381 * This applies to both blocks and elements.
385 return(p
->end
? REWIND_NONE
:
386 type
== p
->type
? REWIND_THIS
: REWIND_MORE
);
389 * While elements do require rewinding for themselves,
390 * they never affect rewinding of other nodes.
392 if (MDOC_ELEM
== p
->type
)
396 * Blocks delimited by our target token get REWIND_MORE.
397 * Blocks delimiting our target token get REWIND_NONE.
401 if (MDOC_It
== p
->tok
)
405 if (MDOC_BODY
== p
->type
&& MDOC_Bl
== p
->tok
)
409 * XXX Badly nested block handling still fails badly
410 * when one block is breaking two blocks of the same type.
411 * This is an incomplete and extremely ugly workaround,
412 * required to let the OpenBSD tree build.
415 if (MDOC_Op
== p
->tok
)
423 if (MDOC_BODY
== p
->type
&& MDOC_Sh
== p
->tok
)
427 if (MDOC_ROOT
== p
->parent
->type
)
429 if (MDOC_Nd
== p
->tok
|| MDOC_Ss
== p
->tok
||
438 * Default block rewinding rules.
439 * In particular, always skip block end markers,
440 * and let all blocks rewind Nm children.
442 if (ENDBODY_NOT
!= p
->end
|| MDOC_Nm
== p
->tok
||
443 (MDOC_BLOCK
== p
->type
&&
444 ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
)))
448 * By default, closing out full blocks
449 * forces closing of broken explicit blocks,
450 * while closing out partial blocks
451 * allows delayed rewinding by default.
453 return (&blk_full
== mdoc_macros
[tok
].fp
?
454 REWIND_FORCE
: REWIND_LATER
);
458 rew_elem(struct mdoc
*mdoc
, enum mdoct tok
)
463 if (MDOC_ELEM
!= n
->type
)
465 assert(MDOC_ELEM
== n
->type
);
466 assert(tok
== n
->tok
);
468 return(rew_last(mdoc
, n
));
472 * We are trying to close a block identified by tok,
473 * but the child block *broken is still open.
474 * Thus, postpone closing the tok block
475 * until the rew_sub call closing *broken.
478 make_pending(struct mdoc_node
*broken
, enum mdoct tok
,
479 struct mdoc
*mdoc
, int line
, int ppos
)
481 struct mdoc_node
*breaker
;
484 * Iterate backwards, searching for the block matching tok,
485 * that is, the block breaking the *broken block.
487 for (breaker
= broken
->parent
; breaker
; breaker
= breaker
->parent
) {
490 * If the *broken block had already been broken before
491 * and we encounter its breaker, make the tok block
492 * pending on the inner breaker.
493 * Graphically, "[A breaker=[B broken=[C->B B] tok=A] C]"
494 * becomes "[A broken=[B [C->B B] tok=A] C]"
495 * and finally "[A [B->A [C->B B] A] C]".
497 if (breaker
== broken
->pending
) {
502 if (REWIND_THIS
!= rew_dohalt(tok
, MDOC_BLOCK
, breaker
))
504 if (MDOC_BODY
== broken
->type
)
505 broken
= broken
->parent
;
509 * If another, outer breaker is already pending on
510 * the *broken block, we must not clobber the link
511 * to the outer breaker, but make it pending on the
512 * new, now inner breaker.
513 * Graphically, "[A breaker=[B broken=[C->A A] tok=B] C]"
514 * becomes "[A breaker=[B->A broken=[C A] tok=B] C]"
515 * and finally "[A [B->A [C->B A] B] C]".
517 if (broken
->pending
) {
518 struct mdoc_node
*taker
;
521 * If the breaker had also been broken before,
522 * it cannot take on the outer breaker itself,
523 * but must hand it on to its own breakers.
524 * Graphically, this is the following situation:
525 * "[A [B breaker=[C->B B] broken=[D->A A] tok=C] D]"
526 * "[A taker=[B->A breaker=[C->B B] [D->C A] C] D]"
529 while (taker
->pending
)
530 taker
= taker
->pending
;
531 taker
->pending
= broken
->pending
;
533 broken
->pending
= breaker
;
534 mandoc_vmsg(MANDOCERR_BLK_NEST
, mdoc
->parse
, line
, ppos
,
535 "%s breaks %s", mdoc_macronames
[tok
],
536 mdoc_macronames
[broken
->tok
]);
541 * Found no matching block for tok.
542 * Are you trying to close a block that is not open?
548 rew_sub(enum mdoc_type t
, struct mdoc
*mdoc
,
549 enum mdoct tok
, int line
, int ppos
)
555 switch (rew_dohalt(tok
, t
, n
)) {
560 (MDOC_NEWLINE
& mdoc
->flags
&&
561 ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
));
564 mandoc_vmsg(MANDOCERR_BLK_BROKEN
, mdoc
->parse
,
565 line
, ppos
, "%s breaks %s",
566 mdoc_macronames
[tok
],
567 mdoc_macronames
[n
->tok
]);
571 (MDOC_NEWLINE
& mdoc
->flags
? 1 : 0);
575 if (make_pending(n
, tok
, mdoc
, line
, ppos
) ||
580 mandoc_msg(MANDOCERR_BLK_NOTOPEN
,
581 mdoc
->parse
, line
, ppos
,
582 mdoc_macronames
[tok
]);
589 if ( ! rew_last(mdoc
, n
))
593 * The current block extends an enclosing block.
594 * Now that the current block ends, close the enclosing block, too.
596 while (NULL
!= (n
= n
->pending
)) {
597 if ( ! rew_last(mdoc
, n
))
599 if (MDOC_HEAD
== n
->type
&&
600 ! mdoc_body_alloc(mdoc
, n
->line
, n
->pos
, n
->tok
))
608 * Allocate a word and check whether it's punctuation or not.
609 * Punctuation consists of those tokens found in mdoc_isdelim().
612 dword(struct mdoc
*mdoc
, int line
, int col
, const char *p
,
613 enum mdelim d
, int may_append
)
620 ! ((MDOC_SYNOPSIS
| MDOC_KEEP
| MDOC_SMOFF
) & mdoc
->flags
) &&
621 DELIM_NONE
== d
&& MDOC_TEXT
== mdoc
->last
->type
&&
622 DELIM_NONE
== mdoc_isdelim(mdoc
->last
->string
)) {
623 mdoc_word_append(mdoc
, p
);
627 if ( ! mdoc_word_alloc(mdoc
, line
, col
, p
))
631 mdoc
->last
->flags
|= MDOC_DELIMO
;
634 * Closing delimiters only suppress the preceding space
635 * when they follow something, not when they start a new
636 * block or element, and not when they follow `No'.
638 * XXX Explicitly special-casing MDOC_No here feels
639 * like a layering violation. Find a better way
640 * and solve this in the code related to `No'!
643 else if (DELIM_CLOSE
== d
&& mdoc
->last
->prev
&&
644 mdoc
->last
->prev
->tok
!= MDOC_No
&&
645 mdoc
->last
->parent
->tok
!= MDOC_Fd
)
646 mdoc
->last
->flags
|= MDOC_DELIMC
;
652 append_delims(struct mdoc
*mdoc
, int line
, int *pos
, char *buf
)
658 if ('\0' == buf
[*pos
])
663 ac
= mdoc_zargs(mdoc
, line
, pos
, buf
, &p
);
665 if (ARGS_ERROR
== ac
)
667 else if (ARGS_EOLN
== ac
)
670 dword(mdoc
, line
, la
, p
, DELIM_MAX
, 1);
673 * If we encounter end-of-sentence symbols, then trigger
676 * XXX: it's easy to allow this to propagate outward to
677 * the last symbol, such that `. )' will cause the
678 * correct double-spacing. However, (1) groff isn't
679 * smart enough to do this and (2) it would require
680 * knowing which symbols break this behaviour, for
681 * example, `. ;' shouldn't propagate the double-space.
683 if (mandoc_eos(p
, strlen(p
)))
684 mdoc
->last
->flags
|= MDOC_EOS
;
691 * Close out block partial/full explicit.
694 blk_exp_close(MACRO_PROT_ARGS
)
696 struct mdoc_node
*body
; /* Our own body. */
697 struct mdoc_node
*later
; /* A sub-block starting later. */
698 struct mdoc_node
*n
; /* For searching backwards. */
700 int j
, lastarg
, maxargs
, flushed
, nl
;
702 enum mdoct atok
, ntok
;
705 nl
= MDOC_NEWLINE
& mdoc
->flags
;
712 mdoc
->flags
&= ~MDOC_KEEP
;
719 * Search backwards for beginnings of blocks,
720 * both of our own and of pending sub-blocks.
724 for (n
= mdoc
->last
; n
; n
= n
->parent
) {
725 if (MDOC_VALID
& n
->flags
)
728 /* Remember the start of our own body. */
729 if (MDOC_BODY
== n
->type
&& atok
== n
->tok
) {
730 if (ENDBODY_NOT
== n
->end
)
735 if (MDOC_BLOCK
!= n
->type
|| MDOC_Nm
== n
->tok
)
737 if (atok
== n
->tok
) {
741 * Found the start of our own block.
742 * When there is no pending sub block,
743 * just proceed to closing out.
749 * When there is a pending sub block,
750 * postpone closing out the current block
751 * until the rew_sub() closing out the sub-block.
753 make_pending(later
, tok
, mdoc
, line
, ppos
);
756 * Mark the place where the formatting - but not
757 * the scope - of the current block ends.
759 if ( ! mdoc_endbody_alloc(mdoc
, line
, ppos
,
760 atok
, body
, ENDBODY_SPACE
))
766 * When finding an open sub block, remember the last
767 * open explicit block, or, in case there are only
768 * implicit ones, the first open implicit block.
771 MDOC_EXPLICIT
& mdoc_macros
[later
->tok
].flags
)
773 if (MDOC_It
!= n
->tok
)
777 if ( ! (MDOC_PARSED
& mdoc_macros
[tok
].flags
)) {
778 if ('\0' != buf
[*pos
])
779 mandoc_vmsg(MANDOCERR_ARG_SKIP
,
780 mdoc
->parse
, line
, ppos
,
781 "%s %s", mdoc_macronames
[tok
],
783 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
785 return(rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
));
788 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
791 if (NULL
== later
&& maxargs
> 0)
792 if ( ! mdoc_tail_alloc(mdoc
, line
, ppos
, rew_alt(tok
)))
795 for (flushed
= j
= 0; ; j
++) {
798 if (j
== maxargs
&& ! flushed
) {
799 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
804 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
806 if (ARGS_ERROR
== ac
)
808 if (ARGS_PUNCT
== ac
)
813 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
815 if (MDOC_MAX
== ntok
) {
816 if ( ! dword(mdoc
, line
, lastarg
, p
, DELIM_MAX
,
817 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
823 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
828 mdoc
->flags
&= ~MDOC_NEWLINE
;
830 if ( ! mdoc_macro(mdoc
, ntok
, line
, lastarg
, pos
, buf
))
835 if ( ! flushed
&& ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
840 return(append_delims(mdoc
, line
, pos
, buf
));
844 in_line(MACRO_PROT_ARGS
)
846 int la
, scope
, cnt
, mayopen
, nc
, nl
;
851 struct mdoc_arg
*arg
;
854 nl
= MDOC_NEWLINE
& mdoc
->flags
;
857 * Whether we allow ignored elements (those without content,
858 * usually because of reserved words) to squeak by.
880 for (arg
= NULL
;; ) {
882 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
884 if (ARGV_WORD
== av
) {
898 for (cnt
= scope
= 0;; ) {
900 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
902 if (ARGS_ERROR
== ac
)
906 if (ARGS_PUNCT
== ac
)
909 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
912 * In this case, we've located a submacro and must
913 * execute it. Close out scope, if open. If no
914 * elements have been generated, either create one (nc)
915 * or raise a warning.
918 if (MDOC_MAX
!= ntok
) {
919 if (scope
&& ! rew_elem(mdoc
, tok
))
921 if (nc
&& 0 == cnt
) {
922 if ( ! mdoc_elem_alloc(mdoc
,
923 line
, ppos
, tok
, arg
))
925 if ( ! rew_last(mdoc
, mdoc
->last
))
927 } else if ( ! nc
&& 0 == cnt
) {
929 mandoc_msg(MANDOCERR_MACRO_EMPTY
,
930 mdoc
->parse
, line
, ppos
,
931 mdoc_macronames
[tok
]);
934 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
938 return(append_delims(mdoc
, line
, pos
, buf
));
942 * Non-quote-enclosed punctuation. Set up our scope, if
943 * a word; rewind the scope, if a delimiter; then append
947 d
= ARGS_QWORD
== ac
? DELIM_NONE
: mdoc_isdelim(p
);
949 if (DELIM_NONE
!= d
) {
951 * If we encounter closing punctuation, no word
952 * has been omitted, no scope is open, and we're
953 * allowed to have an empty element, then start
956 if ((d
== DELIM_CLOSE
||
957 (d
== DELIM_MIDDLE
&& tok
== MDOC_Fl
)) &&
958 (nc
|| tok
== MDOC_Li
) &&
959 !scope
&& !cnt
&& mayopen
) {
960 if ( ! mdoc_elem_alloc(mdoc
,
961 line
, ppos
, tok
, arg
))
965 if (MDOC_Li
== tok
|| MDOC_Nm
== tok
)
969 * Close out our scope, if one is open, before
972 if (scope
&& ! rew_elem(mdoc
, tok
))
975 } else if (mayopen
&& !scope
) {
976 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
982 if ( ! dword(mdoc
, line
, la
, p
, d
,
983 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
987 * `Fl' macros have their scope re-opened with each new
988 * word so that the `-' can be added to each one without
989 * having to parse out spaces.
991 if (scope
&& MDOC_Fl
== tok
) {
992 if ( ! rew_elem(mdoc
, tok
))
998 if (scope
&& ! rew_elem(mdoc
, tok
))
1002 * If no elements have been collected and we're allowed to have
1003 * empties (nc), open a scope and close it out. Otherwise,
1007 if (nc
&& 0 == cnt
) {
1008 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1010 if ( ! rew_last(mdoc
, mdoc
->last
))
1012 } else if ( ! nc
&& 0 == cnt
) {
1013 mdoc_argv_free(arg
);
1014 mandoc_msg(MANDOCERR_MACRO_EMPTY
, mdoc
->parse
,
1015 line
, ppos
, mdoc_macronames
[tok
]);
1020 return(append_delims(mdoc
, line
, pos
, buf
));
1024 blk_full(MACRO_PROT_ARGS
)
1026 int la
, nl
, nparsed
;
1027 struct mdoc_arg
*arg
;
1028 struct mdoc_node
*head
; /* save of head macro */
1029 struct mdoc_node
*body
; /* save of body macro */
1030 struct mdoc_node
*n
;
1033 enum margserr ac
, lac
;
1037 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1039 /* Skip items outside lists. */
1041 if (tok
== MDOC_It
) {
1042 for (n
= mdoc
->last
; n
; n
= n
->parent
)
1043 if (n
->tok
== MDOC_Bl
&&
1044 ! (n
->flags
& MDOC_VALID
))
1047 mandoc_vmsg(MANDOCERR_IT_STRAY
, mdoc
->parse
,
1048 line
, ppos
, "It %s", buf
+ *pos
);
1049 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
,
1052 return(rew_elem(mdoc
, MDOC_br
));
1056 /* Close out prior implicit scope. */
1058 if ( ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
)) {
1059 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1061 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1066 * This routine accommodates implicitly- and explicitly-scoped
1067 * macro openings. Implicit ones first close out prior scope
1068 * (seen above). Delay opening the head until necessary to
1069 * allow leading punctuation to print. Special consideration
1070 * for `It -column', which has phrase-part syntax instead of
1071 * regular child nodes.
1074 for (arg
= NULL
;; ) {
1076 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1078 if (ARGV_WORD
== av
) {
1083 if (ARGV_EOLN
== av
)
1088 mdoc_argv_free(arg
);
1092 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, arg
))
1098 * Exception: Heads of `It' macros in `-diag' lists are not
1099 * parsed, even though `It' macros in general are parsed.
1101 nparsed
= MDOC_It
== tok
&&
1102 MDOC_Bl
== mdoc
->last
->parent
->tok
&&
1103 LIST_diag
== mdoc
->last
->parent
->norm
->Bl
.type
;
1106 * The `Nd' macro has all arguments in its body: it's a hybrid
1107 * of block partial-explicit and full-implicit. Stupid.
1110 if (MDOC_Nd
== tok
) {
1111 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1114 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1116 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1122 mdoc
->flags
|= MDOC_KEEP
;
1128 /* Initialise last-phrase-type with ARGS_PEND. */
1129 lac
= ARGS_ERROR
== ac
? ARGS_PEND
: ac
;
1130 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1132 if (ARGS_PUNCT
== ac
)
1135 if (ARGS_ERROR
== ac
)
1138 if (ARGS_EOLN
== ac
) {
1139 if (ARGS_PPHRASE
!= lac
&& ARGS_PHRASE
!= lac
)
1142 * This is necessary: if the last token on a
1143 * line is a `Ta' or tab, then we'll get
1144 * ARGS_EOLN, so we must be smart enough to
1145 * reopen our scope if the last parse was a
1146 * phrase or partial phrase.
1148 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1150 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1157 * Emit leading punctuation (i.e., punctuation before
1158 * the MDOC_HEAD) for non-phrase types.
1163 ARGS_PHRASE
!= ac
&&
1164 ARGS_PPHRASE
!= ac
&&
1166 DELIM_OPEN
== mdoc_isdelim(p
)) {
1167 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1172 /* Open a head if one hasn't been opened. */
1175 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1180 if (ARGS_PHRASE
== ac
||
1182 ARGS_PPHRASE
== ac
) {
1184 * If we haven't opened a body yet, rewind the
1185 * head; if we have, rewind that instead.
1188 mtt
= body
? MDOC_BODY
: MDOC_HEAD
;
1189 if ( ! rew_sub(mtt
, mdoc
, tok
, line
, ppos
))
1192 /* Then allocate our body context. */
1194 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1199 * Process phrases: set whether we're in a
1200 * partial-phrase (this effects line handling)
1201 * then call down into the phrase parser.
1204 if (ARGS_PPHRASE
== ac
)
1205 mdoc
->flags
|= MDOC_PPHRASE
;
1206 if (ARGS_PEND
== ac
&& ARGS_PPHRASE
== lac
)
1207 mdoc
->flags
|= MDOC_PPHRASE
;
1209 if ( ! phrase(mdoc
, line
, la
, buf
))
1212 mdoc
->flags
&= ~MDOC_PPHRASE
;
1216 ntok
= nparsed
|| ARGS_QWORD
== ac
?
1217 MDOC_MAX
: lookup(tok
, p
);
1219 if (MDOC_MAX
== ntok
) {
1220 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1221 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1226 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1232 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1237 if (nl
&& ! append_delims(mdoc
, line
, pos
, buf
))
1240 /* If we've already opened our body, exit now. */
1246 * If there is an open (i.e., unvalidated) sub-block requiring
1247 * explicit close-out, postpone switching the current block from
1248 * head to body until the rew_sub() call closing out that
1251 for (n
= mdoc
->last
; n
&& n
!= head
; n
= n
->parent
) {
1252 if (MDOC_BLOCK
== n
->type
&&
1253 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
&&
1254 ! (MDOC_VALID
& n
->flags
)) {
1260 /* Close out scopes to remain in a consistent state. */
1262 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1264 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1268 if ( ! (MDOC_FREECOL
& mdoc
->flags
))
1271 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1273 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1276 mdoc
->flags
&= ~MDOC_FREECOL
;
1281 blk_part_imp(MACRO_PROT_ARGS
)
1287 struct mdoc_node
*blk
; /* saved block context */
1288 struct mdoc_node
*body
; /* saved body context */
1289 struct mdoc_node
*n
;
1291 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1294 * A macro that spans to the end of the line. This is generally
1295 * (but not necessarily) called as the first macro. The block
1296 * has a head as the immediate child, which is always empty,
1297 * followed by zero or more opening punctuation nodes, then the
1298 * body (which may be empty, depending on the macro), then zero
1299 * or more closing punctuation nodes.
1302 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, NULL
))
1307 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1309 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1313 * Open the body scope "on-demand", that is, after we've
1314 * processed all our the leading delimiters (open parenthesis,
1318 for (body
= NULL
; ; ) {
1320 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1322 if (ARGS_ERROR
== ac
)
1324 if (ARGS_EOLN
== ac
)
1326 if (ARGS_PUNCT
== ac
)
1329 if (NULL
== body
&& ARGS_QWORD
!= ac
&&
1330 DELIM_OPEN
== mdoc_isdelim(p
)) {
1331 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1337 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1342 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1344 if (MDOC_MAX
== ntok
) {
1345 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1346 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1351 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1356 /* Clean-ups to leave in a consistent state. */
1359 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1365 * If there is an open sub-block requiring explicit close-out,
1366 * postpone closing out the current block
1367 * until the rew_sub() call closing out the sub-block.
1369 for (n
= mdoc
->last
; n
&& n
!= body
&& n
!= blk
->parent
;
1371 if (MDOC_BLOCK
== n
->type
&&
1372 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
&&
1373 ! (MDOC_VALID
& n
->flags
)) {
1374 make_pending(n
, tok
, mdoc
, line
, ppos
);
1375 if ( ! mdoc_endbody_alloc(mdoc
, line
, ppos
,
1376 tok
, body
, ENDBODY_NOSPACE
))
1383 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1386 /* Standard appending of delimiters. */
1388 if (nl
&& ! append_delims(mdoc
, line
, pos
, buf
))
1391 /* Rewind scope, if applicable. */
1393 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1396 /* Move trailing .Ns out of scope. */
1398 for (n
= body
->child
; n
&& n
->next
; n
= n
->next
)
1400 if (n
&& MDOC_Ns
== n
->tok
)
1401 mdoc_node_relink(mdoc
, n
);
1407 blk_part_exp(MACRO_PROT_ARGS
)
1411 struct mdoc_node
*head
; /* keep track of head */
1412 struct mdoc_node
*body
; /* keep track of body */
1416 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1419 * The opening of an explicit macro having zero or more leading
1420 * punctuation nodes; a head with optional single element (the
1421 * case of `Eo'); and a body that may be empty.
1424 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, NULL
))
1427 for (head
= body
= NULL
; ; ) {
1429 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1431 if (ARGS_ERROR
== ac
)
1433 if (ARGS_PUNCT
== ac
)
1435 if (ARGS_EOLN
== ac
)
1438 /* Flush out leading punctuation. */
1440 if (NULL
== head
&& ARGS_QWORD
!= ac
&&
1441 DELIM_OPEN
== mdoc_isdelim(p
)) {
1442 assert(NULL
== body
);
1443 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1449 assert(NULL
== body
);
1450 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1456 * `Eo' gobbles any data into the head, but most other
1457 * macros just immediately close out and begin the body.
1462 /* No check whether it's a macro! */
1464 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
, 0))
1467 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1469 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1477 assert(NULL
!= head
&& NULL
!= body
);
1479 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1481 if (MDOC_MAX
== ntok
) {
1482 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1483 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1488 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1493 /* Clean-up to leave in a consistent state. */
1496 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1500 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1502 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1506 /* Standard appending of delimiters. */
1510 return(append_delims(mdoc
, line
, pos
, buf
));
1514 in_line_argn(MACRO_PROT_ARGS
)
1516 int la
, flushed
, j
, maxargs
, nl
;
1519 struct mdoc_arg
*arg
;
1523 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1526 * A line macro that has a fixed number of arguments (maxargs).
1527 * Only open the scope once the first non-leading-punctuation is
1528 * found (unless MDOC_IGNDELIM is noted, like in `Pf'), then
1529 * keep it open until the maximum number of arguments are
1555 for (arg
= NULL
; ; ) {
1557 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1559 if (ARGV_WORD
== av
) {
1564 if (ARGV_EOLN
== av
)
1569 mdoc_argv_free(arg
);
1573 for (flushed
= j
= 0; ; ) {
1575 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1577 if (ARGS_ERROR
== ac
)
1579 if (ARGS_PUNCT
== ac
)
1581 if (ARGS_EOLN
== ac
)
1584 if ( ! (MDOC_IGNDELIM
& mdoc_macros
[tok
].flags
) &&
1585 ARGS_QWORD
!= ac
&& 0 == j
&&
1586 DELIM_OPEN
== mdoc_isdelim(p
)) {
1587 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1591 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1594 if (j
== maxargs
&& ! flushed
) {
1595 if ( ! rew_elem(mdoc
, tok
))
1600 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1602 if (MDOC_MAX
!= ntok
) {
1603 if ( ! flushed
&& ! rew_elem(mdoc
, tok
))
1606 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1612 if ( ! (MDOC_IGNDELIM
& mdoc_macros
[tok
].flags
) &&
1615 DELIM_NONE
!= mdoc_isdelim(p
)) {
1616 if ( ! rew_elem(mdoc
, tok
))
1621 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1622 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1627 if (0 == j
&& ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1630 /* Close out in a consistent state. */
1632 if ( ! flushed
&& ! rew_elem(mdoc
, tok
))
1636 return(append_delims(mdoc
, line
, pos
, buf
));
1640 in_line_eoln(MACRO_PROT_ARGS
)
1645 struct mdoc_arg
*arg
;
1649 assert( ! (MDOC_PARSED
& mdoc_macros
[tok
].flags
));
1652 rew_sub(MDOC_BLOCK
, mdoc
, MDOC_Nm
, line
, ppos
);
1654 /* Parse macro arguments. */
1656 for (arg
= NULL
; ; ) {
1658 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1660 if (ARGV_WORD
== av
) {
1664 if (ARGV_EOLN
== av
)
1669 mdoc_argv_free(arg
);
1673 /* Open element scope. */
1675 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1678 /* Parse argument terms. */
1682 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1684 if (ARGS_ERROR
== ac
)
1686 if (ARGS_EOLN
== ac
)
1689 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1691 if (MDOC_MAX
== ntok
) {
1692 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1693 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1698 if ( ! rew_elem(mdoc
, tok
))
1700 return(mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
));
1703 /* Close out (no delimiters). */
1705 return(rew_elem(mdoc
, tok
));
1709 ctx_synopsis(MACRO_PROT_ARGS
)
1713 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1715 /* If we're not in the SYNOPSIS, go straight to in-line. */
1716 if ( ! (MDOC_SYNOPSIS
& mdoc
->flags
))
1717 return(in_line(mdoc
, tok
, line
, ppos
, pos
, buf
));
1719 /* If we're a nested call, same place. */
1721 return(in_line(mdoc
, tok
, line
, ppos
, pos
, buf
));
1724 * XXX: this will open a block scope; however, if later we end
1725 * up formatting the block scope, then child nodes will inherit
1726 * the formatting. Be careful.
1729 return(blk_full(mdoc
, tok
, line
, ppos
, pos
, buf
));
1730 assert(MDOC_Vt
== tok
);
1731 return(blk_part_imp(mdoc
, tok
, line
, ppos
, pos
, buf
));
1735 * Phrases occur within `Bl -column' entries, separated by `Ta' or tabs.
1736 * They're unusual because they're basically free-form text until a
1737 * macro is encountered.
1740 phrase(struct mdoc
*mdoc
, int line
, int ppos
, char *buf
)
1747 for (pos
= ppos
; ; ) {
1750 ac
= mdoc_zargs(mdoc
, line
, &pos
, buf
, &p
);
1752 if (ARGS_ERROR
== ac
)
1754 if (ARGS_EOLN
== ac
)
1757 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup_raw(p
);
1759 if (MDOC_MAX
== ntok
) {
1760 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
, 1))
1765 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, &pos
, buf
))
1767 return(append_delims(mdoc
, line
, &pos
, buf
));
1774 phrase_ta(MACRO_PROT_ARGS
)
1776 struct mdoc_node
*n
;
1782 /* Make sure we are in a column list or ignore this macro. */
1784 while (NULL
!= n
&& MDOC_Bl
!= n
->tok
)
1786 if (NULL
== n
|| LIST_column
!= n
->norm
->Bl
.type
) {
1787 mandoc_msg(MANDOCERR_TA_STRAY
, mdoc
->parse
,
1792 /* Advance to the next column. */
1793 if ( ! rew_sub(MDOC_BODY
, mdoc
, MDOC_It
, line
, ppos
))
1795 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, MDOC_It
))
1800 ac
= mdoc_zargs(mdoc
, line
, pos
, buf
, &p
);
1802 if (ARGS_ERROR
== ac
)
1804 if (ARGS_EOLN
== ac
)
1807 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup_raw(p
);
1809 if (MDOC_MAX
== ntok
) {
1810 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1811 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1816 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1818 return(append_delims(mdoc
, line
, pos
, buf
));