]>
git.cameronkatri.com Git - mandoc.git/blob - libmdoc.h
1 /* $Id: libmdoc.h,v 1.65 2011/03/17 09:16:38 kristaps Exp $ */
3 * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
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.
23 MDOC_NEXT_SIBLING
= 0,
28 void *data
; /* private application data */
29 mandocmsg msg
; /* message callback */
31 #define MDOC_HALT (1 << 0) /* error in parse: halt */
32 #define MDOC_LITERAL (1 << 1) /* in a literal scope */
33 #define MDOC_PBODY (1 << 2) /* in the document body */
34 #define MDOC_NEWLINE (1 << 3) /* first macro/text in a line */
35 #define MDOC_PHRASELIT (1 << 4) /* literal within a partila phrase */
36 #define MDOC_PPHRASE (1 << 5) /* within a partial phrase */
37 #define MDOC_FREECOL (1 << 6) /* `It' invocation should close */
38 #define MDOC_SYNOPSIS (1 << 7) /* SYNOPSIS-style formatting */
39 enum mdoc_next next
; /* where to put the next node */
40 struct mdoc_node
*last
; /* the last node parsed */
41 struct mdoc_node
*first
; /* the first node parsed */
42 struct mdoc_meta meta
; /* document meta-data */
43 enum mdoc_sec lastnamed
;
44 enum mdoc_sec lastsec
;
45 struct regset
*regs
; /* registers */
48 #define MACRO_PROT_ARGS struct mdoc *m, \
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)
62 #define MDOC_IGNDELIM (1 << 4)
63 /* Reserved words in arguments treated as text. */
84 extern const struct mdoc_macro
*const mdoc_macros
;
88 #define mdoc_pmsg(m, l, p, t) \
89 (*(m)->msg)((t), (m)->data, (l), (p), NULL)
90 #define mdoc_nmsg(m, n, t) \
91 (*(m)->msg)((t), (m)->data, (n)->line, (n)->pos, NULL)
92 int mdoc_vmsg(struct mdoc
*, enum mandocerr
,
93 int, int, const char *, ...);
94 int mdoc_macro(MACRO_PROT_ARGS
);
95 int mdoc_word_alloc(struct mdoc
*,
96 int, int, const char *);
97 int mdoc_elem_alloc(struct mdoc
*, int, int,
98 enum mdoct
, struct mdoc_arg
*);
99 int mdoc_block_alloc(struct mdoc
*, int, int,
100 enum mdoct
, struct mdoc_arg
*);
101 int mdoc_head_alloc(struct mdoc
*, int, int, enum mdoct
);
102 int mdoc_tail_alloc(struct mdoc
*, int, int, enum mdoct
);
103 int mdoc_body_alloc(struct mdoc
*, int, int, enum mdoct
);
104 int mdoc_endbody_alloc(struct mdoc
*m
, int line
, int pos
,
105 enum mdoct tok
, struct mdoc_node
*body
,
106 enum mdoc_endbody end
);
107 void mdoc_node_delete(struct mdoc
*, struct mdoc_node
*);
108 void mdoc_hash_init(void);
109 enum mdoct
mdoc_hash_find(const char *);
110 size_t mdoc_isescape(const char *);
111 enum mdoc_sec
mdoc_str2sec(const char *);
112 time_t mdoc_atotime(const char *);
113 size_t mdoc_macro2len(enum mdoct
);
114 const char *mdoc_a2att(const char *);
115 const char *mdoc_a2lib(const char *);
116 const char *mdoc_a2st(const char *);
117 const char *mdoc_a2arch(const char *);
118 const char *mdoc_a2vol(const char *);
119 const char *mdoc_a2msec(const char *);
120 int mdoc_valid_pre(struct mdoc
*, struct mdoc_node
*);
121 int mdoc_valid_post(struct mdoc
*);
122 enum margverr
mdoc_argv(struct mdoc
*, int, enum mdoct
,
123 struct mdoc_arg
**, int *, char *);
124 void mdoc_argv_free(struct mdoc_arg
*);
125 void mdoc_argn_free(struct mdoc_arg
*, int);
126 enum margserr
mdoc_args(struct mdoc
*, int,
127 int *, char *, enum mdoct
, char **);
128 enum margserr
mdoc_zargs(struct mdoc
*, int,
129 int *, char *, int, char **);
130 #define ARGS_DELIM (1 << 1)
131 #define ARGS_TABSEP (1 << 2)
132 #define ARGS_NOWARN (1 << 3)
134 int mdoc_macroend(struct mdoc
*);
138 #endif /*!LIBMDOC_H*/