1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
|
/*
* Copyright (C) 2006, Jamie McCracken <jamiemcc@gnome.org>
* Copyright (C) 2008,2009,2010 Nokia <ivan.frade@nokia.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include <locale.h>
#include <unicode/utypes.h>
#include <unicode/ucnv.h>
#include <unicode/ubrk.h>
#include <unicode/ustring.h>
#include <unicode/uchar.h>
#include <unicode/unorm.h>
#include <unicode/ucol.h>
#include "tracker-language.h"
#include "tracker-debug.h"
#include "tracker-parser.h"
#include "tracker-parser-utils.h"
/* Type of words detected */
typedef enum {
TRACKER_PARSER_WORD_TYPE_ASCII,
TRACKER_PARSER_WORD_TYPE_OTHER_UNAC,
TRACKER_PARSER_WORD_TYPE_OTHER_NO_UNAC,
} TrackerParserWordType;
typedef UCollator TrackerCollator;
/* Max possible length of a UChar encoded string (just a safety limit) */
#define WORD_BUFFER_LENGTH 512
struct TrackerParser {
const gchar *txt;
gint txt_size;
TrackerLanguage *language;
guint max_word_length;
gboolean enable_stemmer;
gboolean enable_unaccent;
gboolean ignore_stop_words;
gboolean ignore_reserved_words;
gboolean ignore_numbers;
gboolean enable_forced_wordbreaks;
/* Private members */
gchar *word;
gint word_length;
guint word_position;
/* Text as UChars */
UChar *utxt;
gsize utxt_size;
/* Original offset of each UChar in the input txt string */
gint32 *offsets;
/* The word-break iterator */
UBreakIterator *bi;
/* Cursor, as index of the utxt array of bytes */
gsize cursor;
};
static gboolean
get_word_info (const UChar *word,
gsize word_length,
gboolean ignore_numbers,
gboolean *p_is_allowed_word_start,
TrackerParserWordType *p_word_type)
{
UCharIterator iter;
UChar32 unichar;
guint8 unichar_gc;
/* Get first character of the word as UCS4 */
uiter_setString (&iter, word, word_length);
unichar = uiter_current32 (&iter);
if (unichar == U_SENTINEL) {
return FALSE;
}
/* We only want the words where the first character
* in the word is either a letter, a number or a symbol.
*
* This is needed because the word break algorithm also
* considers word breaks after for example commas or other
* punctuation marks.
*
* Note that looking at the first character in the string
* should be compatible with all Unicode normalization
* methods.
*/
unichar_gc = u_charType (unichar);
if (unichar_gc == U_UPPERCASE_LETTER ||
unichar_gc == U_LOWERCASE_LETTER ||
unichar_gc == U_TITLECASE_LETTER ||
unichar_gc == U_MODIFIER_LETTER ||
unichar_gc == U_OTHER_LETTER ||
IS_UNDERSCORE_UCS4 ((guint32)unichar) ||
(!ignore_numbers &&
(unichar_gc == U_DECIMAL_DIGIT_NUMBER ||
unichar_gc == U_LETTER_NUMBER ||
unichar_gc == U_OTHER_NUMBER))) {
*p_is_allowed_word_start = TRUE;
} else {
*p_is_allowed_word_start = FALSE;
return TRUE;
}
/* Word starts with a CJK character? */
if (IS_CJK_UCS4 ((guint32)unichar)) {
*p_word_type = TRACKER_PARSER_WORD_TYPE_OTHER_NO_UNAC;
return TRUE;
}
/* Is ASCII-only string? */
while (unichar != U_SENTINEL) {
if (!IS_ASCII_UCS4 ((guint32)unichar)) {
*p_word_type = TRACKER_PARSER_WORD_TYPE_OTHER_UNAC;
return TRUE;
}
unichar = uiter_next32 (&iter);
}
*p_word_type = TRACKER_PARSER_WORD_TYPE_ASCII;
return TRUE;
}
/* The input word in this method MUST be normalized in NFKD form,
* and given in UChars, where str_length is the number of UChars
* (not the number of bytes) */
static gboolean
tracker_parser_unaccent_nfkd_string (gpointer str,
gsize *str_length)
{
UChar *word;
gsize word_length;
gsize i;
gsize j;
g_return_val_if_fail (str != NULL, FALSE);
g_return_val_if_fail (str_length != NULL, FALSE);
word = (UChar *)str;
word_length = *str_length;
i = 0;
j = 0;
while (i < word_length) {
UChar32 unichar;
gint utf16_len; /* given in UChars */
gsize aux_i;
/* Get next character of the word as UCS4 */
aux_i = i;
U16_NEXT (word, aux_i, word_length, unichar);
utf16_len = aux_i - i;
/* Invalid UTF-16 character or end of original string. */
if (utf16_len <= 0) {
break;
}
/* If the given unichar is a combining diacritical mark,
* just update the original index, not the output one */
if (IS_CDM_UCS4 ((guint32) unichar)) {
i += utf16_len;
continue;
}
/* If already found a previous combining
* diacritical mark, indexes are different so
* need to copy characters. As output and input
* buffers may overlap, need to use memmove
* instead of memcpy */
if (i != j) {
memmove (&word[j], &word[i], sizeof (UChar) * utf16_len);
}
/* Update both indexes */
i += utf16_len;
j += utf16_len;
}
/* Force proper string end */
word[j] = (UChar) 0;
/* Set new output length */
*str_length = j;
return TRUE;
}
static gchar *
convert_UChar_to_utf8 (const UChar *word,
gsize uchar_len,
gsize *utf8_len)
{
gchar *utf8_str;
UErrorCode icu_error = U_ZERO_ERROR;
UConverter *converter;
gsize new_utf8_len;
g_return_val_if_fail (word, NULL);
g_return_val_if_fail (utf8_len, NULL);
/* Open converter UChar to UTF-16BE */
converter = ucnv_open ("UTF-8", &icu_error);
if (!converter) {
g_warning ("Cannot open UTF-8 converter: '%s'",
U_FAILURE (icu_error) ? u_errorName (icu_error) : "none");
return NULL;
}
/* A character encoded in 2 bytes in UTF-16 may get expanded to 3 or 4 bytes
* in UTF-8. */
utf8_str = g_malloc (2 * uchar_len * sizeof (UChar) + 1);
/* Convert from UChar to UTF-8 (NIL-terminated) */
new_utf8_len = ucnv_fromUChars (converter,
utf8_str,
2 * uchar_len * sizeof (UChar) + 1,
word,
uchar_len,
&icu_error);
if (U_FAILURE (icu_error)) {
g_warning ("Cannot convert from UChar to UTF-8: '%s'",
u_errorName (icu_error));
g_free (utf8_str);
ucnv_close (converter);
return NULL;
}
*utf8_len = new_utf8_len;
ucnv_close (converter);
return utf8_str;
}
static gchar *
process_word_uchar (TrackerParser *parser,
const UChar *word,
gint length,
TrackerParserWordType type,
gboolean *stop_word)
{
UErrorCode error = U_ZERO_ERROR;
UChar normalized_buffer[WORD_BUFFER_LENGTH];
gchar *utf8_str = NULL;
gsize new_word_length;
/* Log original word */
tracker_parser_message_hex ("ORIGINAL word",
(guint8 *)word,
length * sizeof (UChar));
if (type != TRACKER_PARSER_WORD_TYPE_ASCII) {
UChar casefolded_buffer [WORD_BUFFER_LENGTH];
const UNormalizer2 *normalizer;
/* Casefold... */
new_word_length = u_strFoldCase (casefolded_buffer,
WORD_BUFFER_LENGTH,
word,
length,
U_FOLD_CASE_DEFAULT,
&error);
if (U_FAILURE (error)) {
g_warning ("Error casefolding: '%s'",
u_errorName (error));
return NULL;
}
if (new_word_length > WORD_BUFFER_LENGTH)
new_word_length = WORD_BUFFER_LENGTH;
/* Log after casefolding */
tracker_parser_message_hex (" After Casefolding",
(guint8 *)casefolded_buffer,
new_word_length * sizeof (UChar));
/* NFKD normalization... */
normalizer = unorm2_getNFKDInstance (&error);
if (U_SUCCESS (error)) {
new_word_length = unorm2_normalize (normalizer,
casefolded_buffer,
new_word_length,
normalized_buffer,
WORD_BUFFER_LENGTH,
&error);
}
if (U_FAILURE (error)) {
g_warning ("Error normalizing: '%s'",
u_errorName (error));
return NULL;
}
if (new_word_length > WORD_BUFFER_LENGTH)
new_word_length = WORD_BUFFER_LENGTH;
/* Log after casefolding */
tracker_parser_message_hex (" After Normalization",
(guint8 *) normalized_buffer,
new_word_length * sizeof (UChar));
} else {
/* For ASCII-only, just tolower() each character */
new_word_length = u_strToLower (normalized_buffer,
WORD_BUFFER_LENGTH,
word,
length,
NULL,
&error);
if (U_FAILURE (error)) {
g_warning ("Error lowercasing: '%s'",
u_errorName (error));
return NULL;
}
/* Log after casefolding */
tracker_parser_message_hex (" After lowercase",
(guint8 *) normalized_buffer,
new_word_length * sizeof (UChar));
}
/* UNAC stripping needed? (for non-CJK and non-ASCII) */
if (parser->enable_unaccent &&
type == TRACKER_PARSER_WORD_TYPE_OTHER_UNAC &&
tracker_parser_unaccent_nfkd_string (normalized_buffer, &new_word_length)) {
/* Log after unaccenting */
tracker_parser_message_hex (" After UNAC",
(guint8 *) normalized_buffer,
new_word_length * sizeof (UChar));
}
/* Finally, convert to UTF-8 */
utf8_str = convert_UChar_to_utf8 (normalized_buffer,
new_word_length,
&new_word_length);
/* Log after unaccenting */
tracker_parser_message_hex (" After UTF8 conversion",
utf8_str,
new_word_length);
/* Check if stop word */
if (parser->ignore_stop_words) {
*stop_word = tracker_language_is_stop_word (parser->language,
utf8_str);
}
/* Stemming needed? */
if (utf8_str &&
parser->enable_stemmer) {
gchar *stemmed;
/* Input for stemmer ALWAYS in UTF-8, as well as output */
stemmed = tracker_language_stem_word (parser->language,
utf8_str,
new_word_length);
/* Log after stemming */
tracker_parser_message_hex (" After stemming",
stemmed, strlen (stemmed));
/* If stemmed wanted and succeeded, free previous and return it */
if (stemmed) {
g_free (utf8_str);
return stemmed;
}
}
return utf8_str;
}
static gboolean
parser_check_forced_wordbreaks (const UChar *buffer,
gsize current,
gsize *next)
{
gsize unicode_word_length = *next - current;
gsize word_length = 0;
UCharIterator iter;
UChar32 unichar;
uiter_setString (&iter, &buffer[current], unicode_word_length);
/* Iterate over the string looking for forced word breaks */
while ((unichar = uiter_next32 (&iter)) != U_SENTINEL &&
word_length < unicode_word_length) {
if (IS_FORCED_WORDBREAK_UCS4 ((guint32) unichar)) {
/* Support word starting with a forced wordbreak */
if (word_length == 0) {
word_length = 1;
}
break;
}
word_length ++;
}
/* g_debug ("current: %" G_GSIZE_FORMAT ", " */
/* "next: %" G_GSIZE_FORMAT ", " */
/* "now: %" G_GSIZE_FORMAT, */
/* current, */
/* *next, */
/* current + word_length); */
if (word_length != unicode_word_length) {
*next = current + word_length;
return TRUE;
}
return FALSE;
}
static gboolean
parser_next (TrackerParser *parser,
gint *byte_offset_start,
gint *byte_offset_end,
gboolean *stop_word)
{
gsize word_length_uchar = 0;
gsize word_length_utf8 = 0;
gchar *processed_word = NULL;
gsize current_word_offset_utf8 = 0;
*byte_offset_start = 0;
*byte_offset_end = 0;
g_return_val_if_fail (parser, FALSE);
/* Loop to look for next valid word */
while (!processed_word &&
parser->cursor < parser->utxt_size) {
TrackerParserWordType type;
gboolean is_allowed;
gsize next_word_offset_uchar;
gsize next_word_offset_utf8;
gsize truncated_length;
/* Set current word offset in the original UTF-8 string */
current_word_offset_utf8 = parser->offsets[parser->cursor];
/* Find next word break. */
next_word_offset_uchar = ubrk_next (parser->bi);
/* Check if any forced wordbreaks here... */
if (parser->enable_forced_wordbreaks) {
/* Returns TRUE if next word offset changed */
if (parser_check_forced_wordbreaks (parser->utxt,
parser->cursor,
&next_word_offset_uchar)) {
/* We need to reset the iterator so that next word
* actually returns the same result */
ubrk_previous (parser->bi);
}
}
if (next_word_offset_uchar >= parser->utxt_size) {
/* Last word support... */
next_word_offset_uchar = parser->utxt_size;
next_word_offset_utf8 = parser->txt_size;
} else {
next_word_offset_utf8 = parser->offsets[next_word_offset_uchar];
}
/* Word end is the first byte after the word, which is either the
* start of next word or the end of the string */
word_length_uchar = next_word_offset_uchar - parser->cursor;
word_length_utf8 = next_word_offset_utf8 - current_word_offset_utf8;
/* g_debug ("word_length_uchar: %" G_GSIZE_FORMAT, word_length_uchar); */
/* g_debug ("next_word_offset_uchar: %" G_GSIZE_FORMAT, next_word_offset_uchar); */
/* g_debug ("current_word_offset_uchar: %" G_GSIZE_FORMAT, parser->cursor); */
/* g_debug ("word_length_utf8: %" G_GSIZE_FORMAT, word_length_utf8); */
/* g_debug ("next_word_offset_utf8: %" G_GSIZE_FORMAT, next_word_offset_utf8); */
/* g_debug ("current_word_offset_utf8: %" G_GSIZE_FORMAT, current_word_offset_utf8); */
/* Ignore the word if longer than the maximum allowed */
if (word_length_utf8 >= parser->max_word_length) {
/* Ignore this word and keep on looping */
parser->cursor = next_word_offset_uchar;
continue;
}
/* Get word info... */
if (!get_word_info (&parser->utxt[parser->cursor],
word_length_uchar,
parser->ignore_numbers,
&is_allowed,
&type)) {
/* Quit loop just in case */
parser->cursor = parser->utxt_size;
break;
}
/* Ignore the word if not an allowed word start */
if (!is_allowed) {
/* Ignore this word and keep on looping */
parser->cursor = next_word_offset_uchar;
continue;
}
/* check if word is reserved (looking at ORIGINAL UTF-8 buffer here! */
if (parser->ignore_reserved_words &&
tracker_parser_is_reserved_word_utf8 (&parser->txt[current_word_offset_utf8],
word_length_utf8)) {
/* Ignore this word and keep on looping */
parser->cursor = next_word_offset_uchar;
continue;
}
/* compute truncated word length (in UChar bytes) if needed (to
* avoid extremely long words) */
truncated_length = (word_length_uchar < 2 * WORD_BUFFER_LENGTH ?
word_length_uchar :
2 * WORD_BUFFER_LENGTH);
/* Process the word here. If it fails, we can still go
* to the next one. Returns newly allocated UTF-8
* string always.
* Enable UNAC stripping only if no ASCII and no CJK
* Note we are passing UChar encoded string here!
*/
processed_word = process_word_uchar (parser,
&(parser->utxt[parser->cursor]),
truncated_length,
type,
stop_word);
if (!processed_word) {
/* Ignore this word and keep on looping */
parser->cursor = next_word_offset_uchar;
continue;
}
}
/* If we got a word here, set output */
if (processed_word) {
/* Set outputs */
*byte_offset_start = current_word_offset_utf8;
*byte_offset_end = current_word_offset_utf8 + word_length_utf8;
/* Update cursor */
parser->cursor += word_length_uchar;
parser->word_length = strlen (processed_word);
parser->word = processed_word;
return TRUE;
}
/* No more words... */
return FALSE;
}
TrackerParser *
tracker_parser_new (void)
{
TrackerParser *parser;
parser = g_new0 (TrackerParser, 1);
parser->language = tracker_language_new (NULL);
return parser;
}
void
tracker_parser_free (TrackerParser *parser)
{
g_return_if_fail (parser != NULL);
if (parser->language) {
g_object_unref (parser->language);
}
if (parser->bi) {
ubrk_close (parser->bi);
}
g_free (parser->utxt);
g_free (parser->offsets);
g_free (parser->word);
g_free (parser);
}
void
tracker_parser_reset (TrackerParser *parser,
const gchar *txt,
gint txt_size,
guint max_word_length,
gboolean enable_stemmer,
gboolean enable_unaccent,
gboolean ignore_stop_words,
gboolean ignore_reserved_words,
gboolean ignore_numbers)
{
UErrorCode error = U_ZERO_ERROR;
UConverter *converter;
UChar *last_uchar;
const gchar *last_utf8;
g_return_if_fail (parser != NULL);
g_return_if_fail (txt != NULL);
parser->max_word_length = max_word_length;
parser->enable_stemmer = enable_stemmer;
parser->enable_unaccent = enable_unaccent;
parser->ignore_stop_words = ignore_stop_words;
parser->ignore_reserved_words = ignore_reserved_words;
parser->ignore_numbers = ignore_numbers;
/* Note: We're forcing some unicode characters to behave
* as wordbreakers: e.g, the '.' The main reason for this
* is to enable FTS searches matching file extension. */
parser->enable_forced_wordbreaks = TRUE;
parser->txt_size = txt_size;
parser->txt = txt;
g_free (parser->word);
parser->word = NULL;
if (parser->bi) {
ubrk_close (parser->bi);
parser->bi = NULL;
}
g_free (parser->utxt);
parser->utxt = NULL;
g_free (parser->offsets);
parser->offsets = NULL;
parser->word_position = 0;
parser->cursor = 0;
if (parser->txt_size == 0)
return;
/* Open converter UTF-8 to UChar */
converter = ucnv_open ("UTF-8", &error);
if (!converter) {
g_warning ("Cannot open UTF-8 converter: '%s'",
U_FAILURE (error) ? u_errorName (error) : "none");
return;
}
/* Allocate UChars and offsets buffers */
parser->utxt_size = txt_size + 1;
parser->utxt = g_malloc (parser->utxt_size * sizeof (UChar));
parser->offsets = g_malloc (parser->utxt_size * sizeof (gint32));
/* last_uchar and last_utf8 will be also an output parameter! */
last_uchar = parser->utxt;
last_utf8 = parser->txt;
/* Convert to UChars storing offsets */
ucnv_toUnicode (converter,
&last_uchar,
&parser->utxt[txt_size],
&last_utf8,
&parser->txt[txt_size],
parser->offsets,
FALSE,
&error);
if (U_SUCCESS (error)) {
/* Proper UChar array size is now given by 'last_uchar' */
parser->utxt_size = last_uchar - parser->utxt;
/* Open word-break iterator */
parser->bi = ubrk_open(UBRK_WORD,
setlocale (LC_CTYPE, NULL),
parser->utxt,
parser->utxt_size,
&error);
if (U_SUCCESS (error)) {
/* Find FIRST word in the UChar array */
parser->cursor = ubrk_first (parser->bi);
}
}
/* If any error happened, reset buffers */
if (U_FAILURE (error)) {
g_warning ("Error initializing libicu support: '%s'",
u_errorName (error));
/* Reset buffers */
g_free (parser->utxt);
parser->utxt = NULL;
g_free (parser->offsets);
parser->offsets = NULL;
parser->utxt_size = 0;
if (parser->bi) {
ubrk_close (parser->bi);
parser->bi = NULL;
}
}
/* Close converter */
ucnv_close (converter);
}
const gchar *
tracker_parser_next (TrackerParser *parser,
gint *position,
gint *byte_offset_start,
gint *byte_offset_end,
gboolean *stop_word,
gint *word_length)
{
const gchar *str;
gint byte_start = 0, byte_end = 0;
str = NULL;
g_free (parser->word);
parser->word = NULL;
*stop_word = FALSE;
if (parser_next (parser, &byte_start, &byte_end, stop_word)) {
str = parser->word;
}
if (!*stop_word) {
parser->word_position++;
}
*word_length = parser->word_length;
*position = parser->word_position;
*byte_offset_start = byte_start;
*byte_offset_end = byte_end;
return str;
}
gpointer
tracker_collation_init (void)
{
UCollator *collator = NULL;
UErrorCode status = U_ZERO_ERROR;
const gchar *locale;
/* Get locale! */
locale = setlocale (LC_COLLATE, NULL);
collator = ucol_open (locale, &status);
if (!collator) {
g_warning ("[ICU collation] Collator for locale '%s' cannot be created: %s",
locale, u_errorName (status));
/* Try to get UCA collator then... */
status = U_ZERO_ERROR;
collator = ucol_open ("root", &status);
if (!collator) {
g_critical ("[ICU collation] UCA Collator cannot be created: %s",
u_errorName (status));
}
}
return collator;
}
void
tracker_collation_shutdown (gpointer collator)
{
if (collator)
ucol_close ((UCollator *)collator);
}
gint
tracker_collation_utf8 (gpointer collator,
gint len1,
gconstpointer str1,
gint len2,
gconstpointer str2)
{
UErrorCode status = U_ZERO_ERROR;
UCharIterator iter1;
UCharIterator iter2;
UCollationResult result;
/* Collator must be created before trying to collate */
g_return_val_if_fail (collator, -1);
/* Setup iterators */
uiter_setUTF8 (&iter1, str1, len1);
uiter_setUTF8 (&iter2, str2, len2);
result = ucol_strcollIter ((UCollator *)collator,
&iter1,
&iter2,
&status);
if (status != U_ZERO_ERROR)
g_critical ("Error collating: %s", u_errorName (status));
if (result == UCOL_GREATER)
return 1;
if (result == UCOL_LESS)
return -1;
return 0;
}
gunichar2 *
tracker_parser_tolower (const gunichar2 *input,
gsize len,
gsize *len_out)
{
UChar *zOutput;
int nOutput;
UErrorCode status = U_ZERO_ERROR;
g_return_val_if_fail (input, NULL);
nOutput = len * 2 + 2;
zOutput = malloc (nOutput);
u_strToLower (zOutput, nOutput / 2,
input, len / 2,
NULL, &status);
if (!U_SUCCESS (status)) {
memcpy (zOutput, input, len);
zOutput[len] = '\0';
nOutput = len;
}
*len_out = nOutput;
return zOutput;
}
gunichar2 *
tracker_parser_toupper (const gunichar2 *input,
gsize len,
gsize *len_out)
{
UChar *zOutput;
int nOutput;
UErrorCode status = U_ZERO_ERROR;
nOutput = len * 2 + 2;
zOutput = malloc (nOutput);
u_strToUpper (zOutput, nOutput / 2,
input, len / 2,
NULL, &status);
if (!U_SUCCESS (status)) {
memcpy (zOutput, input, len);
zOutput[len] = '\0';
nOutput = len;
}
*len_out = nOutput;
return zOutput;
}
gunichar2 *
tracker_parser_casefold (const gunichar2 *input,
gsize len,
gsize *len_out)
{
UChar *zOutput;
int nOutput;
UErrorCode status = U_ZERO_ERROR;
nOutput = len * 2 + 2;
zOutput = malloc (nOutput);
u_strFoldCase (zOutput, nOutput / 2,
input, len / 2,
U_FOLD_CASE_DEFAULT, &status);
if (!U_SUCCESS (status)){
memcpy (zOutput, input, len);
zOutput[len] = '\0';
nOutput = len;
}
*len_out = nOutput;
return zOutput;
}
static gunichar2 *
normalize_string (const gunichar2 *string,
gsize string_len, /* In gunichar2s */
const UNormalizer2 *normalizer,
gsize *len_out, /* In gunichar2s */
UErrorCode *status)
{
int nOutput;
gunichar2 *zOutput;
nOutput = (string_len * 2) + 1;
zOutput = g_new0 (gunichar2, nOutput);
nOutput = unorm2_normalize (normalizer, string, string_len, zOutput, nOutput, status);
if (*status == U_BUFFER_OVERFLOW_ERROR) {
/* Try again after allocating enough space for the normalization */
*status = U_ZERO_ERROR;
zOutput = g_renew (gunichar2, zOutput, nOutput);
memset (zOutput, 0, nOutput * sizeof (gunichar2));
nOutput = unorm2_normalize (normalizer, string, string_len, zOutput, nOutput, status);
}
if (!U_SUCCESS (*status)) {
g_clear_pointer (&zOutput, g_free);
nOutput = 0;
}
if (len_out)
*len_out = nOutput;
return zOutput;
}
gunichar2 *
tracker_parser_normalize (const gunichar2 *input,
GNormalizeMode mode,
gsize len,
gsize *len_out)
{
uint16_t *zOutput = NULL;
gsize nOutput;
const UNormalizer2 *normalizer;
UErrorCode status = U_ZERO_ERROR;
if (mode == G_NORMALIZE_NFC)
normalizer = unorm2_getNFCInstance (&status);
else if (mode == G_NORMALIZE_NFD)
normalizer = unorm2_getNFDInstance (&status);
else if (mode == G_NORMALIZE_NFKC)
normalizer = unorm2_getNFKCInstance (&status);
else if (mode == G_NORMALIZE_NFKD)
normalizer = unorm2_getNFKDInstance (&status);
else
g_assert_not_reached ();
if (U_SUCCESS (status)) {
zOutput = normalize_string (input, len / 2,
normalizer,
&nOutput, &status);
}
if (!U_SUCCESS (status)) {
zOutput = g_memdup2 (input, len);
nOutput = len;
}
*len_out = nOutput;
return zOutput;
}
gunichar2 *
tracker_parser_unaccent (const gunichar2 *input,
gsize len,
gsize *len_out)
{
uint16_t *zOutput = NULL;
gsize nOutput;
const UNormalizer2 *normalizer;
UErrorCode status = U_ZERO_ERROR;
normalizer = unorm2_getNFKDInstance (&status);
if (U_SUCCESS (status)) {
zOutput = normalize_string (input, len / 2,
normalizer,
&nOutput, &status);
}
if (!U_SUCCESS (status)) {
zOutput = g_memdup2 (input, len);
}
/* Unaccenting is done in place */
tracker_parser_unaccent_nfkd_string (zOutput, &nOutput);
*len_out = nOutput;
return zOutput;
}
|