]>
git.cameronkatri.com Git - mandoc.git/blob - private.h
1 /* $Id: private.h,v 1.77 2009/02/21 21:00:06 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.
25 MDOC_NEXT_SIBLING
= 0,
35 #define MDOC_HALT (1 << 0)
37 struct mdoc_node
*last
;
38 struct mdoc_node
*first
;
39 struct mdoc_meta meta
;
40 enum mdoc_sec lastnamed
;
44 /* Hard-limit of macro arguments. */
46 #define MDOC_LINEARG_MAX 9
48 /* Suggested limit of macro arguments. */
50 #define MDOC_LINEARG_SOFTMAX 9
52 #define MACRO_PROT_ARGS struct mdoc *mdoc, int tok, int line, \
53 int ppos, int *pos, char *buf
56 int (*fp
)(MACRO_PROT_ARGS
);
58 #define MDOC_CALLABLE (1 << 0)
59 #define MDOC_PARSED (1 << 1)
60 #define MDOC_EXPLICIT (1 << 2)
61 #define MDOC_PROLOGUE (1 << 3)
64 #define mdoc_nwarn(mdoc, node, type, fmt, ...) \
65 mdoc_vwarn((mdoc), (node)->line, \
66 (node)->pos, (type), (fmt), ##__VA_ARGS__)
68 #define mdoc_nerr(mdoc, node, fmt, ...) \
69 mdoc_verr((mdoc), (node)->line, \
70 (node)->pos, (fmt), ##__VA_ARGS__)
72 #define mdoc_warn(mdoc, type, fmt, ...) \
73 mdoc_vwarn((mdoc), (mdoc)->last->line, \
74 (mdoc)->last->pos, (type), (fmt), ##__VA_ARGS__)
76 #define mdoc_err(mdoc, fmt, ...) \
77 mdoc_verr((mdoc), (mdoc)->last->line, \
78 (mdoc)->last->pos, (fmt), ##__VA_ARGS__)
80 #define mdoc_msg(mdoc, fmt, ...) \
81 mdoc_vmsg((mdoc), (mdoc)->last->line, \
82 (mdoc)->last->pos, (fmt), ##__VA_ARGS__)
84 #define mdoc_pmsg(mdoc, line, pos, fmt, ...) \
85 mdoc_vmsg((mdoc), (line), \
86 (pos), (fmt), ##__VA_ARGS__)
88 #define mdoc_pwarn(mdoc, line, pos, type, fmt, ...) \
89 mdoc_vwarn((mdoc), (line), \
90 (pos), (type), (fmt), ##__VA_ARGS__)
92 #define mdoc_perr(mdoc, line, pos, fmt, ...) \
93 mdoc_verr((mdoc), (line), \
94 (pos), (fmt), ##__VA_ARGS__)
96 extern const struct mdoc_macro
*const mdoc_macros
;
100 int mdoc_vwarn(struct mdoc
*, int, int,
101 enum mdoc_warn
, const char *, ...);
102 void mdoc_vmsg(struct mdoc
*, int, int,
104 int mdoc_verr(struct mdoc
*, int, int,
107 int mdoc_macro(MACRO_PROT_ARGS
);
108 int mdoc_find(const struct mdoc
*, const char *);
109 int mdoc_word_alloc(struct mdoc
*,
110 int, int, const char *);
111 int mdoc_elem_alloc(struct mdoc
*, int, int,
112 int, size_t, const struct mdoc_arg
*);
113 int mdoc_block_alloc(struct mdoc
*, int, int,
114 int, size_t, const struct mdoc_arg
*);
115 int mdoc_root_alloc(struct mdoc
*);
116 int mdoc_head_alloc(struct mdoc
*, int, int, int);
117 int mdoc_tail_alloc(struct mdoc
*, int, int, int);
118 int mdoc_body_alloc(struct mdoc
*, int, int, int);
119 void mdoc_node_free(struct mdoc_node
*);
120 void mdoc_node_freelist(struct mdoc_node
*);
121 void mdoc_sibling(struct mdoc
*, int, struct mdoc_node
**,
122 struct mdoc_node
**, struct mdoc_node
*);
123 void *mdoc_tokhash_alloc(void);
124 int mdoc_tokhash_find(const void *, const char *);
125 void mdoc_tokhash_free(void *);
126 int mdoc_iscdelim(char);
127 enum mdoc_sec
mdoc_atosec(const char *);
128 enum mdoc_msec
mdoc_atomsec(const char *);
129 enum mdoc_vol
mdoc_atovol(const char *);
130 enum mdoc_arch
mdoc_atoarch(const char *);
131 enum mdoc_att
mdoc_atoatt(const char *);
132 time_t mdoc_atotime(const char *);
134 char *mdoc_type2a(enum mdoc_type
);
135 char *mdoc_node2a(struct mdoc_node
*);
137 int mdoc_valid_pre(struct mdoc
*, struct mdoc_node
*);
138 int mdoc_valid_post(struct mdoc
*);
139 int mdoc_action_pre(struct mdoc
*, struct mdoc_node
*);
140 int mdoc_action_post(struct mdoc
*);
142 int mdoc_argv(struct mdoc
*, int, int,
143 struct mdoc_arg
*, int *, char *);
144 #define ARGV_ERROR (-1)
145 #define ARGV_EOLN (0)
147 #define ARGV_WORD (2)
148 void mdoc_argv_free(int, struct mdoc_arg
*);
149 int mdoc_args(struct mdoc
*, int,
150 int *, char *, int, char **);
151 #define ARGS_ERROR (-1)
152 #define ARGS_EOLN (0)
153 #define ARGS_WORD (1)
154 #define ARGS_PUNCT (2)
155 #define ARGS_QWORD (3)
156 #define ARGS_PHRASE (4)
158 int xstrlcats(char *, const struct mdoc_node
*, size_t);
159 int xstrlcat(char *, const char *, size_t);
160 int xstrlcpy(char *, const char *, size_t);
161 int xstrcmp(const char *, const char *);
162 int xstrncmp(const char *, const char *, size_t);
163 void *xcalloc(size_t, size_t);
164 char *xstrdup(const char *);
166 int macro_obsolete(MACRO_PROT_ARGS
);
167 int macro_constant(MACRO_PROT_ARGS
);
168 int macro_constant_scoped(MACRO_PROT_ARGS
);
169 int macro_constant_delimited(MACRO_PROT_ARGS
);
170 int macro_text(MACRO_PROT_ARGS
);
171 int macro_scoped(MACRO_PROT_ARGS
);
172 int macro_scoped_close(MACRO_PROT_ARGS
);
173 int macro_scoped_line(MACRO_PROT_ARGS
);
174 int macro_prologue(MACRO_PROT_ARGS
);
175 int macro_end(struct mdoc
*);
179 #endif /*!PRIVATE_H*/