1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2008 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 \brief Pazpar2 Character set facilities
28 #include <yaz/xmalloc.h>
29 #include <yaz/wrbuf.h>
35 #include "normalize7bit.h"
42 struct pp2_charset_s {
43 const char *(*token_next_handler)(pp2_relevance_token_t prt);
44 const char *(*get_sort_handler)(pp2_relevance_token_t prt, int skip);
46 struct icu_chain * icu_chn;
51 static const char *pp2_relevance_token_a_to_z(pp2_relevance_token_t prt);
52 static const char *pp2_get_sort_ascii(pp2_relevance_token_t prt, int skip_article);
55 static const char *pp2_relevance_token_icu(pp2_relevance_token_t prt);
56 static const char *pp2_get_sort_icu(pp2_relevance_token_t prt, int skip_article);
59 /* tokenzier handle */
60 struct pp2_relevance_token_s {
61 const char *cp; /* unnormalized buffer we're tokenizing */
62 const char *last_cp; /* pointer to last token we're dealing with */
63 pp2_charset_t pct; /* our main charset handle (type+config) */
64 WRBUF norm_str; /* normized string we return (temporarily) */
65 WRBUF sort_str; /* sort string we return (temporarily) */
69 pp2_charset_t pp2_charset_create_xml(xmlNode *xml_node)
72 UErrorCode status = U_ZERO_ERROR;
73 struct icu_chain *chain = 0;
74 while (xml_node && xml_node->type != XML_ELEMENT_NODE)
75 xml_node = xml_node->next;
76 chain = icu_chain_xml_config(xml_node, &status);
77 if (!chain || U_FAILURE(status)){
78 //xmlDocPtr icu_doc = 0;
79 //xmlChar *xmlstr = 0;
81 //xmlDocDumpMemory(icu_doc, size);
83 yaz_log(YLOG_FATAL, "Could not parse ICU chain config:\n"
85 xml_node->name, xml_node->name);
88 return pp2_charset_create(chain);
90 yaz_log(YLOG_FATAL, "Error: ICU support requested with element:\n"
92 xml_node->name, xml_node->name);
94 "But no ICU support compiled into pazpar2 server.");
96 "Please install libicu36-dev and icu-doc or similar, "
97 "re-configure and re-compile");
103 pp2_charset_t pp2_charset_create(struct icu_chain * icu_chn)
105 pp2_charset_t pct = xmalloc(sizeof(*pct));
107 pct->token_next_handler = pp2_relevance_token_a_to_z;
108 pct->get_sort_handler = pp2_get_sort_ascii;
113 pct->icu_chn = icu_chn;
114 pct->icu_sts = U_ZERO_ERROR;
115 pct->token_next_handler = pp2_relevance_token_icu;
116 pct->get_sort_handler = pp2_get_sort_icu;
122 void pp2_charset_destroy(pp2_charset_t pct)
127 pp2_relevance_token_t pp2_relevance_tokenize(pp2_charset_t pct,
130 pp2_relevance_token_t prt = xmalloc(sizeof(*prt));
134 prt->norm_str = wrbuf_alloc();
135 prt->sort_str = wrbuf_alloc();
144 pct->icu_sts = U_ZERO_ERROR;
145 ok = icu_chain_assign_cstr(pct->icu_chn, buf, &pct->icu_sts);
146 //printf("\nfield ok: %d '%s'\n", ok, buf);
154 void pp2_relevance_token_destroy(pp2_relevance_token_t prt)
158 wrbuf_destroy(prt->norm_str);
160 wrbuf_destroy(prt->sort_str);
164 const char *pp2_relevance_token_next(pp2_relevance_token_t prt)
167 return (prt->pct->token_next_handler)(prt);
170 const char *pp2_get_sort(pp2_relevance_token_t prt, int skip)
172 return prt->pct->get_sort_handler(prt, skip);
175 #define raw_char(c) (((c) >= 'a' && (c) <= 'z') ? (c) : -1)
176 /* original tokenizer with our tokenize interface, but we
177 add +1 to ensure no '\0' are in our string (except for EOF)
179 static const char *pp2_relevance_token_a_to_z(pp2_relevance_token_t prt)
181 const char *cp = prt->cp;
184 /* skip white space */
185 while (*cp && (c = raw_char(tolower(*(const unsigned char *)cp))) < 0)
193 /* now read the term itself */
196 wrbuf_rewind(prt->norm_str);
197 while (*cp && (c = raw_char(tolower(*cp))) >= 0)
199 wrbuf_putc(prt->norm_str, c);
203 return wrbuf_cstr(prt->norm_str);
206 static const char *pp2_get_sort_ascii(pp2_relevance_token_t prt,
209 if (prt->last_cp == 0)
213 char *tmp = xstrdup(prt->last_cp);
215 result = normalize7bit_mergekey(tmp, skip_article);
217 wrbuf_rewind(prt->sort_str);
218 wrbuf_puts(prt->sort_str, result);
220 return wrbuf_cstr(prt->sort_str);
226 static const char *pp2_relevance_token_icu(pp2_relevance_token_t prt)
228 if (icu_chain_next_token(prt->pct->icu_chn, &prt->pct->icu_sts))
230 if (U_FAILURE(prt->pct->icu_sts))
234 return icu_chain_get_norm(prt->pct->icu_chn);
239 static const char *pp2_get_sort_icu(pp2_relevance_token_t prt,
242 return icu_chain_get_sort(prt->pct->icu_chn);
252 * indent-tabs-mode: nil
254 * vim: shiftwidth=4 tabstop=8 expandtab