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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
/*
* make_doc OPTIONS... [--] DOC-FILES
*
* Options are:
*
* --pandoc PANDOC
* --protos PROTOS-FILE
* --to FORMAT (html, man, latex, texinfo, etc.)
* --raise-sections
*
* Unknown options are passed through to Pandoc.
*/
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if defined(_BSD_SOURCE) || defined(_SVID_SOURCE) || (_XOPEN_SOURCE >= 500)
#include <unistd.h>
#define USE_MKSTEMP 1
#elif defined(_MSC_VER)
#define TEMPNAM(d, p) (_tempnam((d), (p)))
#else
#define TEMPNAM(d, p) (tempnam((d), (p)))
#endif
#include "aatree.h"
#include "dawk.h"
#include "make_doc.h"
dstr pandoc = "pandoc";
dstr pandoc_options = "";
dstr protos_file = "protos";
dstr to_format = "html";
dstr allegro5_cfg_filename = "";
bool raise_sections = false;
dstr tmp_preprocess_output;
dstr tmp_pandoc_output;
dstr git_ref = "master";
static Aatree *protos = &aa_nil;
static Aatree *sources = &aa_nil;
static int process_options(int argc, char *argv[]);
static void load_prototypes(const char *filename);
static void generate_temp_file(char *filename);
static void remove_temp_files(void);
int main(int argc, char *argv[])
{
argc = process_options(argc, argv);
load_prototypes(protos_file);
generate_temp_file(tmp_preprocess_output);
generate_temp_file(tmp_pandoc_output);
d_cleanup = remove_temp_files;
if (0 == strcmp(to_format, "man"))
make_man_pages(argc, argv);
else
make_single_doc(argc, argv);
d_cleanup();
return 0;
}
static int process_options(int argc, char *argv[])
{
int i;
for (i = 1; i < argc; ) {
if (streq(argv[i], "--")) {
i++;
break;
}
if (argv[i][0] != '-') {
break;
}
if (streq(argv[i], "--pandoc")) {
d_assign(pandoc, argv[i + 1]);
i += 2;
}
else if (streq(argv[i], "--protos")) {
d_assign(protos_file, argv[i + 1]);
i += 2;
}
else if (streq(argv[i], "--to")) {
d_assign(to_format, argv[i + 1]);
i += 2;
}
else if (streq(argv[i], "--allegro5_cfg")) {
d_assign(allegro5_cfg_filename, argv[i + 1]);
i += 2;
}
else if (streq(argv[i], "--git_ref")) {
d_assign(git_ref, argv[i + 1]);
i += 2;
}
else if (streq(argv[i], "--raise-sections")) {
raise_sections = true;
i++;
}
else {
/* Other options are assumed to be Pandoc options. */
strcat(pandoc_options, " ");
strcat(pandoc_options, argv[i]);
i++;
if (i < argc && argv[i][0] != '-') {
strcat(pandoc_options, " ");
strcat(pandoc_options, argv[i]);
i++;
}
}
}
/* Shift arguments, including sentinel, but not the command name. */
memmove(argv + 1, argv + i, (argc - i + 1) * sizeof(char *));
return argc - (i - 1);
}
static void load_prototypes(const char *filename)
{
dstr line;
const char *name;
const char *newtext;
const char *file_name;
const char *line_number;
dstr text;
d_open_input(filename);
while (d_getline(line)) {
if (d_match(line, "([^:]*): ([^:]*):([^:]*):([^:]*)")) {
name = d_submatch(1);
newtext = d_submatch(2);
file_name = d_submatch(3);
line_number = d_submatch(4);
d_assign(text, lookup_prototype(name));
strcat(text, "\n");
strcat(text, newtext);
protos = aa_insert(protos, name, text);
d_assign(text, lookup_source(name));
if (strlen(text) == 0) {
sprintf(text, "https://github.com/liballeg/allegro5/blob/%s/%s#L%s",
git_ref, file_name, line_number);
sources = aa_insert(sources, name, text);
}
}
}
d_close_input();
}
char *load_allegro5_cfg(void)
{
FILE *f = fopen(allegro5_cfg_filename, "rb");
if (!f) {
d_abort("could not open file for reading: ", allegro5_cfg_filename);
}
if (fseek(f, 0, SEEK_END)) {
d_abort("could not seek to end: ", allegro5_cfg_filename);
}
long length = ftell(f);
if (length == -1) {
d_abort("could not tell length of file: ", allegro5_cfg_filename);
}
if (fseek(f, 0, SEEK_SET)) {
d_abort("could not seek back to beginning: ", allegro5_cfg_filename);
}
char *ret = malloc(length + 1);
size_t read_bytes = fread(ret, 1, length, f);
if (read_bytes != (size_t)length) {
d_abort("could not read file: ", allegro5_cfg_filename);
}
fclose(f);
ret[length] = '\0';
return ret;
}
const char *lookup_prototype(const char *name)
{
const char *r = aa_search(protos, name);
return (r) ? r : "";
}
const char *lookup_source(const char *name)
{
const char *r = aa_search(sources, name);
return (r) ? r : "";
}
void generate_temp_file(char *filename)
{
/* gcc won't shut up if we use tmpnam() so we'll use mkstemp() if it is
* likely to be available.
*/
#ifdef USE_MKSTEMP
int fd;
d_assign(filename, "make_doc_tmp.XXXXXX");
fd = mkstemp(filename);
if (fd == -1) {
d_abort("could not generate temporary file name", "");
}
close(fd);
#else
char *name = TEMPNAM(NULL, "make_doc_tmp.");
if (!name) {
d_abort("could not generate temporary file name", "");
}
d_assign(filename, name);
free(name);
#endif
}
static void remove_temp_files(void)
{
remove(tmp_preprocess_output);
remove(tmp_pandoc_output);
}
void call_pandoc(const char *input, const char *output,
const char *extra_options)
{
dstr cmd;
dstr input_native;
char *p;
strcpy(input_native, input);
/* Use native Windows syntax to avoid "c:/foo.txt" being treated as a
* remote URI by Pandoc 1.5 and 1.6.
*/
if (strlen(input_native) > 2
&& isalpha(input_native[0])
&& input_native[1] == ':') {
for (p = input_native; *p != '\0'; p++) {
if (*p == '/')
*p = '\\';
}
}
sprintf(cmd, "\"%s\" %s %s %s --from markdown --to %s --output %s",
pandoc, input_native, pandoc_options, extra_options, to_format, output);
if (system(cmd) != 0) {
d_abort("system call failed: ", cmd);
}
}
/* vim: set sts=3 sw=3 et: */
|