summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2025-11-12 15:16:25 +0800
committerPeng Wu <alexepico@gmail.com>2025-11-12 15:16:25 +0800
commitbe2fe09991e99b24e49cc94c9814bf69cf57fdd3 (patch)
treee2dffe34af6c35ca1e129a185452315f8a4fa3ae /src
parentf8b27d6be83b94300e00b24193bff1277b13838f (diff)
downloadlibpinyin-be2fe09991e99b24e49cc94c9814bf69cf57fdd3.tar.gz
libpinyin-be2fe09991e99b24e49cc94c9814bf69cf57fdd3.tar.xz
libpinyin-be2fe09991e99b24e49cc94c9814bf69cf57fdd3.zip
Write phrase_large_table3_tkrzwdb.h
Diffstat (limited to 'src')
-rw-r--r--src/storage/phrase_large_table3_tkrzwdb.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/storage/phrase_large_table3_tkrzwdb.h b/src/storage/phrase_large_table3_tkrzwdb.h
new file mode 100644
index 0000000..a22cdc8
--- /dev/null
+++ b/src/storage/phrase_large_table3_tkrzwdb.h
@@ -0,0 +1,77 @@
+/*
+ * libpinyin
+ * Library to deal with pinyin.
+ *
+ * Copyright (C) 2025 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 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/>.
+ */
+
+#ifndef PHRASE_LARGE_TABLE3_TKRZWDB_H
+#define PHRASE_LARGE_TABLE3_TKRZWDB_H
+
+#include "novel_types.h"
+#include "memory_chunk.h"
+#include <tkrzw_dbm.h>
+
+namespace pinyin{
+
+class PhraseTableEntry;
+
+class PhraseLargeTable3{
+private:
+ /* member variables. */
+ tkrzw::DBM * m_db;
+
+protected:
+ PhraseTableEntry * m_entry;
+
+ void reset();
+
+public:
+ PhraseLargeTable3();
+
+ ~PhraseLargeTable3(){
+ reset();
+ }
+
+ /* attach method */
+ bool attach(const char * dbfile, guint32 flags);
+
+ /* load_db/store_db method */
+ /* use in-memory DBM here, for better performance. */
+ bool load_db(const char * filename);
+
+ bool store_db(const char * new_filename);
+
+ bool load_text(FILE * infile);
+
+ /* search method */
+ int search(int phrase_length, /* in */ const ucs4_t phrase[],
+ /* out */ PhraseTokens tokens) const;
+ int search_suggestion(int phrase_length, /* in */ const ucs4_t phrase[],
+ /* out */ PhraseTokens tokens) const;
+
+ /* add_index/remove_index method */
+ int add_index(int phrase_length, /* in */ const ucs4_t phrase[], /* in */ phrase_token_t token);
+
+ int remove_index(int phrase_length, /* in */ const ucs4_t phrase[], /* in */ phrase_token_t token);
+
+ /* mask out method */
+ bool mask_out(phrase_token_t mask, phrase_token_t value);
+};
+
+};
+
+#endif