]> git.cameronkatri.com Git - mandoc.git/blob - libmdoc.h
mdoc error/warn macros replaced with real functions for GCC2 support (miod@openbsd...
[mandoc.git] / libmdoc.h
1 /* $Id: libmdoc.h,v 1.8 2009/06/15 09:55:43 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
4 *
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.
8 *
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.
16 */
17 #ifndef LIBMDOC_H
18 #define LIBMDOC_H
19
20 #include "mdoc.h"
21
22 enum mdoc_next {
23 MDOC_NEXT_SIBLING = 0,
24 MDOC_NEXT_CHILD
25 };
26
27 struct mdoc {
28 void *data;
29 struct mdoc_cb cb;
30 void *htab;
31 int flags;
32 #define MDOC_HALT (1 << 0)
33 #define MDOC_LITERAL (1 << 1)
34 int pflags;
35 enum mdoc_next next;
36 struct mdoc_node *last;
37 struct mdoc_node *first;
38 struct mdoc_meta meta;
39 enum mdoc_sec lastnamed;
40 enum mdoc_sec lastsec;
41 };
42
43
44 #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, int line, \
45 int ppos, int *pos, char *buf
46
47 struct mdoc_macro {
48 int (*fp)(MACRO_PROT_ARGS);
49 int flags;
50 #define MDOC_CALLABLE (1 << 0)
51 #define MDOC_PARSED (1 << 1)
52 #define MDOC_EXPLICIT (1 << 2)
53 #define MDOC_PROLOGUE (1 << 3)
54 #define MDOC_IGNDELIM (1 << 4)
55 /* Reserved words in arguments treated as text. */
56 };
57
58 extern const struct mdoc_macro *const mdoc_macros;
59
60 __BEGIN_DECLS
61
62 /*
63 * When GCC2 is deprecated, most of these can be reverted to #define
64 * as mdoc_vmsg using __VA_ARGS__. Until then, use real functions.
65 */
66 int mdoc_vwarn(struct mdoc *, int, int,
67 enum mdoc_warn, const char *, ...);
68 void mdoc_vmsg(struct mdoc *, int, int,
69 const char *, ...);
70 int mdoc_verr(struct mdoc *, int, int,
71 const char *, ...);
72 int mdoc_nwarn(struct mdoc *, const struct mdoc_node *,
73 enum mdoc_warn, const char *, ...);
74 int mdoc_nerr(struct mdoc *, const struct mdoc_node *,
75 const char *, ...);
76 int mdoc_warn(struct mdoc *, enum mdoc_warn, const char *, ...);
77 int mdoc_err(struct mdoc *, const char *, ...);
78 void mdoc_msg(struct mdoc *, const char *, ...);
79 void mdoc_pmsg(struct mdoc *, int, int, const char *, ...);
80 int mdoc_pwarn(struct mdoc *, int, int,
81 enum mdoc_warn,const char *, ...);
82 int mdoc_perr(struct mdoc *, int, int, const char *, ...);
83 int mdoc_macro(MACRO_PROT_ARGS);
84 int mdoc_word_alloc(struct mdoc *,
85 int, int, const char *);
86 int mdoc_elem_alloc(struct mdoc *, int, int,
87 int, struct mdoc_arg *);
88 int mdoc_block_alloc(struct mdoc *, int, int,
89 int, struct mdoc_arg *);
90 int mdoc_head_alloc(struct mdoc *, int, int, int);
91 int mdoc_tail_alloc(struct mdoc *, int, int, int);
92 int mdoc_body_alloc(struct mdoc *, int, int, int);
93 void mdoc_node_free(struct mdoc_node *);
94 void mdoc_node_freelist(struct mdoc_node *);
95 void *mdoc_hash_alloc(void);
96 int mdoc_hash_find(const void *, const char *);
97 void mdoc_hash_free(void *);
98 int mdoc_iscdelim(char);
99 int mdoc_isdelim(const char *);
100 size_t mdoc_isescape(const char *);
101 enum mdoc_sec mdoc_atosec(const char *);
102 time_t mdoc_atotime(const char *);
103
104 size_t mdoc_macro2len(int);
105 const char *mdoc_a2arch(const char *);
106 const char *mdoc_a2vol(const char *);
107 const char *mdoc_a2msec(const char *);
108 int mdoc_valid_pre(struct mdoc *,
109 const struct mdoc_node *);
110 int mdoc_valid_post(struct mdoc *);
111 int mdoc_action_pre(struct mdoc *,
112 const struct mdoc_node *);
113 int mdoc_action_post(struct mdoc *);
114 int mdoc_argv(struct mdoc *, int, int,
115 struct mdoc_arg **, int *, char *);
116 #define ARGV_ERROR (-1)
117 #define ARGV_EOLN (0)
118 #define ARGV_ARG (1)
119 #define ARGV_WORD (2)
120 void mdoc_argv_free(struct mdoc_arg *);
121 int mdoc_args(struct mdoc *, int,
122 int *, char *, int, char **);
123 #define ARGS_ERROR (-1)
124 #define ARGS_EOLN (0)
125 #define ARGS_WORD (1)
126 #define ARGS_PUNCT (2)
127 #define ARGS_QWORD (3)
128 #define ARGS_PHRASE (4)
129
130 int mdoc_macroend(struct mdoc *);
131
132 __END_DECLS
133
134 #endif /*!LIBMDOC_H*/