1
zero-epwing/main.c
2016-10-31 20:40:52 -07:00

178 lines
4.8 KiB
C

/*
* 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/>.
*/
#define _BSD_SOURCE
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include "convert.h"
#include "util.h"
#include "eb/eb/eb.h"
#include "eb/eb/error.h"
#include "eb/eb/text.h"
#define MAX_ENTRY_HITS 128
#define MAX_ENTRY_TEXT 1024
#define MAX_ENTRY_HEADER 512
static void dump_hits(EB_Book* book) {
EB_Hit hits[MAX_ENTRY_HITS];
int hit_count = 0;
do {
if (eb_hit_list(book, MAX_ENTRY_HITS, hits, &hit_count) != EB_SUCCESS) {
fprintf(stderr, "error: could not get hit list\n");
break;
}
for (int i = 0; i < hit_count; ++i) {
char text[MAX_ENTRY_TEXT];
ssize_t text_length = 0;
eb_seek_text(book, &hits[i].text);
eb_read_text(book, NULL, NULL, NULL, MAX_ENTRY_TEXT, text, &text_length);
const char* text_utf8 = eucjp_to_utf8(text);
if (text_utf8 != NULL) {
puts(text_utf8);
}
/* (void) text_utf8; */
}
}
while (hit_count > 0);
}
static void dump_book(EB_Book* book) {
if (eb_search_all_alphabet(book) == EB_SUCCESS) {
dump_hits(book);
}
else {
printf("notice: skiping alphabet search\n");
}
if (eb_search_all_kana(book) == EB_SUCCESS) {
dump_hits(book);
}
else {
printf("notice: skiping kana search\n");
}
if (eb_search_all_asis(book) == EB_SUCCESS) {
dump_hits(book);
}
else {
printf("notice: skiping asis search\n");
}
}
static int export(const char path[]) {
Book book_data = {};
do {
if (eb_initialize_library() != EB_SUCCESS) {
strcpy(book_data.error, "failed to initialize library");
break;
}
EB_Book book;
eb_initialize_book(&book);
if (eb_bind(&book, path) != EB_SUCCESS) {
strcpy(book_data.error, "failed to bind book to path");
eb_finalize_library();
break;
}
EB_Character_Code character_code;
if (eb_character_code(&book, &character_code) == EB_SUCCESS) {
switch (character_code) {
case EB_CHARCODE_ISO8859_1:
strcpy(book_data.character_code, "iso 8859-1");
break;
case EB_CHARCODE_JISX0208:
strcpy(book_data.character_code, "jis x 0208");
break;
case EB_CHARCODE_JISX0208_GB2312:
strcpy(book_data.character_code, "jis x 0208 / gb 2312");
break;
default:
strcpy(book_data.character_code, "invalid");
break;
}
}
else {
strcpy(book_data.character_code, "error");
}
EB_Disc_Code disc_code;
if (eb_disc_type(&book, &disc_code) == EB_SUCCESS) {
switch (disc_code) {
case EB_DISC_EB:
strcpy(book_data.disc_code, "eb");
break;
case EB_DISC_EPWING:
strcpy(book_data.disc_code, "epwing");
break;
default:
strcpy(book_data.disc_code, "invalid");
break;
}
}
else {
strcpy(book_data.disc_code, "error");
}
EB_Subbook_Code sub_codes[EB_MAX_SUBBOOKS];
int sub_count = 0;
if (eb_subbook_list(&book, sub_codes, &sub_count) != EB_SUCCESS) {
fprintf(stderr, "error: failed to get sub-book list\n");
break;
}
for (int i = 0; i < sub_count; ++i) {
if (eb_set_subbook(&book, sub_codes[i]) == EB_SUCCESS) {
dump_book(&book);
}
else {
fprintf(stderr, "error: failed to set sub-book\n");
}
}
eb_finalize_book(&book);
eb_finalize_library();
}
while(0);
return 0;
}
int main(int argc, char *argv[]) {
if (argc != 2) {
fprintf(stderr, "usage: %s path\n", argv[0]);
return 2;
}
return export(argv[1]);
}