X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaz-icu.c;h=56e2bf49a9946dafb02c21add9d926bd59e8d54f;hb=65371f5d5f265a4c5ee43f784b2d8a6db1e0774a;hp=a876186a1414b622ceed17d3d591243903a4ac63;hpb=e005fd551460aab9ccefb561e42c746cc58fd302;p=yaz-moved-to-github.git diff --git a/util/yaz-icu.c b/util/yaz-icu.c index a876186..56e2bf4 100644 --- a/util/yaz-icu.c +++ b/util/yaz-icu.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: yaz-icu.c,v 1.3 2007-10-24 14:48:18 marc Exp $ + * $Id: yaz-icu.c,v 1.15 2007-11-15 08:45:52 adam Exp $ */ #if HAVE_CONFIG_H @@ -16,20 +16,23 @@ #include - -#if HAVE_ICU +#if YAZ_HAVE_ICU #include #include +#include +#include +#include -#include +#include +#include /* commando line and config parameters */ static struct config_t { char conffile[1024]; char print[1024]; int xmloutput; - struct icu_chain * chain; + yaz_icu_chain_t chain; FILE * infile; FILE * outfile; } config; @@ -51,14 +54,11 @@ void print_option_error(const struct config_t *p_config) "./yaz-icu -p t -x\n" "\n" "Example ICU chain XML configuration file:\n" - "\n" - " \n" + "\n" + " \n" " \n" - " \n" - " \n" + " \n" " \n" - " \n" - " \n" "\n" ); exit(1); @@ -139,7 +139,8 @@ static void print_icu_converters(const struct config_t *p_config) ucnv_getDefaultName()); } - for(i=0;ixmloutput) fprintf(config.outfile, "\n", ucnv_getAvailableName(i)); @@ -174,7 +175,8 @@ static void print_icu_transliterators(const struct config_t *p_config) fprintf(config.outfile, " %s", buf); } - if (p_config->xmloutput){ + if (p_config->xmloutput) + { fprintf(config.outfile, "\n"); } else @@ -271,8 +273,8 @@ static void print_icu_xml_locales(const struct config_t *p_config) count = uloc_countAvailable() ; - if (p_config->xmloutput){ - + if (p_config->xmloutput) + { fprintf(config.outfile, "\n", count, uloc_getDefault(), ucol_countAvailable()); } @@ -346,7 +348,8 @@ static void print_icu_xml_locales(const struct config_t *p_config) &status); - if (p_config->xmloutput){ + if (p_config->xmloutput) + { fprintf(config.outfile, "\n"); } - else if (1 == p_config->xmloutput){ + else if (1 == p_config->xmloutput) + { fprintf(config.outfile, "%s", uloc_getAvailable(i)); fprintf(config.outfile, " | "); if (strlen(name_str)) @@ -388,7 +392,8 @@ static void print_icu_xml_locales(const struct config_t *p_config) else fprintf(config.outfile, "\n"); - if(U_FAILURE(status)) { + if(U_FAILURE(status)) + { fprintf(stderr, "ICU Error: %d %s\n", status, u_errorName(status)); exit(status); } @@ -428,7 +433,6 @@ static void process_text_file(const struct config_t *p_config) xmlDoc *doc = xmlParseFile(config.conffile); xmlNode *xml_node = xmlDocGetRootElement(doc); - xmlChar *xml_locale = xmlGetProp(xml_node, (xmlChar *) "locale"); long unsigned int token_count = 0; long unsigned int line_count = 0; @@ -436,19 +440,14 @@ static void process_text_file(const struct config_t *p_config) UErrorCode status = U_ZERO_ERROR; int success = 0; - if (! xml_node) { + if (! xml_node) + { printf("Could not parse XML config file '%s' \n", config.conffile); exit (1); } - if (!xml_locale || !strlen((const char *) xml_locale)) - return; - - config.chain = icu_chain_xml_config(xml_node, (uint8_t *) "en", &status); - - xmlFree(xml_locale); - + config.chain = icu_chain_xml_config(xml_node, 1, &status); if (config.chain && U_SUCCESS(status)) success = 1; @@ -457,8 +456,6 @@ static void process_text_file(const struct config_t *p_config) config.conffile); exit (1); } - - if (p_config->xmloutput) fprintf(config.outfile, @@ -472,26 +469,37 @@ static void process_text_file(const struct config_t *p_config) success = icu_chain_assign_cstr(config.chain, line, &status); line_count++; - while (success && icu_chain_next_token(config.chain, &status)){ + while (success && icu_chain_next_token(config.chain, &status)) + { + WRBUF sw = wrbuf_alloc(); if (U_FAILURE(status)) success = 0; else { + const char *sortkey = icu_chain_token_sortkey(config.chain); + wrbuf_rewind(sw); + wrbuf_puts_escaped(sw, sortkey); token_count++; if (p_config->xmloutput) + { + /* should XML encode this. Bug #1902 */ fprintf(config.outfile, "\n", + " norm=\"%s\" display=\"%s\" sortkey=\"%s\"/>\n", token_count, line_count, - icu_chain_get_norm(config.chain), - icu_chain_get_display(config.chain)); + icu_chain_token_norm(config.chain), + icu_chain_token_display(config.chain), + wrbuf_cstr(sw)); + } else - fprintf(config.outfile, "%lu %lu '%s' '%s'\n", + fprintf(config.outfile, "%lu %lu '%s' '%s' '%s'\n", token_count, line_count, - icu_chain_get_norm(config.chain), - icu_chain_get_display(config.chain)); + icu_chain_token_norm(config.chain), + icu_chain_token_display(config.chain), + wrbuf_cstr(sw)); } + wrbuf_destroy(sw); } } @@ -507,13 +515,13 @@ static void process_text_file(const struct config_t *p_config) free(line); } -#endif /* HAVE_ICU */ +#endif /* YAZ_HAVE_ICU */ int main(int argc, char **argv) { -#if HAVE_ICU +#if YAZ_HAVE_ICU read_params(argc, argv, &config); @@ -523,14 +531,14 @@ int main(int argc, char **argv) if (config.print && strlen(config.print)) print_info(&config); -#else /* HAVE_ICU */ +#else /* YAZ_HAVE_ICU */ printf("ICU not available on your system.\n" "Please install libicu36-dev and icu-doc or similar, " "re-configure and re-compile\n"); -#endif /* HAVE_ICU */ +#endif /* YAZ_HAVE_ICU */ return(0); }