]>
git.cameronkatri.com Git - mandoc.git/blob - validate.c
1 /* $Id: validate.c,v 1.57 2009/02/24 13:57:17 kristaps Exp $ */
3 * Copyright (c) 2008 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
7 * above copyright notice and this permission notice appear in all
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
26 * Pre- and post-validate macros as they're parsed. Pre-validation
27 * occurs when the macro has been detected and its arguments parsed.
28 * Post-validation occurs when all child macros have also been parsed.
29 * In the ELEMENT case, this is simply the parameters of the macro; in
30 * the BLOCK case, this is the HEAD, BODY, TAIL and so on.
33 #define PRE_ARGS struct mdoc *mdoc, const struct mdoc_node *n
34 #define POST_ARGS struct mdoc *mdoc
36 typedef int (*v_pre
)(PRE_ARGS
);
37 typedef int (*v_post
)(POST_ARGS
);
39 /* FIXME: some sections should only occur in specific msecs. */
40 /* FIXME: ignoring Pp. */
41 /* FIXME: math symbols. */
50 static int check_parent(PRE_ARGS
, int, enum mdoc_type
);
51 static int check_msec(PRE_ARGS
, int, enum mdoc_msec
*);
52 static int check_stdarg(PRE_ARGS
);
54 static int check_text(struct mdoc
*,
55 size_t, size_t, const char *);
57 static int err_child_lt(struct mdoc
*, const char *, int);
58 static int err_child_gt(struct mdoc
*, const char *, int);
59 static int warn_child_gt(struct mdoc
*, const char *, int);
60 static int err_child_eq(struct mdoc
*, const char *, int);
61 static int warn_child_eq(struct mdoc
*, const char *, int);
63 /* Utility auxiliaries. */
65 static inline int count_child(struct mdoc
*);
66 static inline int warn_count(struct mdoc
*, const char *,
67 int, const char *, int);
68 static inline int err_count(struct mdoc
*, const char *,
69 int, const char *, int);
71 /* Specific pre-child-parse routines. */
73 static int pre_display(PRE_ARGS
);
74 static int pre_sh(PRE_ARGS
);
75 static int pre_ss(PRE_ARGS
);
76 static int pre_bd(PRE_ARGS
);
77 static int pre_bl(PRE_ARGS
);
78 static int pre_it(PRE_ARGS
);
79 static int pre_cd(PRE_ARGS
);
80 static int pre_er(PRE_ARGS
);
81 static int pre_ex(PRE_ARGS
);
82 static int pre_rv(PRE_ARGS
);
83 static int pre_an(PRE_ARGS
);
84 static int pre_st(PRE_ARGS
);
85 static int pre_prologue(PRE_ARGS
);
86 static int pre_prologue(PRE_ARGS
);
87 static int pre_prologue(PRE_ARGS
);
89 /* Specific post-child-parse routines. */
91 static int herr_ge1(POST_ARGS
);
92 static int herr_le1(POST_ARGS
);
93 static int herr_eq0(POST_ARGS
);
94 static int eerr_eq0(POST_ARGS
);
95 static int eerr_le1(POST_ARGS
);
96 static int eerr_le2(POST_ARGS
);
97 static int eerr_eq1(POST_ARGS
);
98 static int eerr_ge1(POST_ARGS
);
99 static int ewarn_eq0(POST_ARGS
);
100 static int ewarn_eq1(POST_ARGS
);
101 static int bwarn_ge1(POST_ARGS
);
102 static int ewarn_ge1(POST_ARGS
);
103 static int ebool(POST_ARGS
);
105 static int post_sh(POST_ARGS
);
106 static int post_sh_body(POST_ARGS
);
107 static int post_sh_head(POST_ARGS
);
108 static int post_fd(POST_ARGS
);
109 static int post_bl(POST_ARGS
);
110 static int post_it(POST_ARGS
);
111 static int post_ex(POST_ARGS
);
112 static int post_an(POST_ARGS
);
113 static int post_at(POST_ARGS
);
114 static int post_xr(POST_ARGS
);
115 static int post_nm(POST_ARGS
);
116 static int post_bf(POST_ARGS
);
117 static int post_root(POST_ARGS
);
119 /* Collections of pre-child-parse routines. */
121 static v_pre pres_prologue
[] = { pre_prologue
, NULL
};
122 static v_pre pres_d1
[] = { pre_display
, NULL
};
123 static v_pre pres_bd
[] = { pre_display
, pre_bd
, NULL
};
124 static v_pre pres_bl
[] = { pre_bl
, NULL
};
125 static v_pre pres_it
[] = { pre_it
, NULL
};
126 static v_pre pres_ss
[] = { pre_ss
, NULL
};
127 static v_pre pres_sh
[] = { pre_sh
, NULL
};
128 static v_pre pres_cd
[] = { pre_cd
, NULL
};
129 static v_pre pres_er
[] = { pre_er
, NULL
};
130 static v_pre pres_ex
[] = { pre_ex
, NULL
};
131 static v_pre pres_rv
[] = { pre_rv
, NULL
};
132 static v_pre pres_an
[] = { pre_an
, NULL
};
133 static v_pre pres_st
[] = { pre_st
, NULL
};
135 /* Collections of post-child-parse routines. */
137 static v_post posts_bool
[] = { eerr_eq1
, ebool
, NULL
};
138 static v_post posts_bd
[] = { herr_eq0
, bwarn_ge1
, NULL
};
139 static v_post posts_text
[] = { eerr_ge1
, NULL
};
140 static v_post posts_wtext
[] = { ewarn_ge1
, NULL
};
141 static v_post posts_notext
[] = { eerr_eq0
, NULL
};
142 static v_post posts_wline
[] = { bwarn_ge1
, herr_eq0
, NULL
};
143 static v_post posts_sh
[] = { herr_ge1
, bwarn_ge1
, post_sh
, NULL
};
144 static v_post posts_bl
[] = { herr_eq0
, bwarn_ge1
, post_bl
, NULL
};
145 static v_post posts_it
[] = { post_it
, NULL
};
146 static v_post posts_in
[] = { ewarn_eq1
, NULL
};
147 static v_post posts_ss
[] = { herr_ge1
, NULL
};
148 static v_post posts_pf
[] = { eerr_eq1
, NULL
};
149 static v_post posts_pp
[] = { ewarn_eq0
, NULL
};
150 static v_post posts_ex
[] = { eerr_le1
, post_ex
, NULL
};
151 static v_post posts_an
[] = { post_an
, NULL
};
152 static v_post posts_at
[] = { post_at
, NULL
};
153 static v_post posts_xr
[] = { eerr_ge1
, eerr_le2
, post_xr
, NULL
};
154 static v_post posts_nm
[] = { post_nm
, NULL
};
155 static v_post posts_bf
[] = { herr_le1
, post_bf
, NULL
};
156 static v_post posts_rs
[] = { herr_eq0
, bwarn_ge1
, NULL
};
157 static v_post posts_fo
[] = { bwarn_ge1
, NULL
};
158 static v_post posts_bk
[] = { herr_eq0
, bwarn_ge1
, NULL
};
159 static v_post posts_fd
[] = { ewarn_ge1
, post_fd
, NULL
};
161 /* Per-macro pre- and post-child-check routine collections. */
163 const struct valids mdoc_valids
[MDOC_MAX
] = {
164 { NULL
, NULL
}, /* \" */
165 { pres_prologue
, posts_text
}, /* Dd */
166 { pres_prologue
, NULL
}, /* Dt */
167 { pres_prologue
, NULL
}, /* Os */
168 { pres_sh
, posts_sh
}, /* Sh */
169 { pres_ss
, posts_ss
}, /* Ss */
170 { NULL
, posts_pp
}, /* Pp */
171 { pres_d1
, posts_wline
}, /* D1 */
172 { pres_d1
, posts_wline
}, /* Dl */
173 { pres_bd
, posts_bd
}, /* Bd */
174 { NULL
, NULL
}, /* Ed */
175 { pres_bl
, posts_bl
}, /* Bl */
176 { NULL
, NULL
}, /* El */
177 { pres_it
, posts_it
}, /* It */
178 { NULL
, posts_text
}, /* Ad */
179 { pres_an
, posts_an
}, /* An */
180 { NULL
, NULL
}, /* Ar */
181 { pres_cd
, posts_text
}, /* Cd */
182 { NULL
, NULL
}, /* Cm */
183 { NULL
, posts_text
}, /* Dv */
184 { pres_er
, posts_text
}, /* Er */
185 { NULL
, posts_text
}, /* Ev */
186 { pres_ex
, posts_ex
}, /* Ex */
187 { NULL
, posts_text
}, /* Fa */
188 { NULL
, posts_fd
}, /* Fd */
189 { NULL
, NULL
}, /* Fl */
190 { NULL
, posts_text
}, /* Fn */
191 { NULL
, posts_wtext
}, /* Ft */
192 { NULL
, posts_text
}, /* Ic */
193 { NULL
, posts_in
}, /* In */
194 { NULL
, posts_text
}, /* Li */
195 { NULL
, posts_wtext
}, /* Nd */
196 { NULL
, posts_nm
}, /* Nm */
197 { NULL
, posts_wline
}, /* Op */
198 { NULL
, NULL
}, /* Ot */
199 { NULL
, NULL
}, /* Pa */
200 { pres_rv
, posts_notext
}, /* Rv */
201 { pres_st
, posts_notext
}, /* St */
202 { NULL
, posts_text
}, /* Va */
203 { NULL
, posts_text
}, /* Vt */
204 { NULL
, posts_xr
}, /* Xr */
205 { NULL
, posts_text
}, /* %A */
206 { NULL
, posts_text
}, /* %B */
207 { NULL
, posts_text
}, /* %D */
208 { NULL
, posts_text
}, /* %I */
209 { NULL
, posts_text
}, /* %J */
210 { NULL
, posts_text
}, /* %N */
211 { NULL
, posts_text
}, /* %O */
212 { NULL
, posts_text
}, /* %P */
213 { NULL
, posts_text
}, /* %R */
214 { NULL
, posts_text
}, /* %T */
215 { NULL
, posts_text
}, /* %V */
216 { NULL
, NULL
}, /* Ac */
217 { NULL
, NULL
}, /* Ao */
218 { NULL
, posts_wline
}, /* Aq */
219 { NULL
, posts_at
}, /* At */
220 { NULL
, NULL
}, /* Bc */
221 { NULL
, posts_bf
}, /* Bf */
222 { NULL
, NULL
}, /* Bo */
223 { NULL
, posts_wline
}, /* Bq */
224 { NULL
, NULL
}, /* Bsx */
225 { NULL
, NULL
}, /* Bx */
226 { NULL
, posts_bool
}, /* Db */
227 { NULL
, NULL
}, /* Dc */
228 { NULL
, NULL
}, /* Do */
229 { NULL
, posts_wline
}, /* Dq */
230 { NULL
, NULL
}, /* Ec */
231 { NULL
, NULL
}, /* Ef */
232 { NULL
, posts_text
}, /* Em */
233 { NULL
, NULL
}, /* Eo */
234 { NULL
, NULL
}, /* Fx */
235 { NULL
, posts_text
}, /* Ms */
236 { NULL
, posts_notext
}, /* No */
237 { NULL
, posts_notext
}, /* Ns */
238 { NULL
, NULL
}, /* Nx */
239 { NULL
, NULL
}, /* Ox */
240 { NULL
, NULL
}, /* Pc */
241 { NULL
, posts_pf
}, /* Pf */
242 { NULL
, NULL
}, /* Po */
243 { NULL
, posts_wline
}, /* Pq */
244 { NULL
, NULL
}, /* Qc */
245 { NULL
, posts_wline
}, /* Ql */
246 { NULL
, NULL
}, /* Qo */
247 { NULL
, posts_wline
}, /* Qq */
248 { NULL
, NULL
}, /* Re */
249 { NULL
, posts_rs
}, /* Rs */
250 { NULL
, NULL
}, /* Sc */
251 { NULL
, NULL
}, /* So */
252 { NULL
, posts_wline
}, /* Sq */
253 { NULL
, posts_bool
}, /* Sm */
254 { NULL
, posts_text
}, /* Sx */
255 { NULL
, posts_text
}, /* Sy */
256 { NULL
, posts_text
}, /* Tn */
257 { NULL
, NULL
}, /* Ux */
258 { NULL
, NULL
}, /* Xc */
259 { NULL
, NULL
}, /* Xo */
260 { NULL
, posts_fo
}, /* Fo */
261 { NULL
, NULL
}, /* Fc */
262 { NULL
, NULL
}, /* Oo */
263 { NULL
, NULL
}, /* Oc */
264 { NULL
, posts_bk
}, /* Bk */
265 { NULL
, NULL
}, /* Ek */
266 { NULL
, posts_notext
}, /* Bt */
267 { NULL
, NULL
}, /* Hf */
268 { NULL
, NULL
}, /* Fr */
269 { NULL
, posts_notext
}, /* Ud */
274 mdoc_valid_pre(struct mdoc
*mdoc
,
275 const struct mdoc_node
*node
)
278 struct mdoc_arg
*argv
;
279 size_t argc
, i
, j
, line
, pos
;
282 if (MDOC_TEXT
== node
->type
) {
283 tp
= node
->data
.text
.string
;
286 return(check_text(mdoc
, line
, pos
, tp
));
289 if (MDOC_BLOCK
== node
->type
|| MDOC_ELEM
== node
->type
) {
290 argv
= MDOC_BLOCK
== node
->type
?
291 node
->data
.block
.argv
:
292 node
->data
.elem
.argv
;
293 argc
= MDOC_BLOCK
== node
->type
?
294 node
->data
.block
.argc
:
295 node
->data
.elem
.argc
;
297 for (i
= 0; i
< argc
; i
++) {
300 for (j
= 0; j
< argv
[i
].sz
; j
++) {
301 tp
= argv
[i
].value
[j
];
304 if ( ! check_text(mdoc
, line
, pos
, tp
))
310 if (NULL
== mdoc_valids
[node
->tok
].pre
)
312 for (p
= mdoc_valids
[node
->tok
].pre
; *p
; p
++)
313 if ( ! (*p
)(mdoc
, node
))
320 mdoc_valid_post(struct mdoc
*mdoc
)
325 * This check occurs after the macro's children have been filled
326 * in: postfix validation. Since this happens when we're
327 * rewinding the scope tree, it's possible to have multiple
328 * invocations (as by design, for now), we set bit MDOC_VALID to
329 * indicate that we've validated.
332 if (MDOC_VALID
& mdoc
->last
->flags
)
334 mdoc
->last
->flags
|= MDOC_VALID
;
336 if (MDOC_TEXT
== mdoc
->last
->type
)
338 if (MDOC_ROOT
== mdoc
->last
->type
)
339 return(post_root(mdoc
));
341 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
343 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
353 warn_count(struct mdoc
*m
, const char *k
,
354 int want
, const char *v
, int has
)
357 return(mdoc_warn(m
, WARN_SYNTAX
,
358 "suggests %s %d %s (has %d)",
364 err_count(struct mdoc
*m
, const char *k
,
365 int want
, const char *v
, int has
)
368 return(mdoc_err(m
, "requires %s %d %s (has %d)",
374 count_child(struct mdoc
*mdoc
)
379 for (i
= 0, n
= mdoc
->last
->child
; n
; n
= n
->next
, i
++)
387 * Build these up with macros because they're basically the same check
388 * for different inequalities. Yes, this could be done with functions,
389 * but this is reasonable for now.
392 #define CHECK_CHILD_DEFN(lvl, name, ineq) \
394 lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz) \
397 if ((i = count_child(mdoc)) ineq sz) \
399 return(lvl##_count(mdoc, #ineq, sz, p, i)); \
402 #define CHECK_BODY_DEFN(name, lvl, func, num) \
404 b##lvl##_##name(POST_ARGS) \
406 if (MDOC_BODY != mdoc->last->type) \
408 return(func(mdoc, "multiline parameters", (num))); \
411 #define CHECK_ELEM_DEFN(name, lvl, func, num) \
413 e##lvl##_##name(POST_ARGS) \
415 assert(MDOC_ELEM == mdoc->last->type); \
416 return(func(mdoc, "line parameters", (num))); \
419 #define CHECK_HEAD_DEFN(name, lvl, func, num) \
421 h##lvl##_##name(POST_ARGS) \
423 if (MDOC_HEAD != mdoc->last->type) \
425 return(func(mdoc, "multiline parameters", (num))); \
429 CHECK_CHILD_DEFN(warn
, gt
, >) /* warn_child_gt() */
430 CHECK_CHILD_DEFN(err
, gt
, >) /* err_child_gt() */
431 CHECK_CHILD_DEFN(warn
, eq
, ==) /* warn_child_eq() */
432 CHECK_CHILD_DEFN(err
, eq
, ==) /* err_child_eq() */
433 CHECK_CHILD_DEFN(err
, lt
, <) /* err_child_lt() */
434 CHECK_BODY_DEFN(ge1
, warn
, warn_child_gt
, 0) /* bwarn_ge1() */
435 CHECK_ELEM_DEFN(eq1
, warn
, warn_child_eq
, 1) /* ewarn_eq1() */
436 CHECK_ELEM_DEFN(eq0
, warn
, warn_child_eq
, 0) /* ewarn_eq0() */
437 CHECK_ELEM_DEFN(ge1
, warn
, warn_child_gt
, 0) /* ewarn_gt1() */
438 CHECK_ELEM_DEFN(eq1
, err
, err_child_eq
, 1) /* eerr_eq1() */
439 CHECK_ELEM_DEFN(le2
, err
, err_child_lt
, 3) /* eerr_le2() */
440 CHECK_ELEM_DEFN(le1
, err
, err_child_lt
, 2) /* eerr_le1() */
441 CHECK_ELEM_DEFN(eq0
, err
, err_child_eq
, 0) /* eerr_eq0() */
442 CHECK_ELEM_DEFN(ge1
, err
, err_child_gt
, 0) /* eerr_ge1() */
443 CHECK_HEAD_DEFN(eq0
, err
, err_child_eq
, 0) /* herr_eq0() */
444 CHECK_HEAD_DEFN(le1
, err
, err_child_lt
, 2) /* herr_le1() */
445 CHECK_HEAD_DEFN(ge1
, err
, err_child_gt
, 0) /* herr_ge1() */
449 check_stdarg(PRE_ARGS
)
452 if (MDOC_Std
== n
->data
.elem
.argv
[0].arg
&&
453 1 == n
->data
.elem
.argc
)
456 return(mdoc_nwarn(mdoc
, n
, WARN_COMPAT
,
457 "one argument suggested"));
462 check_msec(PRE_ARGS
, int sz
, enum mdoc_msec
*msecs
)
466 for (i
= 0; i
< sz
; i
++)
467 if (msecs
[i
] == mdoc
->meta
.msec
)
469 return(mdoc_nwarn(mdoc
, n
, WARN_COMPAT
,
470 "invalid manual section"));
475 check_text(struct mdoc
*mdoc
, size_t line
, size_t pos
, const char *p
)
480 if ( ! isprint(*p
) && '\t' != *p
)
481 return(mdoc_perr(mdoc
, line
, pos
,
482 "invalid characters"));
485 if ((c
= mdoc_isescape(p
))) {
489 return(mdoc_perr(mdoc
, line
, pos
,
490 "invalid escape sequence"));
500 check_parent(PRE_ARGS
, int tok
, enum mdoc_type t
)
504 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
505 (t
== n
->parent
->type
))
508 return(mdoc_nerr(mdoc
, n
, "require parent %s",
509 MDOC_ROOT
== t
? "<root>" : mdoc_macronames
[tok
]));
515 pre_display(PRE_ARGS
)
517 struct mdoc_node
*node
;
519 /* Display elements (`Bd', `D1'...) cannot be nested. */
521 if (MDOC_BLOCK
!= n
->type
)
525 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
526 if (MDOC_BLOCK
== node
->type
)
527 if (MDOC_Bd
== node
->tok
)
532 return(mdoc_nerr(mdoc
, n
, "displays may not be nested"));
540 struct mdoc_arg
*argv
;
543 if (MDOC_BLOCK
!= n
->type
)
546 argc
= n
->data
.block
.argc
;
548 /* Make sure that only one type of list is specified. */
551 for (i
= 0, type
= err
= 0; i
< (int)argc
; i
++) {
552 argv
= &n
->data
.block
.argv
[i
];
578 return(mdoc_perr(mdoc
, argv
->line
, argv
->pos
,
579 "multiple types specified"));
587 return(mdoc_err(mdoc
, "no type specified"));
595 struct mdoc_arg
*argv
;
598 if (MDOC_BLOCK
!= n
->type
)
601 argc
= n
->data
.block
.argc
;
603 /* Make sure that only one type of display is specified. */
606 for (i
= 0, err
= type
= 0; ! err
&& i
< (int)argc
; i
++) {
607 argv
= &n
->data
.block
.argv
[i
];
612 case (MDOC_Unfilled
):
621 return(mdoc_perr(mdoc
, argv
->line
, argv
->pos
,
622 "multiple types specified"));
630 return(mdoc_err(mdoc
, "no type specified"));
638 if (MDOC_BLOCK
!= n
->type
)
640 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
648 if (MDOC_BLOCK
!= n
->type
)
650 return(check_parent(mdoc
, n
, -1, MDOC_ROOT
));
658 /* TODO: -width attribute must be specified for -tag. */
659 /* TODO: children too big for -width? */
661 if (MDOC_BLOCK
!= n
->type
)
663 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
671 if (1 == n
->data
.elem
.argc
)
673 return(mdoc_nerr(mdoc
, n
, "one argument required"));
681 if (1 >= n
->data
.elem
.argc
)
683 return(mdoc_nerr(mdoc
, n
, "one argument allowed"));
690 enum mdoc_msec msecs
[] = { MSEC_2
, MSEC_3
};
692 if ( ! check_msec(mdoc
, n
, 2, msecs
))
694 return(check_stdarg(mdoc
, n
));
701 enum mdoc_msec msecs
[] = { MSEC_1
, MSEC_6
, MSEC_8
};
703 if ( ! check_msec(mdoc
, n
, 3, msecs
))
705 return(check_stdarg(mdoc
, n
));
712 enum mdoc_msec msecs
[] = { MSEC_2
};
714 return(check_msec(mdoc
, n
, 1, msecs
));
721 enum mdoc_msec msecs
[] = { MSEC_4
};
723 return(check_msec(mdoc
, n
, 1, msecs
));
728 pre_prologue(PRE_ARGS
)
731 if (SEC_PROLOGUE
!= mdoc
->lastnamed
)
732 return(mdoc_nerr(mdoc
, n
, "prologue only"));
734 /* Check for ordering. */
738 if (mdoc
->meta
.title
&& mdoc
->meta
.date
)
740 return(mdoc_nerr(mdoc
, n
, "prologue out-of-order"));
742 if (NULL
== mdoc
->meta
.title
&& mdoc
->meta
.date
)
744 return(mdoc_nerr(mdoc
, n
, "prologue out-of-order"));
746 if (NULL
== mdoc
->meta
.title
&& 0 == mdoc
->meta
.date
)
748 return(mdoc_nerr(mdoc
, n
, "prologue out-of-order"));
754 /* Check for repetition. */
758 if (NULL
== mdoc
->meta
.os
)
762 if (0 == mdoc
->meta
.date
)
766 if (NULL
== mdoc
->meta
.title
)
774 return(mdoc_nerr(mdoc
, n
, "prologue repetition"));
782 struct mdoc_node
*head
;
784 if (MDOC_BLOCK
!= mdoc
->last
->type
)
787 head
= mdoc
->last
->data
.block
.head
;
789 if (0 == mdoc
->last
->data
.block
.argc
) {
790 if (NULL
== head
->child
)
791 return(mdoc_err(mdoc
, "argument expected"));
793 p
= head
->child
->data
.text
.string
;
794 if (xstrcmp(p
, "Em"))
796 else if (xstrcmp(p
, "Li"))
798 else if (xstrcmp(p
, "Sm"))
800 return(mdoc_nerr(mdoc
, head
->child
, "invalid font"));
804 return(mdoc_err(mdoc
, "argument expected"));
806 if (1 == mdoc
->last
->data
.block
.argc
)
808 return(mdoc_err(mdoc
, "argument expected"));
816 if (mdoc
->last
->child
)
820 return(mdoc_err(mdoc
, "not yet invoked with name"));
829 if (NULL
== (n
= mdoc
->last
->child
->next
))
831 if (MSEC_DEFAULT
!= mdoc_atomsec(n
->data
.text
.string
))
833 return(mdoc_nerr(mdoc
, n
, "invalid manual section"));
841 if (NULL
== mdoc
->last
->child
)
843 if (ATT_DEFAULT
!= mdoc_atoatt(mdoc
->last
->child
->data
.text
.string
))
845 return(mdoc_err(mdoc
, "require valid symbol"));
853 if (0 != mdoc
->last
->data
.elem
.argc
) {
854 if (NULL
== mdoc
->last
->child
)
856 return(mdoc_err(mdoc
, "argument(s) expected"));
859 if (mdoc
->last
->child
)
861 return(mdoc_err(mdoc
, "argument(s) expected"));
869 if (0 == mdoc
->last
->data
.elem
.argc
) {
870 if (mdoc
->last
->child
)
872 return(mdoc_err(mdoc
, "argument(s) expected"));
874 if (mdoc
->last
->child
)
875 return(mdoc_err(mdoc
, "argument(s) expected"));
876 if (1 != mdoc
->last
->data
.elem
.argc
)
877 return(mdoc_err(mdoc
, "argument(s) expected"));
878 if (MDOC_Std
!= mdoc
->last
->data
.elem
.argv
[0].arg
)
879 return(mdoc_err(mdoc
, "argument(s) expected"));
889 #define TYPE_NONE (0)
890 #define TYPE_BODY (1)
891 #define TYPE_HEAD (2)
892 #define TYPE_OHEAD (3)
896 if (MDOC_BLOCK
!= mdoc
->last
->type
)
899 n
= mdoc
->last
->parent
->parent
;
901 argc
= n
->data
.block
.argc
;
905 /* Some types require block-head, some not. */
908 for (i
= 0; TYPE_NONE
== type
&& i
< (int)argc
; i
++)
909 switch (n
->data
.block
.argv
[i
].arg
) {
920 sv
= n
->data
.block
.argv
[i
].arg
;
932 sv
= n
->data
.block
.argv
[i
].arg
;
936 sv
= n
->data
.block
.argv
[i
].arg
;
942 assert(TYPE_NONE
!= type
);
944 n
= mdoc
->last
->data
.block
.head
;
946 if (TYPE_HEAD
== type
) {
947 if (NULL
== n
->child
)
948 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
949 "argument(s) suggested"))
952 n
= mdoc
->last
->data
.block
.body
;
953 if (NULL
== n
->child
)
954 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
955 "multiline body suggested"))
958 } else if (TYPE_BODY
== type
) {
960 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
961 "no argument suggested"))
964 n
= mdoc
->last
->data
.block
.body
;
965 if (NULL
== n
->child
)
966 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
967 "multiline body suggested"))
970 if (NULL
== n
->child
)
971 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
972 "argument(s) suggested"))
975 n
= mdoc
->last
->data
.block
.body
;
977 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
978 "no multiline body suggested"))
982 if (MDOC_Column
!= sv
)
985 argc
= mdoc
->last
->parent
->parent
->data
.block
.argv
->sz
;
986 n
= mdoc
->last
->data
.block
.head
->child
;
988 for (i
= 0; n
; n
= n
->next
)
994 return(mdoc_err(mdoc
, "need %zu columns (have %d)", argc
, i
));
1005 struct mdoc_node
*n
;
1007 if (MDOC_BODY
!= mdoc
->last
->type
)
1011 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1012 if (MDOC_BLOCK
== n
->type
)
1013 if (MDOC_It
== n
->tok
)
1021 return(mdoc_nerr(mdoc
, n
, "bad child of parent list"));
1026 ebool(struct mdoc
*mdoc
)
1028 struct mdoc_node
*n
;
1031 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1032 if (MDOC_TEXT
!= n
->type
)
1034 if (xstrcmp(n
->data
.text
.string
, "on"))
1036 if (xstrcmp(n
->data
.text
.string
, "off"))
1043 return(mdoc_nerr(mdoc
, n
, "expected boolean"));
1048 post_root(POST_ARGS
)
1051 if (NULL
== mdoc
->first
->child
)
1052 return(mdoc_err(mdoc
, "document lacks data"));
1053 if (SEC_PROLOGUE
== mdoc
->lastnamed
)
1054 return(mdoc_err(mdoc
, "document lacks prologue"));
1056 if (MDOC_BLOCK
!= mdoc
->first
->child
->type
)
1057 return(mdoc_err(mdoc
, "lacking post-prologue %s",
1058 mdoc_macronames
[MDOC_Sh
]));
1059 if (MDOC_Sh
!= mdoc
->first
->child
->tok
)
1060 return(mdoc_err(mdoc
, "lacking post-prologue %s",
1061 mdoc_macronames
[MDOC_Sh
]));
1071 if (MDOC_HEAD
== mdoc
->last
->type
)
1072 return(post_sh_head(mdoc
));
1073 if (MDOC_BODY
== mdoc
->last
->type
)
1074 return(post_sh_body(mdoc
));
1081 post_sh_body(POST_ARGS
)
1083 struct mdoc_node
*n
;
1085 if (SEC_NAME
!= mdoc
->lastnamed
)
1089 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1090 * macros (can have multiple `Nm' and one `Nd'). Note that the
1091 * children of the BODY declaration can also be "text".
1094 if (NULL
== (n
= mdoc
->last
->child
))
1095 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1096 "section should have %s and %s",
1097 mdoc_macronames
[MDOC_Nm
],
1098 mdoc_macronames
[MDOC_Nd
]));
1100 for ( ; n
&& n
->next
; n
= n
->next
) {
1101 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1103 if (MDOC_TEXT
== n
->type
)
1105 if ( ! (mdoc_nwarn(mdoc
, n
, WARN_SYNTAX
,
1106 "section should have %s first",
1107 mdoc_macronames
[MDOC_Nm
])))
1111 if (MDOC_ELEM
== n
->type
&& MDOC_Nd
== n
->tok
)
1114 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1115 "section should have %s last",
1116 mdoc_macronames
[MDOC_Nd
]));
1121 post_sh_head(POST_ARGS
)
1126 assert(MDOC_Sh
== mdoc
->last
->tok
);
1128 if ( ! xstrlcats(buf
, mdoc
->last
->child
, sizeof(buf
)))
1129 return(mdoc_err(mdoc
, "argument too long"));
1131 sec
= mdoc_atosec(buf
);
1133 if (SEC_BODY
== mdoc
->lastnamed
&& SEC_NAME
!= sec
)
1134 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1135 "section NAME should be first"));
1136 if (SEC_CUSTOM
== sec
)
1138 if (sec
== mdoc
->lastnamed
)
1139 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1140 "section repeated"));
1141 if (sec
< mdoc
->lastnamed
)
1142 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1143 "section out of order"));
1153 if (SEC_SYNOPSIS
== mdoc
->last
->sec
)
1155 return(mdoc_warn(mdoc
, WARN_COMPAT
,
1156 "suggested only in section SYNOPSIS"));