/* * Copyright (c) 2017 Alex Yatskov * Author: Alex Yatskov * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software, and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include "book.h" #include "hooks.h" #include "convert.h" #include "util.h" #include "eb/eb/eb.h" #include "eb/eb/error.h" #include "eb/eb/text.h" #include "jansson/include/jansson.h" /* * Local types */ typedef enum { BOOK_MODE_TEXT, BOOK_MODE_HEADING, } Book_Mode; typedef struct { int* offsets; int offset_count; int offset_alloc; } Page; /* * Helper functions */ static char* book_read(EB_Book* book, EB_Hookset* hookset, const EB_Position* position, Book_Mode mode) { if (eb_seek_text(book, position) != EB_SUCCESS) { return NULL; } char data[1024] = {}; ssize_t data_length = 0; EB_Error_Code error; switch (mode) { case BOOK_MODE_TEXT: error = eb_read_text( book, NULL, hookset, NULL, ARRSIZE(data) - 1, data, &data_length ); break; case BOOK_MODE_HEADING: error = eb_read_heading( book, NULL, hookset, NULL, ARRSIZE(data) - 1, data, &data_length ); break; default: return NULL; } if (error != EB_SUCCESS) { return NULL; } char * result = eucjp_to_utf8(data); if (result == NULL) { return NULL; } return result; } static Book_Block book_read_content(EB_Book* book, EB_Hookset* hookset, const EB_Position* position, Book_Mode mode) { Book_Block block = {}; block.text = book_read(book, hookset, position, mode); block.page = position->page; block.offset = position->offset; return block; } static void subbook_undupe(Book_Subbook* subbook) { int page_count = 0; for (int i = 0; i < subbook->entry_count; ++i) { const int page_index = subbook->entries[i].text.page + 1; if (page_count < page_index) { page_count = page_index; } } if (page_count == 0) { return; } Page* pages = calloc(page_count, sizeof(Page)); for (int i = 0; i < subbook->entry_count; ++i) { Book_Entry* entry = subbook->entries + i; Page* page = pages + entry->text.page; int found = 0; for (int j = 0; j < page->offset_count; ++j) { if (entry->text.offset == page->offsets[j]){ found = 1; break; } } if (found) { if (i + 1 < subbook->entry_count) { subbook->entries[i] = subbook->entries[subbook->entry_count - 1]; } --subbook->entry_count; --i; continue; } if (page->offset_count + 1 >= page->offset_alloc) { if (page->offset_alloc == 0) { page->offset_alloc = 32; page->offsets = malloc(page->offset_alloc * sizeof(int)); } else { const int offset_alloc_new = page->offset_alloc * 2; page->offsets = realloc(page->offsets, offset_alloc_new * sizeof(int)); page->offset_alloc = offset_alloc_new; } } page->offsets[page->offset_count++] = entry->text.offset; } for (int i = 0; i < page_count; ++i) { free(pages[i].offsets); } free(pages); } static void book_undupe(Book* book) { for (int i = 0; i < book->subbook_count; ++i) { subbook_undupe(book->subbooks + i); } } /* * Encoding to JSON */ static void entry_encode(json_t* entry_json, const Book_Entry* entry, int flags) { if (entry->heading.text != NULL) { json_object_set_new(entry_json, "heading", json_string(entry->heading.text)); } if (flags & FLAG_POSITIONS) { json_object_set_new(entry_json, "headingPage", json_integer(entry->heading.page)); json_object_set_new(entry_json, "headingOffset", json_integer(entry->heading.offset)); } if (entry->text.text != NULL) { json_object_set_new(entry_json, "text", json_string(entry->text.text)); } if (flags & FLAG_POSITIONS) { json_object_set_new(entry_json, "textPage", json_integer(entry->text.page)); json_object_set_new(entry_json, "textOffset", json_integer(entry->text.offset)); } } static void font_glyph_encode(json_t* glyph_json, const Book_Glyph* glyph) { json_t* bitmap_json_array = json_array(); for (unsigned i = 0; i < ARRSIZE(glyph->bitmap); ++i) { json_array_append_new(bitmap_json_array, json_integer(glyph->bitmap[i])); } json_object_set_new(glyph_json, "bitmap", bitmap_json_array); json_object_set_new(glyph_json, "code", json_integer(glyph->code)); } static void font_glyph_set_encode(json_t* glyph_set_json, const Book_Glyph_Set* glyph_set) { json_t* glyph_json_array = json_array(); for (int i = 0; i < glyph_set->count; ++i) { json_t* glyph_json = json_object(); font_glyph_encode(glyph_json, glyph_set->glyphs + i); json_array_append_new(glyph_json_array, glyph_json); } json_object_set_new(glyph_set_json, "glyphs", glyph_json_array); json_object_set_new(glyph_set_json, "width", json_integer(glyph_set->width)); json_object_set_new(glyph_set_json, "height", json_integer(glyph_set->height)); } static void font_encode(json_t* font_json, const Book_Font* font) { if (font->narrow.count > 0) { json_t* narrow_json = json_object(); font_glyph_set_encode(narrow_json, &font->narrow); json_object_set_new(font_json, "narrow", narrow_json); } if (font->wide.count > 0) { json_t* wide_json = json_object(); font_glyph_set_encode(wide_json, &font->wide); json_object_set_new(font_json, "wide", wide_json); } } static void subbook_encode(json_t* subbook_json, const Book_Subbook* subbook, int flags) { if (subbook->title != NULL) { json_object_set_new(subbook_json, "title", json_string(subbook->title)); } if (subbook->copyright.text != NULL) { json_object_set_new(subbook_json, "copyright", json_string(subbook->copyright.text)); } if (flags & FLAG_POSITIONS) { json_object_set_new(subbook_json, "copyrightPage", json_integer(subbook->copyright.page)); json_object_set_new(subbook_json, "copyrightOffset", json_integer(subbook->copyright.offset)); } if (flags & FLAG_FONTS) { json_t* font_json_array = json_array(); for (unsigned i = 0; i < ARRSIZE(subbook->fonts); ++i) { const Book_Font* font = subbook->fonts + i; if (font->wide.count > 0 || font->narrow.count) { json_t* font_json = json_object(); font_encode(font_json, font); json_array_append_new(font_json_array, font_json); } } json_object_set_new(subbook_json, "fonts", font_json_array); } json_t* entry_json_array = json_array(); for (int i = 0; i < subbook->entry_count; ++i) { json_t* entry_json = json_object(); entry_encode(entry_json, subbook->entries + i, flags); json_array_append_new(entry_json_array, entry_json); } json_object_set_new(subbook_json, "entries", entry_json_array); } static void book_encode(json_t* book_json, const Book* book, int flags) { json_object_set_new(book_json, "charCode", json_string(book->char_code)); json_object_set_new(book_json, "discCode", json_string(book->disc_code)); json_t* subbook_json_array = json_array(); for (int i = 0; i < book->subbook_count; ++i) { json_t* subbook_json = json_object(); subbook_encode(subbook_json, book->subbooks + i, flags); json_array_append_new(subbook_json_array, subbook_json); } json_object_set_new(book_json, "subbooks", subbook_json_array); } /* * Importing from EPWING */ static void subbook_entries_import(Book_Subbook* subbook, EB_Book* eb_book, EB_Hookset* eb_hookset) { if (subbook->entry_alloc == 0) { subbook->entry_alloc = 16384; subbook->entries = malloc(subbook->entry_alloc * sizeof(Book_Entry)); } EB_Hit hits[256] = {}; int hit_count = 0; do { if (eb_hit_list(eb_book, ARRSIZE(hits), hits, &hit_count) != EB_SUCCESS) { continue; } for (int i = 0; i < hit_count; ++i) { EB_Hit* hit = hits + i; if (subbook->entry_count == subbook->entry_alloc) { subbook->entry_alloc *= 2; subbook->entries = realloc(subbook->entries, subbook->entry_alloc * sizeof(Book_Entry)); } Book_Entry* entry = subbook->entries + subbook->entry_count++; entry->heading = book_read_content(eb_book, eb_hookset, &hit->heading, BOOK_MODE_HEADING); entry->text = book_read_content(eb_book, eb_hookset, &hit->text, BOOK_MODE_TEXT); } } while (hit_count > 0); } static void subbook_font_import(Book_Font* font, EB_Book* eb_book, EB_Font_Code code) { if (eb_set_font(eb_book, code) != EB_SUCCESS) { return; } do { switch (code) { case EB_FONT_16: font->narrow.width = EB_WIDTH_NARROW_FONT_16; font->narrow.height = EB_HEIGHT_FONT_16; break; case EB_FONT_24: font->narrow.width = EB_WIDTH_NARROW_FONT_24; font->narrow.height = EB_HEIGHT_FONT_24; break; case EB_FONT_30: font->narrow.width = EB_WIDTH_NARROW_FONT_30; font->narrow.height = EB_HEIGHT_FONT_30; break; case EB_FONT_48: font->narrow.width = EB_WIDTH_NARROW_FONT_48; font->narrow.height = EB_HEIGHT_FONT_48; break; } int font_code = 0; if (eb_narrow_font_start(eb_book, &font_code) != EB_SUCCESS) { break; } int glyph_alloc = 256; font->narrow.glyphs = malloc(sizeof(Book_Glyph) * glyph_alloc); for (;;) { if (font->narrow.count == glyph_alloc) { glyph_alloc *= 2; font->narrow.glyphs = realloc(font->narrow.glyphs, sizeof(Book_Glyph) * glyph_alloc); } Book_Glyph* glyph = font->narrow.glyphs + font->narrow.count; glyph->code = font_code; memset(glyph->bitmap, 0, sizeof(glyph->bitmap)); if (eb_narrow_font_character_bitmap(eb_book, font_code, glyph->bitmap) != EB_SUCCESS) { break; } ++font->narrow.count; if (eb_forward_narrow_font_character(eb_book, 1, &font_code) != EB_SUCCESS) { break; } } } while (0); do { switch (code) { case EB_FONT_16: font->wide.width = EB_WIDTH_WIDE_FONT_16; font->wide.height = EB_HEIGHT_FONT_16; break; case EB_FONT_24: font->wide.width = EB_WIDTH_WIDE_FONT_24; font->wide.height = EB_HEIGHT_FONT_24; break; case EB_FONT_30: font->wide.width = EB_WIDTH_WIDE_FONT_30; font->wide.height = EB_HEIGHT_FONT_30; break; case EB_FONT_48: font->wide.width = EB_WIDTH_WIDE_FONT_48; font->wide.height = EB_HEIGHT_FONT_48; break; } int font_code = 0; if (eb_wide_font_start(eb_book, &font_code) != EB_SUCCESS) { break; } int glyph_alloc = 256; font->wide.glyphs = malloc(sizeof(Book_Glyph) * glyph_alloc); for (;;) { if (font->wide.count == glyph_alloc) { glyph_alloc *= 2; font->wide.glyphs = realloc(font->wide.glyphs, sizeof(Book_Glyph) * glyph_alloc); } Book_Glyph* glyph = font->wide.glyphs + font->wide.count; glyph->code = font_code; memset(glyph->bitmap, 0, sizeof(glyph->bitmap)); if (eb_wide_font_character_bitmap(eb_book, font_code, glyph->bitmap) != EB_SUCCESS) { break; } ++font->wide.count; if (eb_forward_wide_font_character(eb_book, 1, &font_code) != EB_SUCCESS) { break; } } } while (0); } static void subbook_import(Book_Subbook* subbook, EB_Book* eb_book, EB_Hookset* eb_hookset, int flags) { char title[EB_MAX_TITLE_LENGTH + 1]; if (eb_subbook_title(eb_book, title) == EB_SUCCESS) { subbook->title = eucjp_to_utf8(title); } if (eb_have_copyright(eb_book)) { EB_Position position; if (eb_copyright(eb_book, &position) == EB_SUCCESS) { subbook->copyright = book_read_content(eb_book, eb_hookset, &position, BOOK_MODE_TEXT); } } if (eb_search_all_alphabet(eb_book) == EB_SUCCESS) { subbook_entries_import(subbook, eb_book, eb_hookset); } if (eb_search_all_kana(eb_book) == EB_SUCCESS) { subbook_entries_import(subbook, eb_book, eb_hookset); } if (eb_search_all_asis(eb_book) == EB_SUCCESS) { subbook_entries_import(subbook, eb_book, eb_hookset); } memset(subbook->fonts, 0, sizeof(subbook->fonts)); if (flags & FLAG_FONTS) { const EB_Font_Code codes[] = {EB_FONT_16, EB_FONT_24, EB_FONT_30, EB_FONT_48}; for (unsigned i = 0; i < ARRSIZE(codes); ++i) { subbook_font_import(subbook->fonts + i, eb_book, codes[i]); } } } /* * imported functions */ void book_init(Book* book) { memset(book, 0, sizeof(Book)); } void book_free(Book* book) { for (int i = 0; i < book->subbook_count; ++i) { Book_Subbook* subbook = book->subbooks + i; free(subbook->title); free(subbook->copyright.text); for (int j = 0; j < subbook->entry_count; ++j) { Book_Entry* entry = subbook->entries + j; free(entry->heading.text); free(entry->text.text); } for (unsigned j = 0; j < ARRSIZE(subbook->fonts); ++j) { const Book_Font* font = subbook->fonts + j; free(font->narrow.glyphs); free(font->wide.glyphs); } free(subbook->entries); } memset(book, 0, sizeof(Book)); } int book_export(FILE* fp, const Book* book, int flags) { json_t* book_json = json_object(); book_encode(book_json, book, flags); char* output = json_dumps(book_json, flags & FLAG_PRETTY_PRINT ? JSON_INDENT(4) : JSON_COMPACT); if (output != NULL) { fputs(output, fp); } free(output); json_decref(book_json); return output != NULL; } int book_import(Book* book, const char path[], int flags) { EB_Error_Code error; if ((error = eb_initialize_library()) != EB_SUCCESS) { fprintf(stderr, "error: failed to initialize library (%s)\n", eb_error_message(error)); return 0; } EB_Book eb_book; eb_initialize_book(&eb_book); EB_Hookset eb_hookset; eb_initialize_hookset(&eb_hookset); hooks_install(&eb_hookset, flags); if ((error = eb_bind(&eb_book, path)) != EB_SUCCESS) { fprintf(stderr, "error: failed to bind book (%s)\n", eb_error_message(error)); eb_finalize_book(&eb_book); eb_finalize_hookset(&eb_hookset); eb_finalize_library(); return 0; } EB_Character_Code char_code; if ((error = eb_character_code(&eb_book, &char_code)) == EB_SUCCESS) { switch (char_code) { case EB_CHARCODE_ISO8859_1: strcpy(book->char_code, "iso8859-1"); break; case EB_CHARCODE_JISX0208: strcpy(book->char_code, "jisx0208"); break; case EB_CHARCODE_JISX0208_GB2312: strcpy(book->char_code, "jisx0208/gb2312"); break; default: strcpy(book->char_code, "invalid"); break; } } else { fprintf(stderr, "error: failed to get character code (%s)\n", eb_error_message(error)); } EB_Disc_Code disc_code; if ((error = eb_disc_type(&eb_book, &disc_code)) == EB_SUCCESS) { switch (disc_code) { case EB_DISC_EB: strcpy(book->disc_code, "eb"); break; case EB_DISC_EPWING: strcpy(book->disc_code, "epwing"); break; default: strcpy(book->disc_code, "invalid"); break; } } else { fprintf(stderr, "error: failed to get disc code (%s)\n", eb_error_message(error)); } EB_Subbook_Code sub_codes[EB_MAX_SUBBOOKS]; if ((error = eb_subbook_list(&eb_book, sub_codes, &book->subbook_count)) == EB_SUCCESS) { if (book->subbook_count > 0) { book->subbooks = calloc(book->subbook_count, sizeof(Book_Subbook)); for (int i = 0; i < book->subbook_count; ++i) { Book_Subbook* subbook = book->subbooks + i; if ((error = eb_set_subbook(&eb_book, sub_codes[i])) == EB_SUCCESS) { subbook_import(subbook, &eb_book, &eb_hookset, flags); } else { fprintf(stderr, "error: failed to set subbook (%s)\n", eb_error_message(error)); } } } } else { fprintf(stderr, "error: failed to get subbook list (%s)\n", eb_error_message(error)); } eb_finalize_book(&eb_book); eb_finalize_hookset(&eb_hookset); eb_finalize_library(); book_undupe(book); return 1; }