From: Adam Dickmeiss Date: Thu, 15 Nov 2012 12:47:18 +0000 (+0100) Subject: Avoid using 'icu_chain' in non-YAZ_HAVE_ICU mode X-Git-Tag: v1.6.24~24 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=7118da8de283be0e294bbaf4501ba002cca22d89;p=pazpar2-moved-to-github.git Avoid using 'icu_chain' in non-YAZ_HAVE_ICU mode Not that it happens often. --- diff --git a/src/charsets.c b/src/charsets.c index 5fa6c39..fe91420 100644 --- a/src/charsets.c +++ b/src/charsets.c @@ -36,17 +36,18 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include "charsets.h" #include "normalize7bit.h" -#if YAZ_HAVE_ICU -#include -#endif - typedef struct pp2_charset_s *pp2_charset_t; static pp2_charset_t pp2_charset_create_xml(xmlNode *xml_node); -static pp2_charset_t pp2_charset_create(struct icu_chain * icu_chn); +static pp2_charset_t pp2_charset_create(void); static pp2_charset_t pp2_charset_create_a_to_z(void); static void pp2_charset_destroy(pp2_charset_t pct); static pp2_charset_token_t pp2_charset_tokenize(pp2_charset_t pct); +#if YAZ_HAVE_ICU +#include +static pp2_charset_t pp2_charset_create_icu(struct icu_chain *icu_chn); +#endif + /* charset handle */ struct pp2_charset_s { const char *(*token_next_handler)(pp2_charset_token_t prt); @@ -105,7 +106,7 @@ pp2_charset_fact_t pp2_charset_fact_create(void) pp2_charset_fact_add(pft, pp2_charset_create_a_to_z(), "relevance"); pp2_charset_fact_add(pft, pp2_charset_create_a_to_z(), "sort"); pp2_charset_fact_add(pft, pp2_charset_create_a_to_z(), "mergekey"); - pp2_charset_fact_add(pft, pp2_charset_create(0), "facet"); + pp2_charset_fact_add(pft, pp2_charset_create(), "facet"); return pft; } @@ -207,7 +208,7 @@ pp2_charset_t pp2_charset_create_xml(xmlNode *xml_node) xml_node->name, xml_node->name); return 0; } - return pp2_charset_create(chain); + return pp2_charset_create_icu(chain); #else // YAZ_HAVE_ICU yaz_log(YLOG_FATAL, "Error: ICU support requested with element:\n" "<%s>\n ... \n", @@ -218,14 +219,7 @@ pp2_charset_t pp2_charset_create_xml(xmlNode *xml_node) #endif // YAZ_HAVE_ICU } -pp2_charset_t pp2_charset_create_a_to_z(void) -{ - pp2_charset_t pct = pp2_charset_create(0); - pct->token_next_handler = pp2_charset_token_a_to_z; - return pct; -} - -pp2_charset_t pp2_charset_create(struct icu_chain *icu_chn) +pp2_charset_t pp2_charset_create(void) { pp2_charset_t pct = xmalloc(sizeof(*pct)); @@ -234,6 +228,21 @@ pp2_charset_t pp2_charset_create(struct icu_chain *icu_chn) pct->get_display_handler = pp2_get_display_ascii; #if YAZ_HAVE_ICU pct->icu_chn = 0; +#endif // YAZ_HAVE_ICU + return pct; +} + +pp2_charset_t pp2_charset_create_a_to_z(void) +{ + pp2_charset_t pct = pp2_charset_create(); + pct->token_next_handler = pp2_charset_token_a_to_z; + return pct; +} + +#if YAZ_HAVE_ICU +pp2_charset_t pp2_charset_create_icu(struct icu_chain *icu_chn) +{ + pp2_charset_t pct = pp2_charset_create(); if (icu_chn) { pct->icu_chn = icu_chn; @@ -242,9 +251,9 @@ pp2_charset_t pp2_charset_create(struct icu_chain *icu_chn) pct->get_sort_handler = pp2_get_sort_icu; pct->get_display_handler = pp2_get_display_icu; } -#endif // YAZ_HAVE_ICU return pct; } +#endif // YAZ_HAVE_ICU void pp2_charset_destroy(pp2_charset_t pct) {