summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2013-04-03 10:57:46 +0800
committerPeng Wu <alexepico@gmail.com>2013-04-03 10:57:46 +0800
commit0bb16eb3c5b383a5797a9c9afdf5c0843688755e (patch)
tree7f08c18b0538d2744fc27837f976976b783c3a64 /src
parenta8abe097d3f725518d787de409caa0013834fa75 (diff)
downloadlibpinyin-0bb16eb3c5b383a5797a9c9afdf5c0843688755e.tar.gz
libpinyin-0bb16eb3c5b383a5797a9c9afdf5c0843688755e.tar.xz
libpinyin-0bb16eb3c5b383a5797a9c9afdf5c0843688755e.zip
begin to write table info
Diffstat (limited to 'src')
-rw-r--r--src/storage/table_info.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/storage/table_info.h b/src/storage/table_info.h
new file mode 100644
index 0000000..33e37ee
--- /dev/null
+++ b/src/storage/table_info.h
@@ -0,0 +1,64 @@
+/*
+ * 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
+
+namespace pinyin{
+
+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];
+
+public:
+ SystemTableInfo();
+
+ bool load(const char * filename);
+
+ pinyin_table_info_t * get_table_info();
+
+ gfloat get_lambda();
+};
+
+class UserTableInfo{
+private:
+ int m_binary_format_version;
+ int m_model_data_version;
+
+public:
+ UserTableInfo();
+
+ bool load(const char * filename);
+
+ bool conform(const SystemTableInfo * sysinfo);
+};
+
+};
+
+
+#endif