isomorfeus-ferret 0.12.7 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +101 -19
- data/README.md +54 -1
- data/ext/isomorfeus_ferret_ext/bm_bitvector.c +22 -30
- data/ext/isomorfeus_ferret_ext/bm_hash.c +6 -12
- data/ext/isomorfeus_ferret_ext/bm_micro_string.c +3 -6
- data/ext/isomorfeus_ferret_ext/bm_store.c +11 -22
- data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.c +1 -1
- data/ext/isomorfeus_ferret_ext/brotli_dec_decode.c +1 -1
- data/ext/isomorfeus_ferret_ext/bzip_blocksort.c +1094 -0
- data/ext/isomorfeus_ferret_ext/bzip_huffman.c +205 -0
- data/ext/isomorfeus_ferret_ext/bzlib.c +1572 -0
- data/ext/isomorfeus_ferret_ext/bzlib.h +282 -0
- data/ext/isomorfeus_ferret_ext/bzlib_compress.c +672 -0
- data/ext/isomorfeus_ferret_ext/bzlib_crctable.c +104 -0
- data/ext/isomorfeus_ferret_ext/bzlib_decompress.c +652 -0
- data/ext/isomorfeus_ferret_ext/bzlib_private.h +509 -0
- data/ext/isomorfeus_ferret_ext/bzlib_randtable.c +84 -0
- data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -53
- data/ext/isomorfeus_ferret_ext/frb_analysis.c +785 -1192
- data/ext/isomorfeus_ferret_ext/frb_index.c +492 -474
- data/ext/isomorfeus_ferret_ext/frb_qparser.c +48 -60
- data/ext/isomorfeus_ferret_ext/frb_search.c +1520 -1002
- data/ext/isomorfeus_ferret_ext/frb_store.c +96 -96
- data/ext/isomorfeus_ferret_ext/frb_threading.h +0 -1
- data/ext/isomorfeus_ferret_ext/frb_utils.c +147 -196
- data/ext/isomorfeus_ferret_ext/frt_analysis.c +695 -1090
- data/ext/isomorfeus_ferret_ext/frt_analysis.h +174 -170
- data/ext/isomorfeus_ferret_ext/frt_array.c +2 -4
- data/ext/isomorfeus_ferret_ext/frt_bitvector.c +9 -16
- data/ext/isomorfeus_ferret_ext/frt_bitvector.h +32 -81
- data/ext/isomorfeus_ferret_ext/frt_document.c +15 -20
- data/ext/isomorfeus_ferret_ext/frt_document.h +10 -10
- data/ext/isomorfeus_ferret_ext/frt_except.c +5 -12
- data/ext/isomorfeus_ferret_ext/frt_field_index.c +3 -3
- data/ext/isomorfeus_ferret_ext/frt_field_index.h +6 -7
- data/ext/isomorfeus_ferret_ext/frt_filter.c +35 -46
- data/ext/isomorfeus_ferret_ext/frt_fs_store.c +1 -0
- data/ext/isomorfeus_ferret_ext/frt_global.c +105 -63
- data/ext/isomorfeus_ferret_ext/frt_global.h +7 -3
- data/ext/isomorfeus_ferret_ext/frt_hash.c +1 -2
- data/ext/isomorfeus_ferret_ext/frt_ind.c +32 -35
- data/ext/isomorfeus_ferret_ext/frt_ind.h +9 -9
- data/ext/isomorfeus_ferret_ext/frt_index.c +580 -399
- data/ext/isomorfeus_ferret_ext/frt_index.h +272 -291
- data/ext/isomorfeus_ferret_ext/frt_mempool.c +1 -2
- data/ext/isomorfeus_ferret_ext/frt_multimapper.c +4 -7
- data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +67 -91
- data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +35 -38
- data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +53 -72
- data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +25 -32
- data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +21 -23
- data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +66 -103
- data/ext/isomorfeus_ferret_ext/frt_q_parser.c +207 -195
- data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +20 -16
- data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +17 -14
- data/ext/isomorfeus_ferret_ext/frt_q_range.c +102 -131
- data/ext/isomorfeus_ferret_ext/frt_q_span.c +179 -178
- data/ext/isomorfeus_ferret_ext/frt_q_term.c +47 -60
- data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +18 -16
- data/ext/isomorfeus_ferret_ext/frt_ram_store.c +45 -84
- data/ext/isomorfeus_ferret_ext/frt_search.c +105 -146
- data/ext/isomorfeus_ferret_ext/frt_search.h +331 -320
- data/ext/isomorfeus_ferret_ext/frt_similarity.c +5 -13
- data/ext/isomorfeus_ferret_ext/frt_similarity.h +7 -12
- data/ext/isomorfeus_ferret_ext/frt_sort.c +105 -149
- data/ext/isomorfeus_ferret_ext/frt_store.c +13 -7
- data/ext/isomorfeus_ferret_ext/frt_store.h +10 -2
- data/ext/isomorfeus_ferret_ext/frt_threading.h +0 -1
- data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +21 -109
- data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +2 -32
- data/ext/isomorfeus_ferret_ext/lz4.c +2495 -0
- data/ext/isomorfeus_ferret_ext/lz4.h +774 -0
- data/ext/isomorfeus_ferret_ext/lz4frame.c +1899 -0
- data/ext/isomorfeus_ferret_ext/lz4frame.h +623 -0
- data/ext/isomorfeus_ferret_ext/lz4hc.c +1615 -0
- data/ext/isomorfeus_ferret_ext/lz4hc.h +413 -0
- data/ext/isomorfeus_ferret_ext/lz4xxhash.c +1030 -0
- data/ext/isomorfeus_ferret_ext/lz4xxhash.h +328 -0
- data/ext/isomorfeus_ferret_ext/stem_modules.h +0 -86
- data/ext/isomorfeus_ferret_ext/test.c +1 -2
- data/ext/isomorfeus_ferret_ext/test_1710.c +11 -12
- data/ext/isomorfeus_ferret_ext/test_analysis.c +590 -583
- data/ext/isomorfeus_ferret_ext/test_compound_io.c +1 -1
- data/ext/isomorfeus_ferret_ext/test_document.c +19 -15
- data/ext/isomorfeus_ferret_ext/test_except.c +1 -2
- data/ext/isomorfeus_ferret_ext/test_fields.c +59 -60
- data/ext/isomorfeus_ferret_ext/test_file_deleter.c +10 -27
- data/ext/isomorfeus_ferret_ext/test_filter.c +11 -8
- data/ext/isomorfeus_ferret_ext/test_hash.c +2 -2
- data/ext/isomorfeus_ferret_ext/test_hashset.c +1 -1
- data/ext/isomorfeus_ferret_ext/test_highlighter.c +15 -11
- data/ext/isomorfeus_ferret_ext/test_index.c +372 -365
- data/ext/isomorfeus_ferret_ext/test_q_const_score.c +5 -3
- data/ext/isomorfeus_ferret_ext/test_q_filtered.c +5 -3
- data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +13 -10
- data/ext/isomorfeus_ferret_ext/test_q_parser.c +45 -7
- data/ext/isomorfeus_ferret_ext/test_q_span.c +15 -12
- data/ext/isomorfeus_ferret_ext/test_ram_store.c +3 -3
- data/ext/isomorfeus_ferret_ext/test_search.c +60 -62
- data/ext/isomorfeus_ferret_ext/test_segments.c +5 -4
- data/ext/isomorfeus_ferret_ext/test_sort.c +17 -14
- data/ext/isomorfeus_ferret_ext/test_store.c +2 -0
- data/ext/isomorfeus_ferret_ext/test_term.c +3 -1
- data/ext/isomorfeus_ferret_ext/test_term_vectors.c +9 -10
- data/ext/isomorfeus_ferret_ext/test_test.c +1 -2
- data/ext/isomorfeus_ferret_ext/test_threading.c +9 -10
- data/ext/isomorfeus_ferret_ext/testhelper.c +1 -2
- data/lib/isomorfeus/ferret/version.rb +1 -1
- metadata +27 -57
- data/ext/isomorfeus_ferret_ext/email.rl +0 -21
- data/ext/isomorfeus_ferret_ext/frt_scanner.c +0 -900
- data/ext/isomorfeus_ferret_ext/frt_scanner.h +0 -28
- data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +0 -6706
- data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +0 -4420
- data/ext/isomorfeus_ferret_ext/scanner.h +0 -28
- data/ext/isomorfeus_ferret_ext/scanner.in +0 -43
- data/ext/isomorfeus_ferret_ext/scanner.rl +0 -84
- data/ext/isomorfeus_ferret_ext/scanner_mb.rl +0 -200
- data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +0 -85
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +0 -1167
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +0 -1433
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +0 -301
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +0 -590
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +0 -1049
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +0 -705
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +0 -1239
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +0 -477
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +0 -1217
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +0 -7
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +0 -394
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +0 -457
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +0 -1009
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +0 -259
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +0 -704
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +0 -948
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +0 -1028
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +0 -275
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +0 -849
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +0 -952
- data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +0 -669
- data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +0 -6
- data/ext/isomorfeus_ferret_ext/stem_modules.txt +0 -63
- data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +0 -1854
- data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +0 -1999
- data/ext/isomorfeus_ferret_ext/url.rl +0 -27
@@ -1,477 +0,0 @@
|
|
1
|
-
/* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
|
2
|
-
|
3
|
-
#include "stem_header.h"
|
4
|
-
|
5
|
-
extern int german_ISO_8859_1_stem(struct SN_env * z);
|
6
|
-
|
7
|
-
static int r_standard_suffix(struct SN_env * z);
|
8
|
-
static int r_R2(struct SN_env * z);
|
9
|
-
static int r_R1(struct SN_env * z);
|
10
|
-
static int r_mark_regions(struct SN_env * z);
|
11
|
-
static int r_postlude(struct SN_env * z);
|
12
|
-
static int r_prelude(struct SN_env * z);
|
13
|
-
|
14
|
-
extern struct SN_env * german_ISO_8859_1_create_env(void);
|
15
|
-
extern void german_ISO_8859_1_close_env(struct SN_env * z);
|
16
|
-
|
17
|
-
static const symbol s_0_1[1] = { 'U' };
|
18
|
-
static const symbol s_0_2[1] = { 'Y' };
|
19
|
-
static const symbol s_0_3[1] = { 0xE4 };
|
20
|
-
static const symbol s_0_4[1] = { 0xF6 };
|
21
|
-
static const symbol s_0_5[1] = { 0xFC };
|
22
|
-
|
23
|
-
static const struct among a_0[6] =
|
24
|
-
{
|
25
|
-
{ 0, 0, -1, 5, 0},
|
26
|
-
{ 1, s_0_1, 0, 2, 0},
|
27
|
-
{ 1, s_0_2, 0, 1, 0},
|
28
|
-
{ 1, s_0_3, 0, 3, 0},
|
29
|
-
{ 1, s_0_4, 0, 4, 0},
|
30
|
-
{ 1, s_0_5, 0, 2, 0}
|
31
|
-
};
|
32
|
-
|
33
|
-
static const symbol s_1_0[1] = { 'e' };
|
34
|
-
static const symbol s_1_1[2] = { 'e', 'm' };
|
35
|
-
static const symbol s_1_2[2] = { 'e', 'n' };
|
36
|
-
static const symbol s_1_3[3] = { 'e', 'r', 'n' };
|
37
|
-
static const symbol s_1_4[2] = { 'e', 'r' };
|
38
|
-
static const symbol s_1_5[1] = { 's' };
|
39
|
-
static const symbol s_1_6[2] = { 'e', 's' };
|
40
|
-
|
41
|
-
static const struct among a_1[7] =
|
42
|
-
{
|
43
|
-
{ 1, s_1_0, -1, 2, 0},
|
44
|
-
{ 2, s_1_1, -1, 1, 0},
|
45
|
-
{ 2, s_1_2, -1, 2, 0},
|
46
|
-
{ 3, s_1_3, -1, 1, 0},
|
47
|
-
{ 2, s_1_4, -1, 1, 0},
|
48
|
-
{ 1, s_1_5, -1, 3, 0},
|
49
|
-
{ 2, s_1_6, 5, 2, 0}
|
50
|
-
};
|
51
|
-
|
52
|
-
static const symbol s_2_0[2] = { 'e', 'n' };
|
53
|
-
static const symbol s_2_1[2] = { 'e', 'r' };
|
54
|
-
static const symbol s_2_2[2] = { 's', 't' };
|
55
|
-
static const symbol s_2_3[3] = { 'e', 's', 't' };
|
56
|
-
|
57
|
-
static const struct among a_2[4] =
|
58
|
-
{
|
59
|
-
{ 2, s_2_0, -1, 1, 0},
|
60
|
-
{ 2, s_2_1, -1, 1, 0},
|
61
|
-
{ 2, s_2_2, -1, 2, 0},
|
62
|
-
{ 3, s_2_3, 2, 1, 0}
|
63
|
-
};
|
64
|
-
|
65
|
-
static const symbol s_3_0[2] = { 'i', 'g' };
|
66
|
-
static const symbol s_3_1[4] = { 'l', 'i', 'c', 'h' };
|
67
|
-
|
68
|
-
static const struct among a_3[2] =
|
69
|
-
{
|
70
|
-
{ 2, s_3_0, -1, 1, 0},
|
71
|
-
{ 4, s_3_1, -1, 1, 0}
|
72
|
-
};
|
73
|
-
|
74
|
-
static const symbol s_4_0[3] = { 'e', 'n', 'd' };
|
75
|
-
static const symbol s_4_1[2] = { 'i', 'g' };
|
76
|
-
static const symbol s_4_2[3] = { 'u', 'n', 'g' };
|
77
|
-
static const symbol s_4_3[4] = { 'l', 'i', 'c', 'h' };
|
78
|
-
static const symbol s_4_4[4] = { 'i', 's', 'c', 'h' };
|
79
|
-
static const symbol s_4_5[2] = { 'i', 'k' };
|
80
|
-
static const symbol s_4_6[4] = { 'h', 'e', 'i', 't' };
|
81
|
-
static const symbol s_4_7[4] = { 'k', 'e', 'i', 't' };
|
82
|
-
|
83
|
-
static const struct among a_4[8] =
|
84
|
-
{
|
85
|
-
{ 3, s_4_0, -1, 1, 0},
|
86
|
-
{ 2, s_4_1, -1, 2, 0},
|
87
|
-
{ 3, s_4_2, -1, 1, 0},
|
88
|
-
{ 4, s_4_3, -1, 3, 0},
|
89
|
-
{ 4, s_4_4, -1, 2, 0},
|
90
|
-
{ 2, s_4_5, -1, 2, 0},
|
91
|
-
{ 4, s_4_6, -1, 3, 0},
|
92
|
-
{ 4, s_4_7, -1, 4, 0}
|
93
|
-
};
|
94
|
-
|
95
|
-
static const unsigned char g_v[] = { 17, 65, 16, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 32, 8 };
|
96
|
-
|
97
|
-
static const unsigned char g_s_ending[] = { 117, 30, 5 };
|
98
|
-
|
99
|
-
static const unsigned char g_st_ending[] = { 117, 30, 4 };
|
100
|
-
|
101
|
-
static const symbol s_0[] = { 's', 's' };
|
102
|
-
static const symbol s_1[] = { 'U' };
|
103
|
-
static const symbol s_2[] = { 'Y' };
|
104
|
-
static const symbol s_3[] = { 'y' };
|
105
|
-
static const symbol s_4[] = { 'u' };
|
106
|
-
static const symbol s_5[] = { 'a' };
|
107
|
-
static const symbol s_6[] = { 'o' };
|
108
|
-
static const symbol s_7[] = { 'n', 'i', 's' };
|
109
|
-
static const symbol s_8[] = { 'i', 'g' };
|
110
|
-
static const symbol s_9[] = { 'e', 'r' };
|
111
|
-
static const symbol s_10[] = { 'e', 'n' };
|
112
|
-
|
113
|
-
static int r_prelude(struct SN_env * z) {
|
114
|
-
{ int c_test1 = z->c;
|
115
|
-
while(1) {
|
116
|
-
int c2 = z->c;
|
117
|
-
{ int c3 = z->c;
|
118
|
-
z->bra = z->c;
|
119
|
-
if (z->c == z->l || z->p[z->c] != 0xDF) goto lab2;
|
120
|
-
z->c++;
|
121
|
-
z->ket = z->c;
|
122
|
-
{ int ret = slice_from_s(z, 2, s_0);
|
123
|
-
if (ret < 0) return ret;
|
124
|
-
}
|
125
|
-
goto lab1;
|
126
|
-
lab2:
|
127
|
-
z->c = c3;
|
128
|
-
if (z->c >= z->l) goto lab0;
|
129
|
-
z->c++;
|
130
|
-
}
|
131
|
-
lab1:
|
132
|
-
continue;
|
133
|
-
lab0:
|
134
|
-
z->c = c2;
|
135
|
-
break;
|
136
|
-
}
|
137
|
-
z->c = c_test1;
|
138
|
-
}
|
139
|
-
while(1) {
|
140
|
-
int c4 = z->c;
|
141
|
-
while(1) {
|
142
|
-
int c5 = z->c;
|
143
|
-
if (in_grouping(z, g_v, 97, 252, 0)) goto lab4;
|
144
|
-
z->bra = z->c;
|
145
|
-
{ int c6 = z->c;
|
146
|
-
if (z->c == z->l || z->p[z->c] != 'u') goto lab6;
|
147
|
-
z->c++;
|
148
|
-
z->ket = z->c;
|
149
|
-
if (in_grouping(z, g_v, 97, 252, 0)) goto lab6;
|
150
|
-
{ int ret = slice_from_s(z, 1, s_1);
|
151
|
-
if (ret < 0) return ret;
|
152
|
-
}
|
153
|
-
goto lab5;
|
154
|
-
lab6:
|
155
|
-
z->c = c6;
|
156
|
-
if (z->c == z->l || z->p[z->c] != 'y') goto lab4;
|
157
|
-
z->c++;
|
158
|
-
z->ket = z->c;
|
159
|
-
if (in_grouping(z, g_v, 97, 252, 0)) goto lab4;
|
160
|
-
{ int ret = slice_from_s(z, 1, s_2);
|
161
|
-
if (ret < 0) return ret;
|
162
|
-
}
|
163
|
-
}
|
164
|
-
lab5:
|
165
|
-
z->c = c5;
|
166
|
-
break;
|
167
|
-
lab4:
|
168
|
-
z->c = c5;
|
169
|
-
if (z->c >= z->l) goto lab3;
|
170
|
-
z->c++;
|
171
|
-
}
|
172
|
-
continue;
|
173
|
-
lab3:
|
174
|
-
z->c = c4;
|
175
|
-
break;
|
176
|
-
}
|
177
|
-
return 1;
|
178
|
-
}
|
179
|
-
|
180
|
-
static int r_mark_regions(struct SN_env * z) {
|
181
|
-
z->I[2] = z->l;
|
182
|
-
z->I[1] = z->l;
|
183
|
-
{ int c_test1 = z->c;
|
184
|
-
z->c = z->c + 3;
|
185
|
-
if (z->c > z->l) return 0;
|
186
|
-
z->I[0] = z->c;
|
187
|
-
z->c = c_test1;
|
188
|
-
}
|
189
|
-
{
|
190
|
-
int ret = out_grouping(z, g_v, 97, 252, 1);
|
191
|
-
if (ret < 0) return 0;
|
192
|
-
z->c += ret;
|
193
|
-
}
|
194
|
-
{
|
195
|
-
int ret = in_grouping(z, g_v, 97, 252, 1);
|
196
|
-
if (ret < 0) return 0;
|
197
|
-
z->c += ret;
|
198
|
-
}
|
199
|
-
z->I[2] = z->c;
|
200
|
-
|
201
|
-
if (!(z->I[2] < z->I[0])) goto lab0;
|
202
|
-
z->I[2] = z->I[0];
|
203
|
-
lab0:
|
204
|
-
{
|
205
|
-
int ret = out_grouping(z, g_v, 97, 252, 1);
|
206
|
-
if (ret < 0) return 0;
|
207
|
-
z->c += ret;
|
208
|
-
}
|
209
|
-
{
|
210
|
-
int ret = in_grouping(z, g_v, 97, 252, 1);
|
211
|
-
if (ret < 0) return 0;
|
212
|
-
z->c += ret;
|
213
|
-
}
|
214
|
-
z->I[1] = z->c;
|
215
|
-
return 1;
|
216
|
-
}
|
217
|
-
|
218
|
-
static int r_postlude(struct SN_env * z) {
|
219
|
-
int among_var;
|
220
|
-
while(1) {
|
221
|
-
int c1 = z->c;
|
222
|
-
z->bra = z->c;
|
223
|
-
among_var = find_among(z, a_0, 6);
|
224
|
-
if (!(among_var)) goto lab0;
|
225
|
-
z->ket = z->c;
|
226
|
-
switch (among_var) {
|
227
|
-
case 1:
|
228
|
-
{ int ret = slice_from_s(z, 1, s_3);
|
229
|
-
if (ret < 0) return ret;
|
230
|
-
}
|
231
|
-
break;
|
232
|
-
case 2:
|
233
|
-
{ int ret = slice_from_s(z, 1, s_4);
|
234
|
-
if (ret < 0) return ret;
|
235
|
-
}
|
236
|
-
break;
|
237
|
-
case 3:
|
238
|
-
{ int ret = slice_from_s(z, 1, s_5);
|
239
|
-
if (ret < 0) return ret;
|
240
|
-
}
|
241
|
-
break;
|
242
|
-
case 4:
|
243
|
-
{ int ret = slice_from_s(z, 1, s_6);
|
244
|
-
if (ret < 0) return ret;
|
245
|
-
}
|
246
|
-
break;
|
247
|
-
case 5:
|
248
|
-
if (z->c >= z->l) goto lab0;
|
249
|
-
z->c++;
|
250
|
-
break;
|
251
|
-
}
|
252
|
-
continue;
|
253
|
-
lab0:
|
254
|
-
z->c = c1;
|
255
|
-
break;
|
256
|
-
}
|
257
|
-
return 1;
|
258
|
-
}
|
259
|
-
|
260
|
-
static int r_R1(struct SN_env * z) {
|
261
|
-
if (!(z->I[2] <= z->c)) return 0;
|
262
|
-
return 1;
|
263
|
-
}
|
264
|
-
|
265
|
-
static int r_R2(struct SN_env * z) {
|
266
|
-
if (!(z->I[1] <= z->c)) return 0;
|
267
|
-
return 1;
|
268
|
-
}
|
269
|
-
|
270
|
-
static int r_standard_suffix(struct SN_env * z) {
|
271
|
-
int among_var;
|
272
|
-
{ int m1 = z->l - z->c; (void)m1;
|
273
|
-
z->ket = z->c;
|
274
|
-
if (z->c <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((811040 >> (z->p[z->c - 1] & 0x1f)) & 1)) goto lab0;
|
275
|
-
among_var = find_among_b(z, a_1, 7);
|
276
|
-
if (!(among_var)) goto lab0;
|
277
|
-
z->bra = z->c;
|
278
|
-
{ int ret = r_R1(z);
|
279
|
-
if (ret == 0) goto lab0;
|
280
|
-
if (ret < 0) return ret;
|
281
|
-
}
|
282
|
-
switch (among_var) {
|
283
|
-
case 1:
|
284
|
-
{ int ret = slice_del(z);
|
285
|
-
if (ret < 0) return ret;
|
286
|
-
}
|
287
|
-
break;
|
288
|
-
case 2:
|
289
|
-
{ int ret = slice_del(z);
|
290
|
-
if (ret < 0) return ret;
|
291
|
-
}
|
292
|
-
{ int m2 = z->l - z->c; (void)m2;
|
293
|
-
z->ket = z->c;
|
294
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 's') { z->c = z->l - m2; goto lab1; }
|
295
|
-
z->c--;
|
296
|
-
z->bra = z->c;
|
297
|
-
if (!(eq_s_b(z, 3, s_7))) { z->c = z->l - m2; goto lab1; }
|
298
|
-
{ int ret = slice_del(z);
|
299
|
-
if (ret < 0) return ret;
|
300
|
-
}
|
301
|
-
lab1:
|
302
|
-
;
|
303
|
-
}
|
304
|
-
break;
|
305
|
-
case 3:
|
306
|
-
if (in_grouping_b(z, g_s_ending, 98, 116, 0)) goto lab0;
|
307
|
-
{ int ret = slice_del(z);
|
308
|
-
if (ret < 0) return ret;
|
309
|
-
}
|
310
|
-
break;
|
311
|
-
}
|
312
|
-
lab0:
|
313
|
-
z->c = z->l - m1;
|
314
|
-
}
|
315
|
-
{ int m3 = z->l - z->c; (void)m3;
|
316
|
-
z->ket = z->c;
|
317
|
-
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1327104 >> (z->p[z->c - 1] & 0x1f)) & 1)) goto lab2;
|
318
|
-
among_var = find_among_b(z, a_2, 4);
|
319
|
-
if (!(among_var)) goto lab2;
|
320
|
-
z->bra = z->c;
|
321
|
-
{ int ret = r_R1(z);
|
322
|
-
if (ret == 0) goto lab2;
|
323
|
-
if (ret < 0) return ret;
|
324
|
-
}
|
325
|
-
switch (among_var) {
|
326
|
-
case 1:
|
327
|
-
{ int ret = slice_del(z);
|
328
|
-
if (ret < 0) return ret;
|
329
|
-
}
|
330
|
-
break;
|
331
|
-
case 2:
|
332
|
-
if (in_grouping_b(z, g_st_ending, 98, 116, 0)) goto lab2;
|
333
|
-
z->c = z->c - 3;
|
334
|
-
if (z->c < z->lb) goto lab2;
|
335
|
-
{ int ret = slice_del(z);
|
336
|
-
if (ret < 0) return ret;
|
337
|
-
}
|
338
|
-
break;
|
339
|
-
}
|
340
|
-
lab2:
|
341
|
-
z->c = z->l - m3;
|
342
|
-
}
|
343
|
-
{ int m4 = z->l - z->c; (void)m4;
|
344
|
-
z->ket = z->c;
|
345
|
-
if (z->c - 1 <= z->lb || z->p[z->c - 1] >> 5 != 3 || !((1051024 >> (z->p[z->c - 1] & 0x1f)) & 1)) goto lab3;
|
346
|
-
among_var = find_among_b(z, a_4, 8);
|
347
|
-
if (!(among_var)) goto lab3;
|
348
|
-
z->bra = z->c;
|
349
|
-
{ int ret = r_R2(z);
|
350
|
-
if (ret == 0) goto lab3;
|
351
|
-
if (ret < 0) return ret;
|
352
|
-
}
|
353
|
-
switch (among_var) {
|
354
|
-
case 1:
|
355
|
-
{ int ret = slice_del(z);
|
356
|
-
if (ret < 0) return ret;
|
357
|
-
}
|
358
|
-
{ int m5 = z->l - z->c; (void)m5;
|
359
|
-
z->ket = z->c;
|
360
|
-
if (!(eq_s_b(z, 2, s_8))) { z->c = z->l - m5; goto lab4; }
|
361
|
-
z->bra = z->c;
|
362
|
-
{ int m6 = z->l - z->c; (void)m6;
|
363
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 'e') goto lab5;
|
364
|
-
z->c--;
|
365
|
-
{ z->c = z->l - m5; goto lab4; }
|
366
|
-
lab5:
|
367
|
-
z->c = z->l - m6;
|
368
|
-
}
|
369
|
-
{ int ret = r_R2(z);
|
370
|
-
if (ret == 0) { z->c = z->l - m5; goto lab4; }
|
371
|
-
if (ret < 0) return ret;
|
372
|
-
}
|
373
|
-
{ int ret = slice_del(z);
|
374
|
-
if (ret < 0) return ret;
|
375
|
-
}
|
376
|
-
lab4:
|
377
|
-
;
|
378
|
-
}
|
379
|
-
break;
|
380
|
-
case 2:
|
381
|
-
{ int m7 = z->l - z->c; (void)m7;
|
382
|
-
if (z->c <= z->lb || z->p[z->c - 1] != 'e') goto lab6;
|
383
|
-
z->c--;
|
384
|
-
goto lab3;
|
385
|
-
lab6:
|
386
|
-
z->c = z->l - m7;
|
387
|
-
}
|
388
|
-
{ int ret = slice_del(z);
|
389
|
-
if (ret < 0) return ret;
|
390
|
-
}
|
391
|
-
break;
|
392
|
-
case 3:
|
393
|
-
{ int ret = slice_del(z);
|
394
|
-
if (ret < 0) return ret;
|
395
|
-
}
|
396
|
-
{ int m8 = z->l - z->c; (void)m8;
|
397
|
-
z->ket = z->c;
|
398
|
-
{ int m9 = z->l - z->c; (void)m9;
|
399
|
-
if (!(eq_s_b(z, 2, s_9))) goto lab9;
|
400
|
-
goto lab8;
|
401
|
-
lab9:
|
402
|
-
z->c = z->l - m9;
|
403
|
-
if (!(eq_s_b(z, 2, s_10))) { z->c = z->l - m8; goto lab7; }
|
404
|
-
}
|
405
|
-
lab8:
|
406
|
-
z->bra = z->c;
|
407
|
-
{ int ret = r_R1(z);
|
408
|
-
if (ret == 0) { z->c = z->l - m8; goto lab7; }
|
409
|
-
if (ret < 0) return ret;
|
410
|
-
}
|
411
|
-
{ int ret = slice_del(z);
|
412
|
-
if (ret < 0) return ret;
|
413
|
-
}
|
414
|
-
lab7:
|
415
|
-
;
|
416
|
-
}
|
417
|
-
break;
|
418
|
-
case 4:
|
419
|
-
{ int ret = slice_del(z);
|
420
|
-
if (ret < 0) return ret;
|
421
|
-
}
|
422
|
-
{ int m10 = z->l - z->c; (void)m10;
|
423
|
-
z->ket = z->c;
|
424
|
-
if (z->c - 1 <= z->lb || (z->p[z->c - 1] != 103 && z->p[z->c - 1] != 104)) { z->c = z->l - m10; goto lab10; }
|
425
|
-
if (!(find_among_b(z, a_3, 2))) { z->c = z->l - m10; goto lab10; }
|
426
|
-
z->bra = z->c;
|
427
|
-
{ int ret = r_R2(z);
|
428
|
-
if (ret == 0) { z->c = z->l - m10; goto lab10; }
|
429
|
-
if (ret < 0) return ret;
|
430
|
-
}
|
431
|
-
{ int ret = slice_del(z);
|
432
|
-
if (ret < 0) return ret;
|
433
|
-
}
|
434
|
-
lab10:
|
435
|
-
;
|
436
|
-
}
|
437
|
-
break;
|
438
|
-
}
|
439
|
-
lab3:
|
440
|
-
z->c = z->l - m4;
|
441
|
-
}
|
442
|
-
return 1;
|
443
|
-
}
|
444
|
-
|
445
|
-
extern int german_ISO_8859_1_stem(struct SN_env * z) {
|
446
|
-
{ int c1 = z->c;
|
447
|
-
{ int ret = r_prelude(z);
|
448
|
-
if (ret < 0) return ret;
|
449
|
-
}
|
450
|
-
z->c = c1;
|
451
|
-
}
|
452
|
-
{ int c2 = z->c;
|
453
|
-
{ int ret = r_mark_regions(z);
|
454
|
-
if (ret < 0) return ret;
|
455
|
-
}
|
456
|
-
z->c = c2;
|
457
|
-
}
|
458
|
-
z->lb = z->c; z->c = z->l;
|
459
|
-
|
460
|
-
|
461
|
-
{ int ret = r_standard_suffix(z);
|
462
|
-
if (ret < 0) return ret;
|
463
|
-
}
|
464
|
-
z->c = z->lb;
|
465
|
-
{ int c3 = z->c;
|
466
|
-
{ int ret = r_postlude(z);
|
467
|
-
if (ret < 0) return ret;
|
468
|
-
}
|
469
|
-
z->c = c3;
|
470
|
-
}
|
471
|
-
return 1;
|
472
|
-
}
|
473
|
-
|
474
|
-
extern struct SN_env * german_ISO_8859_1_create_env(void) { return SN_create_env(0, 3); }
|
475
|
-
|
476
|
-
extern void german_ISO_8859_1_close_env(struct SN_env * z) { SN_close_env(z, 0); }
|
477
|
-
|