From 8723118e91ccacda4bb3b55fba5eeaa5cbe2eff6 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Thu, 15 Mar 2012 16:18:58 +0800 Subject: add comments --- src/storage/facade_chewing_table.h | 2 +- src/storage/flexible_ngram.h | 205 ++++++++++++++++++++++++++++++++++--- 2 files changed, 192 insertions(+), 15 deletions(-) (limited to 'src/storage') diff --git a/src/storage/facade_chewing_table.h b/src/storage/facade_chewing_table.h index 4a6ed3b..3535c04 100644 --- a/src/storage/facade_chewing_table.h +++ b/src/storage/facade_chewing_table.h @@ -54,7 +54,7 @@ public: /** * FacadeChewingTable::set_options: * @options: the pinyin options. - * @returns: whether the setting options is successfully. + * @returns: whether the setting options is successful. * * Set the options of the system and user chewing table. * diff --git a/src/storage/flexible_ngram.h b/src/storage/flexible_ngram.h index a96bf69..dda0552 100644 --- a/src/storage/flexible_ngram.h +++ b/src/storage/flexible_ngram.h @@ -35,6 +35,15 @@ namespace pinyin{ typedef GArray * FlexibleBigramPhraseArray; +/** + * FlexibleSingleGram: + * @ArrayHeader: the struct ArrayHeader. + * @ArrayItem: the struct ArrayItem. + * + * The flexible single gram is mainly used for training purpose. + * + */ + template class FlexibleSingleGram{ template class FlexibleBigram{ @@ -265,6 +356,13 @@ private: } public: + /** + * FlexibleBigram::FlexibleBigram: + * @magic_number: the 4 bytes magic number of the bi-gram. + * + * The constructor of the FlexibleBigram. + * + */ FlexibleBigram(const char * magic_number){ m_db = NULL; m_magic_header_index[0] = null_token; @@ -273,11 +371,25 @@ public: memcpy(m_magic_number, magic_number, sizeof(m_magic_number)); } + /** + * FlexibleBigram::~FlexibleBigram: + * + * The destructor of the FlexibleBigram. + * + */ ~FlexibleBigram(){ reset(); } - /* attach berkeley db on filesystem for training purpose. */ + /** + * FlexibleBigram::attach: + * @dbfile: the path name of the flexible bi-gram. + * @flags: the attach flags for the Berkeley DB. + * @returns: whether the attach operation is successful. + * + * Attach Berkeley DB on filesystem for training purpose. + * + */ bool attach(const char * dbfile, guint32 flags){ reset(); u_int32_t db_flags = 0; @@ -338,7 +450,15 @@ public: return false; } - /* load/store one array. */ + /** + * FlexibleBigram::load: + * @index: the previous token in the flexible bi-gram. + * @single_gram: the single gram of the previous token. + * @returns: whether the load operation is successful. + * + * Load the single gram of the previous token. + * + */ bool load(phrase_token_t index, FlexibleSingleGram * & single_gram){ if ( !m_db ) @@ -363,6 +483,15 @@ public: return true; } + /** + * FlexibleBigram::store: + * @index: the previous token in the flexible bi-gram. + * @single_gram: the single gram of the previous token. + * @returns: whether the store operation is successful. + * + * Store the single gram of the previous token. + * + */ bool store(phrase_token_t index, FlexibleSingleGram * single_gram){ if ( !m_db ) @@ -381,6 +510,14 @@ public: return ret == 0; } + /** + * FlexibleBigram::remove: + * @index: the previous token in the flexible bi-gram. + * @returns: whether the remove operation is successful. + * + * Remove the single gram of the previous token. + * + */ bool remove(phrase_token_t index){ if ( !m_db ) return false; @@ -394,7 +531,14 @@ public: return ret == 0; } - /* array of phrase_token_t items, for parameter estimation. */ + /** + * FlexibleBigram::get_all_items: + * @items: the GArray to store all previous tokens. + * @returns: whether the get operation is successful. + * + * Get the array of all previous tokens for parameter estimation. + * + */ bool get_all_items(GArray * items){ g_array_set_size(items, 0); if ( !m_db ) @@ -432,7 +576,14 @@ public: return true; } - /* get/set magic header. */ + /** + * FlexibleBigram::get_magic_header: + * @header: the magic header. + * @returns: whether the get operation is successful. + * + * Get the magic header of the flexible bi-gram. + * + */ bool get_magic_header(MagicHeader & header){ /* clear retval */ memset(&header, 0, sizeof(MagicHeader)); @@ -461,6 +612,14 @@ public: return true; } + /** + * FlexibleBigram::set_magic_header: + * @header: the magic header. + * @returns: whether the set operation is successful. + * + * Set the magic header of the flexible bi-gram. + * + */ bool set_magic_header(const MagicHeader & header){ if ( !m_db ) return false; @@ -481,6 +640,15 @@ public: return ret == 0; } + /** + * FlexibleBigram::get_array_header: + * @index: the previous token in the flexible bi-gram. + * @header: the array header in the single gram of the previous token. + * @returns: whether the get operation is successful. + * + * Get the array header in the single gram of the previous token. + * + */ bool get_array_header(phrase_token_t index, ArrayHeader & header){ /* clear retval */ memset(&header, 0, sizeof(ArrayHeader)); @@ -507,6 +675,15 @@ public: return true; } + /** + * FlexibleBigram::set_array_header: + * @index: the previous token of the flexible bi-gram. + * @header: the array header in the single gram of the previous token. + * @returns: whether the set operation is successful. + * + * Set the array header in the single gram of the previous token. + * + */ bool set_array_header(phrase_token_t index, const ArrayHeader & header){ if ( !m_db ) return false; -- cgit