Age Owner Branch data TLA Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : *
3 : : * spell.c
4 : : * Normalizing word with ISpell
5 : : *
6 : : * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
7 : : *
8 : : * Ispell dictionary
9 : : * -----------------
10 : : *
11 : : * Rules of dictionaries are defined in two files with .affix and .dict
12 : : * extensions. They are used by spell checker programs Ispell and Hunspell.
13 : : *
14 : : * An .affix file declares morphological rules to get a basic form of words.
15 : : * The format of an .affix file has different structure for Ispell and Hunspell
16 : : * dictionaries. The Hunspell format is more complicated. But when an .affix
17 : : * file is imported and compiled, it is stored in the same structure AffixNode.
18 : : *
19 : : * A .dict file stores a list of basic forms of words with references to
20 : : * affix rules. The format of a .dict file has the same structure for Ispell
21 : : * and Hunspell dictionaries.
22 : : *
23 : : * Compilation of a dictionary
24 : : * ---------------------------
25 : : *
26 : : * A compiled dictionary is stored in the IspellDict structure. Compilation of
27 : : * a dictionary is divided into the several steps:
28 : : * - NIImportDictionary() - stores each word of a .dict file in the
29 : : * temporary Spell field.
30 : : * - NIImportAffixes() - stores affix rules of an .affix file in the
31 : : * Affix field (not temporary) if an .affix file has the Ispell format.
32 : : * -> NIImportOOAffixes() - stores affix rules if an .affix file has the
33 : : * Hunspell format. The AffixData field is initialized if AF parameter
34 : : * is defined.
35 : : * - NISortDictionary() - builds a prefix tree (Trie) from the words list
36 : : * and stores it in the Dictionary field. The words list is got from the
37 : : * Spell field. The AffixData field is initialized if AF parameter is not
38 : : * defined.
39 : : * - NISortAffixes():
40 : : * - builds a list of compound affixes from the affix list and stores it
41 : : * in the CompoundAffix.
42 : : * - builds prefix trees (Trie) from the affix list for prefixes and suffixes
43 : : * and stores them in Suffix and Prefix fields.
44 : : * The affix list is got from the Affix field.
45 : : *
46 : : * Memory management
47 : : * -----------------
48 : : *
49 : : * The IspellDict structure has the Spell field which is used only in compile
50 : : * time. The Spell field stores a words list. It can take a lot of memory.
51 : : * Therefore when a dictionary is compiled this field is cleared by
52 : : * NIFinishBuild().
53 : : *
54 : : * All resources which should cleared by NIFinishBuild() is initialized using
55 : : * tmpalloc() and tmpalloc0().
56 : : *
57 : : * IDENTIFICATION
58 : : * src/backend/tsearch/spell.c
59 : : *
60 : : *-------------------------------------------------------------------------
61 : : */
62 : :
63 : : #include "postgres.h"
64 : :
65 : : #include "catalog/pg_collation.h"
66 : : #include "miscadmin.h"
67 : : #include "tsearch/dicts/spell.h"
68 : : #include "tsearch/ts_locale.h"
69 : : #include "utils/formatting.h"
70 : : #include "utils/memutils.h"
71 : :
72 : :
73 : : /*
74 : : * Initialization requires a lot of memory that's not needed
75 : : * after the initialization is done. During initialization,
76 : : * CurrentMemoryContext is the long-lived memory context associated
77 : : * with the dictionary cache entry. We keep the short-lived stuff
78 : : * in the Conf->buildCxt context.
79 : : */
80 : : #define tmpalloc(sz) MemoryContextAlloc(Conf->buildCxt, (sz))
81 : : #define tmpalloc0(sz) MemoryContextAllocZero(Conf->buildCxt, (sz))
82 : :
83 : : /*
84 : : * Prepare for constructing an ISpell dictionary.
85 : : *
86 : : * The IspellDict struct is assumed to be zeroed when allocated.
87 : : */
88 : : void
5639 tgl@sss.pgh.pa.us 89 :CBC 67 : NIStartBuild(IspellDict *Conf)
90 : : {
91 : : /*
92 : : * The temp context is a child of CurTransactionContext, so that it will
93 : : * go away automatically on error.
94 : : */
95 : 67 : Conf->buildCxt = AllocSetContextCreate(CurTransactionContext,
96 : : "Ispell dictionary init context",
97 : : ALLOCSET_DEFAULT_SIZES);
6781 98 : 67 : }
99 : :
100 : : /*
101 : : * Clean up when dictionary construction is complete.
102 : : */
103 : : void
5639 104 : 55 : NIFinishBuild(IspellDict *Conf)
105 : : {
106 : : /* Release no-longer-needed temp memory */
107 : 55 : MemoryContextDelete(Conf->buildCxt);
108 : : /* Just for cleanliness, zero the now-dangling pointers */
109 : 55 : Conf->buildCxt = NULL;
110 : 55 : Conf->Spell = NULL;
111 : 55 : Conf->firstfree = NULL;
3650 teodor@sigaev.ru 112 : 55 : Conf->CompoundAffixFlags = NULL;
5639 tgl@sss.pgh.pa.us 113 : 55 : }
114 : :
115 : :
116 : : /*
117 : : * "Compact" palloc: allocate without extra palloc overhead.
118 : : *
119 : : * Since we have no need to free the ispell data items individually, there's
120 : : * not much value in the per-chunk overhead normally consumed by palloc.
121 : : * Getting rid of it is helpful since ispell can allocate a lot of small nodes.
122 : : *
123 : : * We currently pre-zero all data allocated this way, even though some of it
124 : : * doesn't need that. The cpalloc and cpalloc0 macros are just documentation
125 : : * to indicate which allocations actually require zeroing.
126 : : */
127 : : #define COMPACT_ALLOC_CHUNK 8192 /* amount to get from palloc at once */
128 : : #define COMPACT_MAX_REQ 1024 /* must be < COMPACT_ALLOC_CHUNK */
129 : :
130 : : static void *
131 : 6202 : compact_palloc0(IspellDict *Conf, size_t size)
132 : : {
133 : : void *result;
134 : :
135 : : /* Should only be called during init */
136 [ - + ]: 6202 : Assert(Conf->buildCxt != NULL);
137 : :
138 : : /* No point in this for large chunks */
139 [ - + ]: 6202 : if (size > COMPACT_MAX_REQ)
5639 tgl@sss.pgh.pa.us 140 :UBC 0 : return palloc0(size);
141 : :
142 : : /* Keep everything maxaligned */
5639 tgl@sss.pgh.pa.us 143 :CBC 6202 : size = MAXALIGN(size);
144 : :
145 : : /* Need more space? */
146 [ + + ]: 6202 : if (size > Conf->avail)
147 : : {
148 : 64 : Conf->firstfree = palloc0(COMPACT_ALLOC_CHUNK);
149 : 64 : Conf->avail = COMPACT_ALLOC_CHUNK;
150 : : }
151 : :
472 peter@eisentraut.org 152 : 6202 : result = Conf->firstfree;
5639 tgl@sss.pgh.pa.us 153 : 6202 : Conf->firstfree += size;
154 : 6202 : Conf->avail -= size;
155 : :
156 : 6202 : return result;
157 : : }
158 : :
159 : : #define cpalloc(size) compact_palloc0(Conf, size)
160 : : #define cpalloc0(size) compact_palloc0(Conf, size)
161 : :
162 : : static char *
163 : 3312 : cpstrdup(IspellDict *Conf, const char *str)
164 : : {
165 : 3312 : char *res = cpalloc(strlen(str) + 1);
166 : :
167 : 3312 : strcpy(res, str);
168 : 3312 : return res;
169 : : }
170 : :
171 : :
172 : : /*
173 : : * Apply str_tolower(), producing a temporary result (in the buildCxt).
174 : : */
175 : : static char *
176 : 2873 : lowerstr_ctx(IspellDict *Conf, const char *src)
177 : : {
178 : : MemoryContext saveCtx;
179 : : char *dst;
180 : :
181 : 2873 : saveCtx = MemoryContextSwitchTo(Conf->buildCxt);
453 peter@eisentraut.org 182 : 2873 : dst = str_tolower(src, strlen(src), DEFAULT_COLLATION_OID);
6781 tgl@sss.pgh.pa.us 183 : 2873 : MemoryContextSwitchTo(saveCtx);
184 : :
185 : 2873 : return dst;
186 : : }
187 : :
188 : : #define MAX_NORM 1024
189 : : #define MAXNORMLEN 256
190 : :
191 : : #define STRNCMP(s,p) strncmp( (s), (p), strlen(p) )
192 : : #define GETWCHAR(W,L,N,T) ( ((const uint8*)(W))[ ((T)==FF_PREFIX) ? (N) : ( (L) - 1 - (N) ) ] )
193 : : #define GETCHAR(A,N,T) GETWCHAR( (A)->repl, (A)->replen, N, T )
194 : :
195 : : static const char *VoidString = "";
196 : :
197 : : static int
198 : 1446 : cmpspell(const void *s1, const void *s2)
199 : : {
3132 peter_e@gmx.net 200 : 1446 : return strcmp((*(SPELL *const *) s1)->word, (*(SPELL *const *) s2)->word);
201 : : }
202 : :
203 : : static int
6781 tgl@sss.pgh.pa.us 204 : 1128 : cmpspellaffix(const void *s1, const void *s2)
205 : : {
3132 peter_e@gmx.net 206 : 2256 : return strcmp((*(SPELL *const *) s1)->p.flag,
3028 rhaas@postgresql.org 207 : 1128 : (*(SPELL *const *) s2)->p.flag);
208 : : }
209 : :
210 : : static int
3650 teodor@sigaev.ru 211 : 1962 : cmpcmdflag(const void *f1, const void *f2)
212 : : {
62 peter@eisentraut.org 213 :GNC 1962 : const CompoundAffixFlag *fv1 = f1;
214 : 1962 : const CompoundAffixFlag *fv2 = f2;
215 : :
3650 teodor@sigaev.ru 216 [ - + ]:CBC 1962 : Assert(fv1->flagMode == fv2->flagMode);
217 : :
218 [ + + ]: 1962 : if (fv1->flagMode == FM_NUM)
219 : : {
220 [ + + ]: 380 : if (fv1->flag.i == fv2->flag.i)
221 : 57 : return 0;
222 : :
223 [ + + ]: 323 : return (fv1->flag.i > fv2->flag.i) ? 1 : -1;
224 : : }
225 : :
226 : 1582 : return strcmp(fv1->flag.s, fv2->flag.s);
227 : : }
228 : :
229 : : static char *
6781 tgl@sss.pgh.pa.us 230 : 583 : findchar(char *str, int c)
231 : : {
232 [ + + ]: 4295 : while (*str)
233 : : {
234 [ + + ]: 4231 : if (t_iseq(str, c))
235 : 519 : return str;
67 tmunro@postgresql.or 236 : 3712 : str += pg_mblen_cstr(str);
237 : : }
238 : :
6781 tgl@sss.pgh.pa.us 239 : 64 : return NULL;
240 : : }
241 : :
242 : : static char *
3661 243 : 21 : findchar2(char *str, int c1, int c2)
244 : : {
245 [ + - ]: 441 : while (*str)
246 : : {
247 [ + + - + ]: 441 : if (t_iseq(str, c1) || t_iseq(str, c2))
248 : 21 : return str;
67 tmunro@postgresql.or 249 : 420 : str += pg_mblen_cstr(str);
250 : : }
251 : :
3661 tgl@sss.pgh.pa.us 252 :UBC 0 : return NULL;
253 : : }
254 : :
255 : :
256 : : /* backward string compare for suffix tree operations */
257 : : static int
6781 tgl@sss.pgh.pa.us 258 :CBC 577 : strbcmp(const unsigned char *s1, const unsigned char *s2)
259 : : {
260 : 577 : int l1 = strlen((const char *) s1) - 1,
261 : 577 : l2 = strlen((const char *) s2) - 1;
262 : :
263 [ + + + + ]: 772 : while (l1 >= 0 && l2 >= 0)
264 : : {
265 [ + + ]: 604 : if (s1[l1] < s2[l2])
266 : 131 : return -1;
267 [ + + ]: 473 : if (s1[l1] > s2[l2])
268 : 278 : return 1;
269 : 195 : l1--;
270 : 195 : l2--;
271 : : }
272 [ + + ]: 168 : if (l1 < l2)
273 : 45 : return -1;
274 [ + + ]: 123 : if (l1 > l2)
275 : 103 : return 1;
276 : :
277 : 20 : return 0;
278 : : }
279 : :
280 : : static int
281 : 20 : strbncmp(const unsigned char *s1, const unsigned char *s2, size_t count)
282 : : {
283 : 20 : int l1 = strlen((const char *) s1) - 1,
284 : 20 : l2 = strlen((const char *) s2) - 1,
285 : 20 : l = count;
286 : :
287 [ + + + - : 30 : while (l1 >= 0 && l2 >= 0 && l > 0)
+ - ]
288 : : {
289 [ + + ]: 20 : if (s1[l1] < s2[l2])
290 : 10 : return -1;
291 [ - + ]: 10 : if (s1[l1] > s2[l2])
6781 tgl@sss.pgh.pa.us 292 :UBC 0 : return 1;
6781 tgl@sss.pgh.pa.us 293 :CBC 10 : l1--;
294 : 10 : l2--;
295 : 10 : l--;
296 : : }
297 [ + - ]: 10 : if (l == 0)
298 : 10 : return 0;
6781 tgl@sss.pgh.pa.us 299 [ # # ]:UBC 0 : if (l1 < l2)
300 : 0 : return -1;
301 [ # # ]: 0 : if (l1 > l2)
302 : 0 : return 1;
303 : 0 : return 0;
304 : : }
305 : :
306 : : /*
307 : : * Compares affixes.
308 : : * First compares the type of an affix. Prefixes should go before affixes.
309 : : * If types are equal then compares replaceable string.
310 : : */
311 : : static int
6781 tgl@sss.pgh.pa.us 312 :CBC 976 : cmpaffix(const void *s1, const void *s2)
313 : : {
314 : 976 : const AFFIX *a1 = (const AFFIX *) s1;
315 : 976 : const AFFIX *a2 = (const AFFIX *) s2;
316 : :
317 [ + + ]: 976 : if (a1->type < a2->type)
318 : 223 : return -1;
319 [ + + ]: 753 : if (a1->type > a2->type)
320 : 66 : return 1;
321 [ + + ]: 687 : if (a1->type == FF_PREFIX)
322 : 110 : return strcmp(a1->repl, a2->repl);
323 : : else
324 : 577 : return strbcmp((const unsigned char *) a1->repl,
325 : 577 : (const unsigned char *) a2->repl);
326 : : }
327 : :
328 : : /*
329 : : * Gets an affix flag from the set of affix flags (sflagset).
330 : : *
331 : : * Several flags can be stored in a single string. Flags can be represented by:
332 : : * - 1 character (FM_CHAR). A character may be Unicode.
333 : : * - 2 characters (FM_LONG). A character may be Unicode.
334 : : * - numbers from 1 to 65000 (FM_NUM).
335 : : *
336 : : * Depending on the flagMode an affix string can have the following format:
337 : : * - FM_CHAR: ABCD
338 : : * Here we have 4 flags: A, B, C and D
339 : : * - FM_LONG: ABCDE*
340 : : * Here we have 3 flags: AB, CD and E*
341 : : * - FM_NUM: 200,205,50
342 : : * Here we have 3 flags: 200, 205 and 50
343 : : *
344 : : * Conf: current dictionary.
345 : : * sflagset: the set of affix flags. Returns a reference to the start of a next
346 : : * affix flag.
347 : : * sflag: returns an affix flag from sflagset.
348 : : */
349 : : static void
586 heikki.linnakangas@i 350 : 3010 : getNextFlagFromString(IspellDict *Conf, const char **sflagset, char *sflag)
351 : : {
352 : : int32 s;
353 : : char *next;
354 : 3010 : const char *sbuf = *sflagset;
355 : : int maxstep;
356 : : int clen;
3650 teodor@sigaev.ru 357 : 3010 : bool stop = false;
358 : 3010 : bool met_comma = false;
359 : :
360 [ + + ]: 3010 : maxstep = (Conf->flagMode == FM_LONG) ? 2 : 1;
361 : :
3566 rhaas@postgresql.org 362 [ + - ]: 3943 : while (**sflagset)
363 : : {
3650 teodor@sigaev.ru 364 [ + + - ]: 3943 : switch (Conf->flagMode)
365 : : {
366 : 3374 : case FM_LONG:
367 : : case FM_CHAR:
67 tmunro@postgresql.or 368 : 3374 : clen = ts_copychar_cstr(sflag, *sflagset);
369 : 3374 : sflag += clen;
370 : :
371 : : /* Go to start of the next flag */
372 : 3374 : *sflagset += clen;
373 : :
374 : : /* Check if we get all characters of flag */
3650 teodor@sigaev.ru 375 : 3374 : maxstep--;
376 : 3374 : stop = (maxstep == 0);
377 : 3374 : break;
378 : 569 : case FM_NUM:
372 tgl@sss.pgh.pa.us 379 : 569 : errno = 0;
3650 teodor@sigaev.ru 380 : 569 : s = strtol(*sflagset, &next, 10);
381 [ + + - + ]: 569 : if (*sflagset == next || errno == ERANGE)
382 [ + - ]: 3 : ereport(ERROR,
383 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
384 : : errmsg("invalid affix flag \"%s\"", *sflagset)));
385 [ + - - + ]: 566 : if (s < 0 || s > FLAGNUM_MAXSIZE)
3650 teodor@sigaev.ru 386 [ # # ]:UBC 0 : ereport(ERROR,
387 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
388 : : errmsg("affix flag \"%s\" is out of range",
389 : : *sflagset)));
3650 teodor@sigaev.ru 390 :CBC 566 : sflag += sprintf(sflag, "%0d", s);
391 : :
392 : : /* Go to start of the next flag */
393 : 566 : *sflagset = next;
394 [ + + ]: 868 : while (**sflagset)
395 : : {
453 peter@eisentraut.org 396 [ + + ]: 604 : if (isdigit((unsigned char) **sflagset))
397 : : {
3650 teodor@sigaev.ru 398 [ - + ]: 302 : if (!met_comma)
3663 teodor@sigaev.ru 399 [ # # ]:UBC 0 : ereport(ERROR,
400 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
401 : : errmsg("invalid affix flag \"%s\"",
402 : : *sflagset)));
3650 teodor@sigaev.ru 403 :CBC 302 : break;
404 : : }
405 [ + - ]: 302 : else if (t_iseq(*sflagset, ','))
406 : : {
407 [ - + ]: 302 : if (met_comma)
3663 teodor@sigaev.ru 408 [ # # ]:UBC 0 : ereport(ERROR,
409 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
410 : : errmsg("invalid affix flag \"%s\"",
411 : : *sflagset)));
3650 teodor@sigaev.ru 412 :CBC 302 : met_comma = true;
413 : : }
453 peter@eisentraut.org 414 [ # # ]:UBC 0 : else if (!isspace((unsigned char) **sflagset))
415 : : {
3650 teodor@sigaev.ru 416 [ # # ]: 0 : ereport(ERROR,
417 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
418 : : errmsg("invalid character in affix flag \"%s\"",
419 : : *sflagset)));
420 : : }
421 : :
67 tmunro@postgresql.or 422 :CBC 302 : *sflagset += pg_mblen_cstr(*sflagset);
423 : : }
3650 teodor@sigaev.ru 424 : 566 : stop = true;
425 : 566 : break;
3650 teodor@sigaev.ru 426 :UBC 0 : default:
427 [ # # ]: 0 : elog(ERROR, "unrecognized type of Conf->flagMode: %d",
428 : : Conf->flagMode);
429 : : }
430 : :
3650 teodor@sigaev.ru 431 [ + + ]:CBC 3940 : if (stop)
3663 432 : 3007 : break;
433 : : }
434 : :
3650 435 [ + + - + ]: 3007 : if (Conf->flagMode == FM_LONG && maxstep > 0)
3650 teodor@sigaev.ru 436 [ # # ]:UBC 0 : ereport(ERROR,
437 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
438 : : errmsg("invalid affix flag \"%s\" with \"long\" flag value",
439 : : sbuf)));
440 : :
3650 teodor@sigaev.ru 441 :CBC 3007 : *sflag = '\0';
3663 442 : 3007 : }
443 : :
444 : : /*
445 : : * Checks if the affix set Conf->AffixData[affix] contains affixflag.
446 : : * Conf->AffixData[affix] does not contain affixflag if this flag is not used
447 : : * actually by the .dict file.
448 : : *
449 : : * Conf: current dictionary.
450 : : * affix: index of the Conf->AffixData array.
451 : : * affixflag: the affix flag.
452 : : *
453 : : * Returns true if the string Conf->AffixData[affix] contains affixflag,
454 : : * otherwise returns false.
455 : : */
456 : : static bool
3057 peter_e@gmx.net 457 : 1112 : IsAffixFlagInUse(IspellDict *Conf, int affix, const char *affixflag)
458 : : {
459 : : const char *flagcur;
460 : : char flag[BUFSIZ];
461 : :
3650 teodor@sigaev.ru 462 [ + + ]: 1112 : if (*affixflag == 0)
3663 463 : 318 : return true;
464 : :
2325 tgl@sss.pgh.pa.us 465 [ - + ]: 794 : Assert(affix < Conf->nAffixData);
466 : :
3663 teodor@sigaev.ru 467 : 794 : flagcur = Conf->AffixData[affix];
468 : :
469 [ + + ]: 2295 : while (*flagcur)
470 : : {
3650 471 : 1750 : getNextFlagFromString(Conf, &flagcur, flag);
472 : : /* Compare first affix flag in flagcur with affixflag */
473 [ + + ]: 1750 : if (strcmp(flag, affixflag) == 0)
3663 474 : 249 : return true;
475 : : }
476 : :
477 : : /* Could not find affixflag */
478 : 545 : return false;
479 : : }
480 : :
481 : : /*
482 : : * Adds the new word into the temporary array Spell.
483 : : *
484 : : * Conf: current dictionary.
485 : : * word: new word.
486 : : * flag: set of affix flags. Single flag can be get by getNextFlagFromString().
487 : : */
488 : : static void
6695 bruce@momjian.us 489 : 583 : NIAddSpell(IspellDict *Conf, const char *word, const char *flag)
490 : : {
6781 tgl@sss.pgh.pa.us 491 [ + + ]: 583 : if (Conf->nspell >= Conf->mspell)
492 : : {
493 [ - + ]: 64 : if (Conf->mspell)
494 : : {
5639 tgl@sss.pgh.pa.us 495 :UBC 0 : Conf->mspell *= 2;
6781 496 : 0 : Conf->Spell = (SPELL **) repalloc(Conf->Spell, Conf->mspell * sizeof(SPELL *));
497 : : }
498 : : else
499 : : {
6781 tgl@sss.pgh.pa.us 500 :CBC 64 : Conf->mspell = 1024 * 20;
501 : 64 : Conf->Spell = (SPELL **) tmpalloc(Conf->mspell * sizeof(SPELL *));
502 : : }
503 : : }
504 : 583 : Conf->Spell[Conf->nspell] = (SPELL *) tmpalloc(SPELLHDRSZ + strlen(word) + 1);
505 : 583 : strcpy(Conf->Spell[Conf->nspell]->word, word);
3663 teodor@sigaev.ru 506 : 1166 : Conf->Spell[Conf->nspell]->p.flag = (*flag != '\0')
507 [ + + ]: 583 : ? cpstrdup(Conf, flag) : VoidString;
6781 tgl@sss.pgh.pa.us 508 : 583 : Conf->nspell++;
509 : 583 : }
510 : :
511 : : /*
512 : : * Imports dictionary into the temporary array Spell.
513 : : *
514 : : * Note caller must already have applied get_tsearch_config_filename.
515 : : *
516 : : * Conf: current dictionary.
517 : : * filename: path to the .dict file.
518 : : */
519 : : void
6695 bruce@momjian.us 520 : 64 : NIImportDictionary(IspellDict *Conf, const char *filename)
521 : : {
522 : : tsearch_readline_state trst;
523 : : char *line;
524 : :
6479 tgl@sss.pgh.pa.us 525 [ - + ]: 64 : if (!tsearch_readline_begin(&trst, filename))
6781 tgl@sss.pgh.pa.us 526 [ # # ]:UBC 0 : ereport(ERROR,
527 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
528 : : errmsg("could not open dictionary file \"%s\": %m",
529 : : filename)));
530 : :
6479 tgl@sss.pgh.pa.us 531 [ + + ]:CBC 647 : while ((line = tsearch_readline(&trst)) != NULL)
532 : : {
533 : : char *s,
534 : : *pstr;
535 : :
536 : : /* Set of affix flags */
537 : : const char *flag;
538 : :
539 : : /* Extract flag from the line */
6781 540 : 583 : flag = NULL;
6777 541 [ + + ]: 583 : if ((s = findchar(line, '/')))
542 : : {
6781 543 : 519 : *s++ = '\0';
544 : 519 : flag = s;
545 [ + - ]: 2075 : while (*s)
546 : : {
547 : : /* we allow only single encoded flags for faster works */
67 tmunro@postgresql.or 548 [ + - + + : 2075 : if (pg_mblen_cstr(s) == 1 && isprint((unsigned char) *s) && !isspace((unsigned char) *s))
+ - ]
6781 tgl@sss.pgh.pa.us 549 : 1556 : s++;
550 : : else
551 : : {
552 : 519 : *s = '\0';
553 : 519 : break;
554 : : }
555 : : }
556 : : }
557 : : else
558 : 64 : flag = "";
559 : :
560 : : /* Remove trailing spaces */
6777 561 : 583 : s = line;
6781 562 [ + + ]: 4231 : while (*s)
563 : : {
453 peter@eisentraut.org 564 [ + + ]: 3712 : if (isspace((unsigned char) *s))
565 : : {
6781 tgl@sss.pgh.pa.us 566 : 64 : *s = '\0';
567 : 64 : break;
568 : : }
67 tmunro@postgresql.or 569 : 3648 : s += pg_mblen_cstr(s);
570 : : }
5639 tgl@sss.pgh.pa.us 571 : 583 : pstr = lowerstr_ctx(Conf, line);
572 : :
6781 573 : 583 : NIAddSpell(Conf, pstr, flag);
574 : 583 : pfree(pstr);
575 : :
6777 576 : 583 : pfree(line);
577 : : }
6479 578 : 64 : tsearch_readline_end(&trst);
6781 579 : 64 : }
580 : :
581 : : /*
582 : : * Searches a basic form of word in the prefix tree. This word was generated
583 : : * using an affix rule. This rule may not be presented in an affix set of
584 : : * a basic form of word.
585 : : *
586 : : * For example, we have the entry in the .dict file:
587 : : * meter/GMD
588 : : *
589 : : * The affix rule with the flag S:
590 : : * SFX S y ies [^aeiou]y
591 : : * is not presented here.
592 : : *
593 : : * The affix rule with the flag M:
594 : : * SFX M 0 's .
595 : : * is presented here.
596 : : *
597 : : * Conf: current dictionary.
598 : : * word: basic form of word.
599 : : * affixflag: affix flag, by which a basic form of word was generated.
600 : : * flag: compound flag used to compare with StopMiddle->compoundflag.
601 : : *
602 : : * Returns 1 if the word was found in the prefix tree, else returns 0.
603 : : */
604 : : static int
3057 peter_e@gmx.net 605 : 1497 : FindWord(IspellDict *Conf, const char *word, const char *affixflag, int flag)
606 : : {
6781 tgl@sss.pgh.pa.us 607 : 1497 : SPNode *node = Conf->Dictionary;
608 : : SPNodeData *StopLow,
609 : : *StopHigh,
610 : : *StopMiddle;
5299 peter_e@gmx.net 611 : 1497 : const uint8 *ptr = (const uint8 *) word;
612 : :
3650 teodor@sigaev.ru 613 : 1497 : flag &= FF_COMPOUNDFLAGMASK;
614 : :
6781 tgl@sss.pgh.pa.us 615 [ + + + + ]: 6972 : while (node && *ptr)
616 : : {
617 : 6612 : StopLow = node->data;
618 : 6612 : StopHigh = node->data + node->length;
619 [ + + ]: 9459 : while (StopLow < StopHigh)
620 : : {
621 : 8826 : StopMiddle = StopLow + ((StopHigh - StopLow) >> 1);
622 [ + + ]: 8826 : if (StopMiddle->val == *ptr)
623 : : {
624 [ + + + + ]: 5979 : if (*(ptr + 1) == '\0' && StopMiddle->isword)
625 : : {
626 [ + + ]: 573 : if (flag == 0)
627 : : {
628 : : /*
629 : : * The word can be formed only with another word. And
630 : : * in the flag parameter there is not a sign that we
631 : : * search compound words.
632 : : */
633 [ - + ]: 363 : if (StopMiddle->compoundflag & FF_COMPOUNDONLY)
6781 tgl@sss.pgh.pa.us 634 :UBC 0 : return 0;
635 : : }
6781 tgl@sss.pgh.pa.us 636 [ - + ]:CBC 210 : else if ((flag & StopMiddle->compoundflag) == 0)
6781 tgl@sss.pgh.pa.us 637 :UBC 0 : return 0;
638 : :
639 : : /*
640 : : * Check if this affix rule is presented in the affix set
641 : : * with index StopMiddle->affix.
642 : : */
3663 teodor@sigaev.ru 643 [ + + ]:CBC 573 : if (IsAffixFlagInUse(Conf, StopMiddle->affix, affixflag))
6781 tgl@sss.pgh.pa.us 644 : 504 : return 1;
645 : : }
646 : 5475 : node = StopMiddle->node;
647 : 5475 : ptr++;
648 : 5475 : break;
649 : : }
650 [ + + ]: 2847 : else if (StopMiddle->val < *ptr)
651 : 966 : StopLow = StopMiddle + 1;
652 : : else
653 : 1881 : StopHigh = StopMiddle;
654 : : }
655 [ + + ]: 6108 : if (StopLow >= StopHigh)
656 : 633 : break;
657 : : }
658 : 993 : return 0;
659 : : }
660 : :
661 : : /*
662 : : * Adds a new affix rule to the Affix field.
663 : : *
664 : : * Conf: current dictionary.
665 : : * flag: affix flag ('\' in the below example).
666 : : * flagflags: set of flags from the flagval field for this affix rule. This set
667 : : * is listed after '/' character in the added string (repl).
668 : : *
669 : : * For example L flag in the hunspell_sample.affix:
670 : : * SFX \ 0 Y/L [^Y]
671 : : *
672 : : * mask: condition for search ('[^Y]' in the above example).
673 : : * find: stripping characters from beginning (at prefix) or end (at suffix)
674 : : * of the word ('0' in the above example, 0 means that there is not
675 : : * stripping character).
676 : : * repl: adding string after stripping ('Y' in the above example).
677 : : * type: FF_SUFFIX or FF_PREFIX.
678 : : */
679 : : static void
3566 rhaas@postgresql.org 680 : 530 : NIAddAffix(IspellDict *Conf, const char *flag, char flagflags, const char *mask,
681 : : const char *find, const char *repl, int type)
682 : : {
683 : : AFFIX *Affix;
684 : :
6781 tgl@sss.pgh.pa.us 685 [ + + ]: 530 : if (Conf->naffixes >= Conf->maffixes)
686 : : {
687 [ - + ]: 64 : if (Conf->maffixes)
688 : : {
5639 tgl@sss.pgh.pa.us 689 :UBC 0 : Conf->maffixes *= 2;
1132 peter@eisentraut.org 690 : 0 : Conf->Affix = (AFFIX *) repalloc(Conf->Affix, Conf->maffixes * sizeof(AFFIX));
691 : : }
692 : : else
693 : : {
6781 tgl@sss.pgh.pa.us 694 :CBC 64 : Conf->maffixes = 16;
95 michael@paquier.xyz 695 :GNC 64 : Conf->Affix = palloc_array(AFFIX, Conf->maffixes);
696 : : }
697 : : }
698 : :
6781 tgl@sss.pgh.pa.us 699 :CBC 530 : Affix = Conf->Affix + Conf->naffixes;
700 : :
701 : : /* This affix rule can be applied for words with any ending */
3663 teodor@sigaev.ru 702 [ + + - + ]: 530 : if (strcmp(mask, ".") == 0 || *mask == '\0')
703 : : {
6781 tgl@sss.pgh.pa.us 704 : 128 : Affix->issimple = 1;
705 : 128 : Affix->isregis = 0;
706 : : }
707 : : /* This affix rule will use regis to search word ending */
708 [ + + ]: 402 : else if (RS_isRegis(mask))
709 : : {
710 : 336 : Affix->issimple = 0;
711 : 336 : Affix->isregis = 1;
3663 teodor@sigaev.ru 712 : 336 : RS_compile(&(Affix->reg.regis), (type == FF_SUFFIX),
4395 sfrost@snowman.net 713 [ + - ]: 336 : *mask ? mask : VoidString);
714 : : }
715 : : /* This affix rule will use regex_t to search word ending */
716 : : else
717 : : {
718 : : int masklen;
719 : : int wmasklen;
720 : : int err;
721 : : pg_wchar *wmask;
722 : : char *tmask;
723 : :
6781 tgl@sss.pgh.pa.us 724 : 66 : Affix->issimple = 0;
725 : 66 : Affix->isregis = 0;
726 : 66 : tmask = (char *) tmpalloc(strlen(mask) + 3);
727 [ + - ]: 66 : if (type == FF_SUFFIX)
728 : 66 : sprintf(tmask, "%s$", mask);
729 : : else
6781 tgl@sss.pgh.pa.us 730 :UBC 0 : sprintf(tmask, "^%s", mask);
731 : :
6781 tgl@sss.pgh.pa.us 732 :CBC 66 : masklen = strlen(tmask);
733 : 66 : wmask = (pg_wchar *) tmpalloc((masklen + 1) * sizeof(pg_wchar));
734 : 66 : wmasklen = pg_mb2wchar_with_len(tmask, wmask, masklen);
735 : :
736 : : /*
737 : : * The regex and all internal state created by pg_regcomp are
738 : : * allocated in the dictionary's memory context, and will be freed
739 : : * automatically when it is destroyed.
740 : : */
95 michael@paquier.xyz 741 :GNC 66 : Affix->reg.pregex = palloc_object(regex_t);
1072 tmunro@postgresql.or 742 :CBC 66 : err = pg_regcomp(Affix->reg.pregex, wmask, wmasklen,
743 : : REG_ADVANCED | REG_NOSUB,
744 : : DEFAULT_COLLATION_OID);
6781 tgl@sss.pgh.pa.us 745 [ - + ]: 66 : if (err)
746 : : {
747 : : char errstr[100];
748 : :
1072 tmunro@postgresql.or 749 :UBC 0 : pg_regerror(err, Affix->reg.pregex, errstr, sizeof(errstr));
6781 tgl@sss.pgh.pa.us 750 [ # # ]: 0 : ereport(ERROR,
751 : : (errcode(ERRCODE_INVALID_REGULAR_EXPRESSION),
752 : : errmsg("invalid regular expression: %s", errstr)));
753 : : }
754 : : }
755 : :
6781 tgl@sss.pgh.pa.us 756 :CBC 530 : Affix->flagflags = flagflags;
757 [ + + - + ]: 530 : if ((Affix->flagflags & FF_COMPOUNDONLY) || (Affix->flagflags & FF_COMPOUNDPERMITFLAG))
758 : : {
759 [ + - ]: 96 : if ((Affix->flagflags & FF_COMPOUNDFLAG) == 0)
760 : 96 : Affix->flagflags |= FF_COMPOUNDFLAG;
761 : : }
3650 teodor@sigaev.ru 762 : 530 : Affix->flag = cpstrdup(Conf, flag);
6781 tgl@sss.pgh.pa.us 763 : 530 : Affix->type = type;
764 : :
5639 765 [ + - + + ]: 530 : Affix->find = (find && *find) ? cpstrdup(Conf, find) : VoidString;
6781 766 [ + + ]: 530 : if ((Affix->replen = strlen(repl)) > 0)
5639 767 : 513 : Affix->repl = cpstrdup(Conf, repl);
768 : : else
6781 769 : 17 : Affix->repl = VoidString;
770 : 530 : Conf->naffixes++;
771 : 530 : }
772 : :
773 : : /* Parsing states for parse_affentry() and friends */
774 : : #define PAE_WAIT_MASK 0
775 : : #define PAE_INMASK 1
776 : : #define PAE_WAIT_FIND 2
777 : : #define PAE_INFIND 3
778 : : #define PAE_WAIT_REPL 4
779 : : #define PAE_INREPL 5
780 : : #define PAE_WAIT_TYPE 6
781 : : #define PAE_WAIT_FLAG 7
782 : :
783 : : /*
784 : : * Parse next space-separated field of an .affix file line.
785 : : *
786 : : * *str is the input pointer (will be advanced past field)
787 : : * next is where to copy the field value to, with null termination
788 : : *
789 : : * The buffer at "next" must be of size BUFSIZ; we truncate the input to fit.
790 : : *
791 : : * Returns true if we found a field, false if not.
792 : : */
793 : : static bool
3686 794 : 4955 : get_nextfield(char **str, char *next)
795 : : {
796 : 4955 : int state = PAE_WAIT_MASK;
797 : 4955 : int avail = BUFSIZ;
798 : :
799 [ + + ]: 21192 : while (**str)
800 : : {
67 tmunro@postgresql.or 801 : 20610 : int clen = pg_mblen_cstr(*str);
802 : :
3686 tgl@sss.pgh.pa.us 803 [ + + ]: 20610 : if (state == PAE_WAIT_MASK)
804 : : {
805 [ + + ]: 9140 : if (t_iseq(*str, '#'))
806 : 176 : return false;
453 peter@eisentraut.org 807 [ + + ]: 8964 : else if (!isspace((unsigned char) **str))
808 : : {
3686 tgl@sss.pgh.pa.us 809 [ + - ]: 4197 : if (clen < avail)
810 : : {
67 tmunro@postgresql.or 811 : 4197 : ts_copychar_with_len(next, *str, clen);
3686 tgl@sss.pgh.pa.us 812 : 4197 : next += clen;
813 : 4197 : avail -= clen;
814 : : }
815 : 4197 : state = PAE_INMASK;
816 : : }
817 : : }
818 : : else /* state == PAE_INMASK */
819 : : {
453 peter@eisentraut.org 820 [ + + ]: 11470 : if (isspace((unsigned char) **str))
821 : : {
3686 tgl@sss.pgh.pa.us 822 : 4197 : *next = '\0';
823 : 4197 : return true;
824 : : }
825 : : else
826 : : {
827 [ + - ]: 7273 : if (clen < avail)
828 : : {
67 tmunro@postgresql.or 829 : 7273 : ts_copychar_with_len(next, *str, clen);
3686 tgl@sss.pgh.pa.us 830 : 7273 : next += clen;
831 : 7273 : avail -= clen;
832 : : }
833 : : }
834 : : }
67 tmunro@postgresql.or 835 : 16237 : *str += clen;
836 : : }
837 : :
3686 tgl@sss.pgh.pa.us 838 : 582 : *next = '\0';
839 : :
3189 840 : 582 : return (state == PAE_INMASK); /* OK if we got a nonempty field */
841 : : }
842 : :
843 : : /*
844 : : * Parses entry of an .affix file of MySpell or Hunspell format.
845 : : *
846 : : * An .affix file entry has the following format:
847 : : * - header
848 : : * <type> <flag> <cross_flag> <flag_count>
849 : : * - fields after header:
850 : : * <type> <flag> <find> <replace> <mask>
851 : : *
852 : : * str is the input line
853 : : * field values are returned to type etc, which must be buffers of size BUFSIZ.
854 : : *
855 : : * Returns number of fields found; any omitted fields are set to empty strings.
856 : : */
857 : : static int
3686 858 : 1141 : parse_ooaffentry(char *str, char *type, char *flag, char *find,
859 : : char *repl, char *mask)
860 : : {
861 : 1141 : int state = PAE_WAIT_TYPE;
862 : 1141 : int fields_read = 0;
863 : 1141 : bool valid = false;
864 : :
865 : 1141 : *type = *flag = *find = *repl = *mask = '\0';
866 : :
867 [ + - ]: 4955 : while (*str)
868 : : {
869 [ + + + + : 4955 : switch (state)
+ - ]
870 : : {
871 : 1141 : case PAE_WAIT_TYPE:
872 : 1141 : valid = get_nextfield(&str, type);
873 : 1141 : state = PAE_WAIT_FLAG;
874 : 1141 : break;
875 : 1141 : case PAE_WAIT_FLAG:
876 : 1141 : valid = get_nextfield(&str, flag);
877 : 1141 : state = PAE_WAIT_FIND;
878 : 1141 : break;
879 : 1141 : case PAE_WAIT_FIND:
880 : 1141 : valid = get_nextfield(&str, find);
881 : 1141 : state = PAE_WAIT_REPL;
882 : 1141 : break;
883 : 766 : case PAE_WAIT_REPL:
884 : 766 : valid = get_nextfield(&str, repl);
885 : 766 : state = PAE_WAIT_MASK;
886 : 766 : break;
887 : 766 : case PAE_WAIT_MASK:
888 : 766 : valid = get_nextfield(&str, mask);
889 : 766 : state = -1; /* force loop exit */
890 : 766 : break;
3686 tgl@sss.pgh.pa.us 891 :UBC 0 : default:
892 [ # # ]: 0 : elog(ERROR, "unrecognized state in parse_ooaffentry: %d",
893 : : state);
894 : : break;
895 : : }
3686 tgl@sss.pgh.pa.us 896 [ + + ]:CBC 4955 : if (valid)
897 : 4197 : fields_read++;
898 : : else
899 : 758 : break; /* early EOL */
900 [ + + ]: 4197 : if (state < 0)
901 : 383 : break; /* got all fields */
902 : : }
903 : :
904 : 1141 : return fields_read;
905 : : }
906 : :
907 : : /*
908 : : * Parses entry of an .affix file of Ispell format
909 : : *
910 : : * An .affix file entry has the following format:
911 : : * <mask> > [-<find>,]<replace>
912 : : */
913 : : static bool
6479 914 : 147 : parse_affentry(char *str, char *mask, char *find, char *repl)
915 : : {
6781 916 : 147 : int state = PAE_WAIT_MASK;
917 : 147 : char *pmask = mask,
918 : 147 : *pfind = find,
919 : 147 : *prepl = repl;
920 : :
921 : 147 : *mask = *find = *repl = '\0';
922 : :
923 [ + - ]: 3864 : while (*str)
924 : : {
67 tmunro@postgresql.or 925 : 3864 : int clen = pg_mblen_cstr(str);
926 : :
6781 tgl@sss.pgh.pa.us 927 [ + + ]: 3864 : if (state == PAE_WAIT_MASK)
928 : : {
929 [ - + ]: 357 : if (t_iseq(str, '#'))
6781 tgl@sss.pgh.pa.us 930 :UBC 0 : return false;
453 peter@eisentraut.org 931 [ + + ]:CBC 357 : else if (!isspace((unsigned char) *str))
932 : : {
67 tmunro@postgresql.or 933 : 147 : pmask += ts_copychar_with_len(pmask, str, clen);
6781 tgl@sss.pgh.pa.us 934 : 147 : state = PAE_INMASK;
935 : : }
936 : : }
937 [ + + ]: 3507 : else if (state == PAE_INMASK)
938 : : {
939 [ + + ]: 1428 : if (t_iseq(str, '>'))
940 : : {
941 : 147 : *pmask = '\0';
942 : 147 : state = PAE_WAIT_FIND;
943 : : }
453 peter@eisentraut.org 944 [ + + ]: 1281 : else if (!isspace((unsigned char) *str))
945 : : {
67 tmunro@postgresql.or 946 : 504 : pmask += ts_copychar_with_len(pmask, str, clen);
947 : : }
948 : : }
6781 tgl@sss.pgh.pa.us 949 [ + + ]: 2079 : else if (state == PAE_WAIT_FIND)
950 : : {
951 [ + + ]: 588 : if (t_iseq(str, '-'))
952 : : {
953 : 21 : state = PAE_INFIND;
954 : : }
67 tmunro@postgresql.or 955 [ + + - + ]: 567 : else if (t_isalpha_cstr(str) || t_iseq(str, '\'') /* english 's */ )
956 : : {
957 : 126 : prepl += ts_copychar_with_len(prepl, str, clen);
6781 tgl@sss.pgh.pa.us 958 : 126 : state = PAE_INREPL;
959 : : }
453 peter@eisentraut.org 960 [ - + ]: 441 : else if (!isspace((unsigned char) *str))
6781 tgl@sss.pgh.pa.us 961 [ # # ]:UBC 0 : ereport(ERROR,
962 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
963 : : errmsg("syntax error")));
964 : : }
6781 tgl@sss.pgh.pa.us 965 [ + + ]:CBC 1491 : else if (state == PAE_INFIND)
966 : : {
967 [ + + ]: 42 : if (t_iseq(str, ','))
968 : : {
969 : 21 : *pfind = '\0';
970 : 21 : state = PAE_WAIT_REPL;
971 : : }
67 tmunro@postgresql.or 972 [ + - ]: 21 : else if (t_isalpha_cstr(str))
973 : : {
974 : 21 : pfind += ts_copychar_with_len(pfind, str, clen);
975 : : }
453 peter@eisentraut.org 976 [ # # ]:UBC 0 : else if (!isspace((unsigned char) *str))
6781 tgl@sss.pgh.pa.us 977 [ # # ]: 0 : ereport(ERROR,
978 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
979 : : errmsg("syntax error")));
980 : : }
6781 tgl@sss.pgh.pa.us 981 [ + + ]:CBC 1449 : else if (state == PAE_WAIT_REPL)
982 : : {
983 [ - + ]: 21 : if (t_iseq(str, '-'))
984 : : {
6781 tgl@sss.pgh.pa.us 985 :UBC 0 : break; /* void repl */
986 : : }
67 tmunro@postgresql.or 987 [ + - ]:CBC 21 : else if (t_isalpha_cstr(str))
988 : : {
989 : 21 : prepl += ts_copychar_with_len(prepl, str, clen);
6781 tgl@sss.pgh.pa.us 990 : 21 : state = PAE_INREPL;
991 : : }
453 peter@eisentraut.org 992 [ # # ]:UBC 0 : else if (!isspace((unsigned char) *str))
6781 tgl@sss.pgh.pa.us 993 [ # # ]: 0 : ereport(ERROR,
994 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
995 : : errmsg("syntax error")));
996 : : }
6781 tgl@sss.pgh.pa.us 997 [ + - ]:CBC 1428 : else if (state == PAE_INREPL)
998 : : {
999 [ + + ]: 1428 : if (t_iseq(str, '#'))
1000 : : {
1001 : 147 : *prepl = '\0';
1002 : 147 : break;
1003 : : }
67 tmunro@postgresql.or 1004 [ + + ]: 1281 : else if (t_isalpha_cstr(str))
1005 : : {
1006 : 189 : prepl += ts_copychar_with_len(prepl, str, clen);
1007 : : }
453 peter@eisentraut.org 1008 [ - + ]: 1092 : else if (!isspace((unsigned char) *str))
6781 tgl@sss.pgh.pa.us 1009 [ # # ]:UBC 0 : ereport(ERROR,
1010 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1011 : : errmsg("syntax error")));
1012 : : }
1013 : : else
6682 1014 [ # # ]: 0 : elog(ERROR, "unrecognized state in parse_affentry: %d", state);
1015 : :
67 tmunro@postgresql.or 1016 :CBC 3717 : str += clen;
1017 : : }
1018 : :
6781 tgl@sss.pgh.pa.us 1019 : 147 : *pmask = *pfind = *prepl = '\0';
1020 : :
3663 teodor@sigaev.ru 1021 [ + - + + : 147 : return (*mask && (*find || *repl));
+ - ]
1022 : : }
1023 : :
1024 : : /*
1025 : : * Sets a Hunspell options depending on flag type.
1026 : : */
1027 : : static void
3650 1028 : 1428 : setCompoundAffixFlagValue(IspellDict *Conf, CompoundAffixFlag *entry,
1029 : : char *s, uint32 val)
1030 : : {
1031 [ + + ]: 1428 : if (Conf->flagMode == FM_NUM)
1032 : : {
1033 : : char *next;
1034 : : int i;
1035 : :
372 tgl@sss.pgh.pa.us 1036 : 309 : errno = 0;
3650 teodor@sigaev.ru 1037 : 309 : i = strtol(s, &next, 10);
1038 [ + - - + ]: 309 : if (s == next || errno == ERANGE)
3650 teodor@sigaev.ru 1039 [ # # ]:UBC 0 : ereport(ERROR,
1040 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1041 : : errmsg("invalid affix flag \"%s\"", s)));
3650 teodor@sigaev.ru 1042 [ + - - + ]:CBC 309 : if (i < 0 || i > FLAGNUM_MAXSIZE)
3650 teodor@sigaev.ru 1043 [ # # ]:UBC 0 : ereport(ERROR,
1044 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1045 : : errmsg("affix flag \"%s\" is out of range", s)));
1046 : :
3650 teodor@sigaev.ru 1047 :CBC 309 : entry->flag.i = i;
1048 : : }
1049 : : else
1050 : 1119 : entry->flag.s = cpstrdup(Conf, s);
1051 : :
1052 : 1428 : entry->flagMode = Conf->flagMode;
1053 : 1428 : entry->value = val;
1054 : 1428 : }
1055 : :
1056 : : /*
1057 : : * Sets up a correspondence for the affix parameter with the affix flag.
1058 : : *
1059 : : * Conf: current dictionary.
1060 : : * s: affix flag in string.
1061 : : * val: affix parameter.
1062 : : */
1063 : : static void
1064 : 171 : addCompoundAffixFlagValue(IspellDict *Conf, char *s, uint32 val)
1065 : : {
1066 : : CompoundAffixFlag *newValue;
1067 : : char sbuf[BUFSIZ];
1068 : : char *sflag;
1069 : :
453 peter@eisentraut.org 1070 [ + - + + ]: 321 : while (*s && isspace((unsigned char) *s))
67 tmunro@postgresql.or 1071 : 150 : s += pg_mblen_cstr(s);
1072 : :
6781 tgl@sss.pgh.pa.us 1073 [ - + ]: 171 : if (!*s)
6781 tgl@sss.pgh.pa.us 1074 [ # # ]:UBC 0 : ereport(ERROR,
1075 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1076 : : errmsg("syntax error")));
1077 : :
1078 : : /* Get flag without \n */
3650 teodor@sigaev.ru 1079 :CBC 171 : sflag = sbuf;
453 peter@eisentraut.org 1080 [ + - + + : 506 : while (*s && !isspace((unsigned char) *s) && *s != '\n')
+ - ]
1081 : : {
67 tmunro@postgresql.or 1082 : 335 : int clen = ts_copychar_cstr(sflag, s);
1083 : :
3650 teodor@sigaev.ru 1084 : 335 : sflag += clen;
1085 : 335 : s += clen;
1086 : : }
1087 : 171 : *sflag = '\0';
1088 : :
1089 : : /* Resize array or allocate memory for array CompoundAffixFlag */
1090 [ + + ]: 171 : if (Conf->nCompoundAffixFlag >= Conf->mCompoundAffixFlag)
1091 : : {
1092 [ - + ]: 64 : if (Conf->mCompoundAffixFlag)
1093 : : {
3650 teodor@sigaev.ru 1094 :UBC 0 : Conf->mCompoundAffixFlag *= 2;
1095 : 0 : Conf->CompoundAffixFlags = (CompoundAffixFlag *)
1132 peter@eisentraut.org 1096 : 0 : repalloc(Conf->CompoundAffixFlags,
3189 tgl@sss.pgh.pa.us 1097 : 0 : Conf->mCompoundAffixFlag * sizeof(CompoundAffixFlag));
1098 : : }
1099 : : else
1100 : : {
3650 teodor@sigaev.ru 1101 :CBC 64 : Conf->mCompoundAffixFlag = 10;
1102 : 64 : Conf->CompoundAffixFlags = (CompoundAffixFlag *)
1103 : 64 : tmpalloc(Conf->mCompoundAffixFlag * sizeof(CompoundAffixFlag));
1104 : : }
1105 : : }
1106 : :
1107 : 171 : newValue = Conf->CompoundAffixFlags + Conf->nCompoundAffixFlag;
1108 : :
1109 : 171 : setCompoundAffixFlagValue(Conf, newValue, sbuf, val);
1110 : :
6781 tgl@sss.pgh.pa.us 1111 : 171 : Conf->usecompound = true;
3650 teodor@sigaev.ru 1112 : 171 : Conf->nCompoundAffixFlag++;
6781 tgl@sss.pgh.pa.us 1113 : 171 : }
1114 : :
1115 : : /*
1116 : : * Returns a set of affix parameters which correspondence to the set of affix
1117 : : * flags s.
1118 : : */
1119 : : static int
586 heikki.linnakangas@i 1120 : 618 : getCompoundAffixFlagValue(IspellDict *Conf, const char *s)
1121 : : {
3566 rhaas@postgresql.org 1122 : 618 : uint32 flag = 0;
1123 : : CompoundAffixFlag *found,
1124 : : key;
1125 : : char sflag[BUFSIZ];
1126 : : const char *flagcur;
1127 : :
3650 teodor@sigaev.ru 1128 [ - + ]: 618 : if (Conf->nCompoundAffixFlag == 0)
3650 teodor@sigaev.ru 1129 :UBC 0 : return 0;
1130 : :
3663 teodor@sigaev.ru 1131 :CBC 618 : flagcur = s;
1132 [ + + ]: 1875 : while (*flagcur)
1133 : : {
3650 1134 : 1260 : getNextFlagFromString(Conf, &flagcur, sflag);
1135 : 1257 : setCompoundAffixFlagValue(Conf, &key, sflag, 0);
1136 : :
1137 : : found = (CompoundAffixFlag *)
1132 peter@eisentraut.org 1138 : 1257 : bsearch(&key, Conf->CompoundAffixFlags,
3650 teodor@sigaev.ru 1139 : 1257 : Conf->nCompoundAffixFlag, sizeof(CompoundAffixFlag),
1140 : : cmpcmdflag);
1141 [ + + ]: 1257 : if (found != NULL)
1142 : 287 : flag |= found->value;
1143 : : }
1144 : :
3663 1145 : 615 : return flag;
1146 : : }
1147 : :
1148 : : /*
1149 : : * Returns a flag set using the s parameter.
1150 : : *
1151 : : * If Conf->useFlagAliases is true then the s parameter is index of the
1152 : : * Conf->AffixData array and function returns its entry.
1153 : : * Else function returns the s parameter.
1154 : : */
1155 : : static const char *
3650 1156 : 75 : getAffixFlagSet(IspellDict *Conf, char *s)
1157 : : {
1158 [ + + + - ]: 75 : if (Conf->useFlagAliases && *s != '\0')
1159 : : {
1160 : : int curaffix;
1161 : : char *end;
1162 : :
372 tgl@sss.pgh.pa.us 1163 : 48 : errno = 0;
3650 teodor@sigaev.ru 1164 : 48 : curaffix = strtol(s, &end, 10);
1165 [ + - - + ]: 48 : if (s == end || errno == ERANGE)
3650 teodor@sigaev.ru 1166 [ # # ]:UBC 0 : ereport(ERROR,
1167 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1168 : : errmsg("invalid affix alias \"%s\"", s)));
1169 : :
2325 tgl@sss.pgh.pa.us 1170 [ + - + - ]:CBC 48 : if (curaffix > 0 && curaffix < Conf->nAffixData)
1171 : :
1172 : : /*
1173 : : * Do not subtract 1 from curaffix because empty string was added
1174 : : * in NIImportOOAffixes
1175 : : */
3663 teodor@sigaev.ru 1176 : 48 : return Conf->AffixData[curaffix];
2325 tgl@sss.pgh.pa.us 1177 [ # # ]:UBC 0 : else if (curaffix > Conf->nAffixData)
1178 [ # # ]: 0 : ereport(ERROR,
1179 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1180 : : errmsg("invalid affix alias \"%s\"", s)));
2324 1181 : 0 : return VoidString;
1182 : : }
1183 : : else
3663 teodor@sigaev.ru 1184 :CBC 27 : return s;
1185 : : }
1186 : :
1187 : : /*
1188 : : * Import an affix file that follows MySpell or Hunspell format.
1189 : : *
1190 : : * Conf: current dictionary.
1191 : : * filename: path to the .affix file.
1192 : : */
1193 : : static void
6695 bruce@momjian.us 1194 : 43 : NIImportOOAffixes(IspellDict *Conf, const char *filename)
1195 : : {
1196 : : char type[BUFSIZ],
6781 tgl@sss.pgh.pa.us 1197 : 43 : *ptype = NULL;
1198 : : char sflag[BUFSIZ];
1199 : : char mask[BUFSIZ],
1200 : : *pmask;
1201 : : char find[BUFSIZ],
1202 : : *pfind;
1203 : : char repl[BUFSIZ],
1204 : : *prepl;
1205 : 43 : bool isSuffix = false;
3663 teodor@sigaev.ru 1206 : 43 : int naffix = 0,
1207 : 43 : curaffix = 0;
3650 1208 : 43 : int sflaglen = 0;
6781 tgl@sss.pgh.pa.us 1209 : 43 : char flagflags = 0;
1210 : : tsearch_readline_state trst;
1211 : : char *recoded;
1212 : :
1213 : : /* read file to find any flag */
1214 : 43 : Conf->usecompound = false;
3663 teodor@sigaev.ru 1215 : 43 : Conf->useFlagAliases = false;
1216 : 43 : Conf->flagMode = FM_CHAR;
1217 : :
6479 tgl@sss.pgh.pa.us 1218 [ - + ]: 43 : if (!tsearch_readline_begin(&trst, filename))
6781 tgl@sss.pgh.pa.us 1219 [ # # ]:UBC 0 : ereport(ERROR,
1220 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1221 : : errmsg("could not open affix file \"%s\": %m",
1222 : : filename)));
1223 : :
6479 tgl@sss.pgh.pa.us 1224 [ + + ]:CBC 1682 : while ((recoded = tsearch_readline(&trst)) != NULL)
1225 : : {
453 peter@eisentraut.org 1226 [ + - + + : 1639 : if (*recoded == '\0' || isspace((unsigned char) *recoded) || t_iseq(recoded, '#'))
+ + ]
1227 : : {
6777 tgl@sss.pgh.pa.us 1228 : 498 : pfree(recoded);
6781 1229 : 498 : continue;
1230 : : }
1231 : :
1232 [ + + ]: 1141 : if (STRNCMP(recoded, "COMPOUNDFLAG") == 0)
3650 teodor@sigaev.ru 1233 : 43 : addCompoundAffixFlagValue(Conf, recoded + strlen("COMPOUNDFLAG"),
1234 : : FF_COMPOUNDFLAG);
6781 tgl@sss.pgh.pa.us 1235 [ + + ]: 1098 : else if (STRNCMP(recoded, "COMPOUNDBEGIN") == 0)
3650 teodor@sigaev.ru 1236 : 16 : addCompoundAffixFlagValue(Conf, recoded + strlen("COMPOUNDBEGIN"),
1237 : : FF_COMPOUNDBEGIN);
6781 tgl@sss.pgh.pa.us 1238 [ - + ]: 1082 : else if (STRNCMP(recoded, "COMPOUNDLAST") == 0)
3650 teodor@sigaev.ru 1239 :UBC 0 : addCompoundAffixFlagValue(Conf, recoded + strlen("COMPOUNDLAST"),
1240 : : FF_COMPOUNDLAST);
1241 : : /* COMPOUNDLAST and COMPOUNDEND are synonyms */
6781 tgl@sss.pgh.pa.us 1242 [ + + ]:CBC 1082 : else if (STRNCMP(recoded, "COMPOUNDEND") == 0)
3650 teodor@sigaev.ru 1243 : 16 : addCompoundAffixFlagValue(Conf, recoded + strlen("COMPOUNDEND"),
1244 : : FF_COMPOUNDLAST);
6781 tgl@sss.pgh.pa.us 1245 [ + + ]: 1066 : else if (STRNCMP(recoded, "COMPOUNDMIDDLE") == 0)
3650 teodor@sigaev.ru 1246 : 16 : addCompoundAffixFlagValue(Conf, recoded + strlen("COMPOUNDMIDDLE"),
1247 : : FF_COMPOUNDMIDDLE);
6781 tgl@sss.pgh.pa.us 1248 [ + + ]: 1050 : else if (STRNCMP(recoded, "ONLYINCOMPOUND") == 0)
3650 teodor@sigaev.ru 1249 : 43 : addCompoundAffixFlagValue(Conf, recoded + strlen("ONLYINCOMPOUND"),
1250 : : FF_COMPOUNDONLY);
6781 tgl@sss.pgh.pa.us 1251 [ + + ]: 1007 : else if (STRNCMP(recoded, "COMPOUNDPERMITFLAG") == 0)
3650 teodor@sigaev.ru 1252 : 16 : addCompoundAffixFlagValue(Conf,
1253 : : recoded + strlen("COMPOUNDPERMITFLAG"),
1254 : : FF_COMPOUNDPERMITFLAG);
6781 tgl@sss.pgh.pa.us 1255 [ - + ]: 991 : else if (STRNCMP(recoded, "COMPOUNDFORBIDFLAG") == 0)
3650 teodor@sigaev.ru 1256 :UBC 0 : addCompoundAffixFlagValue(Conf,
1257 : : recoded + strlen("COMPOUNDFORBIDFLAG"),
1258 : : FF_COMPOUNDFORBIDFLAG);
6781 tgl@sss.pgh.pa.us 1259 [ + + ]:CBC 991 : else if (STRNCMP(recoded, "FLAG") == 0)
1260 : : {
1261 : 33 : char *s = recoded + strlen("FLAG");
1262 : :
453 peter@eisentraut.org 1263 [ + - + + ]: 66 : while (*s && isspace((unsigned char) *s))
67 tmunro@postgresql.or 1264 : 33 : s += pg_mblen_cstr(s);
1265 : :
3663 teodor@sigaev.ru 1266 [ + - ]: 33 : if (*s)
1267 : : {
1268 [ + + ]: 33 : if (STRNCMP(s, "long") == 0)
1269 : 16 : Conf->flagMode = FM_LONG;
1270 [ + - ]: 17 : else if (STRNCMP(s, "num") == 0)
1271 : 17 : Conf->flagMode = FM_NUM;
3663 teodor@sigaev.ru 1272 [ # # ]:UBC 0 : else if (STRNCMP(s, "default") != 0)
1273 [ # # ]: 0 : ereport(ERROR,
1274 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1275 : : errmsg("Ispell dictionary supports only "
1276 : : "\"default\", \"long\", "
1277 : : "and \"num\" flag values")));
1278 : : }
1279 : : }
1280 : :
6777 tgl@sss.pgh.pa.us 1281 :CBC 1141 : pfree(recoded);
1282 : : }
6479 1283 : 43 : tsearch_readline_end(&trst);
1284 : :
3650 teodor@sigaev.ru 1285 [ + - ]: 43 : if (Conf->nCompoundAffixFlag > 1)
1132 peter@eisentraut.org 1286 : 43 : qsort(Conf->CompoundAffixFlags, Conf->nCompoundAffixFlag,
1287 : : sizeof(CompoundAffixFlag), cmpcmdflag);
1288 : :
6479 tgl@sss.pgh.pa.us 1289 [ - + ]: 43 : if (!tsearch_readline_begin(&trst, filename))
6781 tgl@sss.pgh.pa.us 1290 [ # # ]:UBC 0 : ereport(ERROR,
1291 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1292 : : errmsg("could not open affix file \"%s\": %m",
1293 : : filename)));
1294 : :
6479 tgl@sss.pgh.pa.us 1295 [ + + ]:CBC 1682 : while ((recoded = tsearch_readline(&trst)) != NULL)
1296 : : {
1297 : : int fields_read;
1298 : :
453 peter@eisentraut.org 1299 [ + - + + : 1639 : if (*recoded == '\0' || isspace((unsigned char) *recoded) || t_iseq(recoded, '#'))
+ + ]
6777 tgl@sss.pgh.pa.us 1300 : 498 : goto nextline;
1301 : :
3686 1302 : 1141 : fields_read = parse_ooaffentry(recoded, type, sflag, find, repl, mask);
1303 : :
6781 1304 [ + + ]: 1141 : if (ptype)
1305 : 1098 : pfree(ptype);
5639 1306 : 1141 : ptype = lowerstr_ctx(Conf, type);
1307 : :
1308 : : /* First try to parse AF parameter (alias compression) */
3663 teodor@sigaev.ru 1309 [ + + ]: 1141 : if (STRNCMP(ptype, "af") == 0)
1310 : : {
1311 : : /* First line is the number of aliases */
1312 [ + + ]: 192 : if (!Conf->useFlagAliases)
1313 : : {
1314 : 16 : Conf->useFlagAliases = true;
1315 : 16 : naffix = atoi(sflag);
2893 tgl@sss.pgh.pa.us 1316 [ - + ]: 16 : if (naffix <= 0)
3663 teodor@sigaev.ru 1317 [ # # ]:UBC 0 : ereport(ERROR,
1318 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1319 : : errmsg("invalid number of flag vector aliases")));
1320 : :
1321 : : /* Also reserve place for empty flag set */
3663 teodor@sigaev.ru 1322 :CBC 16 : naffix++;
1323 : :
95 michael@paquier.xyz 1324 :GNC 16 : Conf->AffixData = palloc0_array(const char *, naffix);
3663 teodor@sigaev.ru 1325 :CBC 16 : Conf->lenAffixData = Conf->nAffixData = naffix;
1326 : :
1327 : : /* Add empty flag set into AffixData */
1328 : 16 : Conf->AffixData[curaffix] = VoidString;
1329 : 16 : curaffix++;
1330 : : }
1331 : : /* Other lines are aliases */
1332 : : else
1333 : : {
1334 [ + - ]: 176 : if (curaffix < naffix)
1335 : : {
1336 : 176 : Conf->AffixData[curaffix] = cpstrdup(Conf, sflag);
1337 : 176 : curaffix++;
1338 : : }
1339 : : else
2893 tgl@sss.pgh.pa.us 1340 [ # # ]:UBC 0 : ereport(ERROR,
1341 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1342 : : errmsg("number of aliases exceeds specified number %d",
1343 : : naffix - 1)));
1344 : : }
3663 teodor@sigaev.ru 1345 :CBC 192 : goto nextline;
1346 : : }
1347 : : /* Else try to parse prefixes and suffixes */
3686 tgl@sss.pgh.pa.us 1348 [ + + ]: 949 : if (fields_read < 4 ||
1349 [ + + - + ]: 766 : (STRNCMP(ptype, "sfx") != 0 && STRNCMP(ptype, "pfx") != 0))
6777 1350 : 183 : goto nextline;
1351 : :
3663 teodor@sigaev.ru 1352 : 766 : sflaglen = strlen(sflag);
1353 [ + - ]: 766 : if (sflaglen == 0
1354 [ + + + - ]: 766 : || (sflaglen > 1 && Conf->flagMode == FM_CHAR)
1355 [ + + - + ]: 766 : || (sflaglen > 2 && Conf->flagMode == FM_LONG))
3663 teodor@sigaev.ru 1356 :UBC 0 : goto nextline;
1357 : :
1358 : : /*--------
1359 : : * Affix header. For example:
1360 : : * SFX \ N 1
1361 : : *--------
1362 : : */
3686 tgl@sss.pgh.pa.us 1363 [ + + ]:CBC 766 : if (fields_read == 4)
1364 : : {
3663 teodor@sigaev.ru 1365 : 383 : isSuffix = (STRNCMP(ptype, "sfx") == 0);
6761 1366 [ + - + + ]: 383 : if (t_iseq(find, 'y') || t_iseq(find, 'Y'))
6781 tgl@sss.pgh.pa.us 1367 : 265 : flagflags = FF_CROSSPRODUCT;
1368 : : else
1369 : 118 : flagflags = 0;
1370 : : }
1371 : : /*--------
1372 : : * Affix fields. For example:
1373 : : * SFX \ 0 Y/L [^Y]
1374 : : *--------
1375 : : */
1376 : : else
1377 : : {
1378 : : char *ptr;
1379 : 383 : int aflg = 0;
1380 : :
1381 : : /* Get flags after '/' (flags are case sensitive) */
3661 1382 [ + + ]: 383 : if ((ptr = strchr(repl, '/')) != NULL)
3650 teodor@sigaev.ru 1383 : 75 : aflg |= getCompoundAffixFlagValue(Conf,
1384 : : getAffixFlagSet(Conf,
1385 : : ptr + 1));
1386 : : /* Get lowercased version of string before '/' */
5639 tgl@sss.pgh.pa.us 1387 : 383 : prepl = lowerstr_ctx(Conf, repl);
6781 1388 [ + + ]: 383 : if ((ptr = strchr(prepl, '/')) != NULL)
1389 : 75 : *ptr = '\0';
5639 1390 : 383 : pfind = lowerstr_ctx(Conf, find);
1391 : 383 : pmask = lowerstr_ctx(Conf, mask);
6781 1392 [ + + ]: 383 : if (t_iseq(find, '0'))
1393 : 323 : *pfind = '\0';
1394 [ + + ]: 383 : if (t_iseq(repl, '0'))
1395 : 17 : *prepl = '\0';
1396 : :
3650 teodor@sigaev.ru 1397 : 383 : NIAddAffix(Conf, sflag, flagflags | aflg, pmask, pfind, prepl,
1398 : : isSuffix ? FF_SUFFIX : FF_PREFIX);
6781 tgl@sss.pgh.pa.us 1399 : 383 : pfree(prepl);
1400 : 383 : pfree(pfind);
1401 : 383 : pfree(pmask);
1402 : : }
1403 : :
6695 bruce@momjian.us 1404 : 1639 : nextline:
6777 tgl@sss.pgh.pa.us 1405 : 1639 : pfree(recoded);
1406 : : }
1407 : :
6479 1408 : 43 : tsearch_readline_end(&trst);
6781 1409 [ + - ]: 43 : if (ptype)
1410 : 43 : pfree(ptype);
1411 : 43 : }
1412 : :
1413 : : /*
1414 : : * import affixes
1415 : : *
1416 : : * Note caller must already have applied get_tsearch_config_filename
1417 : : *
1418 : : * This function is responsible for parsing ispell ("old format") affix files.
1419 : : * If we realize that the file contains new-format commands, we pass off the
1420 : : * work to NIImportOOAffixes(), which will re-read the whole file.
1421 : : */
1422 : : void
6695 bruce@momjian.us 1423 : 64 : NIImportAffixes(IspellDict *Conf, const char *filename)
1424 : : {
6761 teodor@sigaev.ru 1425 : 64 : char *pstr = NULL;
1426 : : char flag[BUFSIZ];
1427 : : char mask[BUFSIZ];
1428 : : char find[BUFSIZ];
1429 : : char repl[BUFSIZ];
1430 : : char *s;
6777 tgl@sss.pgh.pa.us 1431 : 64 : bool suffixes = false;
1432 : 64 : bool prefixes = false;
6781 1433 : 64 : char flagflags = 0;
1434 : : tsearch_readline_state trst;
6777 1435 : 64 : bool oldformat = false;
1436 : 64 : char *recoded = NULL;
1437 : :
6479 1438 [ - + ]: 64 : if (!tsearch_readline_begin(&trst, filename))
6781 tgl@sss.pgh.pa.us 1439 [ # # ]:UBC 0 : ereport(ERROR,
1440 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1441 : : errmsg("could not open affix file \"%s\": %m",
1442 : : filename)));
1443 : :
6781 tgl@sss.pgh.pa.us 1444 :CBC 64 : Conf->usecompound = false;
3663 teodor@sigaev.ru 1445 : 64 : Conf->useFlagAliases = false;
1446 : 64 : Conf->flagMode = FM_CHAR;
1447 : :
6479 tgl@sss.pgh.pa.us 1448 [ + + ]: 610 : while ((recoded = tsearch_readline(&trst)) != NULL)
1449 : : {
453 peter@eisentraut.org 1450 : 589 : pstr = str_tolower(recoded, strlen(recoded), DEFAULT_COLLATION_OID);
1451 : :
1452 : : /* Skip comments and empty lines */
6781 tgl@sss.pgh.pa.us 1453 [ + - + + ]: 589 : if (*pstr == '#' || *pstr == '\n')
6777 1454 : 189 : goto nextline;
1455 : :
6781 1456 [ + + ]: 400 : if (STRNCMP(pstr, "compoundwords") == 0)
1457 : : {
1458 : : /* Find case-insensitive L flag in non-lowercased string */
3661 1459 : 21 : s = findchar2(recoded, 'l', 'L');
6781 1460 [ + - ]: 21 : if (s)
1461 : : {
453 peter@eisentraut.org 1462 [ + - + + ]: 105 : while (*s && !isspace((unsigned char) *s))
67 tmunro@postgresql.or 1463 : 84 : s += pg_mblen_cstr(s);
453 peter@eisentraut.org 1464 [ + - + + ]: 42 : while (*s && isspace((unsigned char) *s))
67 tmunro@postgresql.or 1465 : 21 : s += pg_mblen_cstr(s);
1466 : :
1467 [ + - + - ]: 21 : if (*s && pg_mblen_cstr(s) == 1)
1468 : : {
3650 teodor@sigaev.ru 1469 : 21 : addCompoundAffixFlagValue(Conf, s, FF_COMPOUNDFLAG);
6781 tgl@sss.pgh.pa.us 1470 : 21 : Conf->usecompound = true;
1471 : : }
6777 1472 : 21 : oldformat = true;
1473 : 21 : goto nextline;
1474 : : }
1475 : : }
6781 1476 [ + + ]: 379 : if (STRNCMP(pstr, "suffixes") == 0)
1477 : : {
6777 1478 : 21 : suffixes = true;
1479 : 21 : prefixes = false;
1480 : 21 : oldformat = true;
1481 : 21 : goto nextline;
1482 : : }
6781 1483 [ + + ]: 358 : if (STRNCMP(pstr, "prefixes") == 0)
1484 : : {
6777 1485 : 21 : suffixes = false;
1486 : 21 : prefixes = true;
1487 : 21 : oldformat = true;
1488 : 21 : goto nextline;
1489 : : }
6781 1490 [ + + ]: 337 : if (STRNCMP(pstr, "flag") == 0)
1491 : : {
6695 bruce@momjian.us 1492 : 180 : s = recoded + 4; /* we need non-lowercased string */
6781 tgl@sss.pgh.pa.us 1493 : 180 : flagflags = 0;
1494 : :
453 peter@eisentraut.org 1495 [ + - + + ]: 360 : while (*s && isspace((unsigned char) *s))
67 tmunro@postgresql.or 1496 : 180 : s += pg_mblen_cstr(s);
1497 : :
6781 tgl@sss.pgh.pa.us 1498 [ + + ]: 180 : if (*s == '*')
1499 : : {
1500 : 105 : flagflags |= FF_CROSSPRODUCT;
1501 : 105 : s++;
1502 : : }
1503 [ + + ]: 75 : else if (*s == '~')
1504 : : {
1505 : 21 : flagflags |= FF_COMPOUNDONLY;
1506 : 21 : s++;
1507 : : }
1508 : :
1509 [ + + ]: 180 : if (*s == '\\')
1510 : 21 : s++;
1511 : :
1512 : : /*
1513 : : * An old-format flag is a single ASCII character; we expect it to
1514 : : * be followed by EOL, whitespace, or ':'. Otherwise this is a
1515 : : * new-format flag command.
1516 : : */
67 tmunro@postgresql.or 1517 [ + - + - ]: 180 : if (*s && pg_mblen_cstr(s) == 1)
1518 : : {
1519 : 180 : flag[0] = *s++;
3650 teodor@sigaev.ru 1520 : 180 : flag[1] = '\0';
1521 : :
4161 tgl@sss.pgh.pa.us 1522 [ + - + - : 180 : if (*s == '\0' || *s == '#' || *s == '\n' || *s == ':' ||
+ - + + ]
453 peter@eisentraut.org 1523 [ - + ]: 33 : isspace((unsigned char) *s))
1524 : : {
4161 tgl@sss.pgh.pa.us 1525 : 147 : oldformat = true;
1526 : 147 : goto nextline;
1527 : : }
1528 : : }
1529 : 33 : goto isnewformat;
1530 : : }
1531 [ + + ]: 157 : if (STRNCMP(recoded, "COMPOUNDFLAG") == 0 ||
1532 [ + - ]: 147 : STRNCMP(recoded, "COMPOUNDMIN") == 0 ||
1533 [ + - ]: 147 : STRNCMP(recoded, "PFX") == 0 ||
1534 [ - + ]: 147 : STRNCMP(recoded, "SFX") == 0)
1535 : 10 : goto isnewformat;
1536 : :
6781 1537 [ + + - + ]: 147 : if ((!suffixes) && (!prefixes))
6777 tgl@sss.pgh.pa.us 1538 :UBC 0 : goto nextline;
1539 : :
6479 tgl@sss.pgh.pa.us 1540 [ - + ]:CBC 147 : if (!parse_affentry(pstr, mask, find, repl))
6777 tgl@sss.pgh.pa.us 1541 :UBC 0 : goto nextline;
1542 : :
6781 tgl@sss.pgh.pa.us 1543 :CBC 147 : NIAddAffix(Conf, flag, flagflags, mask, find, repl, suffixes ? FF_SUFFIX : FF_PREFIX);
1544 : :
6695 bruce@momjian.us 1545 : 546 : nextline:
6761 teodor@sigaev.ru 1546 : 546 : pfree(recoded);
6781 tgl@sss.pgh.pa.us 1547 : 546 : pfree(pstr);
1548 : : }
6479 1549 : 21 : tsearch_readline_end(&trst);
4161 1550 : 21 : return;
1551 : :
1552 : 43 : isnewformat:
1553 [ - + ]: 43 : if (oldformat)
4161 tgl@sss.pgh.pa.us 1554 [ # # ]:UBC 0 : ereport(ERROR,
1555 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1556 : : errmsg("affix file contains both old-style and new-style commands")));
4161 tgl@sss.pgh.pa.us 1557 :CBC 43 : tsearch_readline_end(&trst);
1558 : :
1559 : 43 : NIImportOOAffixes(Conf, filename);
1560 : : }
1561 : :
1562 : : /*
1563 : : * Merges two affix flag sets and stores a new affix flag set into
1564 : : * Conf->AffixData.
1565 : : *
1566 : : * Returns index of a new affix flag set.
1567 : : */
1568 : : static int
6695 bruce@momjian.us 1569 : 32 : MergeAffix(IspellDict *Conf, int a1, int a2)
1570 : : {
1571 : : const char **ptr;
1572 : :
2325 tgl@sss.pgh.pa.us 1573 [ + - - + ]: 32 : Assert(a1 < Conf->nAffixData && a2 < Conf->nAffixData);
1574 : :
1575 : : /* Do not merge affix flags if one of affix flags is empty */
3656 teodor@sigaev.ru 1576 [ - + ]: 32 : if (*Conf->AffixData[a1] == '\0')
3656 teodor@sigaev.ru 1577 :UBC 0 : return a2;
3656 teodor@sigaev.ru 1578 [ - + ]:CBC 32 : else if (*Conf->AffixData[a2] == '\0')
3656 teodor@sigaev.ru 1579 :UBC 0 : return a1;
1580 : :
1581 : : /* Double the size of AffixData if there's not enough space */
1718 drowley@postgresql.o 1582 [ + - ]:CBC 32 : if (Conf->nAffixData + 1 >= Conf->lenAffixData)
1583 : : {
6781 tgl@sss.pgh.pa.us 1584 : 32 : Conf->lenAffixData *= 2;
586 heikki.linnakangas@i 1585 : 32 : Conf->AffixData = (const char **) repalloc(Conf->AffixData,
1586 : 32 : sizeof(char *) * Conf->lenAffixData);
1587 : : }
1588 : :
6781 tgl@sss.pgh.pa.us 1589 : 32 : ptr = Conf->AffixData + Conf->nAffixData;
3656 teodor@sigaev.ru 1590 [ + + ]: 32 : if (Conf->flagMode == FM_NUM)
1591 : : {
586 heikki.linnakangas@i 1592 : 14 : char *p = cpalloc(strlen(Conf->AffixData[a1]) +
1593 : : strlen(Conf->AffixData[a2]) +
1594 : : 1 /* comma */ + 1 /* \0 */ );
1595 : :
1596 : 14 : sprintf(p, "%s,%s", Conf->AffixData[a1], Conf->AffixData[a2]);
1597 : 14 : *ptr = p;
1598 : : }
1599 : : else
1600 : : {
1601 : 18 : char *p = cpalloc(strlen(Conf->AffixData[a1]) +
1602 : : strlen(Conf->AffixData[a2]) +
1603 : : 1 /* \0 */ );
1604 : :
1605 : 18 : sprintf(p, "%s%s", Conf->AffixData[a1], Conf->AffixData[a2]);
1606 : 18 : *ptr = p;
1607 : : }
6781 tgl@sss.pgh.pa.us 1608 : 32 : ptr++;
1609 : 32 : *ptr = NULL;
1610 : 32 : Conf->nAffixData++;
1611 : :
1612 : 32 : return Conf->nAffixData - 1;
1613 : : }
1614 : :
1615 : : /*
1616 : : * Returns a set of affix parameters which correspondence to the set of affix
1617 : : * flags with the given index.
1618 : : */
1619 : : static uint32
6695 bruce@momjian.us 1620 : 543 : makeCompoundFlags(IspellDict *Conf, int affix)
1621 : : {
2325 tgl@sss.pgh.pa.us 1622 [ - + ]: 543 : Assert(affix < Conf->nAffixData);
1623 : :
1624 : 543 : return (getCompoundAffixFlagValue(Conf, Conf->AffixData[affix]) &
1625 : : FF_COMPOUNDFLAGMASK);
1626 : : }
1627 : :
1628 : : /*
1629 : : * Makes a prefix tree for the given level.
1630 : : *
1631 : : * Conf: current dictionary.
1632 : : * low: lower index of the Conf->Spell array.
1633 : : * high: upper index of the Conf->Spell array.
1634 : : * level: current prefix tree level.
1635 : : */
1636 : : static SPNode *
6695 bruce@momjian.us 1637 : 2172 : mkSPNode(IspellDict *Conf, int low, int high, int level)
1638 : : {
1639 : : int i;
6781 tgl@sss.pgh.pa.us 1640 : 2172 : int nchar = 0;
1641 : 2172 : char lastchar = '\0';
1642 : : SPNode *rs;
1643 : : SPNodeData *data;
1644 : 2172 : int lownew = low;
1645 : :
1646 [ + + ]: 7138 : for (i = low; i < high; i++)
1647 [ + + + + ]: 4966 : if (Conf->Spell[i]->p.d.len > level && lastchar != Conf->Spell[i]->word[level])
1648 : : {
1649 : 2129 : nchar++;
1650 : 2129 : lastchar = Conf->Spell[i]->word[level];
1651 : : }
1652 : :
1653 [ + + ]: 2172 : if (!nchar)
1654 : 311 : return NULL;
1655 : :
5639 1656 : 1861 : rs = (SPNode *) cpalloc0(SPNHDRSZ + nchar * sizeof(SPNodeData));
6781 1657 : 1861 : rs->length = nchar;
1658 : 1861 : data = rs->data;
1659 : :
1660 : 1861 : lastchar = '\0';
1661 [ + + ]: 6295 : for (i = low; i < high; i++)
1662 [ + + ]: 4443 : if (Conf->Spell[i]->p.d.len > level)
1663 : : {
1664 [ + + ]: 3192 : if (lastchar != Conf->Spell[i]->word[level])
1665 : : {
1666 [ + + ]: 2123 : if (lastchar)
1667 : : {
1668 : : /* Next level of the prefix tree */
1669 : 262 : data->node = mkSPNode(Conf, lownew, i, level + 1);
1670 : 256 : lownew = i;
1671 : 256 : data++;
1672 : : }
1673 : 2117 : lastchar = Conf->Spell[i]->word[level];
1674 : : }
1675 : 3186 : data->val = ((uint8 *) (Conf->Spell[i]->word))[level];
1676 [ + + ]: 3186 : if (Conf->Spell[i]->p.d.len == level + 1)
1677 : : {
1678 : 511 : bool clearCompoundOnly = false;
1679 : :
1680 [ + + + - ]: 511 : if (data->isword && data->affix != Conf->Spell[i]->p.d.affix)
1681 : : {
1682 : : /*
1683 : : * MergeAffix called a few times. If one of word is
1684 : : * allowed to be in compound word and another isn't, then
1685 : : * clear FF_COMPOUNDONLY flag.
1686 : : */
1687 : :
1688 : 64 : clearCompoundOnly = (FF_COMPOUNDONLY & data->compoundflag
3189 1689 : 32 : & makeCompoundFlags(Conf, Conf->Spell[i]->p.d.affix))
1690 : : ? false : true;
6781 1691 : 32 : data->affix = MergeAffix(Conf, data->affix, Conf->Spell[i]->p.d.affix);
1692 : : }
1693 : : else
1694 : 479 : data->affix = Conf->Spell[i]->p.d.affix;
1695 : 511 : data->isword = 1;
1696 : :
1697 : 511 : data->compoundflag = makeCompoundFlags(Conf, data->affix);
1698 : :
1699 [ - + ]: 508 : if ((data->compoundflag & FF_COMPOUNDONLY) &&
6781 tgl@sss.pgh.pa.us 1700 [ # # ]:UBC 0 : (data->compoundflag & FF_COMPOUNDFLAG) == 0)
1701 : 0 : data->compoundflag |= FF_COMPOUNDFLAG;
1702 : :
6781 tgl@sss.pgh.pa.us 1703 [ + + ]:CBC 508 : if (clearCompoundOnly)
1704 : 32 : data->compoundflag &= ~FF_COMPOUNDONLY;
1705 : : }
1706 : : }
1707 : :
1708 : : /* Next level of the prefix tree */
1709 : 1852 : data->node = mkSPNode(Conf, lownew, high, level + 1);
1710 : :
1711 : 1849 : return rs;
1712 : : }
1713 : :
1714 : : /*
1715 : : * Builds the Conf->Dictionary tree and AffixData from the imported dictionary
1716 : : * and affixes.
1717 : : */
1718 : : void
6695 bruce@momjian.us 1719 : 64 : NISortDictionary(IspellDict *Conf)
1720 : : {
1721 : : int i;
1722 : : int naffix;
1723 : : int curaffix;
1724 : :
1725 : : /* compress affixes */
1726 : :
1727 : : /*
1728 : : * If we use flag aliases then we need to use Conf->AffixData filled in
1729 : : * the NIImportOOAffixes().
1730 : : */
3663 teodor@sigaev.ru 1731 [ + + ]: 64 : if (Conf->useFlagAliases)
1732 : : {
1733 [ + + ]: 126 : for (i = 0; i < Conf->nspell; i++)
1734 : : {
1735 : : char *end;
1736 : :
3650 1737 [ + + ]: 116 : if (*Conf->Spell[i]->p.flag != '\0')
1738 : : {
372 tgl@sss.pgh.pa.us 1739 : 106 : errno = 0;
3650 teodor@sigaev.ru 1740 : 106 : curaffix = strtol(Conf->Spell[i]->p.flag, &end, 10);
1741 [ + + - + ]: 106 : if (Conf->Spell[i]->p.flag == end || errno == ERANGE)
1742 [ + - ]: 3 : ereport(ERROR,
1743 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1744 : : errmsg("invalid affix alias \"%s\"",
1745 : : Conf->Spell[i]->p.flag)));
2325 tgl@sss.pgh.pa.us 1746 [ + - + + ]: 103 : if (curaffix < 0 || curaffix >= Conf->nAffixData)
1747 [ + - ]: 3 : ereport(ERROR,
1748 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1749 : : errmsg("invalid affix alias \"%s\"",
1750 : : Conf->Spell[i]->p.flag)));
453 peter@eisentraut.org 1751 [ - + - - : 100 : if (*end != '\0' && !isdigit((unsigned char) *end) && !isspace((unsigned char) *end))
- - ]
2325 tgl@sss.pgh.pa.us 1752 [ # # ]:UBC 0 : ereport(ERROR,
1753 : : (errcode(ERRCODE_CONFIG_FILE_ERROR),
1754 : : errmsg("invalid affix alias \"%s\"",
1755 : : Conf->Spell[i]->p.flag)));
1756 : : }
1757 : : else
1758 : : {
1759 : : /*
1760 : : * If Conf->Spell[i]->p.flag is empty, then get empty value of
1761 : : * Conf->AffixData (0 index).
1762 : : */
3650 teodor@sigaev.ru 1763 :CBC 10 : curaffix = 0;
1764 : : }
1765 : :
1766 : 110 : Conf->Spell[i]->p.d.affix = curaffix;
3663 1767 : 110 : Conf->Spell[i]->p.d.len = strlen(Conf->Spell[i]->word);
1768 : : }
1769 : : }
1770 : : /* Otherwise fill Conf->AffixData here */
1771 : : else
1772 : : {
1773 : : /* Count the number of different flags used in the dictionary */
1132 peter@eisentraut.org 1774 : 48 : qsort(Conf->Spell, Conf->nspell, sizeof(SPELL *),
1775 : : cmpspellaffix);
1776 : :
3663 teodor@sigaev.ru 1777 : 48 : naffix = 0;
1778 [ + + ]: 470 : for (i = 0; i < Conf->nspell; i++)
1779 : : {
2529 michael@paquier.xyz 1780 [ + + ]: 422 : if (i == 0 ||
1781 [ + + ]: 374 : strcmp(Conf->Spell[i]->p.flag, Conf->Spell[i - 1]->p.flag) != 0)
3663 teodor@sigaev.ru 1782 : 374 : naffix++;
1783 : : }
1784 : :
1785 : : /*
1786 : : * Fill in Conf->AffixData with the affixes that were used in the
1787 : : * dictionary. Replace textual flag-field of Conf->Spell entries with
1788 : : * indexes into Conf->AffixData array.
1789 : : */
95 michael@paquier.xyz 1790 :GNC 48 : Conf->AffixData = palloc0_array(const char *, naffix);
1791 : :
3663 teodor@sigaev.ru 1792 :CBC 48 : curaffix = -1;
1793 [ + + ]: 470 : for (i = 0; i < Conf->nspell; i++)
1794 : : {
2529 michael@paquier.xyz 1795 [ + + ]: 422 : if (i == 0 ||
1796 [ + + ]: 374 : strcmp(Conf->Spell[i]->p.flag, Conf->AffixData[curaffix]) != 0)
1797 : : {
3663 teodor@sigaev.ru 1798 : 374 : curaffix++;
1799 [ - + ]: 374 : Assert(curaffix < naffix);
1800 : 374 : Conf->AffixData[curaffix] = cpstrdup(Conf,
3566 rhaas@postgresql.org 1801 : 374 : Conf->Spell[i]->p.flag);
1802 : : }
1803 : :
3663 teodor@sigaev.ru 1804 : 422 : Conf->Spell[i]->p.d.affix = curaffix;
1805 : 422 : Conf->Spell[i]->p.d.len = strlen(Conf->Spell[i]->word);
1806 : : }
1807 : :
1808 : 48 : Conf->lenAffixData = Conf->nAffixData = naffix;
1809 : : }
1810 : :
1811 : : /* Start build a prefix tree */
1132 peter@eisentraut.org 1812 : 58 : qsort(Conf->Spell, Conf->nspell, sizeof(SPELL *), cmpspell);
6781 tgl@sss.pgh.pa.us 1813 : 58 : Conf->Dictionary = mkSPNode(Conf, 0, Conf->nspell, 0);
1814 : 55 : }
1815 : :
1816 : : /*
1817 : : * Makes a prefix tree for the given level using the repl string of an affix
1818 : : * rule. Affixes with empty replace string do not include in the prefix tree.
1819 : : * This affixes are included by mkVoidAffix().
1820 : : *
1821 : : * Conf: current dictionary.
1822 : : * low: lower index of the Conf->Affix array.
1823 : : * high: upper index of the Conf->Affix array.
1824 : : * level: current prefix tree level.
1825 : : * type: FF_SUFFIX or FF_PREFIX.
1826 : : */
1827 : : static AffixNode *
6695 bruce@momjian.us 1828 : 928 : mkANode(IspellDict *Conf, int low, int high, int level, int type)
1829 : : {
1830 : : int i;
6781 tgl@sss.pgh.pa.us 1831 : 928 : int nchar = 0;
1832 : 928 : uint8 lastchar = '\0';
1833 : : AffixNode *rs;
1834 : : AffixNodeData *data;
1835 : 928 : int lownew = low;
1836 : : int naff;
1837 : : AFFIX **aff;
1838 : :
1839 [ + + ]: 2497 : for (i = low; i < high; i++)
1840 [ + + + + : 1569 : if (Conf->Affix[i].replen > level && lastchar != GETCHAR(Conf->Affix + i, level, type))
+ + ]
1841 : : {
1842 : 818 : nchar++;
1843 [ + + ]: 818 : lastchar = GETCHAR(Conf->Affix + i, level, type);
1844 : : }
1845 : :
1846 [ + + ]: 928 : if (!nchar)
1847 : 354 : return NULL;
1848 : :
1849 : 574 : aff = (AFFIX **) tmpalloc(sizeof(AFFIX *) * (high - low + 1));
1850 : 574 : naff = 0;
1851 : :
5639 1852 : 574 : rs = (AffixNode *) cpalloc0(ANHRDSZ + nchar * sizeof(AffixNodeData));
6781 1853 : 574 : rs->length = nchar;
1854 : 574 : data = rs->data;
1855 : :
1856 : 574 : lastchar = '\0';
1857 [ + + ]: 1700 : for (i = low; i < high; i++)
1858 [ + + ]: 1126 : if (Conf->Affix[i].replen > level)
1859 : : {
1860 [ + + + + ]: 948 : if (lastchar != GETCHAR(Conf->Affix + i, level, type))
1861 : : {
1862 [ + + ]: 818 : if (lastchar)
1863 : : {
1864 : : /* Next level of the prefix tree */
1865 : 244 : data->node = mkANode(Conf, lownew, i, level + 1, type);
1866 [ + + ]: 244 : if (naff)
1867 : : {
1868 : 55 : data->naff = naff;
5639 1869 : 55 : data->aff = (AFFIX **) cpalloc(sizeof(AFFIX *) * naff);
6781 1870 : 55 : memcpy(data->aff, aff, sizeof(AFFIX *) * naff);
1871 : 55 : naff = 0;
1872 : : }
1873 : 244 : data++;
1874 : 244 : lownew = i;
1875 : : }
1876 [ + + ]: 818 : lastchar = GETCHAR(Conf->Affix + i, level, type);
1877 : : }
1878 [ + + ]: 948 : data->val = GETCHAR(Conf->Affix + i, level, type);
1879 [ + + ]: 948 : if (Conf->Affix[i].replen == level + 1)
1880 : : { /* affix stopped */
1881 : 429 : aff[naff++] = Conf->Affix + i;
1882 : : }
1883 : : }
1884 : :
1885 : : /* Next level of the prefix tree */
1886 : 574 : data->node = mkANode(Conf, lownew, high, level + 1, type);
1887 [ + + ]: 574 : if (naff)
1888 : : {
1889 : 354 : data->naff = naff;
5639 1890 : 354 : data->aff = (AFFIX **) cpalloc(sizeof(AFFIX *) * naff);
6781 1891 : 354 : memcpy(data->aff, aff, sizeof(AFFIX *) * naff);
1892 : 354 : naff = 0;
1893 : : }
1894 : :
1895 : 574 : pfree(aff);
1896 : :
1897 : 574 : return rs;
1898 : : }
1899 : :
1900 : : /*
1901 : : * Makes the root void node in the prefix tree. The root void node is created
1902 : : * for affixes which have empty replace string ("repl" field).
1903 : : */
1904 : : static void
6695 bruce@momjian.us 1905 : 110 : mkVoidAffix(IspellDict *Conf, bool issuffix, int startsuffix)
1906 : : {
1907 : : int i,
6781 tgl@sss.pgh.pa.us 1908 : 110 : cnt = 0;
1909 [ + + ]: 110 : int start = (issuffix) ? startsuffix : 0;
1910 [ + + ]: 110 : int end = (issuffix) ? Conf->naffixes : startsuffix;
1911 : 110 : AffixNode *Affix = (AffixNode *) palloc0(ANHRDSZ + sizeof(AffixNodeData));
1912 : :
1913 : 110 : Affix->length = 1;
1914 : 110 : Affix->isvoid = 1;
1915 : :
1916 [ + + ]: 110 : if (issuffix)
1917 : : {
1918 : 55 : Affix->data->node = Conf->Suffix;
1919 : 55 : Conf->Suffix = Affix;
1920 : : }
1921 : : else
1922 : : {
1923 : 55 : Affix->data->node = Conf->Prefix;
1924 : 55 : Conf->Prefix = Affix;
1925 : : }
1926 : :
1927 : : /* Count affixes with empty replace string */
1928 [ + + ]: 553 : for (i = start; i < end; i++)
1929 [ + + ]: 443 : if (Conf->Affix[i].replen == 0)
1930 : 14 : cnt++;
1931 : :
1932 : : /* There is not affixes with empty replace string */
1933 [ + + ]: 110 : if (cnt == 0)
1934 : 96 : return;
1935 : :
5639 1936 : 14 : Affix->data->aff = (AFFIX **) cpalloc(sizeof(AFFIX *) * cnt);
6781 1937 : 14 : Affix->data->naff = (uint32) cnt;
1938 : :
1939 : 14 : cnt = 0;
1940 [ + + ]: 112 : for (i = start; i < end; i++)
1941 [ + + ]: 98 : if (Conf->Affix[i].replen == 0)
1942 : : {
1943 : 14 : Affix->data->aff[cnt] = Conf->Affix + i;
1944 : 14 : cnt++;
1945 : : }
1946 : : }
1947 : :
1948 : : /*
1949 : : * Checks if the affixflag is used by dictionary. Conf->AffixData does not
1950 : : * contain affixflag if this flag is not used actually by the .dict file.
1951 : : *
1952 : : * Conf: current dictionary.
1953 : : * affixflag: affix flag.
1954 : : *
1955 : : * Returns true if the Conf->AffixData array contains affixflag, otherwise
1956 : : * returns false.
1957 : : */
1958 : : static bool
586 heikki.linnakangas@i 1959 : 75 : isAffixInUse(IspellDict *Conf, const char *affixflag)
1960 : : {
1961 : : int i;
1962 : :
6781 tgl@sss.pgh.pa.us 1963 [ + + ]: 551 : for (i = 0; i < Conf->nAffixData; i++)
3663 teodor@sigaev.ru 1964 [ + + ]: 539 : if (IsAffixFlagInUse(Conf, i, affixflag))
6781 tgl@sss.pgh.pa.us 1965 : 63 : return true;
1966 : :
1967 : 12 : return false;
1968 : : }
1969 : :
1970 : : /*
1971 : : * Builds Conf->Prefix and Conf->Suffix trees from the imported affixes.
1972 : : */
1973 : : void
6695 bruce@momjian.us 1974 : 55 : NISortAffixes(IspellDict *Conf)
1975 : : {
1976 : : AFFIX *Affix;
1977 : : size_t i;
1978 : : CMPDAffix *ptr;
6777 tgl@sss.pgh.pa.us 1979 : 55 : int firstsuffix = Conf->naffixes;
1980 : :
6781 1981 [ - + ]: 55 : if (Conf->naffixes == 0)
6781 tgl@sss.pgh.pa.us 1982 :UBC 0 : return;
1983 : :
1984 : : /* Store compound affixes in the Conf->CompoundAffix array */
6781 tgl@sss.pgh.pa.us 1985 [ + - ]:CBC 55 : if (Conf->naffixes > 1)
1132 peter@eisentraut.org 1986 : 55 : qsort(Conf->Affix, Conf->naffixes, sizeof(AFFIX), cmpaffix);
95 michael@paquier.xyz 1987 :GNC 55 : Conf->CompoundAffix = ptr = palloc_array(CMPDAffix, Conf->naffixes);
6781 tgl@sss.pgh.pa.us 1988 :CBC 55 : ptr->affix = NULL;
1989 : :
1990 [ + + ]: 498 : for (i = 0; i < Conf->naffixes; i++)
1991 : : {
1992 : 443 : Affix = &(((AFFIX *) Conf->Affix)[i]);
6777 1993 [ + + + + ]: 443 : if (Affix->type == FF_SUFFIX && i < firstsuffix)
6781 1994 : 55 : firstsuffix = i;
1995 : :
1996 [ + + + - : 518 : if ((Affix->flagflags & FF_COMPOUNDFLAG) && Affix->replen > 0 &&
+ + ]
3663 teodor@sigaev.ru 1997 : 75 : isAffixInUse(Conf, Affix->flag))
1998 : : {
2894 tgl@sss.pgh.pa.us 1999 : 63 : bool issuffix = (Affix->type == FF_SUFFIX);
2000 : :
6781 2001 [ + + ]: 63 : if (ptr == Conf->CompoundAffix ||
2894 2002 [ + - + + ]: 40 : issuffix != (ptr - 1)->issuffix ||
6781 2003 : 20 : strbncmp((const unsigned char *) (ptr - 1)->affix,
2004 : 20 : (const unsigned char *) Affix->repl,
2005 : 20 : (ptr - 1)->len))
2006 : : {
2007 : : /* leave only unique and minimal suffixes */
2008 : 53 : ptr->affix = Affix->repl;
2009 : 53 : ptr->len = Affix->replen;
2894 2010 : 53 : ptr->issuffix = issuffix;
6781 2011 : 53 : ptr++;
2012 : : }
2013 : : }
2014 : : }
2015 : 55 : ptr->affix = NULL;
2016 : 55 : Conf->CompoundAffix = (CMPDAffix *) repalloc(Conf->CompoundAffix, sizeof(CMPDAffix) * (ptr - Conf->CompoundAffix + 1));
2017 : :
2018 : : /* Start build a prefix tree */
2019 : 55 : Conf->Prefix = mkANode(Conf, 0, firstsuffix, 0, FF_PREFIX);
2020 : 55 : Conf->Suffix = mkANode(Conf, firstsuffix, Conf->naffixes, 0, FF_SUFFIX);
6777 2021 : 55 : mkVoidAffix(Conf, true, firstsuffix);
2022 : 55 : mkVoidAffix(Conf, false, firstsuffix);
2023 : : }
2024 : :
2025 : : static AffixNodeData *
6695 bruce@momjian.us 2026 : 2310 : FindAffixes(AffixNode *node, const char *word, int wrdlen, int *level, int type)
2027 : : {
2028 : : AffixNodeData *StopLow,
2029 : : *StopHigh,
2030 : : *StopMiddle;
2031 : : uint8 symbol;
2032 : :
6781 tgl@sss.pgh.pa.us 2033 [ + + ]: 2310 : if (node->isvoid)
2034 : : { /* search void affixes */
2035 [ + + ]: 2010 : if (node->data->naff)
2036 : 171 : return node->data;
2037 : 1839 : node = node->data->node;
2038 : : }
2039 : :
2040 [ + - + + ]: 2691 : while (node && *level < wrdlen)
2041 : : {
2042 : 2679 : StopLow = node->data;
2043 : 2679 : StopHigh = node->data + node->length;
2044 [ + + ]: 5913 : while (StopLow < StopHigh)
2045 : : {
2046 : 4437 : StopMiddle = StopLow + ((StopHigh - StopLow) >> 1);
2047 [ + + ]: 4437 : symbol = GETWCHAR(word, wrdlen, *level, type);
2048 : :
2049 [ + + ]: 4437 : if (StopMiddle->val == symbol)
2050 : : {
2051 : 1203 : (*level)++;
2052 [ + + ]: 1203 : if (StopMiddle->naff)
2053 : 651 : return StopMiddle;
2054 : 552 : node = StopMiddle->node;
2055 : 552 : break;
2056 : : }
2057 [ + + ]: 3234 : else if (StopMiddle->val < symbol)
2058 : 804 : StopLow = StopMiddle + 1;
2059 : : else
2060 : 2430 : StopHigh = StopMiddle;
2061 : : }
2062 [ + + ]: 2028 : if (StopLow >= StopHigh)
2063 : 1476 : break;
2064 : : }
2065 : 1488 : return NULL;
2066 : : }
2067 : :
2068 : : static char *
6695 bruce@momjian.us 2069 : 918 : CheckAffix(const char *word, size_t len, AFFIX *Affix, int flagflags, char *newword, int *baselen)
2070 : : {
2071 : : /*
2072 : : * Check compound allow flags
2073 : : */
2074 : :
6781 tgl@sss.pgh.pa.us 2075 [ + + ]: 918 : if (flagflags == 0)
2076 : : {
2077 [ + + ]: 633 : if (Affix->flagflags & FF_COMPOUNDONLY)
2078 : 66 : return NULL;
2079 : : }
2080 [ - + ]: 285 : else if (flagflags & FF_COMPOUNDBEGIN)
2081 : : {
6781 tgl@sss.pgh.pa.us 2082 [ # # ]:UBC 0 : if (Affix->flagflags & FF_COMPOUNDFORBIDFLAG)
2083 : 0 : return NULL;
2084 [ # # ]: 0 : if ((Affix->flagflags & FF_COMPOUNDBEGIN) == 0)
2085 [ # # ]: 0 : if (Affix->type == FF_SUFFIX)
2086 : 0 : return NULL;
2087 : : }
6781 tgl@sss.pgh.pa.us 2088 [ + + ]:CBC 285 : else if (flagflags & FF_COMPOUNDMIDDLE)
2089 : : {
2090 [ + + ]: 204 : if ((Affix->flagflags & FF_COMPOUNDMIDDLE) == 0 ||
2091 [ - + ]: 114 : (Affix->flagflags & FF_COMPOUNDFORBIDFLAG))
2092 : 90 : return NULL;
2093 : : }
2094 [ + - ]: 81 : else if (flagflags & FF_COMPOUNDLAST)
2095 : : {
2096 [ - + ]: 81 : if (Affix->flagflags & FF_COMPOUNDFORBIDFLAG)
6781 tgl@sss.pgh.pa.us 2097 :UBC 0 : return NULL;
6781 tgl@sss.pgh.pa.us 2098 [ + + ]:CBC 81 : if ((Affix->flagflags & FF_COMPOUNDLAST) == 0)
2099 [ - + ]: 75 : if (Affix->type == FF_PREFIX)
6781 tgl@sss.pgh.pa.us 2100 :UBC 0 : return NULL;
2101 : : }
2102 : :
2103 : : /*
2104 : : * make replace pattern of affix
2105 : : */
6781 tgl@sss.pgh.pa.us 2106 [ + + ]:CBC 762 : if (Affix->type == FF_SUFFIX)
2107 : : {
2108 : 522 : strcpy(newword, word);
2109 : 522 : strcpy(newword + len - Affix->replen, Affix->find);
2110 [ + - ]: 522 : if (baselen) /* store length of non-changed part of word */
2111 : 522 : *baselen = len - Affix->replen;
2112 : : }
2113 : : else
2114 : : {
2115 : : /*
2116 : : * if prefix is an all non-changed part's length then all word
2117 : : * contains only prefix and suffix, so out
2118 : : */
2119 [ + + - + ]: 240 : if (baselen && *baselen + strlen(Affix->find) <= Affix->replen)
6781 tgl@sss.pgh.pa.us 2120 :UBC 0 : return NULL;
6781 tgl@sss.pgh.pa.us 2121 :CBC 240 : strcpy(newword, Affix->find);
2122 : 240 : strcat(newword, word + Affix->replen);
2123 : : }
2124 : :
2125 : : /*
2126 : : * check resulting word
2127 : : */
2128 [ + + ]: 762 : if (Affix->issimple)
2129 : 240 : return newword;
2130 [ + + ]: 522 : else if (Affix->isregis)
2131 : : {
2132 [ + + ]: 354 : if (RS_execute(&(Affix->reg.regis), newword))
2133 : 336 : return newword;
2134 : : }
2135 : : else
2136 : : {
2137 : : pg_wchar *data;
2138 : : size_t data_len;
2139 : : int newword_len;
2140 : :
2141 : : /* Convert data string to wide characters */
2142 : 168 : newword_len = strlen(newword);
95 michael@paquier.xyz 2143 :GNC 168 : data = palloc_array(pg_wchar, newword_len + 1);
6781 tgl@sss.pgh.pa.us 2144 :CBC 168 : data_len = pg_mb2wchar_with_len(newword, data, newword_len);
2145 : :
1072 tmunro@postgresql.or 2146 [ + - ]: 168 : if (pg_regexec(Affix->reg.pregex, data, data_len,
2147 : : 0, NULL, 0, NULL, 0) == REG_OKAY)
2148 : : {
6781 tgl@sss.pgh.pa.us 2149 : 168 : pfree(data);
2150 : 168 : return newword;
2151 : : }
6781 tgl@sss.pgh.pa.us 2152 :UBC 0 : pfree(data);
2153 : : }
2154 : :
6781 tgl@sss.pgh.pa.us 2155 :CBC 18 : return NULL;
2156 : : }
2157 : :
2158 : : static int
2159 : 270 : addToResult(char **forms, char **cur, char *word)
2160 : : {
2161 [ - + ]: 270 : if (cur - forms >= MAX_NORM - 1)
6781 tgl@sss.pgh.pa.us 2162 :UBC 0 : return 0;
6781 tgl@sss.pgh.pa.us 2163 [ + + + - ]:CBC 270 : if (forms == cur || strcmp(word, *(cur - 1)) != 0)
2164 : : {
2165 : 270 : *cur = pstrdup(word);
6121 bruce@momjian.us 2166 : 270 : *(cur + 1) = NULL;
6781 tgl@sss.pgh.pa.us 2167 : 270 : return 1;
2168 : : }
2169 : :
6781 tgl@sss.pgh.pa.us 2170 :UBC 0 : return 0;
2171 : : }
2172 : :
2173 : : static char **
586 heikki.linnakangas@i 2174 :CBC 753 : NormalizeSubWord(IspellDict *Conf, const char *word, int flag)
2175 : : {
6781 tgl@sss.pgh.pa.us 2176 : 753 : AffixNodeData *suffix = NULL,
2177 : 753 : *prefix = NULL;
2178 : 753 : int slevel = 0,
2179 : 753 : plevel = 0;
2180 : 753 : int wrdlen = strlen(word),
2181 : : swrdlen;
2182 : : char **forms;
2183 : : char **cur;
2184 : 753 : char newword[2 * MAXNORMLEN] = "";
2185 : 753 : char pnewword[2 * MAXNORMLEN] = "";
2186 : 753 : AffixNode *snode = Conf->Suffix,
2187 : : *pnode;
2188 : : int i,
2189 : : j;
2190 : :
2191 [ - + ]: 753 : if (wrdlen > MAXNORMLEN)
6781 tgl@sss.pgh.pa.us 2192 :UBC 0 : return NULL;
95 michael@paquier.xyz 2193 :GNC 753 : cur = forms = palloc_array(char *, MAX_NORM);
6781 tgl@sss.pgh.pa.us 2194 :CBC 753 : *cur = NULL;
2195 : :
2196 : :
2197 : : /* Check that the word itself is normal form */
3650 teodor@sigaev.ru 2198 [ + + ]: 753 : if (FindWord(Conf, word, VoidString, flag))
2199 : : {
6781 tgl@sss.pgh.pa.us 2200 : 234 : *cur = pstrdup(word);
2201 : 234 : cur++;
2202 : 234 : *cur = NULL;
2203 : : }
2204 : :
2205 : : /* Find all other NORMAL forms of the 'word' (check only prefix) */
2206 : 753 : pnode = Conf->Prefix;
2207 : 753 : plevel = 0;
2208 [ + + ]: 861 : while (pnode)
2209 : : {
6777 2210 : 753 : prefix = FindAffixes(pnode, word, wrdlen, &plevel, FF_PREFIX);
6781 2211 [ + + ]: 753 : if (!prefix)
2212 : 645 : break;
2213 [ + + ]: 216 : for (j = 0; j < prefix->naff; j++)
2214 : : {
2215 [ + + ]: 108 : if (CheckAffix(word, wrdlen, prefix->aff[j], flag, newword, NULL))
2216 : : {
2217 : : /* prefix success */
2218 [ + + ]: 96 : if (FindWord(Conf, newword, prefix->aff[j]->flag, flag))
2219 : 24 : cur += addToResult(forms, cur, newword);
2220 : : }
2221 : : }
2222 : 108 : pnode = prefix->node;
2223 : : }
2224 : :
2225 : : /*
2226 : : * Find all other NORMAL forms of the 'word' (check suffix and then
2227 : : * prefix)
2228 : : */
2229 [ + + ]: 1299 : while (snode)
2230 : : {
2231 : 1053 : int baselen = 0;
2232 : :
2233 : : /* find possible suffix */
6777 2234 : 1053 : suffix = FindAffixes(snode, word, wrdlen, &slevel, FF_SUFFIX);
6781 2235 [ + + ]: 1053 : if (!suffix)
2236 : 507 : break;
2237 : : /* foreach suffix check affix */
2238 [ + + ]: 1188 : for (i = 0; i < suffix->naff; i++)
2239 : : {
2240 [ + + ]: 642 : if (CheckAffix(word, wrdlen, suffix->aff[i], flag, newword, &baselen))
2241 : : {
2242 : : /* suffix success */
2243 [ + + ]: 504 : if (FindWord(Conf, newword, suffix->aff[i]->flag, flag))
2244 : 138 : cur += addToResult(forms, cur, newword);
2245 : :
2246 : : /* now we will look changed word with prefixes */
2247 : 504 : pnode = Conf->Prefix;
2248 : 504 : plevel = 0;
2249 : 504 : swrdlen = strlen(newword);
2250 [ + + ]: 672 : while (pnode)
2251 : : {
6777 2252 : 504 : prefix = FindAffixes(pnode, newword, swrdlen, &plevel, FF_PREFIX);
6781 2253 [ + + ]: 504 : if (!prefix)
2254 : 336 : break;
2255 [ + + ]: 336 : for (j = 0; j < prefix->naff; j++)
2256 : : {
2257 [ + + ]: 168 : if (CheckAffix(newword, swrdlen, prefix->aff[j], flag, pnewword, &baselen))
2258 : : {
2259 : : /* prefix success */
586 heikki.linnakangas@i 2260 : 288 : const char *ff = (prefix->aff[j]->flagflags & suffix->aff[i]->flagflags & FF_CROSSPRODUCT) ?
1031 tgl@sss.pgh.pa.us 2261 [ + + ]: 144 : VoidString : prefix->aff[j]->flag;
2262 : :
6781 2263 [ + + ]: 144 : if (FindWord(Conf, pnewword, ff, flag))
2264 : 108 : cur += addToResult(forms, cur, pnewword);
2265 : : }
2266 : : }
2267 : 168 : pnode = prefix->node;
2268 : : }
2269 : : }
2270 : : }
2271 : :
2272 : 546 : snode = suffix->node;
2273 : : }
2274 : :
2275 [ + + ]: 753 : if (cur == forms)
2276 : : {
2277 : 333 : pfree(forms);
3132 peter_e@gmx.net 2278 : 333 : return NULL;
2279 : : }
2280 : 420 : return forms;
2281 : : }
2282 : :
2283 : : typedef struct SplitVar
2284 : : {
2285 : : int nstem;
2286 : : int lenstem;
2287 : : char **stem;
2288 : : struct SplitVar *next;
2289 : : } SplitVar;
2290 : :
2291 : : static int
586 heikki.linnakangas@i 2292 : 3030 : CheckCompoundAffixes(CMPDAffix **ptr, const char *word, int len, bool CheckInPlace)
2293 : : {
2294 : : bool issuffix;
2295 : :
2296 : : /* in case CompoundAffix is null: */
4161 tgl@sss.pgh.pa.us 2297 [ - + ]: 3030 : if (*ptr == NULL)
4161 tgl@sss.pgh.pa.us 2298 :UBC 0 : return -1;
2299 : :
6781 tgl@sss.pgh.pa.us 2300 [ + + ]:CBC 3030 : if (CheckInPlace)
2301 : : {
2302 [ + + ]: 5784 : while ((*ptr)->affix)
2303 : : {
2304 [ + + + + ]: 3222 : if (len > (*ptr)->len && strncmp((*ptr)->affix, word, (*ptr)->len) == 0)
2305 : : {
2306 : 30 : len = (*ptr)->len;
2307 : 30 : issuffix = (*ptr)->issuffix;
2308 : 30 : (*ptr)++;
2309 [ + - ]: 30 : return (issuffix) ? len : 0;
2310 : : }
2311 : 3192 : (*ptr)++;
2312 : : }
2313 : : }
2314 : : else
2315 : : {
2316 : : const char *affbegin;
2317 : :
2318 [ + + ]: 846 : while ((*ptr)->affix)
2319 : : {
2320 [ + + + + ]: 471 : if (len > (*ptr)->len && (affbegin = strstr(word, (*ptr)->affix)) != NULL)
2321 : : {
2322 : 63 : len = (*ptr)->len + (affbegin - word);
2323 : 63 : issuffix = (*ptr)->issuffix;
2324 : 63 : (*ptr)++;
2325 [ + - ]: 63 : return (issuffix) ? len : 0;
2326 : : }
2327 : 408 : (*ptr)++;
2328 : : }
2329 : : }
2330 : 2937 : return -1;
2331 : : }
2332 : :
2333 : : static SplitVar *
6695 bruce@momjian.us 2334 : 705 : CopyVar(SplitVar *s, int makedup)
2335 : : {
95 michael@paquier.xyz 2336 :GNC 705 : SplitVar *v = palloc_object(SplitVar);
2337 : :
6781 tgl@sss.pgh.pa.us 2338 :CBC 705 : v->next = NULL;
2339 [ + + ]: 705 : if (s)
2340 : : {
2341 : : int i;
2342 : :
6633 teodor@sigaev.ru 2343 : 330 : v->lenstem = s->lenstem;
95 michael@paquier.xyz 2344 :GNC 330 : v->stem = palloc_array(char *, v->lenstem);
6781 tgl@sss.pgh.pa.us 2345 :CBC 330 : v->nstem = s->nstem;
2346 [ + + ]: 501 : for (i = 0; i < s->nstem; i++)
2347 [ + + ]: 171 : v->stem[i] = (makedup) ? pstrdup(s->stem[i]) : s->stem[i];
2348 : : }
2349 : : else
2350 : : {
6633 teodor@sigaev.ru 2351 : 375 : v->lenstem = 16;
95 michael@paquier.xyz 2352 :GNC 375 : v->stem = palloc_array(char *, v->lenstem);
6781 tgl@sss.pgh.pa.us 2353 :CBC 375 : v->nstem = 0;
2354 : : }
2355 : 705 : return v;
2356 : : }
2357 : :
2358 : : static void
6633 teodor@sigaev.ru 2359 : 945 : AddStem(SplitVar *v, char *word)
2360 : : {
6121 bruce@momjian.us 2361 [ - + ]: 945 : if (v->nstem >= v->lenstem)
2362 : : {
6633 teodor@sigaev.ru 2363 :UBC 0 : v->lenstem *= 2;
2364 : 0 : v->stem = (char **) repalloc(v->stem, sizeof(char *) * v->lenstem);
2365 : : }
2366 : :
6633 teodor@sigaev.ru 2367 :CBC 945 : v->stem[v->nstem] = word;
2368 : 945 : v->nstem++;
2369 : 945 : }
2370 : :
2371 : : static SplitVar *
586 heikki.linnakangas@i 2372 : 660 : SplitToVariants(IspellDict *Conf, SPNode *snode, SplitVar *orig, const char *word, int wordlen, int startpos, int minpos)
2373 : : {
6781 tgl@sss.pgh.pa.us 2374 : 660 : SplitVar *var = NULL;
2375 : : SPNodeData *StopLow,
2376 : : *StopHigh,
2377 : 660 : *StopMiddle = NULL;
2378 [ + + ]: 660 : SPNode *node = (snode) ? snode : Conf->Dictionary;
2379 [ + + ]: 660 : int level = (snode) ? minpos : startpos; /* recursive
2380 : : * minpos==level */
2381 : : int lenaff;
2382 : : CMPDAffix *caff;
2383 : : char *notprobed;
2384 : 660 : int compoundflag = 0;
2385 : :
2386 : : /* since this function recurses, it could be driven to stack overflow */
1299 2387 : 660 : check_stack_depth();
2388 : :
6781 2389 : 660 : notprobed = (char *) palloc(wordlen);
2390 : 660 : memset(notprobed, 1, wordlen);
2391 : 660 : var = CopyVar(orig, 1);
2392 : :
2393 [ + + ]: 3726 : while (level < wordlen)
2394 : : {
2395 : : /* find word with epenthetic or/and compound affix */
2396 : 3597 : caff = Conf->CompoundAffix;
2397 [ + + + + ]: 3690 : while (level > startpos && (lenaff = CheckCompoundAffixes(&caff, word + level, wordlen - level, (node) ? true : false)) >= 0)
2398 : : {
2399 : : /*
2400 : : * there is one of compound affixes, so check word for existings
2401 : : */
2402 : : char buf[MAXNORMLEN];
2403 : : char **subres;
2404 : :
2405 : 93 : lenaff = level - startpos + lenaff;
2406 : :
2407 [ - + ]: 93 : if (!notprobed[startpos + lenaff - 1])
6781 tgl@sss.pgh.pa.us 2408 :UBC 0 : continue;
2409 : :
6781 tgl@sss.pgh.pa.us 2410 [ - + ]:CBC 93 : if (level + lenaff - 1 <= minpos)
6781 tgl@sss.pgh.pa.us 2411 :UBC 0 : continue;
2412 : :
6121 bruce@momjian.us 2413 [ - + ]:CBC 93 : if (lenaff >= MAXNORMLEN)
6121 bruce@momjian.us 2414 :UBC 0 : continue; /* skip too big value */
6781 tgl@sss.pgh.pa.us 2415 [ + - ]:CBC 93 : if (lenaff > 0)
2416 : 93 : memcpy(buf, word + startpos, lenaff);
2417 : 93 : buf[lenaff] = '\0';
2418 : :
6633 teodor@sigaev.ru 2419 [ - + ]: 93 : if (level == 0)
6781 tgl@sss.pgh.pa.us 2420 :UBC 0 : compoundflag = FF_COMPOUNDBEGIN;
6781 tgl@sss.pgh.pa.us 2421 [ - + ]:CBC 93 : else if (level == wordlen - 1)
6781 tgl@sss.pgh.pa.us 2422 :UBC 0 : compoundflag = FF_COMPOUNDLAST;
2423 : : else
6781 tgl@sss.pgh.pa.us 2424 :CBC 93 : compoundflag = FF_COMPOUNDMIDDLE;
2425 : 93 : subres = NormalizeSubWord(Conf, buf, compoundflag);
2426 [ + + ]: 93 : if (subres)
2427 : : {
2428 : : /* Yes, it was a word from dictionary */
2429 : 45 : SplitVar *new = CopyVar(var, 0);
2430 : 45 : SplitVar *ptr = var;
2431 : 45 : char **sptr = subres;
2432 : :
2433 : 45 : notprobed[startpos + lenaff - 1] = 0;
2434 : :
2435 [ + + ]: 90 : while (*sptr)
2436 : : {
6121 bruce@momjian.us 2437 : 45 : AddStem(new, *sptr);
6781 tgl@sss.pgh.pa.us 2438 : 45 : sptr++;
2439 : : }
2440 : 45 : pfree(subres);
2441 : :
2442 [ - + ]: 45 : while (ptr->next)
6781 tgl@sss.pgh.pa.us 2443 :UBC 0 : ptr = ptr->next;
6781 tgl@sss.pgh.pa.us 2444 :CBC 45 : ptr->next = SplitToVariants(Conf, NULL, new, word, wordlen, startpos + lenaff, startpos + lenaff);
2445 : :
2446 : 45 : pfree(new->stem);
2447 : 45 : pfree(new);
2448 : : }
2449 : : }
2450 : :
2451 [ + + ]: 3597 : if (!node)
2452 : 375 : break;
2453 : :
2454 : 3222 : StopLow = node->data;
2455 : 3222 : StopHigh = node->data + node->length;
2456 [ + + ]: 4347 : while (StopLow < StopHigh)
2457 : : {
2458 : 4032 : StopMiddle = StopLow + ((StopHigh - StopLow) >> 1);
48 peter@eisentraut.org 2459 [ + + ]:GNC 4032 : if (StopMiddle->val == ((const uint8 *) (word))[level])
6781 tgl@sss.pgh.pa.us 2460 :CBC 2907 : break;
48 peter@eisentraut.org 2461 [ + + ]:GNC 1125 : else if (StopMiddle->val < ((const uint8 *) (word))[level])
6781 tgl@sss.pgh.pa.us 2462 :CBC 489 : StopLow = StopMiddle + 1;
2463 : : else
2464 : 636 : StopHigh = StopMiddle;
2465 : : }
2466 : :
2467 [ + + ]: 3222 : if (StopLow < StopHigh)
2468 : : {
3663 teodor@sigaev.ru 2469 [ + + ]: 2907 : if (startpos == 0)
6781 tgl@sss.pgh.pa.us 2470 : 1635 : compoundflag = FF_COMPOUNDBEGIN;
2471 [ + + ]: 1272 : else if (level == wordlen - 1)
2472 : 144 : compoundflag = FF_COMPOUNDLAST;
2473 : : else
2474 : 1128 : compoundflag = FF_COMPOUNDMIDDLE;
2475 : :
2476 : : /* find infinitive */
2477 [ + + ]: 2907 : if (StopMiddle->isword &&
2478 [ + + ]: 768 : (StopMiddle->compoundflag & compoundflag) &&
2479 [ + - ]: 636 : notprobed[level])
2480 : : {
2481 : : /* ok, we found full compoundallowed word */
2482 [ + + ]: 636 : if (level > minpos)
2483 : : {
2484 : : /* and its length more than minimal */
2485 [ + + ]: 396 : if (wordlen == level + 1)
2486 : : {
2487 : : /* well, it was last word */
6121 bruce@momjian.us 2488 : 156 : AddStem(var, pnstrdup(word + startpos, wordlen - startpos));
6781 tgl@sss.pgh.pa.us 2489 : 156 : pfree(notprobed);
2490 : 156 : return var;
2491 : : }
2492 : : else
2493 : 240 : {
2494 : : /* then we will search more big word at the same point */
2495 : 240 : SplitVar *ptr = var;
2496 : :
2497 [ + + ]: 372 : while (ptr->next)
2498 : 132 : ptr = ptr->next;
2499 : 240 : ptr->next = SplitToVariants(Conf, node, var, word, wordlen, startpos, level);
2500 : : /* we can find next word */
2501 : 240 : level++;
6121 bruce@momjian.us 2502 : 240 : AddStem(var, pnstrdup(word + startpos, level - startpos));
6781 tgl@sss.pgh.pa.us 2503 : 240 : node = Conf->Dictionary;
2504 : 240 : startpos = level;
2505 : 240 : continue;
2506 : : }
2507 : : }
2508 : : }
2509 : 2511 : node = StopMiddle->node;
2510 : : }
2511 : : else
2512 : 315 : node = NULL;
2513 : 2826 : level++;
2514 : : }
2515 : :
6121 bruce@momjian.us 2516 : 504 : AddStem(var, pnstrdup(word + startpos, wordlen - startpos));
6781 tgl@sss.pgh.pa.us 2517 : 504 : pfree(notprobed);
2518 : 504 : return var;
2519 : : }
2520 : :
2521 : : static void
6121 bruce@momjian.us 2522 : 657 : addNorm(TSLexeme **lres, TSLexeme **lcur, char *word, int flags, uint16 NVariant)
2523 : : {
2524 [ + + ]: 657 : if (*lres == NULL)
95 michael@paquier.xyz 2525 :GNC 303 : *lcur = *lres = palloc_array(TSLexeme, MAX_NORM);
2526 : :
6121 bruce@momjian.us 2527 [ + - ]:CBC 657 : if (*lcur - *lres < MAX_NORM - 1)
2528 : : {
6633 teodor@sigaev.ru 2529 : 657 : (*lcur)->lexeme = word;
2530 : 657 : (*lcur)->flags = flags;
2531 : 657 : (*lcur)->nvariant = NVariant;
2532 : 657 : (*lcur)++;
2533 : 657 : (*lcur)->lexeme = NULL;
2534 : : }
2535 : 657 : }
2536 : :
2537 : : TSLexeme *
586 heikki.linnakangas@i 2538 : 375 : NINormalizeWord(IspellDict *Conf, const char *word)
2539 : : {
2540 : : char **res;
6781 tgl@sss.pgh.pa.us 2541 : 375 : TSLexeme *lcur = NULL,
2542 : 375 : *lres = NULL;
2543 : 375 : uint16 NVariant = 1;
2544 : :
2545 : 375 : res = NormalizeSubWord(Conf, word, 0);
2546 : :
2547 [ + + ]: 375 : if (res)
2548 : : {
2549 : 243 : char **ptr = res;
2550 : :
6121 bruce@momjian.us 2551 [ + + + - ]: 570 : while (*ptr && (lcur - lres) < MAX_NORM)
2552 : : {
2553 : 327 : addNorm(&lres, &lcur, *ptr, 0, NVariant++);
6781 tgl@sss.pgh.pa.us 2554 : 327 : ptr++;
2555 : : }
2556 : 243 : pfree(res);
2557 : : }
2558 : :
2559 [ + - ]: 375 : if (Conf->usecompound)
2560 : : {
2561 : 375 : int wordlen = strlen(word);
2562 : : SplitVar *ptr,
2563 : 375 : *var = SplitToVariants(Conf, NULL, NULL, word, wordlen, 0, -1);
2564 : : int i;
2565 : :
2566 [ + + ]: 1035 : while (var)
2567 : : {
2568 [ + + ]: 660 : if (var->nstem > 1)
2569 : : {
2570 : 285 : char **subres = NormalizeSubWord(Conf, var->stem[var->nstem - 1], FF_COMPOUNDLAST);
2571 : :
2572 [ + + ]: 285 : if (subres)
2573 : : {
2574 : 132 : char **subptr = subres;
2575 : :
2576 [ + + ]: 264 : while (*subptr)
2577 : : {
2578 [ + + ]: 330 : for (i = 0; i < var->nstem - 1; i++)
2579 : : {
6121 bruce@momjian.us 2580 [ + - ]: 198 : addNorm(&lres, &lcur, (subptr == subres) ? var->stem[i] : pstrdup(var->stem[i]), 0, NVariant);
2581 : : }
2582 : :
2583 : 132 : addNorm(&lres, &lcur, *subptr, 0, NVariant);
6781 tgl@sss.pgh.pa.us 2584 : 132 : subptr++;
2585 : 132 : NVariant++;
2586 : : }
2587 : :
2588 : 132 : pfree(subres);
2589 : 132 : var->stem[0] = NULL;
2590 : 132 : pfree(var->stem[var->nstem - 1]);
2591 : : }
2592 : : }
2593 : :
2594 [ + + + + ]: 1371 : for (i = 0; i < var->nstem && var->stem[i]; i++)
2595 : 711 : pfree(var->stem[i]);
2596 : 660 : ptr = var->next;
2597 : 660 : pfree(var->stem);
2598 : 660 : pfree(var);
2599 : 660 : var = ptr;
2600 : : }
2601 : : }
2602 : :
2603 : 375 : return lres;
2604 : : }
|