]> git.cameronkatri.com Git - mandoc.git/blob - man_action.c
Explicitly account for \*(Ba when checking for delims. Noted by Jason McIntyre via...
[mandoc.git] / man_action.c
1 /* $Id: man_action.c,v 1.30 2010/03/27 10:04:56 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 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20
21 #include <assert.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "libman.h"
26 #include "libmandoc.h"
27
28 struct actions {
29 int (*post)(struct man *);
30 };
31
32 static int post_TH(struct man *);
33 static int post_de(struct man *);
34 static int post_fi(struct man *);
35 static int post_nf(struct man *);
36
37 const struct actions man_actions[MAN_MAX] = {
38 { NULL }, /* br */
39 { post_TH }, /* TH */
40 { NULL }, /* SH */
41 { NULL }, /* SS */
42 { NULL }, /* TP */
43 { NULL }, /* LP */
44 { NULL }, /* PP */
45 { NULL }, /* P */
46 { NULL }, /* IP */
47 { NULL }, /* HP */
48 { NULL }, /* SM */
49 { NULL }, /* SB */
50 { NULL }, /* BI */
51 { NULL }, /* IB */
52 { NULL }, /* BR */
53 { NULL }, /* RB */
54 { NULL }, /* R */
55 { NULL }, /* B */
56 { NULL }, /* I */
57 { NULL }, /* IR */
58 { NULL }, /* RI */
59 { NULL }, /* na */
60 { NULL }, /* i */
61 { NULL }, /* sp */
62 { post_nf }, /* nf */
63 { post_fi }, /* fi */
64 { NULL }, /* r */
65 { NULL }, /* RE */
66 { NULL }, /* RS */
67 { NULL }, /* DT */
68 { NULL }, /* UC */
69 { NULL }, /* PD */
70 { NULL }, /* Sp */
71 { post_nf }, /* Vb */
72 { post_fi }, /* Ve */
73 { post_de }, /* de */
74 { post_de }, /* dei */
75 { post_de }, /* am */
76 { post_de }, /* ami */
77 { post_de }, /* ig */
78 { NULL }, /* . */
79 };
80
81
82 int
83 man_action_post(struct man *m)
84 {
85
86 if (MAN_ACTED & m->last->flags)
87 return(1);
88 m->last->flags |= MAN_ACTED;
89
90 switch (m->last->type) {
91 case (MAN_TEXT):
92 /* FALLTHROUGH */
93 case (MAN_ROOT):
94 return(1);
95 default:
96 break;
97 }
98
99 if (NULL == man_actions[m->last->tok].post)
100 return(1);
101 return((*man_actions[m->last->tok].post)(m));
102 }
103
104
105 static int
106 post_fi(struct man *m)
107 {
108
109 if ( ! (MAN_LITERAL & m->flags))
110 if ( ! man_nwarn(m, m->last, WNLITERAL))
111 return(0);
112 m->flags &= ~MAN_LITERAL;
113 return(1);
114 }
115
116
117 static int
118 post_de(struct man *m)
119 {
120
121 /*
122 * XXX: for the time being, we indiscriminately remove roff
123 * instructions from the parse stream.
124 */
125 if (MAN_BLOCK == m->last->type)
126 man_node_delete(m, m->last);
127 return(1);
128 }
129
130
131 static int
132 post_nf(struct man *m)
133 {
134
135 if (MAN_LITERAL & m->flags)
136 if ( ! man_nwarn(m, m->last, WOLITERAL))
137 return(0);
138 m->flags |= MAN_LITERAL;
139 return(1);
140 }
141
142
143 static int
144 post_TH(struct man *m)
145 {
146 struct man_node *n;
147 char *ep;
148 long lval;
149
150 if (m->meta.title)
151 free(m->meta.title);
152 if (m->meta.vol)
153 free(m->meta.vol);
154 if (m->meta.source)
155 free(m->meta.source);
156
157 m->meta.title = m->meta.vol = m->meta.source = NULL;
158 m->meta.msec = 0;
159 m->meta.date = 0;
160
161 /* ->TITLE<- MSEC DATE SOURCE VOL */
162
163 n = m->last->child;
164 assert(n);
165 m->meta.title = mandoc_strdup(n->string);
166
167 /* TITLE ->MSEC<- DATE SOURCE VOL */
168
169 n = n->next;
170 assert(n);
171
172 lval = strtol(n->string, &ep, 10);
173 if (n->string[0] != '\0' && *ep == '\0')
174 m->meta.msec = (int)lval;
175 else if ( ! man_nwarn(m, n, WMSEC))
176 return(0);
177
178 /* TITLE MSEC ->DATE<- SOURCE VOL */
179
180 n = n->next;
181 if (n) {
182 m->meta.date = mandoc_a2time
183 (MTIME_ISO_8601, n->string);
184
185 if (0 == m->meta.date) {
186 if ( ! man_nwarn(m, n, WDATE))
187 return(0);
188 m->meta.date = time(NULL);
189 }
190 } else
191 m->meta.date = time(NULL);
192
193 /* TITLE MSEC DATE ->SOURCE<- VOL */
194
195 if (n && (n = n->next))
196 m->meta.source = mandoc_strdup(n->string);
197
198 /* TITLE MSEC DATE SOURCE ->VOL<- */
199
200 if (n && (n = n->next))
201 m->meta.vol = mandoc_strdup(n->string);
202
203 /*
204 * Remove the `TH' node after we've processed it for our
205 * meta-data.
206 */
207 man_node_delete(m, m->last);
208 return(1);
209 }