1 /* $Id: demandoc.c,v 1.33 2019/03/03 11:01:15 schwarze Exp $ */
3 * Copyright (c) 2011 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.
19 #include <sys/types.h>
32 #include "mandoc_parse.h"
34 static void pline(int, int *, int *, int);
35 static void pman(const struct roff_node
*, int *, int *, int);
36 static void pmandoc(struct mparse
*, int, const char *, int);
37 static void pmdoc(const struct roff_node
*, int *, int *, int);
38 static void pstring(const char *, int, int *, int);
39 static void usage(void);
41 static const char *progname
;
44 main(int argc
, char *argv
[])
51 progname
= "demandoc";
52 else if ((progname
= strrchr(argv
[0], '/')) == NULL
)
60 while (-1 != (ch
= getopt(argc
, argv
, "ikm:pw")))
75 return (int)MANDOCLEVEL_BADARG
;
82 mp
= mparse_alloc(MPARSE_SO
| MPARSE_UTF8
| MPARSE_LATIN1
|
83 MPARSE_VALIDATE
, MANDOC_OS_OTHER
, NULL
);
87 pmandoc(mp
, STDIN_FILENO
, "<stdin>", list
);
89 for (i
= 0; i
< argc
; i
++) {
91 if ((fd
= mparse_open(mp
, argv
[i
])) == -1) {
95 pmandoc(mp
, fd
, argv
[i
], list
);
100 return (int)MANDOCLEVEL_OK
;
107 fprintf(stderr
, "usage: %s [-w] [files...]\n", progname
);
111 pmandoc(struct mparse
*mp
, int fd
, const char *fn
, int list
)
113 struct roff_meta
*meta
;
116 mparse_readfd(mp
, fd
, fn
);
118 meta
= mparse_result(mp
);
122 if (meta
->macroset
== MACROSET_MDOC
)
123 pmdoc(meta
->first
->child
, &line
, &col
, list
);
125 pman(meta
->first
->child
, &line
, &col
, list
);
132 * Strip the escapes out of a string, emitting the results.
135 pstring(const char *p
, int col
, int *colp
, int list
)
138 const char *start
, *end
;
142 * Print as many column spaces til we achieve parity with the
147 if (list
&& '\0' != *p
) {
148 while (isspace((unsigned char)*p
))
151 while ('\'' == *p
|| '(' == *p
|| '"' == *p
)
154 emit
= isalpha((unsigned char)p
[0]) &&
155 isalpha((unsigned char)p
[1]);
157 for (start
= p
; '\0' != *p
; p
++)
160 esc
= mandoc_escape(&p
, NULL
, NULL
);
161 if (ESCAPE_ERROR
== esc
)
164 } else if (isspace((unsigned char)*p
))
170 if ('.' == *end
|| ',' == *end
||
171 '\'' == *end
|| '"' == *end
||
172 ')' == *end
|| '!' == *end
||
173 '?' == *end
|| ':' == *end
||
179 if (emit
&& end
- start
>= 1) {
180 for ( ; start
<= end
; start
++)
181 if (ASCII_HYPH
== *start
)
184 putchar((unsigned char)*start
);
188 if (isspace((unsigned char)*p
))
194 while (*colp
< col
) {
200 * Print the input word, skipping any special characters.
205 esc
= mandoc_escape(&p
, NULL
, NULL
);
206 if (ESCAPE_ERROR
== esc
)
209 putchar((unsigned char )*p
++);
215 pline(int line
, int *linep
, int *col
, int list
)
222 * Print out as many lines as needed to reach parity with the
226 while (*linep
< line
) {
235 pmdoc(const struct roff_node
*p
, int *line
, int *col
, int list
)
238 for ( ; p
; p
= p
->next
) {
239 if (NODE_LINE
& p
->flags
)
240 pline(p
->line
, line
, col
, list
);
241 if (ROFFT_TEXT
== p
->type
)
242 pstring(p
->string
, p
->pos
, col
, list
);
244 pmdoc(p
->child
, line
, col
, list
);
249 pman(const struct roff_node
*p
, int *line
, int *col
, int list
)
252 for ( ; p
; p
= p
->next
) {
253 if (NODE_LINE
& p
->flags
)
254 pline(p
->line
, line
, col
, list
);
255 if (ROFFT_TEXT
== p
->type
)
256 pstring(p
->string
, p
->pos
, col
, list
);
258 pman(p
->child
, line
, col
, list
);