-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSfxEntry.cs
409 lines (367 loc) · 13.6 KB
/
SfxEntry.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
using System.Collections.Generic;
using System.Text;
namespace HunspellSharp
{
using static Utils;
class SfxEntry : AffEntry
{
private string rappnd;
private SfxEntry next;
private SfxEntry nexteq;
private SfxEntry nextne;
private SfxEntry flgnxt;
public string add(Hunspell pmyMgr, string word)
{
var len = word.Length;
/* make sure all conditions match */
if ((len > strip.Length || (len == 0 && pmyMgr.get_fullstrip())) &&
(len >= numconds) && test_condition(word) &&
(strip.Length == 0 ||
(len >= strip.Length && string.CompareOrdinal(word, len - strip.Length, strip, 0, strip.Length) == 0)))
{
/* we have a match so add suffix */
if (strip.Length > 0) word = word.Remove(len - strip.Length);
return word + appnd;
}
return null;
}
public bool test_condition(IEnumerable<char> s)
{
int st = s.Length();
int pos = -1; // group with pos input position
bool neg = false; // complementer
bool ingroup = false; // character in the group
if (numconds == 0)
return true;
int p = 0;
st--;
int i = 1;
while (true)
{
switch (conds[p])
{
case '[':
++p;
pos = st;
break;
case '^':
++p;
neg = true;
break;
case ']':
if (!neg && !ingroup)
return false;
i++;
// skip the next character
if (!ingroup)
{
st--;
}
pos = -1;
neg = false;
ingroup = false;
++p;
if (st < 0 && p < conds.Length)
return false; // word <= condition
break;
case '.':
if (pos < 0)
{
// dots are not metacharacters in groups: [.]
++p;
// skip the next character
if (--st < 0)
{ // word <= condition
if (p < conds.Length)
return false;
else
return true;
}
break;
}
goto default;
/* FALLTHROUGH */
default:
{
if (s.At(st) == conds[p])
{
++p;
if (pos >= 0)
{
if (neg)
return false;
else if (i == numconds)
return true;
ingroup = true;
while (p < conds.Length && conds[p] != ']' && ++p < conds.Length)
{
}
// if (p && *p != ']') p = nextchar(p);
st--;
}
if (pos < 0)
{
i++;
st--;
}
if (st < 0 && p < conds.Length && conds[p] != ']')
return false; // word <= condition
}
else if (pos >= 0)
{ // group
++p;
}
else
return false;
break;
}
}
if (p >= conds.Length)
return true;
}
}
public bool allowCross() { return (opts & ae.XPRODUCT) != 0; }
public hentry checkword(Hunspell pmyMgr,
IEnumerable<char> word,
int start,
int len,
ae optflags,
PfxEntry ppfx,
ushort cclass,
ushort needflag,
ushort badflag)
{
hentry he; // hash entry pointer
PfxEntry ep = ppfx;
// if this suffix is being cross checked with a prefix
// but it does not support cross products skip it
if (((optflags & ae.XPRODUCT) != 0) && ((opts & ae.XPRODUCT) == 0))
return null;
// upon entry suffix is 0 length or already matches the end of the word.
// So if the remaining root word has positive length
// and if there are enough chars in root word and added back strip chars
// to meet the number of characters conditions, then test it
int tmpl = len - appnd.Length; // length of tmpword
// the second condition is not enough for UTF-8 strings
// it checked in test_condition()
if ((tmpl > 0 || (tmpl == 0 && pmyMgr.get_fullstrip())) &&
(tmpl + strip.Length >= numconds))
{
// generate new root word by removing suffix and adding
// back any characters that would have been stripped or
// or null terminating the shorter string
var stripl = strip?.Length ?? 0;
var tmpstring = new char[tmpl + stripl];
word.CopyTo(start, tmpstring, 0, tmpl);
if (stripl > 0)
{
strip.CopyTo(0, tmpstring, tmpl, stripl);
}
// now make sure all of the conditions on characters
// are met. Please see the appendix at the end of
// this file for more info on exactly what is being
// tested
// if all conditions are met then check if resulting
// root word in the dictionary
if (test_condition(tmpstring))
{
#if SZOSZABLYA_POSSIBLE_ROOTS
fprintf(stdout, "%s %s %c\n", word.c_str() + start, tmpword, aflag);
#endif
if ((he = pmyMgr.lookup(tmpstring)) != null)
{
do
{
// check conditional suffix (enabled by prefix)
if ((TESTAFF(he.astr, aflag) ||
(ep != null && ep.getCont() != null &&
TESTAFF(ep.getCont(), aflag))) &&
(((optflags & ae.XPRODUCT) == 0) ||
(ep != null && TESTAFF(he.astr, ep.getFlag())) ||
// enabled by prefix
(contclass != null &&
(ep != null && TESTAFF(contclass, ep.getFlag())))) &&
// handle cont. class
((cclass == 0) ||
((contclass != null) && TESTAFF(contclass, cclass))) &&
// check only in compound homonyms (bad flags)
(badflag == 0 || !TESTAFF(he.astr, badflag)) &&
// handle required flag
((needflag == 0) ||
(TESTAFF(he.astr, needflag) ||
(contclass != null && TESTAFF(contclass, needflag)))))
return he;
he = he.next_homonym; // check homonyms
} while (he != null);
}
}
}
return null;
}
public hentry check_twosfx(Hunspell pmyMgr,
IEnumerable<char> word,
int start,
int len,
ae optflags,
PfxEntry ppfx,
ushort needflag = 0)
{
// if this suffix is being cross checked with a prefix
// but it does not support cross products skip it
if ((optflags & ae.XPRODUCT) != 0 && (opts & ae.XPRODUCT) == 0)
return null;
// upon entry suffix is 0 length or already matches the end of the word.
// So if the remaining root word has positive length
// and if there are enough chars in root word and added back strip chars
// to meet the number of characters conditions, then test it
int tmpl = len - appnd.Length; // length of tmpword
if ((tmpl > 0 || (tmpl == 0 && pmyMgr.get_fullstrip())) &&
(tmpl + strip.Length >= numconds))
{
// generate new root word by removing suffix and adding
// back any characters that would have been stripped or
// or null terminating the shorter string
var tmpword = new char[tmpl + strip.Length];
word.CopyTo(start, tmpword, 0, tmpl);
strip.CopyTo(0, tmpword, tmpl, strip.Length);
// now make sure all of the conditions on characters
// are met. Please see the appendix at the end of
// this file for more info on exactly what is being
// tested
// if all conditions are met then recall suffix_check
if (test_condition(tmpword))
{
hentry he; // hash entry pointer
if (ppfx != null)
{
// handle conditional suffix
if ((contclass != null) && TESTAFF(contclass, ppfx.getFlag()))
he = pmyMgr.suffix_check(tmpword, 0, tmpl, 0, null,
aflag, needflag, IN_CPD.NOT);
else
he = pmyMgr.suffix_check(tmpword, 0, tmpl, optflags, ppfx,
aflag, needflag, IN_CPD.NOT);
}
else
{
he = pmyMgr.suffix_check(tmpword, 0, tmpl, 0, null,
aflag, needflag, IN_CPD.NOT);
}
if (he != null)
return he;
}
}
return null;
}
public void check_twosfx_morph(Hunspell pmyMgr,
StringBuilder result,
string word,
int start,
int len,
ae optflags,
PfxEntry ppfx,
ushort needflag = 0)
{
// if this suffix is being cross checked with a prefix
// but it does not support cross products skip it
if ((optflags & ae.XPRODUCT) != 0 && (opts & ae.XPRODUCT) == 0)
return;
// upon entry suffix is 0 length or already matches the end of the word.
// So if the remaining root word has positive length
// and if there are enough chars in root word and added back strip chars
// to meet the number of characters conditions, then test it
int tmpl = len - appnd.Length; // length of tmpword
if ((tmpl > 0 || (tmpl == 0 && pmyMgr.get_fullstrip())) &&
(tmpl + strip.Length >= numconds))
{
// generate new root word by removing suffix and adding
// back any characters that would have been stripped or
// or null terminating the shorter string
string tmpword = word.Substring(start, tmpl) + strip;
// now make sure all of the conditions on characters
// are met. Please see the appendix at the end of
// this file for more info on exactly what is being
// tested
// if all conditions are met then recall suffix_check
if (test_condition(tmpword))
{
if (ppfx != null)
{
// handle conditional suffix
if ((contclass != null) && TESTAFF(contclass, ppfx.getFlag()))
{
var prelen = result.Length;
pmyMgr.suffix_check_morph(result, tmpword, 0, tmpl, 0, null, aflag,
needflag);
if (result.Length > prelen)
{
result.TrimRec();
if (ppfx.getMorph() != null)
{
result.Insert(prelen, ppfx.getMorph()).Append(MSEP.FLD);
}
}
}
else
{
pmyMgr.suffix_check_morph(result, tmpword, 0, tmpl, optflags, ppfx, aflag, needflag);
result.TrimRec();
}
}
else
{
pmyMgr.suffix_check_morph(result, tmpword, 0, tmpl, 0, null, aflag, needflag);
result.TrimRec();
}
}
}
}
// get next homonym with same affix
public hentry get_next_homonym(hentry he,
ae optflags,
PfxEntry ppfx,
ushort cclass,
ushort needflag)
{
PfxEntry ep = ppfx;
ushort eFlag = ep != null ? ep.getFlag() : (ushort)0;
while (he.next_homonym != null)
{
he = he.next_homonym;
if ((TESTAFF(he.astr, aflag) ||
(ep != null && ep.getCont() != null &&
TESTAFF(ep.getCont(), aflag))) &&
((optflags & ae.XPRODUCT) == 0 || TESTAFF(he.astr, eFlag) ||
// handle conditional suffix
((contclass != null) && TESTAFF(contclass, eFlag))) &&
// handle cont. class
((cclass == 0) ||
((contclass != null) && TESTAFF(contclass, cclass))) &&
// handle required flag
((needflag == 0) ||
(TESTAFF(he.astr, needflag) ||
((contclass != null) && TESTAFF(contclass, needflag)))))
return he;
}
return null;
}
public ushort getFlag() { return aflag; }
public string getKey() { return rappnd; }
public string getMorph() { return morphcode; }
public ushort[] getCont() { return contclass; }
public string getAffix() { return appnd; }
public int getKeyLen() { return appnd.Length; }
public SfxEntry getNext() { return next; }
public SfxEntry getNextNE() { return nextne; }
public SfxEntry getNextEQ() { return nexteq; }
public SfxEntry getFlgNxt() { return flgnxt; }
public void setNext(SfxEntry ptr) { next = ptr; }
public void setNextNE(SfxEntry ptr) { nextne = ptr; }
public void setNextEQ(SfxEntry ptr) { nexteq = ptr; }
public void setFlgNxt(SfxEntry ptr) { flgnxt = ptr; }
public void initReverseWord(StringHelper ctx)
{
rappnd = ctx.reverseword(appnd);
}
}
}