write mask out for chewing large table
[platform/upstream/libpinyin.git] / src / storage / chewing_large_table.h
1 /* 
2  *  libpinyin
3  *  Library to deal with pinyin.
4  *  
5  *  Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
6  *  
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  * 
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *  
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20  */
21
22 #ifndef CHEWING_LARGE_TABLE_H
23 #define CHEWING_LARGE_TABLE_H
24
25
26 #include "novel_types.h"
27 #include "memory_chunk.h"
28 #include "chewing_key.h"
29
30 namespace pinyin{
31
32 class ChewingLengthIndexLevel;
33
34 class ChewingBitmapIndexLevel{
35
36 protected:
37     pinyin_option_t m_options;
38
39 protected:
40     ChewingLengthIndexLevel * m_chewing_length_indexes
41     [CHEWING_NUMBER_OF_INITIALS][CHEWING_NUMBER_OF_MIDDLES]
42     [CHEWING_NUMBER_OF_FINALS][CHEWING_NUMBER_OF_TONES];
43
44     /* search functions */
45     int initial_level_search(int phrase_length, /* in */ ChewingKey keys[],
46                              /* out */ PhraseIndexRanges ranges) const;
47
48     int middle_and_final_level_search(ChewingInitial initial,
49                                       int phrase_length,
50                                       /* in */ ChewingKey keys[],
51                                       /* out */ PhraseIndexRanges ranges) const;
52     int tone_level_search(ChewingInitial initial, ChewingMiddle middle,
53                           ChewingFinal final, int phrase_length,
54                           /* in */ ChewingKey keys[],
55                           /* out */ PhraseIndexRanges ranges) const;
56
57     void reset();
58
59 public:
60     /* constructor/destructor */
61     ChewingBitmapIndexLevel(pinyin_option_t options);
62     ~ChewingBitmapIndexLevel() { reset(); }
63
64     /* set options method */
65     bool set_options(pinyin_option_t options) {
66         m_options = options;
67         return true;
68     }
69
70     /* load/store method */
71     bool load(MemoryChunk * chunk, table_offset_t offset, table_offset_t end);
72     bool store(MemoryChunk * new_chunk, table_offset_t offset,
73                table_offset_t & end);
74
75     /* search method */
76     int search(int phrase_length, /* in */ ChewingKey keys[],
77                /* out */ PhraseIndexRanges ranges) const;
78
79     /* add/remove index method */
80     int add_index(int phrase_length, /* in */ ChewingKey keys[],
81                   /* in */ phrase_token_t token);
82     int remove_index(int phrase_length, /* in */ ChewingKey keys[],
83                      /* in */ phrase_token_t token);
84
85     /* mask out method */
86     bool mask_out(phrase_token_t mask, phrase_token_t value);
87 };
88
89
90 class ChewingLargeTable{
91 protected:
92     ChewingBitmapIndexLevel m_bitmap_table;
93     MemoryChunk * m_chunk;
94
95     void reset(){
96         if (m_chunk) {
97             delete m_chunk; m_chunk = NULL;
98         }
99     }
100
101 public:
102     /* constructor/destructor */
103     ChewingLargeTable(pinyin_option_t options):
104         m_bitmap_table(options), m_chunk(NULL) {}
105
106     ~ChewingLargeTable() { reset(); }
107
108     /* set options method */
109     bool set_options(pinyin_option_t options) {
110         return m_bitmap_table.set_options(options);
111     }
112
113     /* load/store method */
114     bool load(MemoryChunk * chunk) {
115         reset();
116         m_chunk = chunk;
117         return m_bitmap_table.load(chunk, 0, chunk->size());
118     }
119
120     bool store(MemoryChunk * new_chunk) {
121         table_offset_t end;
122         return m_bitmap_table.store(new_chunk, 0, end);
123     }
124
125     bool load_text(FILE * file);
126
127     /* search method */
128     int search(int phrase_length, /* in */ ChewingKey keys[],
129                /* out */ PhraseIndexRanges ranges) const {
130         return m_bitmap_table.search(phrase_length, keys, ranges);
131     }
132
133     /* add/remove index method */
134     int add_index(int phrase_length, /* in */ ChewingKey keys[],
135                   /* in */ phrase_token_t token) {
136         return m_bitmap_table.add_index(phrase_length, keys, token);
137     }
138
139     int remove_index(int phrase_length, /* in */ ChewingKey keys[],
140                      /* in */ phrase_token_t token) {
141         return m_bitmap_table.remove_index(phrase_length, keys, token);
142     }
143
144     /* mask out method */
145     bool mask_out(phrase_token_t mask, phrase_token_t value) {
146         return m_bitmap_table.mask_out(mask, value);
147     }
148 };
149
150 };
151
152 #endif