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-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[] = {
|
|
|
|
{ "pretty-print", no_argument, NULL, 'p' },
|
|
|
|
{ "markup", no_argument, NULL, 'm' },
|
|
|
|
{ "positions", no_argument, NULL, 's' },
|
|
|
|
{ NULL, 0, NULL, 0 },
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
while ((c = getopt_long(argc, argv, "f:d: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;
|
|
|
|
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) {
|
2016-12-04 02:46:57 +00:00
|
|
|
fprintf(stderr, "%s: dictionary path must be provided provided\n", argv[0]);
|
|
|
|
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];
|
|
|
|
|
2016-11-22 06:41:44 +00:00
|
|
|
Book book;
|
|
|
|
book_init(&book);
|
2016-11-29 05:04:55 +00:00
|
|
|
|
2016-12-05 02:36:06 +00:00
|
|
|
const int success =
|
2016-12-14 00:57:59 +00:00
|
|
|
book_import(&book, dict_path, flags) &&
|
2016-12-04 01:14:18 +00:00
|
|
|
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:04:55 +00:00
|
|
|
return success ? 0 : 1;
|
2016-10-29 23:58:09 +00:00
|
|
|
}
|