1 /* $Id: mdoc_macro.c,v 1.125 2013/12/24 20:45:27 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.
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 obsolete(MACRO_PROT_ARGS
);
52 static int phrase_ta(MACRO_PROT_ARGS
);
54 static int dword(struct mdoc
*, int, int, const char *,
56 static int append_delims(struct mdoc
*,
58 static enum mdoct
lookup(enum mdoct
, const char *);
59 static enum mdoct
lookup_raw(const char *);
60 static int make_pending(struct mdoc_node
*, enum mdoct
,
61 struct mdoc
*, int, int);
62 static int phrase(struct mdoc
*, int, int, char *);
63 static enum mdoct
rew_alt(enum mdoct
);
64 static enum rew
rew_dohalt(enum mdoct
, enum mdoc_type
,
65 const struct mdoc_node
*);
66 static int rew_elem(struct mdoc
*, enum mdoct
);
67 static int rew_last(struct mdoc
*,
68 const struct mdoc_node
*);
69 static int rew_sub(enum mdoc_type
, struct mdoc
*,
70 enum mdoct
, int, int);
72 const struct mdoc_macro __mdoc_macros
[MDOC_MAX
] = {
73 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ap */
74 { in_line_eoln
, MDOC_PROLOGUE
}, /* Dd */
75 { in_line_eoln
, MDOC_PROLOGUE
}, /* Dt */
76 { in_line_eoln
, MDOC_PROLOGUE
}, /* Os */
77 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* Sh */
78 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* Ss */
79 { in_line_eoln
, 0 }, /* Pp */
80 { blk_part_imp
, MDOC_PARSED
| MDOC_JOIN
}, /* D1 */
81 { blk_part_imp
, MDOC_PARSED
| MDOC_JOIN
}, /* Dl */
82 { blk_full
, MDOC_EXPLICIT
}, /* Bd */
83 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ed */
84 { blk_full
, MDOC_EXPLICIT
}, /* Bl */
85 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* El */
86 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* It */
87 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ad */
88 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* An */
89 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ar */
90 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Cd */
91 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Cm */
92 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dv */
93 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Er */
94 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ev */
95 { in_line_eoln
, 0 }, /* Ex */
96 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fa */
97 { in_line_eoln
, 0 }, /* Fd */
98 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fl */
99 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fn */
100 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ft */
101 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ic */
102 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* In */
103 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Li */
104 { blk_full
, MDOC_JOIN
}, /* Nd */
105 { ctx_synopsis
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nm */
106 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Op */
107 { obsolete
, 0 }, /* Ot */
108 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Pa */
109 { in_line_eoln
, 0 }, /* Rv */
110 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* St */
111 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Va */
112 { ctx_synopsis
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Vt */
113 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Xr */
114 { in_line_eoln
, MDOC_JOIN
}, /* %A */
115 { in_line_eoln
, MDOC_JOIN
}, /* %B */
116 { in_line_eoln
, MDOC_JOIN
}, /* %D */
117 { in_line_eoln
, MDOC_JOIN
}, /* %I */
118 { in_line_eoln
, MDOC_JOIN
}, /* %J */
119 { in_line_eoln
, 0 }, /* %N */
120 { in_line_eoln
, MDOC_JOIN
}, /* %O */
121 { in_line_eoln
, 0 }, /* %P */
122 { in_line_eoln
, MDOC_JOIN
}, /* %R */
123 { in_line_eoln
, MDOC_JOIN
}, /* %T */
124 { in_line_eoln
, 0 }, /* %V */
125 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
126 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ac */
127 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
128 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ao */
129 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Aq */
130 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* At */
131 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
132 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bc */
133 { blk_full
, MDOC_EXPLICIT
}, /* Bf */
134 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
135 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bo */
136 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Bq */
137 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bsx */
138 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bx */
139 { in_line_eoln
, 0 }, /* Db */
140 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
141 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Dc */
142 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
143 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Do */
144 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Dq */
145 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Ec */
146 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ef */
147 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Em */
148 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Eo */
149 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fx */
150 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ms */
151 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
|
152 MDOC_IGNDELIM
| MDOC_JOIN
}, /* No */
153 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
|
154 MDOC_IGNDELIM
| MDOC_JOIN
}, /* Ns */
155 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nx */
156 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ox */
157 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
158 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Pc */
159 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_IGNDELIM
}, /* Pf */
160 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
161 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Po */
162 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Pq */
163 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
164 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Qc */
165 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ql */
166 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
167 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Qo */
168 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Qq */
169 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Re */
170 { blk_full
, MDOC_EXPLICIT
}, /* Rs */
171 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
172 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Sc */
173 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
174 MDOC_EXPLICIT
| MDOC_JOIN
}, /* So */
175 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sq */
176 { in_line_eoln
, 0 }, /* Sm */
177 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sx */
178 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sy */
179 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Tn */
180 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ux */
181 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Xc */
182 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Xo */
183 { blk_full
, MDOC_EXPLICIT
| MDOC_CALLABLE
}, /* Fo */
184 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
185 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Fc */
186 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
187 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Oo */
188 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
189 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Oc */
190 { blk_full
, MDOC_EXPLICIT
}, /* Bk */
191 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ek */
192 { in_line_eoln
, 0 }, /* Bt */
193 { in_line_eoln
, 0 }, /* Hf */
194 { obsolete
, 0 }, /* Fr */
195 { in_line_eoln
, 0 }, /* Ud */
196 { in_line
, 0 }, /* Lb */
197 { in_line_eoln
, 0 }, /* Lp */
198 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Lk */
199 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Mt */
200 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Brq */
201 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
202 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bro */
203 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
204 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Brc */
205 { in_line_eoln
, MDOC_JOIN
}, /* %C */
206 { obsolete
, 0 }, /* Es */
207 { obsolete
, 0 }, /* En */
208 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dx */
209 { in_line_eoln
, MDOC_JOIN
}, /* %Q */
210 { in_line_eoln
, 0 }, /* br */
211 { in_line_eoln
, 0 }, /* sp */
212 { in_line_eoln
, 0 }, /* %U */
213 { phrase_ta
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ta */
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 mdoc_nmsg(mdoc
, n
, MANDOCERR_SCOPEEXIT
);
239 /* Rewind to the first. */
241 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
));
259 * Lookup a macro following the initial line macro.
262 lookup_raw(const char *p
)
266 if (MDOC_MAX
== (res
= mdoc_hash_find(p
)))
268 if (MDOC_CALLABLE
& mdoc_macros
[res
].flags
)
275 rew_last(struct mdoc
*mdoc
, const struct mdoc_node
*to
)
277 struct mdoc_node
*n
, *np
;
280 mdoc
->next
= MDOC_NEXT_SIBLING
;
283 while (mdoc
->last
!= to
) {
285 * Save the parent here, because we may delete the
286 * mdoc->last node in the post-validation phase and reset
287 * it to mdoc->last->parent, causing a step in the closing
290 np
= mdoc
->last
->parent
;
291 if ( ! mdoc_valid_post(mdoc
))
296 mdoc
->last
->last
= n
;
299 return(mdoc_valid_post(mdoc
));
304 * For a block closing macro, return the corresponding opening one.
305 * Otherwise, return the macro itself.
308 rew_alt(enum mdoct tok
)
351 * Rewinding to tok, how do we have to handle *p?
352 * REWIND_NONE: *p would delimit tok, but no tok scope is open
353 * inside *p, so there is no need to rewind anything at all.
354 * REWIND_THIS: *p matches tok, so rewind *p and nothing else.
355 * REWIND_MORE: *p is implicit, rewind it and keep searching for tok.
356 * REWIND_FORCE: *p is explicit, but tok is full, force rewinding *p.
357 * REWIND_LATER: *p is explicit and still open, postpone rewinding.
358 * REWIND_ERROR: No tok block is open at all.
361 rew_dohalt(enum mdoct tok
, enum mdoc_type type
,
362 const struct mdoc_node
*p
)
366 * No matching token, no delimiting block, no broken block.
367 * This can happen when full implicit macros are called for
368 * the first time but try to rewind their previous
371 if (MDOC_ROOT
== p
->type
)
372 return(MDOC_BLOCK
== type
&&
373 MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
?
374 REWIND_ERROR
: REWIND_NONE
);
377 * When starting to rewind, skip plain text
378 * and nodes that have already been rewound.
380 if (MDOC_TEXT
== p
->type
|| MDOC_VALID
& p
->flags
)
384 * The easiest case: Found a matching token.
385 * This applies to both blocks and elements.
389 return(p
->end
? REWIND_NONE
:
390 type
== p
->type
? REWIND_THIS
: REWIND_MORE
);
393 * While elements do require rewinding for themselves,
394 * they never affect rewinding of other nodes.
396 if (MDOC_ELEM
== p
->type
)
400 * Blocks delimited by our target token get REWIND_MORE.
401 * Blocks delimiting our target token get REWIND_NONE.
405 if (MDOC_It
== p
->tok
)
409 if (MDOC_BODY
== p
->type
&& MDOC_Bl
== p
->tok
)
413 * XXX Badly nested block handling still fails badly
414 * when one block is breaking two blocks of the same type.
415 * This is an incomplete and extremely ugly workaround,
416 * required to let the OpenBSD tree build.
419 if (MDOC_Op
== p
->tok
)
427 if (MDOC_BODY
== p
->type
&& MDOC_Sh
== p
->tok
)
431 if (MDOC_Nd
== p
->tok
|| MDOC_Ss
== p
->tok
||
440 * Default block rewinding rules.
441 * In particular, always skip block end markers,
442 * and let all blocks rewind Nm children.
444 if (ENDBODY_NOT
!= p
->end
|| MDOC_Nm
== p
->tok
||
445 (MDOC_BLOCK
== p
->type
&&
446 ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
)))
450 * By default, closing out full blocks
451 * forces closing of broken explicit blocks,
452 * while closing out partial blocks
453 * allows delayed rewinding by default.
455 return (&blk_full
== mdoc_macros
[tok
].fp
?
456 REWIND_FORCE
: REWIND_LATER
);
461 rew_elem(struct mdoc
*mdoc
, enum mdoct tok
)
466 if (MDOC_ELEM
!= n
->type
)
468 assert(MDOC_ELEM
== n
->type
);
469 assert(tok
== n
->tok
);
471 return(rew_last(mdoc
, n
));
476 * We are trying to close a block identified by tok,
477 * but the child block *broken is still open.
478 * Thus, postpone closing the tok block
479 * until the rew_sub call closing *broken.
482 make_pending(struct mdoc_node
*broken
, enum mdoct tok
,
483 struct mdoc
*mdoc
, int line
, int ppos
)
485 struct mdoc_node
*breaker
;
488 * Iterate backwards, searching for the block matching tok,
489 * that is, the block breaking the *broken block.
491 for (breaker
= broken
->parent
; breaker
; breaker
= breaker
->parent
) {
494 * If the *broken block had already been broken before
495 * and we encounter its breaker, make the tok block
496 * pending on the inner breaker.
497 * Graphically, "[A breaker=[B broken=[C->B B] tok=A] C]"
498 * becomes "[A broken=[B [C->B B] tok=A] C]"
499 * and finally "[A [B->A [C->B B] A] C]".
501 if (breaker
== broken
->pending
) {
506 if (REWIND_THIS
!= rew_dohalt(tok
, MDOC_BLOCK
, breaker
))
508 if (MDOC_BODY
== broken
->type
)
509 broken
= broken
->parent
;
513 * If another, outer breaker is already pending on
514 * the *broken block, we must not clobber the link
515 * to the outer breaker, but make it pending on the
516 * new, now inner breaker.
517 * Graphically, "[A breaker=[B broken=[C->A A] tok=B] C]"
518 * becomes "[A breaker=[B->A broken=[C A] tok=B] C]"
519 * and finally "[A [B->A [C->B A] B] C]".
521 if (broken
->pending
) {
522 struct mdoc_node
*taker
;
525 * If the breaker had also been broken before,
526 * it cannot take on the outer breaker itself,
527 * but must hand it on to its own breakers.
528 * Graphically, this is the following situation:
529 * "[A [B breaker=[C->B B] broken=[D->A A] tok=C] D]"
530 * "[A taker=[B->A breaker=[C->B B] [D->C A] C] D]"
533 while (taker
->pending
)
534 taker
= taker
->pending
;
535 taker
->pending
= broken
->pending
;
537 broken
->pending
= breaker
;
538 mandoc_vmsg(MANDOCERR_SCOPENEST
, mdoc
->parse
, line
, ppos
,
539 "%s breaks %s", mdoc_macronames
[tok
],
540 mdoc_macronames
[broken
->tok
]);
545 * Found no matching block for tok.
546 * Are you trying to close a block that is not open?
553 rew_sub(enum mdoc_type t
, struct mdoc
*mdoc
,
554 enum mdoct tok
, int line
, int ppos
)
560 switch (rew_dohalt(tok
, t
, n
)) {
565 (MDOC_NEWLINE
& mdoc
->flags
&&
566 ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
));
569 mandoc_vmsg(MANDOCERR_SCOPEBROKEN
, mdoc
->parse
,
570 line
, ppos
, "%s breaks %s",
571 mdoc_macronames
[tok
],
572 mdoc_macronames
[n
->tok
]);
576 (MDOC_NEWLINE
& mdoc
->flags
? 1 : 0);
580 if (make_pending(n
, tok
, mdoc
, line
, ppos
) ||
585 mdoc_pmsg(mdoc
, line
, ppos
, MANDOCERR_NOSCOPE
);
592 if ( ! rew_last(mdoc
, n
))
596 * The current block extends an enclosing block.
597 * Now that the current block ends, close the enclosing block, too.
599 while (NULL
!= (n
= n
->pending
)) {
600 if ( ! rew_last(mdoc
, n
))
602 if (MDOC_HEAD
== n
->type
&&
603 ! mdoc_body_alloc(mdoc
, n
->line
, n
->pos
, n
->tok
))
611 * Allocate a word and check whether it's punctuation or not.
612 * Punctuation consists of those tokens found in mdoc_isdelim().
615 dword(struct mdoc
*mdoc
, int line
, int col
, const char *p
,
616 enum mdelim d
, int may_append
)
623 ! ((MDOC_SYNOPSIS
| MDOC_KEEP
| MDOC_SMOFF
) & mdoc
->flags
) &&
624 DELIM_NONE
== d
&& MDOC_TEXT
== mdoc
->last
->type
&&
625 DELIM_NONE
== mdoc_isdelim(mdoc
->last
->string
)) {
626 mdoc_word_append(mdoc
, p
);
630 if ( ! mdoc_word_alloc(mdoc
, line
, col
, p
))
634 mdoc
->last
->flags
|= MDOC_DELIMO
;
637 * Closing delimiters only suppress the preceding space
638 * when they follow something, not when they start a new
639 * block or element, and not when they follow `No'.
641 * XXX Explicitly special-casing MDOC_No here feels
642 * like a layering violation. Find a better way
643 * and solve this in the code related to `No'!
646 else if (DELIM_CLOSE
== d
&& mdoc
->last
->prev
&&
647 mdoc
->last
->prev
->tok
!= MDOC_No
&&
648 mdoc
->last
->parent
->tok
!= MDOC_Fd
)
649 mdoc
->last
->flags
|= MDOC_DELIMC
;
655 append_delims(struct mdoc
*mdoc
, int line
, int *pos
, char *buf
)
661 if ('\0' == buf
[*pos
])
666 ac
= mdoc_zargs(mdoc
, line
, pos
, buf
, &p
);
668 if (ARGS_ERROR
== ac
)
670 else if (ARGS_EOLN
== ac
)
673 dword(mdoc
, line
, la
, p
, DELIM_MAX
, 1);
676 * If we encounter end-of-sentence symbols, then trigger
679 * XXX: it's easy to allow this to propagate outward to
680 * the last symbol, such that `. )' will cause the
681 * correct double-spacing. However, (1) groff isn't
682 * smart enough to do this and (2) it would require
683 * knowing which symbols break this behaviour, for
684 * example, `. ;' shouldn't propagate the double-space.
686 if (mandoc_eos(p
, strlen(p
), 0))
687 mdoc
->last
->flags
|= MDOC_EOS
;
695 * Close out block partial/full explicit.
698 blk_exp_close(MACRO_PROT_ARGS
)
700 struct mdoc_node
*body
; /* Our own body. */
701 struct mdoc_node
*later
; /* A sub-block starting later. */
702 struct mdoc_node
*n
; /* For searching backwards. */
704 int j
, lastarg
, maxargs
, flushed
, nl
;
706 enum mdoct atok
, ntok
;
709 nl
= MDOC_NEWLINE
& mdoc
->flags
;
716 mdoc
->flags
&= ~MDOC_KEEP
;
723 * Search backwards for beginnings of blocks,
724 * both of our own and of pending sub-blocks.
728 for (n
= mdoc
->last
; n
; n
= n
->parent
) {
729 if (MDOC_VALID
& n
->flags
)
732 /* Remember the start of our own body. */
733 if (MDOC_BODY
== n
->type
&& atok
== n
->tok
) {
734 if (ENDBODY_NOT
== n
->end
)
739 if (MDOC_BLOCK
!= n
->type
|| MDOC_Nm
== n
->tok
)
741 if (atok
== n
->tok
) {
745 * Found the start of our own block.
746 * When there is no pending sub block,
747 * just proceed to closing out.
753 * When there is a pending sub block,
754 * postpone closing out the current block
755 * until the rew_sub() closing out the sub-block.
757 make_pending(later
, tok
, mdoc
, line
, ppos
);
760 * Mark the place where the formatting - but not
761 * the scope - of the current block ends.
763 if ( ! mdoc_endbody_alloc(mdoc
, line
, ppos
,
764 atok
, body
, ENDBODY_SPACE
))
770 * When finding an open sub block, remember the last
771 * open explicit block, or, in case there are only
772 * implicit ones, the first open implicit block.
775 MDOC_EXPLICIT
& mdoc_macros
[later
->tok
].flags
)
777 if (MDOC_It
!= n
->tok
)
781 if ( ! (MDOC_CALLABLE
& mdoc_macros
[tok
].flags
)) {
782 /* FIXME: do this in validate */
784 mdoc_pmsg(mdoc
, line
, ppos
, MANDOCERR_ARGSLOST
);
786 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
788 return(rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
));
791 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
794 if (NULL
== later
&& maxargs
> 0)
795 if ( ! mdoc_tail_alloc(mdoc
, line
, ppos
, rew_alt(tok
)))
798 for (flushed
= j
= 0; ; j
++) {
801 if (j
== maxargs
&& ! flushed
) {
802 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
807 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
809 if (ARGS_ERROR
== ac
)
811 if (ARGS_PUNCT
== ac
)
816 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
818 if (MDOC_MAX
== ntok
) {
819 if ( ! dword(mdoc
, line
, lastarg
, p
, DELIM_MAX
,
820 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
826 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
831 mdoc
->flags
&= ~MDOC_NEWLINE
;
833 if ( ! mdoc_macro(mdoc
, ntok
, line
, lastarg
, pos
, buf
))
838 if ( ! flushed
&& ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
843 return(append_delims(mdoc
, line
, pos
, buf
));
848 in_line(MACRO_PROT_ARGS
)
850 int la
, scope
, cnt
, nc
, nl
;
855 struct mdoc_arg
*arg
;
858 nl
= MDOC_NEWLINE
& mdoc
->flags
;
861 * Whether we allow ignored elements (those without content,
862 * usually because of reserved words) to squeak by.
884 for (arg
= NULL
;; ) {
886 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
888 if (ARGV_WORD
== av
) {
901 for (cnt
= scope
= 0;; ) {
903 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
905 if (ARGS_ERROR
== ac
)
909 if (ARGS_PUNCT
== ac
)
912 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
915 * In this case, we've located a submacro and must
916 * execute it. Close out scope, if open. If no
917 * elements have been generated, either create one (nc)
918 * or raise a warning.
921 if (MDOC_MAX
!= ntok
) {
922 if (scope
&& ! rew_elem(mdoc
, tok
))
924 if (nc
&& 0 == cnt
) {
925 if ( ! mdoc_elem_alloc(mdoc
, line
,
928 if ( ! rew_last(mdoc
, mdoc
->last
))
930 } else if ( ! nc
&& 0 == cnt
) {
932 mdoc_pmsg(mdoc
, line
, ppos
,
933 MANDOCERR_MACROEMPTY
);
936 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
940 return(append_delims(mdoc
, line
, pos
, buf
));
944 * Non-quote-enclosed punctuation. Set up our scope, if
945 * a word; rewind the scope, if a delimiter; then append
949 d
= ARGS_QWORD
== ac
? DELIM_NONE
: mdoc_isdelim(p
);
951 if (DELIM_NONE
!= d
) {
953 * If we encounter closing punctuation, no word
954 * has been omitted, no scope is open, and we're
955 * allowed to have an empty element, then start
956 * a new scope. `Ar', `Fl', and `Li', only do
957 * this once per invocation. There may be more
958 * of these (all of them?).
960 if (0 == cnt
&& (nc
|| MDOC_Li
== tok
) &&
961 DELIM_CLOSE
== d
&& ! scope
) {
962 if ( ! mdoc_elem_alloc(mdoc
, line
,
965 if (MDOC_Ar
== tok
|| MDOC_Li
== tok
||
971 * Close out our scope, if one is open, before
974 if (scope
&& ! rew_elem(mdoc
, tok
))
977 } else if ( ! scope
) {
978 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
986 if ( ! dword(mdoc
, line
, la
, p
, d
,
987 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
991 * `Fl' macros have their scope re-opened with each new
992 * word so that the `-' can be added to each one without
993 * having to parse out spaces.
995 if (scope
&& MDOC_Fl
== tok
) {
996 if ( ! rew_elem(mdoc
, tok
))
1002 if (scope
&& ! rew_elem(mdoc
, tok
))
1006 * If no elements have been collected and we're allowed to have
1007 * empties (nc), open a scope and close it out. Otherwise,
1011 if (nc
&& 0 == cnt
) {
1012 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1014 if ( ! rew_last(mdoc
, mdoc
->last
))
1016 } else if ( ! nc
&& 0 == cnt
) {
1017 mdoc_argv_free(arg
);
1018 mdoc_pmsg(mdoc
, line
, ppos
, MANDOCERR_MACROEMPTY
);
1023 return(append_delims(mdoc
, line
, pos
, buf
));
1028 blk_full(MACRO_PROT_ARGS
)
1030 int la
, nl
, nparsed
;
1031 struct mdoc_arg
*arg
;
1032 struct mdoc_node
*head
; /* save of head macro */
1033 struct mdoc_node
*body
; /* save of body macro */
1034 struct mdoc_node
*n
;
1037 enum margserr ac
, lac
;
1041 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1043 /* Close out prior implicit scope. */
1045 if ( ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
)) {
1046 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1048 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1053 * This routine accommodates implicitly- and explicitly-scoped
1054 * macro openings. Implicit ones first close out prior scope
1055 * (seen above). Delay opening the head until necessary to
1056 * allow leading punctuation to print. Special consideration
1057 * for `It -column', which has phrase-part syntax instead of
1058 * regular child nodes.
1061 for (arg
= NULL
;; ) {
1063 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1065 if (ARGV_WORD
== av
) {
1070 if (ARGV_EOLN
== av
)
1075 mdoc_argv_free(arg
);
1079 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, arg
))
1085 * Exception: Heads of `It' macros in `-diag' lists are not
1086 * parsed, even though `It' macros in general are parsed.
1088 nparsed
= MDOC_It
== tok
&&
1089 MDOC_Bl
== mdoc
->last
->parent
->tok
&&
1090 LIST_diag
== mdoc
->last
->parent
->norm
->Bl
.type
;
1093 * The `Nd' macro has all arguments in its body: it's a hybrid
1094 * of block partial-explicit and full-implicit. Stupid.
1097 if (MDOC_Nd
== tok
) {
1098 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1101 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1103 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1109 mdoc
->flags
|= MDOC_KEEP
;
1115 /* Initialise last-phrase-type with ARGS_PEND. */
1116 lac
= ARGS_ERROR
== ac
? ARGS_PEND
: ac
;
1117 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1119 if (ARGS_PUNCT
== ac
)
1122 if (ARGS_ERROR
== ac
)
1125 if (ARGS_EOLN
== ac
) {
1126 if (ARGS_PPHRASE
!= lac
&& ARGS_PHRASE
!= lac
)
1129 * This is necessary: if the last token on a
1130 * line is a `Ta' or tab, then we'll get
1131 * ARGS_EOLN, so we must be smart enough to
1132 * reopen our scope if the last parse was a
1133 * phrase or partial phrase.
1135 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1137 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1144 * Emit leading punctuation (i.e., punctuation before
1145 * the MDOC_HEAD) for non-phrase types.
1150 ARGS_PHRASE
!= ac
&&
1151 ARGS_PPHRASE
!= ac
&&
1153 DELIM_OPEN
== mdoc_isdelim(p
)) {
1154 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1159 /* Open a head if one hasn't been opened. */
1162 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1167 if (ARGS_PHRASE
== ac
||
1169 ARGS_PPHRASE
== ac
) {
1171 * If we haven't opened a body yet, rewind the
1172 * head; if we have, rewind that instead.
1175 mtt
= body
? MDOC_BODY
: MDOC_HEAD
;
1176 if ( ! rew_sub(mtt
, mdoc
, tok
, line
, ppos
))
1179 /* Then allocate our body context. */
1181 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1186 * Process phrases: set whether we're in a
1187 * partial-phrase (this effects line handling)
1188 * then call down into the phrase parser.
1191 if (ARGS_PPHRASE
== ac
)
1192 mdoc
->flags
|= MDOC_PPHRASE
;
1193 if (ARGS_PEND
== ac
&& ARGS_PPHRASE
== lac
)
1194 mdoc
->flags
|= MDOC_PPHRASE
;
1196 if ( ! phrase(mdoc
, line
, la
, buf
))
1199 mdoc
->flags
&= ~MDOC_PPHRASE
;
1203 ntok
= nparsed
|| ARGS_QWORD
== ac
?
1204 MDOC_MAX
: lookup(tok
, p
);
1206 if (MDOC_MAX
== ntok
) {
1207 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1208 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1213 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1219 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1224 if (nl
&& ! append_delims(mdoc
, line
, pos
, buf
))
1227 /* If we've already opened our body, exit now. */
1233 * If there is an open (i.e., unvalidated) sub-block requiring
1234 * explicit close-out, postpone switching the current block from
1235 * head to body until the rew_sub() call closing out that
1238 for (n
= mdoc
->last
; n
&& n
!= head
; n
= n
->parent
) {
1239 if (MDOC_BLOCK
== n
->type
&&
1240 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
&&
1241 ! (MDOC_VALID
& n
->flags
)) {
1247 /* Close out scopes to remain in a consistent state. */
1249 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1251 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1255 if ( ! (MDOC_FREECOL
& mdoc
->flags
))
1258 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1260 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1263 mdoc
->flags
&= ~MDOC_FREECOL
;
1269 blk_part_imp(MACRO_PROT_ARGS
)
1275 struct mdoc_node
*blk
; /* saved block context */
1276 struct mdoc_node
*body
; /* saved body context */
1277 struct mdoc_node
*n
;
1279 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1282 * A macro that spans to the end of the line. This is generally
1283 * (but not necessarily) called as the first macro. The block
1284 * has a head as the immediate child, which is always empty,
1285 * followed by zero or more opening punctuation nodes, then the
1286 * body (which may be empty, depending on the macro), then zero
1287 * or more closing punctuation nodes.
1290 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, NULL
))
1295 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1297 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1301 * Open the body scope "on-demand", that is, after we've
1302 * processed all our the leading delimiters (open parenthesis,
1306 for (body
= NULL
; ; ) {
1308 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1310 if (ARGS_ERROR
== ac
)
1312 if (ARGS_EOLN
== ac
)
1314 if (ARGS_PUNCT
== ac
)
1317 if (NULL
== body
&& ARGS_QWORD
!= ac
&&
1318 DELIM_OPEN
== mdoc_isdelim(p
)) {
1319 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1325 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1330 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1332 if (MDOC_MAX
== ntok
) {
1333 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1334 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1339 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1344 /* Clean-ups to leave in a consistent state. */
1347 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1352 for (n
= body
->child
; n
&& n
->next
; n
= n
->next
)
1356 * End of sentence spacing: if the last node is a text node and
1357 * has a trailing period, then mark it as being end-of-sentence.
1360 if (n
&& MDOC_TEXT
== n
->type
&& n
->string
)
1361 if (mandoc_eos(n
->string
, strlen(n
->string
), 1))
1362 n
->flags
|= MDOC_EOS
;
1364 /* Up-propagate the end-of-space flag. */
1366 if (n
&& (MDOC_EOS
& n
->flags
)) {
1367 body
->flags
|= MDOC_EOS
;
1368 body
->parent
->flags
|= MDOC_EOS
;
1372 * If there is an open sub-block requiring explicit close-out,
1373 * postpone closing out the current block
1374 * until the rew_sub() call closing out the sub-block.
1376 for (n
= mdoc
->last
; n
&& n
!= body
&& n
!= blk
->parent
;
1378 if (MDOC_BLOCK
== n
->type
&&
1379 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
&&
1380 ! (MDOC_VALID
& n
->flags
)) {
1381 make_pending(n
, tok
, mdoc
, line
, ppos
);
1382 if ( ! mdoc_endbody_alloc(mdoc
, line
, ppos
,
1383 tok
, body
, ENDBODY_NOSPACE
))
1390 * If we can't rewind to our body, then our scope has already
1391 * been closed by another macro (like `Oc' closing `Op'). This
1392 * is ugly behaviour nodding its head to OpenBSD's overwhelming
1393 * crufty use of `Op' breakage.
1396 mandoc_vmsg(MANDOCERR_SCOPENEST
, mdoc
->parse
, line
, ppos
,
1397 "%s broken", mdoc_macronames
[tok
]);
1399 if (n
&& ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1402 /* Standard appending of delimiters. */
1404 if (nl
&& ! append_delims(mdoc
, line
, pos
, buf
))
1407 /* Rewind scope, if applicable. */
1409 if (n
&& ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1412 /* Move trailing .Ns out of scope. */
1414 for (n
= body
->child
; n
&& n
->next
; n
= n
->next
)
1416 if (n
&& MDOC_Ns
== n
->tok
)
1417 mdoc_node_relink(mdoc
, n
);
1424 blk_part_exp(MACRO_PROT_ARGS
)
1428 struct mdoc_node
*head
; /* keep track of head */
1429 struct mdoc_node
*body
; /* keep track of body */
1433 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1436 * The opening of an explicit macro having zero or more leading
1437 * punctuation nodes; a head with optional single element (the
1438 * case of `Eo'); and a body that may be empty.
1441 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, NULL
))
1444 for (head
= body
= NULL
; ; ) {
1446 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1448 if (ARGS_ERROR
== ac
)
1450 if (ARGS_PUNCT
== ac
)
1452 if (ARGS_EOLN
== ac
)
1455 /* Flush out leading punctuation. */
1457 if (NULL
== head
&& ARGS_QWORD
!= ac
&&
1458 DELIM_OPEN
== mdoc_isdelim(p
)) {
1459 assert(NULL
== body
);
1460 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1466 assert(NULL
== body
);
1467 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1473 * `Eo' gobbles any data into the head, but most other
1474 * macros just immediately close out and begin the body.
1479 /* No check whether it's a macro! */
1481 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
, 0))
1484 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1486 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1494 assert(NULL
!= head
&& NULL
!= body
);
1496 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1498 if (MDOC_MAX
== ntok
) {
1499 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1500 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1505 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1510 /* Clean-up to leave in a consistent state. */
1513 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1517 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1519 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1523 /* Standard appending of delimiters. */
1527 return(append_delims(mdoc
, line
, pos
, buf
));
1533 in_line_argn(MACRO_PROT_ARGS
)
1535 int la
, flushed
, j
, maxargs
, nl
;
1538 struct mdoc_arg
*arg
;
1542 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1545 * A line macro that has a fixed number of arguments (maxargs).
1546 * Only open the scope once the first non-leading-punctuation is
1547 * found (unless MDOC_IGNDELIM is noted, like in `Pf'), then
1548 * keep it open until the maximum number of arguments are
1572 for (arg
= NULL
; ; ) {
1574 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1576 if (ARGV_WORD
== av
) {
1581 if (ARGV_EOLN
== av
)
1586 mdoc_argv_free(arg
);
1590 for (flushed
= j
= 0; ; ) {
1592 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1594 if (ARGS_ERROR
== ac
)
1596 if (ARGS_PUNCT
== ac
)
1598 if (ARGS_EOLN
== ac
)
1601 if ( ! (MDOC_IGNDELIM
& mdoc_macros
[tok
].flags
) &&
1602 ARGS_QWORD
!= ac
&& 0 == j
&&
1603 DELIM_OPEN
== mdoc_isdelim(p
)) {
1604 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1608 if ( ! mdoc_elem_alloc(mdoc
, line
, la
, tok
, arg
))
1611 if (j
== maxargs
&& ! flushed
) {
1612 if ( ! rew_elem(mdoc
, tok
))
1617 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1619 if (MDOC_MAX
!= ntok
) {
1620 if ( ! flushed
&& ! rew_elem(mdoc
, tok
))
1623 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1629 if ( ! (MDOC_IGNDELIM
& mdoc_macros
[tok
].flags
) &&
1632 DELIM_NONE
!= mdoc_isdelim(p
)) {
1633 if ( ! rew_elem(mdoc
, tok
))
1638 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1639 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1644 if (0 == j
&& ! mdoc_elem_alloc(mdoc
, line
, la
, tok
, arg
))
1647 /* Close out in a consistent state. */
1649 if ( ! flushed
&& ! rew_elem(mdoc
, tok
))
1653 return(append_delims(mdoc
, line
, pos
, buf
));
1658 in_line_eoln(MACRO_PROT_ARGS
)
1663 struct mdoc_arg
*arg
;
1667 assert( ! (MDOC_PARSED
& mdoc_macros
[tok
].flags
));
1670 rew_sub(MDOC_BLOCK
, mdoc
, MDOC_Nm
, line
, ppos
);
1672 /* Parse macro arguments. */
1674 for (arg
= NULL
; ; ) {
1676 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1678 if (ARGV_WORD
== av
) {
1682 if (ARGV_EOLN
== av
)
1687 mdoc_argv_free(arg
);
1691 /* Open element scope. */
1693 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1696 /* Parse argument terms. */
1700 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1702 if (ARGS_ERROR
== ac
)
1704 if (ARGS_EOLN
== ac
)
1707 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1709 if (MDOC_MAX
== ntok
) {
1710 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1711 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1716 if ( ! rew_elem(mdoc
, tok
))
1718 return(mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
));
1721 /* Close out (no delimiters). */
1723 return(rew_elem(mdoc
, tok
));
1729 ctx_synopsis(MACRO_PROT_ARGS
)
1733 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1735 /* If we're not in the SYNOPSIS, go straight to in-line. */
1736 if ( ! (MDOC_SYNOPSIS
& mdoc
->flags
))
1737 return(in_line(mdoc
, tok
, line
, ppos
, pos
, buf
));
1739 /* If we're a nested call, same place. */
1741 return(in_line(mdoc
, tok
, line
, ppos
, pos
, buf
));
1744 * XXX: this will open a block scope; however, if later we end
1745 * up formatting the block scope, then child nodes will inherit
1746 * the formatting. Be careful.
1749 return(blk_full(mdoc
, tok
, line
, ppos
, pos
, buf
));
1750 assert(MDOC_Vt
== tok
);
1751 return(blk_part_imp(mdoc
, tok
, line
, ppos
, pos
, buf
));
1757 obsolete(MACRO_PROT_ARGS
)
1760 mdoc_pmsg(mdoc
, line
, ppos
, MANDOCERR_MACROOBS
);
1766 * Phrases occur within `Bl -column' entries, separated by `Ta' or tabs.
1767 * They're unusual because they're basically free-form text until a
1768 * macro is encountered.
1771 phrase(struct mdoc
*mdoc
, int line
, int ppos
, char *buf
)
1778 for (pos
= ppos
; ; ) {
1781 ac
= mdoc_zargs(mdoc
, line
, &pos
, buf
, &p
);
1783 if (ARGS_ERROR
== ac
)
1785 if (ARGS_EOLN
== ac
)
1788 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup_raw(p
);
1790 if (MDOC_MAX
== ntok
) {
1791 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
, 1))
1796 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, &pos
, buf
))
1798 return(append_delims(mdoc
, line
, &pos
, buf
));
1807 phrase_ta(MACRO_PROT_ARGS
)
1809 struct mdoc_node
*n
;
1815 /* Make sure we are in a column list or ignore this macro. */
1817 while (NULL
!= n
&& MDOC_Bl
!= n
->tok
)
1819 if (NULL
== n
|| LIST_column
!= n
->norm
->Bl
.type
) {
1820 mdoc_pmsg(mdoc
, line
, ppos
, MANDOCERR_STRAYTA
);
1824 /* Advance to the next column. */
1825 if ( ! rew_sub(MDOC_BODY
, mdoc
, MDOC_It
, line
, ppos
))
1827 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, MDOC_It
))
1832 ac
= mdoc_zargs(mdoc
, line
, pos
, buf
, &p
);
1834 if (ARGS_ERROR
== ac
)
1836 if (ARGS_EOLN
== ac
)
1839 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup_raw(p
);
1841 if (MDOC_MAX
== ntok
) {
1842 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1843 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1848 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1850 return(append_delims(mdoc
, line
, pos
, buf
));