summaryrefslogtreecommitdiffstats
path: root/src/storage/table_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/table_info.h')
-rw-r--r--src/storage/table_info.h97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/storage/table_info.h b/src/storage/table_info.h
new file mode 100644
index 0000000..8d7fa05
--- /dev/null
+++ b/src/storage/table_info.h
@@ -0,0 +1,97 @@
+/*
+ * libpinyin
+ * Library to deal with pinyin.
+ *
+ * Copyright (C) 2013 Peng Wu <alexepico@gmail.com>
+ *
+ * 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 TABLE_INFO_H
+#define TABLE_INFO_H
+
+#include "novel_types.h"
+
+
+namespace pinyin{
+
+typedef enum {
+ NOT_USED, /* not used. */
+ SYSTEM_FILE, /* system phrase file. */
+ DICTIONARY, /* professional dictionary. */
+ USER_FILE, /* user only phrase file. */
+} PHRASE_FILE_TYPE;
+
+typedef struct {
+ guint8 m_dict_index; /* for assert purpose. */
+ const gchar * m_table_filename;
+ const gchar * m_system_filename;
+ const gchar * m_user_filename;
+ PHRASE_FILE_TYPE m_file_type;
+} pinyin_table_info_t;
+
+
+class UserTableInfo;
+
+class SystemTableInfo{
+ friend class UserTableInfo;
+private:
+ int m_binary_format_version;
+ int m_model_data_version;
+ gfloat m_lambda;
+
+ pinyin_table_info_t m_table_info[PHRASE_INDEX_LIBRARY_COUNT];
+
+private:
+ void reset();
+
+ void postfix_tables();
+
+public:
+ SystemTableInfo();
+
+ ~SystemTableInfo();
+
+ bool load(const char * filename);
+
+ const pinyin_table_info_t * get_table_info();
+
+ gfloat get_lambda();
+};
+
+class UserTableInfo{
+private:
+ int m_binary_format_version;
+ int m_model_data_version;
+
+private:
+ void reset();
+
+public:
+ UserTableInfo();
+
+ bool load(const char * filename);
+
+ bool save(const char * filename);
+
+ bool is_conform(const SystemTableInfo * sysinfo);
+
+ bool make_conform(const SystemTableInfo * sysinfo);
+};
+
+};
+
+
+#endif