/* * libpinyin * Library to deal with pinyin. * * Copyright (C) 2012 Peng Wu * * 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 2 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef UTILS_HELPER_H #define UTILS_HELPER_H #define TAGLIB_GET_VALUE(var, index) \ phrase_token_t var = null_token; \ { \ const char * string = (const char *) g_ptr_array_index \ (values, index); \ var = taglib_string_to_token \ (phrase_table, phrase_index, string); \ } #define TAGLIB_GET_TAGVALUE(type, var, conv) \ type var; \ { \ gpointer value = NULL; \ assert(g_hash_table_lookup_extended \ (required, #var, NULL, &value)); \ var = conv((const char *)value); \ } static bool load_phrase_index(FacadePhraseIndex * phrase_index) { MemoryChunk * chunk = NULL; for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) { const pinyin_table_info_t * table_info = pinyin_phrase_files + i; if (SYSTEM_FILE != table_info->m_file_type) continue; const char * binfile = table_info->m_system_filename; chunk = new MemoryChunk; bool retval = chunk->load(binfile); if (!retval) { fprintf(stderr, "load %s failed!\n", binfile); return false; } phrase_index->load(i, chunk); } return true; } static bool save_phrase_index(FacadePhraseIndex * phrase_index) { MemoryChunk * new_chunk = NULL; for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) { const pinyin_table_info_t * table_info = pinyin_phrase_files + i; if (SYSTEM_FILE != table_info->m_file_type) continue; const char * binfile = table_info->m_system_filename; new_chunk = new MemoryChunk; phrase_index->store(i, new_chunk); bool retval = new_chunk->save(binfile); if (!retval) { fprintf(stderr, "save %s failed.", binfile); return false; } phrase_index->load(i, new_chunk); } return true; } #endif