forked from InitWare/iw-docbook2mdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
131 lines (118 loc) · 3.04 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* $Id: main.c,v 1.10 2019/05/01 09:02:25 schwarze Exp $ */
/*
* Copyright (c) 2014 Kristaps Dzonsons <[email protected]>
* Copyright (c) 2019 Ingo Schwarze <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <getopt.h>
#include <libgen.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "node.h"
#include "parse.h"
#include "reorg.h"
#include "format.h"
/*
* The steering function of the docbook2mdoc(1) program.
*/
enum outt {
OUTT_MDOC = 0,
OUTT_TREE,
OUTT_LINT
};
int
main(int argc, char *argv[])
{
struct parse *parser;
struct ptree *tree;
const char *progname;
const char *bname, *fname, *sec;
int ch, fd, rc, warn;
enum outt outtype;
if ((progname = strrchr(argv[0], '/')) == NULL)
progname = argv[0];
else
progname++;
sec = NULL;
warn = 0;
outtype = OUTT_MDOC;
while ((ch = getopt(argc, argv, "s:T:W")) != -1) {
switch (ch) {
case 's':
sec = optarg;
break;
case 'T':
if (strcmp(optarg, "mdoc") == 0)
outtype = OUTT_MDOC;
else if (strcmp(optarg, "tree") == 0)
outtype = OUTT_TREE;
else if (strcmp(optarg, "lint") == 0)
outtype = OUTT_LINT;
else {
fprintf(stderr, "%s: Bad argument\n",
optarg);
goto usage;
}
break;
case 'W':
warn = 1;
break;
default:
goto usage;
}
}
argc -= optind;
argv += optind;
/*
* Argument processing:
* Open file or use standard input.
*/
if (argc > 1) {
fprintf(stderr, "%s: Too many arguments\n", argv[1]);
goto usage;
} else if (argc == 1) {
fname = argv[0];
fd = -1;
} else {
fname = "<stdin>";
fd = STDIN_FILENO;
}
/* Parse. */
parser = parse_alloc(warn);
tree = parse_file(parser, fd, fname);
ptree_reorg(tree, sec);
rc = tree->flags & TREE_ERROR ? 3 : tree->flags & TREE_WARN ? 2 : 0;
/* Format. */
if (outtype != OUTT_LINT && tree->root != NULL) {
if (rc > 2)
fputc('\n', stderr);
if (outtype == OUTT_MDOC) {
if (fd == -1 && (bname = basename(fname)) != NULL)
printf(".\\\" automatically generated "
"with %s %s\n", progname, bname);
ptree_print_mdoc(tree);
} else
ptree_print_tree(tree);
if (rc > 2)
fputs("\nThe output may be incomplete, see the "
"parse error reported above.\n\n", stderr);
}
parse_free(parser);
return rc;
usage:
fprintf(stderr, "usage: %s [-W] [-s section] "
"[-T mdoc | tree | lint] [input_filename]\n", progname);
return 5;
}