1
zero-epwing/main.c

84 lines
2.3 KiB
C
Raw Normal View History

2016-10-31 16:04:15 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2016-11-29 04:42:10 +00:00
#include <string.h>
#include <stdbool.h>
2016-11-01 02:32:40 +00:00
2016-12-04 01:14:18 +00:00
#include "argparse/argparse.h"
2016-11-29 04:42:10 +00:00
#include "util.h"
2016-11-21 02:23:50 +00:00
#include "book.h"
2016-11-29 05:16:43 +00:00
#include "font.h"
2016-10-30 00:38:50 +00:00
2016-11-29 04:42:10 +00:00
/*
* Local types
*/
typedef struct {
char dict_path[256];
char font_path[256];
2016-12-01 07:19:16 +00:00
int flags;
2016-11-29 04:42:10 +00:00
} Options;
2016-11-19 20:23:06 +00:00
/*
* Entry point
*/
2016-12-04 01:14:18 +00:00
int main(int argc, const char *argv[]) {
char* dict_path = NULL;
char* font_path = NULL;
int flags = 0;
struct argparse_option options[] = {
OPT_HELP(),
OPT_STRING('d', "dict", &dict_path, "dictionary resource to process", NULL, 0, 0),
OPT_STRING('f', "font", &font_path, "font definition file for translation", NULL, 0, 0),
OPT_BOOLEAN('p', "pretty-print", &flags, "output pretty-printed JSON", NULL, 0, 0),
OPT_BOOLEAN('m', "markup", &flags, "output formatting tags", 0, 0, 0),
OPT_BOOLEAN('s', "positions", &flags, "output positional data", NULL, 0, 0),
OPT_BOOLEAN('t', "font-tags", &flags, "output missing font data tags", NULL, 0, 0),
OPT_END()
2016-11-29 04:42:10 +00:00
};
2016-11-03 03:37:11 +00:00
2016-12-04 01:14:18 +00:00
struct argparse argparse;
2016-11-03 03:37:11 +00:00
2016-12-04 01:14:18 +00:00
argparse_init(&argparse, options, NULL, 0);
argparse_parse(&argparse, argc, argv);
if (dict_path == NULL) {
argparse_usage(&argparse);
return 1;
}
2016-11-03 03:37:11 +00:00
2016-11-29 05:16:43 +00:00
Font_Context context;
2016-12-04 01:14:18 +00:00
if (!font_context_init(&context, font_path == 0 ? NULL : font_path)) {
2016-11-29 05:04:55 +00:00
return 1;
}
2016-11-22 06:15:47 +00:00
2016-11-22 06:41:44 +00:00
Book book;
book_init(&book);
2016-11-29 05:04:55 +00:00
const bool success =
2016-12-04 01:14:18 +00:00
book_import(&book, &context, dict_path, flags) &&
book_export(stdout, &book, flags);
2016-11-29 05:04:55 +00:00
2016-11-21 02:23:50 +00:00
book_free(&book);
2016-11-03 03:37:11 +00:00
2016-11-29 05:16:43 +00:00
font_context_destroy(&context);
2016-11-29 05:04:55 +00:00
return success ? 0 : 1;
2016-10-29 23:58:09 +00:00
}