1
zero-epwing/main.c

80 lines
2.2 KiB
C
Raw Normal View History

2016-10-31 16:04:15 +00:00
/*
2017-04-23 19:32:22 +00:00
* Copyright (C) 2017 Alex Yatskov <alex@foosoft.net>
2016-10-31 16:04:15 +00:00
* Author: Alex Yatskov <alex@foosoft.net>
*
2017-04-23 19:32:22 +00:00
* 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.
2016-10-31 16:04:15 +00:00
*
2017-04-23 19:32:22 +00:00
* 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.
2016-10-31 16:04:15 +00:00
*
2017-04-23 19:32:22 +00:00
* 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-10-31 16:04:15 +00:00
*/
2016-12-04 02:24:56 +00:00
#include <stdlib.h>
2016-12-04 07:29:48 +00:00
#include <getopt.h>
2016-11-01 02:32:40 +00:00
2016-11-29 04:42:10 +00:00
#include "util.h"
2016-11-21 02:23:50 +00:00
#include "book.h"
2016-10-30 00:38:50 +00:00
2016-11-19 20:23:06 +00:00
/*
* Entry point
*/
2016-12-04 02:24:56 +00:00
int main(int argc, char *argv[]) {
2016-12-04 07:29:48 +00:00
const struct option options[] = {
2017-01-01 00:08:28 +00:00
{ "pretty", no_argument, NULL, 'p' },
{ "markup", no_argument, NULL, 'm' },
{ "positions", no_argument, NULL, 's' },
2017-02-12 03:46:46 +00:00
{ "fonts", no_argument, NULL, 'f' },
2017-02-12 18:24:57 +00:00
{ "entries", no_argument, NULL, 'e' },
2017-01-01 00:08:28 +00:00
{ NULL, 0, NULL, 0 },
2016-12-04 07:29:48 +00:00
};
2016-12-04 01:14:18 +00:00
char* dict_path = NULL;
int flags = 0;
2016-12-04 07:29:48 +00:00
int c = 0;
2018-06-01 22:30:09 +00:00
while ((c = getopt_long(argc, argv, "f:e:pmst", options, NULL)) != -1) {
2016-12-04 02:24:56 +00:00
switch (c) {
case 'p':
flags |= FLAG_PRETTY_PRINT;
break;
case 'm':
flags |= FLAG_HOOK_MARKUP;
break;
case 's':
flags |= FLAG_POSITIONS;
break;
2017-02-12 03:46:46 +00:00
case 'f':
flags |= FLAG_FONTS;
break;
2017-02-12 18:24:57 +00:00
case 'e':
flags |= FLAG_ENTRIES;
break;
2016-12-04 02:24:56 +00:00
default:
2016-12-04 02:46:57 +00:00
return 1;
2016-12-04 02:24:56 +00:00
}
}
2016-12-04 01:14:18 +00:00
2016-12-04 02:24:56 +00:00
if (optind == argc) {
2017-01-01 00:08:28 +00:00
fprintf(stderr, "error: dictionary path was not provided\n");
2016-12-04 02:46:57 +00:00
return 1;
2016-12-04 01:14:18 +00:00
}
2016-11-03 03:37:11 +00:00
2016-12-04 02:24:56 +00:00
dict_path = argv[optind];
2017-02-12 18:42:30 +00:00
Book* book = book_create();
2016-12-05 02:36:06 +00:00
const int success =
2017-02-12 18:42:30 +00:00
book_import(book, dict_path, flags) &&
book_export(stdout, book, flags);
book_destroy(book);
2016-11-03 03:37:11 +00:00
2016-11-29 05:04:55 +00:00
return success ? 0 : 1;
2016-10-29 23:58:09 +00:00
}