re-factor remove_phrase_item.
[platform/upstream/libpinyin.git] / src / storage / phrase_index.cpp
1 /* 
2  *  libpinyin
3  *  Library to deal with pinyin.
4  *  
5  *  Copyright (C) 2006-2007 Peng Wu
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  */
21
22 #include "phrase_index.h"
23
24 bool PhraseItem::set_n_pronunciation(guint8 n_prouns){
25     m_chunk.set_content(sizeof(guint8), &n_prouns, sizeof(guint8));
26     return true;
27 }
28
29 bool PhraseItem::get_nth_pronunciation(size_t index, PinyinKey * pinyin, guint32 & freq){
30     guint8 phrase_length = get_phrase_length();
31     table_offset_t offset = phrase_item_header + phrase_length * sizeof( utf16_t) + index * ( phrase_length * sizeof (PinyinKey) + sizeof(guint32));
32     bool retval = m_chunk.get_content(offset, pinyin, phrase_length * sizeof(PinyinKey));
33     if ( !retval )
34         return retval;
35     return m_chunk.get_content(offset + phrase_length * sizeof(PinyinKey), &freq , sizeof(guint32));
36 }
37
38 void PhraseItem::append_pronunciation(PinyinKey * pinyin, guint32 freq){
39     guint8 phrase_length = get_phrase_length();
40     set_n_pronunciation(get_n_pronunciation() + 1);
41     m_chunk.set_content(m_chunk.size(), pinyin, phrase_length * sizeof(PinyinKey));
42     m_chunk.set_content(m_chunk.size(), &freq, sizeof(guint32));
43 }
44
45 void PhraseItem::remove_nth_pronunciation(size_t index){
46     guint8 phrase_length = get_phrase_length();
47     set_n_pronunciation(get_n_pronunciation() - 1);
48     size_t offset = phrase_item_header + phrase_length * sizeof ( utf16_t ) + index * (phrase_length * sizeof (PinyinKey) + sizeof(guint32));
49     m_chunk.remove_content(offset, phrase_length * sizeof(PinyinKey) + sizeof(guint32));
50 }
51
52 bool PhraseItem::get_phrase_string(utf16_t * phrase){
53     guint8 phrase_length = get_phrase_length();
54     return m_chunk.get_content(phrase_item_header, phrase, phrase_length * sizeof(utf16_t));
55 }
56
57 bool PhraseItem::set_phrase_string(guint8 phrase_length, utf16_t * phrase){
58     m_chunk.set_content(0, &phrase_length, sizeof(guint8));
59     m_chunk.set_content(phrase_item_header, phrase, phrase_length * sizeof(utf16_t));
60     return true;
61 }
62
63 void PhraseItem::increase_pinyin_possibility(PinyinCustomSettings & custom,
64                                              PinyinKey * pinyin_keys,
65                                              gint32 delta){
66     guint8 phrase_length = get_phrase_length();
67     guint8 npron = get_n_pronunciation();
68     size_t offset = phrase_item_header + phrase_length * sizeof ( utf16_t );
69     char * buf_begin = (char *) m_chunk.begin();
70     guint32 total_freq = 0;
71     for ( int i = 0 ; i < npron ; ++i){
72         char * pinyin_begin = buf_begin + offset +
73             i * ( phrase_length * sizeof(PinyinKey) + sizeof(guint32) );
74         guint32 * freq = (guint32 *)(pinyin_begin + phrase_length * sizeof(PinyinKey));
75         total_freq += *freq;
76         if ( 0 == pinyin_compare_with_ambiguities(custom,
77                                                   (PinyinKey *)pinyin_begin,
78                                                   pinyin_keys,
79                                                   phrase_length)){
80             //protect against total_freq overflow.
81             if ( delta > 0 && total_freq > total_freq + delta )
82                 return;
83             *freq += delta;
84             total_freq += delta;
85         }
86     }
87 }
88
89
90 guint32 SubPhraseIndex::get_phrase_index_total_freq(){
91     return m_total_freq;
92 }
93
94 bool SubPhraseIndex::add_unigram_frequency(phrase_token_t token, guint32 delta){
95     table_offset_t offset;
96     guint32 freq;
97     bool result = m_phrase_index.get_content
98         ((token & PHRASE_MASK) 
99          * sizeof(table_offset_t), &offset, sizeof(table_offset_t));
100
101     if ( !result)
102         return result;
103
104     if ( 0 == offset )
105         return false;
106
107     result = m_phrase_content.get_content
108         (offset + sizeof(guint8) + sizeof(guint8), &freq, sizeof(guint32));
109     //protect total_freq overflow
110     if ( delta > 0 && m_total_freq > m_total_freq + delta )
111         return false;
112     freq += delta;
113     m_total_freq += delta;
114     return m_phrase_content.set_content(offset + sizeof(guint8) + sizeof(guint8), &freq, sizeof(guint32));
115 }
116
117 bool SubPhraseIndex::get_phrase_item(phrase_token_t token, PhraseItem & item){
118     table_offset_t offset;
119     guint8 phrase_length;
120     guint8 n_prons;
121     
122     bool result = m_phrase_index.get_content
123         ((token & PHRASE_MASK) 
124          * sizeof(table_offset_t), &offset, sizeof(table_offset_t));
125
126     if ( !result )
127         return result;
128
129     if ( 0 == offset )
130         return false;
131
132     result = m_phrase_content.get_content(offset, &phrase_length, sizeof(guint8));
133     if ( !result ) 
134         return result;
135     
136     result = m_phrase_content.get_content(offset+sizeof(guint8), &n_prons, sizeof(guint8));
137     if ( !result ) 
138         return result;
139
140     size_t length = phrase_item_header + phrase_length * sizeof ( utf16_t ) + n_prons * ( phrase_length * sizeof (PinyinKey) + sizeof(guint32) );
141     item.m_chunk.set_chunk((char *)m_phrase_content.begin() + offset, length, NULL);
142     return true;
143 }
144
145 bool SubPhraseIndex::add_phrase_item(phrase_token_t token, PhraseItem * item){
146     table_offset_t offset = m_phrase_content.size();
147     if ( 0 == offset )
148         offset = 8;
149     m_phrase_content.set_content(offset, item->m_chunk.begin(), item->m_chunk.size());
150     m_phrase_index.set_content((token & PHRASE_MASK) 
151                                * sizeof(table_offset_t), &offset, sizeof(table_offset_t));
152     m_total_freq += item->get_unigram_frequency();
153     return true;
154 }
155
156 bool SubPhraseIndex::remove_phrase_item(phrase_token_t token, PhraseItem * & item){
157     PhraseItem old_item;
158
159     int result = get_phrase_item(token, old_item);
160     if (!result)
161         return result;
162
163     item = new PhraseItem;
164     //implictly copy data from m_chunk_content.
165     item->m_chunk.set_content(0, (char *) old_item.m_chunk.begin() , old_item.m_chunk.size());
166
167     const table_offset_t zero_const = 0;
168     m_phrase_index.set_content((token & PHRASE_MASK)
169                                * sizeof(table_offset_t), &zero_const, sizeof(table_offset_t));
170     m_total_freq -= item->get_unigram_frequency();
171     return true;
172 }
173
174 bool FacadePhraseIndex::load(guint8 phrase_index, MemoryChunk * chunk){
175     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
176     if ( !sub_phrases ){
177         sub_phrases = new SubPhraseIndex;
178     }
179     
180     bool retval = sub_phrases->load(chunk, 0, chunk->size());
181     if ( !retval )
182         return retval;
183     m_total_freq += sub_phrases->get_phrase_index_total_freq();
184     return retval;
185 }
186
187 bool FacadePhraseIndex::store(guint8 phrase_index, MemoryChunk * new_chunk){
188     table_offset_t end;
189     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
190     if ( !sub_phrases )
191         return false;
192     
193     sub_phrases->store(new_chunk, 0, end);
194     return true;
195 }
196
197 bool FacadePhraseIndex::unload(guint8 phrase_index){
198     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
199     if ( !sub_phrases )
200         return false;
201     m_total_freq -= sub_phrases->get_phrase_index_total_freq();
202     delete sub_phrases;
203     sub_phrases = NULL;
204     return true;
205 }
206
207 bool SubPhraseIndex::load(MemoryChunk * chunk, 
208                           table_offset_t offset, table_offset_t end){
209     //save the memory chunk
210     if ( m_chunk ){
211         delete m_chunk;
212         m_chunk = NULL;
213     }
214     m_chunk = chunk;
215     
216     char * buf_begin = (char *)chunk->begin();
217     chunk->get_content(offset, &m_total_freq, sizeof(guint32));
218     offset += sizeof(guint32);
219     table_offset_t index_one, index_two, index_three;
220     chunk->get_content(offset, &index_one, sizeof(table_offset_t));
221     offset += sizeof(table_offset_t);
222     chunk->get_content(offset, &index_two, sizeof(table_offset_t));
223     offset += sizeof(table_offset_t);
224     chunk->get_content(offset, &index_three, sizeof(table_offset_t));
225     offset += sizeof(table_offset_t);
226     g_return_val_if_fail(*(buf_begin + offset) == c_separate, FALSE);
227     g_return_val_if_fail(*(buf_begin + index_two - 1) == c_separate, FALSE);
228     g_return_val_if_fail(*(buf_begin + index_three - 1) == c_separate, FALSE);
229     m_phrase_index.set_chunk(buf_begin + index_one, 
230                              index_two - 1 - index_one, NULL);
231     m_phrase_content.set_chunk(buf_begin + index_two, 
232                                  index_three - 1 - index_two, NULL);
233     g_return_val_if_fail( index_three <= end, FALSE);
234     return true;
235 }
236
237 bool SubPhraseIndex::store(MemoryChunk * new_chunk, 
238                            table_offset_t offset, table_offset_t& end){
239     new_chunk->set_content(offset, &m_total_freq, sizeof(guint32));
240     table_offset_t index = offset + sizeof(guint32);
241         
242     offset = index + sizeof(table_offset_t) * 3 ;
243     new_chunk->set_content(offset, &c_separate, sizeof(char));
244     offset += sizeof(char);
245     
246     new_chunk->set_content(index, &offset, sizeof(table_offset_t));
247     index += sizeof(table_offset_t);
248     new_chunk->set_content(offset, m_phrase_index.begin(), m_phrase_index.size());
249     offset += m_phrase_index.size();
250     new_chunk->set_content(offset, &c_separate, sizeof(char));
251     offset += sizeof(char);
252
253     new_chunk->set_content(index, &offset, sizeof(table_offset_t));
254     index += sizeof(table_offset_t);
255     
256     new_chunk->set_content(offset, m_phrase_content.begin(), m_phrase_content.size());
257     offset += m_phrase_content.size();
258     new_chunk->set_content(offset, &c_separate, sizeof(char));
259     offset += sizeof(char);
260     new_chunk->set_content(index, &offset, sizeof(table_offset_t));
261     return true;
262 }
263
264 bool FacadePhraseIndex::load_text(guint8 phrase_index, FILE * infile){
265     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
266     if ( !sub_phrases ){
267         sub_phrases = new SubPhraseIndex;
268     }
269
270     char pinyin[256];
271     char phrase[256];
272     phrase_token_t token;
273     size_t freq;
274     PhraseItem * item_ptr = new PhraseItem;
275     phrase_token_t cur_token = 0;
276     while ( !feof(infile)){
277         fscanf(infile, "%s", pinyin);
278         fscanf(infile, "%s", phrase);
279         fscanf(infile, "%ld", &token);
280         fscanf(infile, "%ld", &freq);
281         if ( feof(infile) )
282             break;
283
284         glong written;
285         utf16_t * phrase_utf16 = g_utf8_to_utf16(phrase, -1, NULL, 
286                                                &written, NULL);
287         
288         if ( 0 == cur_token ){
289             cur_token = token;
290             item_ptr->set_phrase_string(written, phrase_utf16);
291         }
292
293         if ( cur_token != token ){
294             add_phrase_item( cur_token, item_ptr);
295             delete item_ptr;
296             item_ptr = new PhraseItem;
297             cur_token = token;
298             item_ptr->set_phrase_string(written, phrase_utf16);
299         }
300
301         PinyinDefaultParser parser;
302         NullPinyinValidator validator;
303         PinyinKeyVector keys;
304         PinyinKeyPosVector poses;
305         
306         keys = g_array_new(FALSE, FALSE, sizeof( PinyinKey));
307         poses = g_array_new(FALSE, FALSE, sizeof( PinyinKeyPos));
308         parser.parse(validator, keys, poses, pinyin);
309         
310         assert ( item_ptr->get_phrase_length() == keys->len );
311         item_ptr->append_pronunciation((PinyinKey *)keys->data, freq);
312
313         g_array_free(keys, TRUE);
314         g_array_free(poses, TRUE);
315         g_free(phrase_utf16);
316     }
317
318     add_phrase_item( cur_token, item_ptr);
319     delete item_ptr;
320     m_total_freq += m_sub_phrase_indices[phrase_index]->get_phrase_index_total_freq();
321     return true;
322 }