]>
git.cameronkatri.com Git - mandoc.git/blob - man_macro.c
1 /* $Id: man_macro.c,v 1.44 2010/05/15 22:44:04 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
34 static int blk_close(MACRO_PROT_ARGS
);
35 static int blk_exp(MACRO_PROT_ARGS
);
36 static int blk_imp(MACRO_PROT_ARGS
);
37 static int in_line_eoln(MACRO_PROT_ARGS
);
39 static int rew_scope(enum man_type
,
40 struct man
*, enum mant
);
41 static enum rew
rew_dohalt(enum mant
, enum man_type
,
42 const struct man_node
*);
43 static enum rew
rew_block(enum mant
, enum man_type
,
44 const struct man_node
*);
45 static int rew_warn(struct man
*,
46 struct man_node
*, enum merr
);
48 const struct man_macro __man_macros
[MAN_MAX
] = {
49 { in_line_eoln
, MAN_NSCOPED
}, /* br */
50 { in_line_eoln
, 0 }, /* TH */
51 { blk_imp
, MAN_SCOPED
}, /* SH */
52 { blk_imp
, MAN_SCOPED
}, /* SS */
53 { blk_imp
, MAN_SCOPED
| MAN_FSCOPED
}, /* TP */
54 { blk_imp
, 0 }, /* LP */
55 { blk_imp
, 0 }, /* PP */
56 { blk_imp
, 0 }, /* P */
57 { blk_imp
, 0 }, /* IP */
58 { blk_imp
, 0 }, /* HP */
59 { in_line_eoln
, MAN_SCOPED
}, /* SM */
60 { in_line_eoln
, MAN_SCOPED
}, /* SB */
61 { in_line_eoln
, 0 }, /* BI */
62 { in_line_eoln
, 0 }, /* IB */
63 { in_line_eoln
, 0 }, /* BR */
64 { in_line_eoln
, 0 }, /* RB */
65 { in_line_eoln
, MAN_SCOPED
}, /* R */
66 { in_line_eoln
, MAN_SCOPED
}, /* B */
67 { in_line_eoln
, MAN_SCOPED
}, /* I */
68 { in_line_eoln
, 0 }, /* IR */
69 { in_line_eoln
, 0 }, /* RI */
70 { in_line_eoln
, MAN_NSCOPED
}, /* na */
71 { in_line_eoln
, 0 }, /* i */
72 { in_line_eoln
, MAN_NSCOPED
}, /* sp */
73 { in_line_eoln
, 0 }, /* nf */
74 { in_line_eoln
, 0 }, /* fi */
75 { in_line_eoln
, 0 }, /* r */
76 { blk_close
, 0 }, /* RE */
77 { blk_exp
, MAN_EXPLICIT
}, /* RS */
78 { in_line_eoln
, 0 }, /* DT */
79 { in_line_eoln
, 0 }, /* UC */
80 { in_line_eoln
, 0 }, /* PD */
81 { in_line_eoln
, MAN_NSCOPED
}, /* Sp */
82 { in_line_eoln
, 0 }, /* Vb */
83 { in_line_eoln
, 0 }, /* Ve */
86 const struct man_macro
* const man_macros
= __man_macros
;
90 * Warn when "n" is an explicit non-roff macro.
93 rew_warn(struct man
*m
, struct man_node
*n
, enum merr er
)
96 if (er
== WERRMAX
|| MAN_BLOCK
!= n
->type
)
98 if (MAN_VALID
& n
->flags
)
100 if ( ! (MAN_EXPLICIT
& man_macros
[n
->tok
].flags
))
102 return(man_nwarn(m
, n
, er
));
107 * Rewind scope. If a code "er" != WERRMAX has been provided, it will
108 * be used if an explicit block scope is being closed out.
111 man_unscope(struct man
*m
, const struct man_node
*n
, enum merr er
)
117 while (m
->last
!= n
) {
118 if ( ! rew_warn(m
, m
->last
, er
))
120 if ( ! man_valid_post(m
))
122 if ( ! man_action_post(m
))
124 m
->last
= m
->last
->parent
;
128 if ( ! rew_warn(m
, m
->last
, er
))
130 if ( ! man_valid_post(m
))
132 if ( ! man_action_post(m
))
135 m
->next
= MAN_ROOT
== m
->last
->type
?
136 MAN_NEXT_CHILD
: MAN_NEXT_SIBLING
;
143 rew_block(enum mant ntok
, enum man_type type
, const struct man_node
*n
)
146 if (MAN_BLOCK
== type
&& ntok
== n
->parent
->tok
&&
147 MAN_BODY
== n
->parent
->type
)
149 return(ntok
== n
->tok
? REW_HALT
: REW_NOHALT
);
154 * There are three scope levels: scoped to the root (all), scoped to the
155 * section (all less sections), and scoped to subsections (all less
156 * sections and subsections).
159 rew_dohalt(enum mant tok
, enum man_type type
, const struct man_node
*n
)
163 /* We cannot progress beyond the root ever. */
164 if (MAN_ROOT
== n
->type
)
169 /* Normal nodes shouldn't go to the level of the root. */
170 if (MAN_ROOT
== n
->parent
->type
)
173 /* Already-validated nodes should be closed out. */
174 if (MAN_VALID
& n
->flags
)
177 /* First: rewind to ourselves. */
178 if (type
== n
->type
&& tok
== n
->tok
)
182 * Next follow the implicit scope-smashings as defined by man.7:
183 * section, sub-section, etc.
190 /* Rewind to a section, if a block. */
191 if (REW_NOHALT
!= (c
= rew_block(MAN_SH
, type
, n
)))
195 /* Rewind to a subsection, if a block. */
196 if (REW_NOHALT
!= (c
= rew_block(MAN_SS
, type
, n
)))
198 /* Rewind to a section, if a block. */
199 if (REW_NOHALT
!= (c
= rew_block(MAN_SH
, type
, n
)))
203 /* Rewind to an offsetter, if a block. */
204 if (REW_NOHALT
!= (c
= rew_block(MAN_RS
, type
, n
)))
206 /* Rewind to a subsection, if a block. */
207 if (REW_NOHALT
!= (c
= rew_block(MAN_SS
, type
, n
)))
209 /* Rewind to a section, if a block. */
210 if (REW_NOHALT
!= (c
= rew_block(MAN_SH
, type
, n
)))
220 * Rewinding entails ascending the parse tree until a coherent point,
221 * for example, the `SH' macro will close out any intervening `SS'
222 * scopes. When a scope is closed, it must be validated and actioned.
225 rew_scope(enum man_type type
, struct man
*m
, enum mant tok
)
231 for (n
= m
->last
; n
; n
= n
->parent
) {
233 * Whether we should stop immediately (REW_HALT), stop
234 * and rewind until this point (REW_REWIND), or keep
235 * rewinding (REW_NOHALT).
237 c
= rew_dohalt(tok
, type
, n
);
245 * Rewind until the current point. Warn if we're a roff
246 * instruction that's mowing over explicit scopes.
250 return(man_unscope(m
, n
, WERRMAX
));
255 * Close out a generic explicit macro.
259 blk_close(MACRO_PROT_ARGS
)
262 const struct man_node
*nn
;
273 for (nn
= m
->last
->parent
; nn
; nn
= nn
->parent
)
278 if ( ! man_pwarn(m
, line
, ppos
, WNOSCOPE
))
281 if ( ! rew_scope(MAN_BODY
, m
, ntok
))
283 if ( ! rew_scope(MAN_BLOCK
, m
, ntok
))
291 blk_exp(MACRO_PROT_ARGS
)
297 * Close out prior scopes. "Regular" explicit macros cannot be
298 * nested, but we allow roff macros to be placed just about
302 if ( ! rew_scope(MAN_BODY
, m
, tok
))
304 if ( ! rew_scope(MAN_BLOCK
, m
, tok
))
307 if ( ! man_block_alloc(m
, line
, ppos
, tok
))
309 if ( ! man_head_alloc(m
, line
, ppos
, tok
))
314 w
= man_args(m
, line
, pos
, buf
, &p
);
321 if ( ! man_word_alloc(m
, line
, la
, p
))
326 assert(tok
!= MAN_MAX
);
328 if ( ! rew_scope(MAN_HEAD
, m
, tok
))
330 return(man_body_alloc(m
, line
, ppos
, tok
));
336 * Parse an implicit-block macro. These contain a MAN_HEAD and a
337 * MAN_BODY contained within a MAN_BLOCK. Rules for closing out other
338 * scopes, such as `SH' closing out an `SS', are defined in the rew
342 blk_imp(MACRO_PROT_ARGS
)
348 /* Close out prior scopes. */
350 if ( ! rew_scope(MAN_BODY
, m
, tok
))
352 if ( ! rew_scope(MAN_BLOCK
, m
, tok
))
355 /* Allocate new block & head scope. */
357 if ( ! man_block_alloc(m
, line
, ppos
, tok
))
359 if ( ! man_head_alloc(m
, line
, ppos
, tok
))
364 /* Add line arguments. */
368 w
= man_args(m
, line
, pos
, buf
, &p
);
375 if ( ! man_word_alloc(m
, line
, la
, p
))
379 /* Close out head and open body (unless MAN_SCOPE). */
381 if (MAN_SCOPED
& man_macros
[tok
].flags
) {
382 /* If we're forcing scope (`TP'), keep it open. */
383 if (MAN_FSCOPED
& man_macros
[tok
].flags
) {
384 m
->flags
|= MAN_BLINE
;
386 } else if (n
== m
->last
) {
387 m
->flags
|= MAN_BLINE
;
392 if ( ! rew_scope(MAN_HEAD
, m
, tok
))
394 return(man_body_alloc(m
, line
, ppos
, tok
));
399 in_line_eoln(MACRO_PROT_ARGS
)
405 if ( ! man_elem_alloc(m
, line
, ppos
, tok
))
412 w
= man_args(m
, line
, pos
, buf
, &p
);
418 if ( ! man_word_alloc(m
, line
, la
, p
))
423 * If no arguments are specified and this is MAN_SCOPED (i.e.,
424 * next-line scoped), then set our mode to indicate that we're
425 * waiting for terms to load into our context.
428 if (n
== m
->last
&& MAN_SCOPED
& man_macros
[tok
].flags
) {
429 assert( ! (MAN_NSCOPED
& man_macros
[tok
].flags
));
430 m
->flags
|= MAN_ELINE
;
434 /* Set ignorable context, if applicable. */
436 if (MAN_NSCOPED
& man_macros
[tok
].flags
) {
437 assert( ! (MAN_SCOPED
& man_macros
[tok
].flags
));
438 m
->flags
|= MAN_ILINE
;
442 * Rewind our element scope. Note that when TH is pruned, we'll
443 * be back at the root, so make sure that we don't clobber as
447 for ( ; m
->last
; m
->last
= m
->last
->parent
) {
450 if (m
->last
->type
== MAN_ROOT
)
452 if ( ! man_valid_post(m
))
454 if ( ! man_action_post(m
))
461 * Same here regarding whether we're back at the root.
464 if (m
->last
->type
!= MAN_ROOT
&& ! man_valid_post(m
))
466 if (m
->last
->type
!= MAN_ROOT
&& ! man_action_post(m
))
469 m
->next
= MAN_ROOT
== m
->last
->type
?
470 MAN_NEXT_CHILD
: MAN_NEXT_SIBLING
;
477 man_macroend(struct man
*m
)
480 return(man_unscope(m
, m
->first
, WEXITSCOPE
));