refine namespace pinyin
[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 using namespace pinyin;
25
26 bool PhraseItem::set_n_pronunciation(guint8 n_prouns){
27     m_chunk.set_content(sizeof(guint8), &n_prouns, sizeof(guint8));
28     return true;
29 }
30
31 bool PhraseItem::get_nth_pronunciation(size_t index, PinyinKey * pinyin, guint32 & freq){
32     guint8 phrase_length = get_phrase_length();
33     table_offset_t offset = phrase_item_header + phrase_length * sizeof( utf16_t) + index * ( phrase_length * sizeof (PinyinKey) + sizeof(guint32));
34     bool retval = m_chunk.get_content(offset, pinyin, phrase_length * sizeof(PinyinKey));
35     if ( !retval )
36         return retval;
37     return m_chunk.get_content(offset + phrase_length * sizeof(PinyinKey), &freq , sizeof(guint32));
38 }
39
40 void PhraseItem::append_pronunciation(PinyinKey * pinyin, guint32 freq){
41     guint8 phrase_length = get_phrase_length();
42     set_n_pronunciation(get_n_pronunciation() + 1);
43     m_chunk.set_content(m_chunk.size(), pinyin, phrase_length * sizeof(PinyinKey));
44     m_chunk.set_content(m_chunk.size(), &freq, sizeof(guint32));
45 }
46
47 void PhraseItem::remove_nth_pronunciation(size_t index){
48     guint8 phrase_length = get_phrase_length();
49     set_n_pronunciation(get_n_pronunciation() - 1);
50     size_t offset = phrase_item_header + phrase_length * sizeof ( utf16_t ) + index * (phrase_length * sizeof (PinyinKey) + sizeof(guint32));
51     m_chunk.remove_content(offset, phrase_length * sizeof(PinyinKey) + sizeof(guint32));
52 }
53
54 bool PhraseItem::get_phrase_string(utf16_t * phrase){
55     guint8 phrase_length = get_phrase_length();
56     return m_chunk.get_content(phrase_item_header, phrase, phrase_length * sizeof(utf16_t));
57 }
58
59 bool PhraseItem::set_phrase_string(guint8 phrase_length, utf16_t * phrase){
60     m_chunk.set_content(0, &phrase_length, sizeof(guint8));
61     m_chunk.set_content(phrase_item_header, phrase, phrase_length * sizeof(utf16_t));
62     return true;
63 }
64
65 void PhraseItem::increase_pinyin_possibility(PinyinCustomSettings & custom,
66                                              PinyinKey * pinyin_keys,
67                                              gint32 delta){
68     guint8 phrase_length = get_phrase_length();
69     guint8 npron = get_n_pronunciation();
70     size_t offset = phrase_item_header + phrase_length * sizeof ( utf16_t );
71     char * buf_begin = (char *) m_chunk.begin();
72     guint32 total_freq = 0;
73     for ( int i = 0 ; i < npron ; ++i){
74         char * pinyin_begin = buf_begin + offset +
75             i * ( phrase_length * sizeof(PinyinKey) + sizeof(guint32) );
76         guint32 * freq = (guint32 *)(pinyin_begin + phrase_length * sizeof(PinyinKey));
77         total_freq += *freq;
78         if ( 0 == pinyin_compare_with_ambiguities(custom,
79                                                   (PinyinKey *)pinyin_begin,
80                                                   pinyin_keys,
81                                                   phrase_length)){
82             //protect against total_freq overflow.
83             if ( delta > 0 && total_freq > total_freq + delta )
84                 return;
85             *freq += delta;
86             total_freq += delta;
87         }
88     }
89 }
90
91
92 guint32 SubPhraseIndex::get_phrase_index_total_freq(){
93     return m_total_freq;
94 }
95
96 int SubPhraseIndex::add_unigram_frequency(phrase_token_t token, guint32 delta){
97     table_offset_t offset;
98     guint32 freq;
99     bool result = m_phrase_index.get_content
100         ((token & PHRASE_MASK) 
101          * sizeof(table_offset_t), &offset, sizeof(table_offset_t));
102
103     if ( !result )
104         return ERROR_OUT_OF_RANGE;
105
106     if ( 0 == offset )
107     return ERROR_NO_ITEM;
108
109     result = m_phrase_content.get_content
110         (offset + sizeof(guint8) + sizeof(guint8), &freq, sizeof(guint32));
111
112     if ( !result )
113     return ERROR_FILE_CORRUPTION;
114
115     //protect total_freq overflow
116     if ( delta > 0 && m_total_freq > m_total_freq + delta )
117         return ERROR_INTEGER_OVERFLOW;
118
119     freq += delta;
120     m_total_freq += delta;
121     m_phrase_content.set_content(offset + sizeof(guint8) + sizeof(guint8), &freq, sizeof(guint32));
122
123     return ERROR_OK;
124 }
125
126 int SubPhraseIndex::get_phrase_item(phrase_token_t token, PhraseItem & item){
127     table_offset_t offset;
128     guint8 phrase_length;
129     guint8 n_prons;
130     
131     bool result = m_phrase_index.get_content
132         ((token & PHRASE_MASK) 
133          * sizeof(table_offset_t), &offset, sizeof(table_offset_t));
134
135     if ( !result )
136         return ERROR_OUT_OF_RANGE;
137
138     if ( 0 == offset )
139     return ERROR_NO_ITEM;
140
141     result = m_phrase_content.get_content(offset, &phrase_length, sizeof(guint8));
142     if ( !result ) 
143     return ERROR_FILE_CORRUPTION;
144     
145     result = m_phrase_content.get_content(offset+sizeof(guint8), &n_prons, sizeof(guint8));
146     if ( !result ) 
147         return ERROR_FILE_CORRUPTION;
148
149     size_t length = phrase_item_header + phrase_length * sizeof ( utf16_t ) + n_prons * ( phrase_length * sizeof (PinyinKey) + sizeof(guint32) );
150     item.m_chunk.set_chunk((char *)m_phrase_content.begin() + offset, length, NULL);
151     return ERROR_OK;
152 }
153
154 int SubPhraseIndex::add_phrase_item(phrase_token_t token, PhraseItem * item){
155     table_offset_t offset = m_phrase_content.size();
156     if ( 0 == offset )
157         offset = 8;
158     m_phrase_content.set_content(offset, item->m_chunk.begin(), item->m_chunk.size());
159     m_phrase_index.set_content((token & PHRASE_MASK) 
160                                * sizeof(table_offset_t), &offset, sizeof(table_offset_t));
161     m_total_freq += item->get_unigram_frequency();
162     return ERROR_OK;
163 }
164
165 int SubPhraseIndex::remove_phrase_item(phrase_token_t token, PhraseItem * & item){
166     PhraseItem old_item;
167
168     int result = get_phrase_item(token, old_item);
169     if (result != ERROR_OK)
170     return result;
171
172     item = new PhraseItem;
173     //implictly copy data from m_chunk_content.
174     item->m_chunk.set_content(0, (char *) old_item.m_chunk.begin() , old_item.m_chunk.size());
175
176     const table_offset_t zero_const = 0;
177     m_phrase_index.set_content((token & PHRASE_MASK)
178                                * sizeof(table_offset_t), &zero_const, sizeof(table_offset_t));
179     m_total_freq -= item->get_unigram_frequency();
180     return ERROR_OK;
181 }
182
183 bool FacadePhraseIndex::load(guint8 phrase_index, MemoryChunk * chunk){
184     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
185     if ( !sub_phrases ){
186         sub_phrases = new SubPhraseIndex;
187     }
188     
189     bool retval = sub_phrases->load(chunk, 0, chunk->size());
190     if ( !retval )
191         return retval;
192     m_total_freq += sub_phrases->get_phrase_index_total_freq();
193     return retval;
194 }
195
196 bool FacadePhraseIndex::store(guint8 phrase_index, MemoryChunk * new_chunk){
197     table_offset_t end;
198     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
199     if ( !sub_phrases )
200         return false;
201     
202     sub_phrases->store(new_chunk, 0, end);
203     return true;
204 }
205
206 bool FacadePhraseIndex::unload(guint8 phrase_index){
207     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
208     if ( !sub_phrases )
209         return false;
210     m_total_freq -= sub_phrases->get_phrase_index_total_freq();
211     delete sub_phrases;
212     sub_phrases = NULL;
213     return true;
214 }
215
216 bool SubPhraseIndex::load(MemoryChunk * chunk, 
217                           table_offset_t offset, table_offset_t end){
218     //save the memory chunk
219     if ( m_chunk ){
220         delete m_chunk;
221         m_chunk = NULL;
222     }
223     m_chunk = chunk;
224     
225     char * buf_begin = (char *)chunk->begin();
226     chunk->get_content(offset, &m_total_freq, sizeof(guint32));
227     offset += sizeof(guint32);
228     table_offset_t index_one, index_two, index_three;
229     chunk->get_content(offset, &index_one, sizeof(table_offset_t));
230     offset += sizeof(table_offset_t);
231     chunk->get_content(offset, &index_two, sizeof(table_offset_t));
232     offset += sizeof(table_offset_t);
233     chunk->get_content(offset, &index_three, sizeof(table_offset_t));
234     offset += sizeof(table_offset_t);
235     g_return_val_if_fail(*(buf_begin + offset) == c_separate, FALSE);
236     g_return_val_if_fail(*(buf_begin + index_two - 1) == c_separate, FALSE);
237     g_return_val_if_fail(*(buf_begin + index_three - 1) == c_separate, FALSE);
238     m_phrase_index.set_chunk(buf_begin + index_one, 
239                              index_two - 1 - index_one, NULL);
240     m_phrase_content.set_chunk(buf_begin + index_two, 
241                                  index_three - 1 - index_two, NULL);
242     g_return_val_if_fail( index_three <= end, FALSE);
243     return true;
244 }
245
246 bool SubPhraseIndex::store(MemoryChunk * new_chunk, 
247                            table_offset_t offset, table_offset_t& end){
248     new_chunk->set_content(offset, &m_total_freq, sizeof(guint32));
249     table_offset_t index = offset + sizeof(guint32);
250         
251     offset = index + sizeof(table_offset_t) * 3 ;
252     new_chunk->set_content(offset, &c_separate, sizeof(char));
253     offset += sizeof(char);
254     
255     new_chunk->set_content(index, &offset, sizeof(table_offset_t));
256     index += sizeof(table_offset_t);
257     new_chunk->set_content(offset, m_phrase_index.begin(), m_phrase_index.size());
258     offset += m_phrase_index.size();
259     new_chunk->set_content(offset, &c_separate, sizeof(char));
260     offset += sizeof(char);
261
262     new_chunk->set_content(index, &offset, sizeof(table_offset_t));
263     index += sizeof(table_offset_t);
264     
265     new_chunk->set_content(offset, m_phrase_content.begin(), m_phrase_content.size());
266     offset += m_phrase_content.size();
267     new_chunk->set_content(offset, &c_separate, sizeof(char));
268     offset += sizeof(char);
269     new_chunk->set_content(index, &offset, sizeof(table_offset_t));
270     return true;
271 }
272
273 bool FacadePhraseIndex::load_text(guint8 phrase_index, FILE * infile){
274     SubPhraseIndex * & sub_phrases = m_sub_phrase_indices[phrase_index];
275     if ( !sub_phrases ){
276         sub_phrases = new SubPhraseIndex;
277     }
278
279     char pinyin[256];
280     char phrase[256];
281     phrase_token_t token;
282     size_t freq;
283     PhraseItem * item_ptr = new PhraseItem;
284     phrase_token_t cur_token = 0;
285     while ( !feof(infile)){
286         fscanf(infile, "%s", pinyin);
287         fscanf(infile, "%s", phrase);
288         fscanf(infile, "%u", &token);
289         fscanf(infile, "%ld", &freq);
290         if ( feof(infile) )
291             break;
292
293         assert(PHRASE_INDEX_LIBRARY_INDEX(token) == phrase_index );
294
295         glong written;
296         utf16_t * phrase_utf16 = g_utf8_to_utf16(phrase, -1, NULL, 
297                                                &written, NULL);
298         
299         if ( 0 == cur_token ){
300             cur_token = token;
301             item_ptr->set_phrase_string(written, phrase_utf16);
302         }
303
304         if ( cur_token != token ){
305             add_phrase_item( cur_token, item_ptr);
306             delete item_ptr;
307             item_ptr = new PhraseItem;
308             cur_token = token;
309             item_ptr->set_phrase_string(written, phrase_utf16);
310         }
311
312         PinyinDefaultParser parser;
313         NullPinyinValidator validator;
314         PinyinKeyVector keys;
315         PinyinKeyPosVector poses;
316         
317         keys = g_array_new(FALSE, FALSE, sizeof( PinyinKey));
318         poses = g_array_new(FALSE, FALSE, sizeof( PinyinKeyPos));
319         parser.parse(validator, keys, poses, pinyin);
320         
321         assert ( item_ptr->get_phrase_length() == keys->len );
322         item_ptr->append_pronunciation((PinyinKey *)keys->data, freq);
323
324         g_array_free(keys, TRUE);
325         g_array_free(poses, TRUE);
326         g_free(phrase_utf16);
327     }
328
329     add_phrase_item( cur_token, item_ptr);
330     delete item_ptr;
331     m_total_freq += m_sub_phrase_indices[phrase_index]->get_phrase_index_total_freq();
332     return true;
333 }
334
335 int FacadePhraseIndex::get_range(guint8 phrase_index, /* out */ PhraseIndexRange & range){
336     SubPhraseIndex * sub_phrase = m_sub_phrase_indices[phrase_index];
337     if ( !sub_phrase )
338         return ERROR_NO_SUB_PHRASE_INDEX;
339
340     int result = sub_phrase->get_range(range);
341     if ( result )
342         return result;
343
344     range.m_range_begin = PHRASE_INDEX_MAKE_TOKEN(phrase_index, range.m_range_begin);
345     range.m_range_end = PHRASE_INDEX_MAKE_TOKEN(phrase_index, range.m_range_end);
346     return ERROR_OK;
347 }
348
349 int SubPhraseIndex::get_range(/* out */ PhraseIndexRange & range){
350     const table_offset_t * begin = (const table_offset_t *)m_phrase_index.begin();
351     const table_offset_t * end = (const table_offset_t *)m_phrase_index.end();
352
353     range.m_range_begin = 1; /* token starts with 1 in gen_pinyin_table. */
354     range.m_range_end = end - begin;
355
356     return ERROR_OK;
357 }
358
359 bool FacadePhraseIndex::compat(){
360     for ( size_t index = 0; index < PHRASE_INDEX_LIBRARY_COUNT; ++index) {
361         SubPhraseIndex * sub_phrase = m_sub_phrase_indices[index];
362         if ( !sub_phrase )
363             continue;
364
365         SubPhraseIndex * new_sub_phrase =  new SubPhraseIndex;
366         PhraseIndexRange range;
367         int result = sub_phrase->get_range(range);
368         if ( result != ERROR_OK ) {
369             delete new_sub_phrase;
370             continue;
371         }
372
373         PhraseItem item;
374         for ( phrase_token_t token = range.m_range_begin;
375               token < range.m_range_end;
376               ++token ) {
377             result = sub_phrase->get_phrase_item(token, item);
378             if ( result != ERROR_OK )
379                 continue;
380             new_sub_phrase->add_phrase_item(token, &item);
381         }
382
383         delete sub_phrase;
384         m_sub_phrase_indices[index] = new_sub_phrase;
385     }
386     return true;
387 }