1 .\" $Id: man.3,v 1.28 2011/01/01 12:59:17 kristaps Exp $
3 .\" Copyright (c) 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.
17 .Dd $Mdocdate: January 1 2011 $
29 .Nd man macro compiler library
33 .Vt extern const char * const * man_macronames;
37 .Fa "const struct tbl_span *span"
41 .Fa "struct regset *regs"
46 .Fn man_endparse "struct man *man"
48 .Fn man_free "struct man *man"
49 .Ft "const struct man_meta *"
50 .Fn man_meta "const struct man *man"
51 .Ft "const struct man_node *"
52 .Fn man_node "const struct man *man"
60 .Fn man_reset "struct man *man"
64 library parses lines of
66 input into an abstract syntax tree (AST).
68 In general, applications initiate a parsing sequence with
70 parse each line in a document with
72 close the parsing session with
74 operate over the syntax tree returned by
78 then free all allocated memory with
82 function may be used in order to reset the parser for another input
85 Beyond the full set of macros defined in
89 library also accepts the following macro:
91 .Bl -tag -width Ds -compact
94 Handled as a current-scope line macro.
100 Its values are only used privately within the library.
101 .It Vt struct man_node
104 .Sx Abstract Syntax Tree
110 Add a table span to the parsing stream.
111 Returns 0 on failure, 1 on success.
113 Allocates a parsing structure.
118 Returns NULL on failure.
119 If non-NULL, the pointer must be freed with
122 Reset the parser for another parse routine.
125 behaves as if invoked for the first time.
127 Free all resources of a parser.
128 The pointer is no longer valid after invocation.
130 Parse a nil-terminated line of input.
131 This line should not contain the trailing newline.
132 Returns 0 on failure, 1 on success.
135 is modified by this function.
137 Signals that the parse is complete.
140 is called subsequent to
142 the resulting tree is incomplete.
143 Returns 0 on failure, 1 on success.
145 Returns the first node of the parse.
150 return 0, the tree will be incomplete.
152 Returns the document's parsed meta-data.
153 If this information has not yet been supplied or
157 return 0, the data will be incomplete.
160 The following variables are also defined:
162 .It Va man_macronames
163 An array of string-ified token names.
165 .Ss Abstract Syntax Tree
168 functions produce an abstract syntax tree (AST) describing input in a
170 It may be reviewed at any time with
172 however, if called before
178 fail, it may be incomplete.
180 This AST is governed by the ontological rules dictated in
182 and derives its terminology accordingly.
184 The AST is composed of
186 nodes with element, root and text types as declared by the
189 Each node also provides its parse point (the
194 fields), its position in the tree (the
200 fields) and some type-specific data.
202 The tree itself is arranged according to the following normal form,
203 where capitalised non-terminals represent nodes.
205 .Bl -tag -width "ELEMENTXX" -compact
209 \(<- ELEMENT | TEXT | BLOCK
222 The only elements capable of nesting other elements are those with
223 next-lint scope as documented in
226 The following example reads lines from stdin and parses them, operating
227 on the finished parse tree with
229 This example does not error-check nor free memory upon failure.
230 .Bd -literal -offset indent
233 struct man_node *node;
238 bzero(®s, sizeof(struct regset));
240 man = man_alloc(®s, NULL, NULL);
244 while ((len = getline(&buf, &alloc_len, stdin)) >= 0) {
245 if (len && buflen[len - 1] = '\en')
246 buf[len - 1] = '\e0';
247 if ( ! man_parseln(man, line, buf))
248 errx(1, "man_parseln");
254 if ( ! man_endparse(man))
255 errx(1, "man_endparse");
256 if (NULL == (node = man_node(man)))
263 To compile this, execute
265 .Dl % cc main.c libman.a libmandoc.a
276 library was written by
277 .An Kristaps Dzonsons Aq kristaps@bsd.lv .