Return no yaz_stemmer on misconfiguration. Handle null pointer in clone and destroy...
[yaz-moved-to-github.git] / src / stemmer.c
1
2
3 #if HAVE_CONFIG_H
4 #include "config.h"
5 #endif
6
7 #if YAZ_HAVE_ICU
8
9 #include <yaz/yconfig.h>
10
11 #include <yaz/stemmer.h>
12
13 #include <yaz/xmalloc.h>
14
15 #include <libstemmer.h>
16
17 #include <unicode/ustring.h>  /* some more string fcns*/
18 #include <unicode/uchar.h>    /* char names           */
19
20 enum stemmer_implementation {
21     yaz_no_operation,
22     yaz_snowball
23 };
24 struct yaz_stemmer_t
25 {
26     int implementation;
27     // Required for cloning.
28     char *locale;
29     char *rule;
30     union {
31         struct sb_stemmer *sb_stemmer;
32     };
33 };
34
35 const char* yaz_stemmer_lookup_charenc(const char *charenc, const char *rule) {
36     return "UTF_8";
37 }
38
39 const char* yaz_stemmer_lookup_algorithm(const char *locale, const char *rule) {
40     return locale;
41 }
42
43 yaz_stemmer_p yaz_stemmer_snowball_create(const char *locale, const char *rule, UErrorCode *status) {
44     const char *charenc = yaz_stemmer_lookup_charenc(locale, rule);
45     const char *algorithm = yaz_stemmer_lookup_algorithm(locale,rule);
46     struct sb_stemmer *stemmer = sb_stemmer_new(algorithm, charenc);
47     yaz_stemmer_p yaz_stemmer;
48     if (stemmer == 0) {
49         *status = U_ILLEGAL_ARGUMENT_ERROR;
50         yaz_log(YLOG_FATAL, "yaz_stemmer: Failed to create snowball stemmer from locale %srule %s. Showball: charenc %s algorithm %s ", 
51                 locale, rule, charenc, algorithm);
52         return 0;
53     }
54     yaz_log(YLOG_DEBUG, "created snowball stemmer: algoritm %s charenc %s ", algorithm, charenc);
55     yaz_stemmer = xmalloc(sizeof(*yaz_stemmer));
56     yaz_stemmer->implementation = yaz_snowball;
57       
58     yaz_stemmer->locale = xstrdup(locale);
59     yaz_stemmer->rule = xstrdup(rule);
60     yaz_stemmer->sb_stemmer = stemmer;
61     yaz_log(YLOG_DEBUG, "created snowball stemmer: algoritm %s charenc %s ", algorithm, charenc);
62     return yaz_stemmer;
63 }
64
65 yaz_stemmer_p yaz_stemmer_create(const char *locale, const char *rule, UErrorCode *status) {
66     *status = U_ZERO_ERROR;
67     // dispatch logic required if more algorithms is implemented.
68     yaz_log(YLOG_DEBUG, "create stemmer: locale %s rule %s ", locale, rule);
69     return yaz_stemmer_snowball_create(locale, rule, status);
70 }
71
72 yaz_stemmer_p yaz_stemmer_clone(yaz_stemmer_p stemmer) {
73     UErrorCode error = U_ZERO_ERROR;
74     if (stemmer == 0)
75       return 0;
76     return yaz_stemmer_create(stemmer->locale, stemmer->rule, &error);
77 }
78
79 void yaz_stemmer_stem(yaz_stemmer_p stemmer, struct icu_buf_utf16 *dst, struct icu_buf_utf16* src, UErrorCode *status)
80 {
81     switch(stemmer->implementation) {
82         case yaz_snowball: {
83             struct icu_buf_utf8 *utf8_buf = icu_buf_utf8_create(0);
84             icu_utf16_to_utf8(utf8_buf, src, status);
85             if (*status == U_ZERO_ERROR) {
86                 const sb_symbol *cstr = (const sb_symbol*) icu_buf_utf8_to_cstr(utf8_buf);
87                 const sb_symbol *sb_symbol = sb_stemmer_stem(stemmer->sb_stemmer, cstr, utf8_buf->utf8_len);
88                 if (sb_symbol == 0) {
89                     icu_buf_utf16_copy(dst, src);
90                 }
91                 else {
92                     const char *cstr = (const char *) sb_symbol;
93                     icu_utf16_from_utf8_cstr(dst, cstr , status);
94                 }
95             }
96             icu_buf_utf8_destroy(utf8_buf);
97             return ;
98             break;
99         }
100     case yaz_no_operation:
101       yaz_log(YLOG_DEBUG, "Stemmer (No operation) called");
102     default: {
103             // Default return the same as given.
104             icu_buf_utf16_copy(dst, src);
105         }
106     }
107 }
108
109 void yaz_stemmer_destroy(yaz_stemmer_p stemmer) 
110 {
111   /* Handle no stemmer correctly */
112   if (stemmer == 0)
113     return ;
114
115   switch (stemmer->implementation) {
116   case yaz_snowball:
117     sb_stemmer_delete(stemmer->sb_stemmer);
118     break;
119   }
120   xfree(stemmer->locale);
121   xfree(stemmer->rule);
122   xfree(stemmer);
123 }
124
125 #endif /* YAZ_HAVE_ICU */