summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2012-09-06 16:42:38 +0800
committerPeng Wu <alexepico@gmail.com>2012-09-06 16:42:38 +0800
commitd3421240981c52ab7130bb131432b508eb0820df (patch)
tree449095dd0de4a93d7206c619b56372ab4144fcf8
parentaa44636f3a8b9b5630d8785029617bbc81dca7b8 (diff)
downloadlibpinyin-d3421240981c52ab7130bb131432b508eb0820df.tar.gz
libpinyin-d3421240981c52ab7130bb131432b508eb0820df.tar.xz
libpinyin-d3421240981c52ab7130bb131432b508eb0820df.zip
remove duplicated defines
-rw-r--r--utils/storage/import_interpolation.cpp18
-rw-r--r--utils/training/import_k_mixture_model.cpp19
-rw-r--r--utils/training/k_mixture_model_to_interpolation.cpp11
-rw-r--r--utils/utils_helper.h19
4 files changed, 20 insertions, 47 deletions
diff --git a/utils/storage/import_interpolation.cpp b/utils/storage/import_interpolation.cpp
index 787f893..0974eb0 100644
--- a/utils/storage/import_interpolation.cpp
+++ b/utils/storage/import_interpolation.cpp
@@ -24,24 +24,6 @@
#include "pinyin_internal.h"
#include "utils_helper.h"
-#define TAGLIB_GET_VALUE(var, index) \
- phrase_token_t var = null_token; \
- { \
- const char * string = (const char *) g_ptr_array_index \
- (values, index); \
- var = taglib_string_to_token \
- (phrase_table, phrase_index, string); \
- }
-
-#define TAGLIB_GET_TAGVALUE(type, var, conv) \
- type var; \
- { \
- gpointer value = NULL; \
- assert(g_hash_table_lookup_extended \
- (required, #var, NULL, &value)); \
- var = conv((const char *)value); \
- }
-
enum LINE_TYPE{
BEGIN_LINE = 1,
END_LINE,
diff --git a/utils/training/import_k_mixture_model.cpp b/utils/training/import_k_mixture_model.cpp
index 7af768e..b53be75 100644
--- a/utils/training/import_k_mixture_model.cpp
+++ b/utils/training/import_k_mixture_model.cpp
@@ -24,25 +24,6 @@
#include "utils_helper.h"
#include "k_mixture_model.h"
-#define TAGLIB_GET_VALUE(var, index) \
- phrase_token_t var = null_token; \
- { \
- const char * string = (const char *) g_ptr_array_index \
- (values, index); \
- var = taglib_string_to_token \
- (phrase_table, phrase_index, string); \
- }
-
-#define TAGLIB_GET_TAGVALUE(type, var, conv) \
- type var; \
- { \
- gpointer value = NULL; \
- assert(g_hash_table_lookup_extended \
- (required, #var, NULL, &value)); \
- var = conv((const char *)value); \
- }
-
-
enum LINE_TYPE{
BEGIN_LINE = 1,
END_LINE,
diff --git a/utils/training/k_mixture_model_to_interpolation.cpp b/utils/training/k_mixture_model_to_interpolation.cpp
index 7428e01..3a83f32 100644
--- a/utils/training/k_mixture_model_to_interpolation.cpp
+++ b/utils/training/k_mixture_model_to_interpolation.cpp
@@ -20,16 +20,7 @@
*/
#include "pinyin_internal.h"
-
-#define TAGLIB_GET_TAGVALUE(type, var, conv) \
- type var; \
- { \
- gpointer value = NULL; \
- assert(g_hash_table_lookup_extended \
- (required, #var, NULL, &value)); \
- var = conv((const char *)value); \
- }
-
+#include "utils_helper.h"
enum LINE_TYPE{
BEGIN_LINE = 1,
diff --git a/utils/utils_helper.h b/utils/utils_helper.h
index 152807b..db2a5c1 100644
--- a/utils/utils_helper.h
+++ b/utils/utils_helper.h
@@ -23,6 +23,25 @@
#ifndef UTILS_HELPER_H
#define UTILS_HELPER_H
+#define TAGLIB_GET_VALUE(var, index) \
+ phrase_token_t var = null_token; \
+ { \
+ const char * string = (const char *) g_ptr_array_index \
+ (values, index); \
+ var = taglib_string_to_token \
+ (phrase_table, phrase_index, string); \
+ }
+
+#define TAGLIB_GET_TAGVALUE(type, var, conv) \
+ type var; \
+ { \
+ gpointer value = NULL; \
+ assert(g_hash_table_lookup_extended \
+ (required, #var, NULL, &value)); \
+ var = conv((const char *)value); \
+ }
+
+
static bool load_phrase_index(FacadePhraseIndex * phrase_index) {
MemoryChunk * chunk = NULL;
for (size_t i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {