isomorfeus-ferret 0.12.6 → 0.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +101 -19
  3. data/README.md +85 -16
  4. data/ext/isomorfeus_ferret_ext/bm_bitvector.c +22 -30
  5. data/ext/isomorfeus_ferret_ext/bm_hash.c +6 -12
  6. data/ext/isomorfeus_ferret_ext/bm_micro_string.c +3 -6
  7. data/ext/isomorfeus_ferret_ext/bm_store.c +11 -22
  8. data/ext/isomorfeus_ferret_ext/brotli_common_constants.c +15 -0
  9. data/ext/isomorfeus_ferret_ext/brotli_common_constants.h +200 -0
  10. data/ext/isomorfeus_ferret_ext/brotli_common_context.c +156 -0
  11. data/ext/isomorfeus_ferret_ext/brotli_common_context.h +113 -0
  12. data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.c +5914 -0
  13. data/ext/isomorfeus_ferret_ext/brotli_common_dictionary.h +64 -0
  14. data/ext/isomorfeus_ferret_ext/brotli_common_platform.c +22 -0
  15. data/ext/isomorfeus_ferret_ext/brotli_common_platform.h +594 -0
  16. data/ext/isomorfeus_ferret_ext/brotli_common_transform.c +291 -0
  17. data/ext/isomorfeus_ferret_ext/brotli_common_transform.h +85 -0
  18. data/ext/isomorfeus_ferret_ext/brotli_common_version.h +26 -0
  19. data/ext/isomorfeus_ferret_ext/brotli_dec_bit_reader.c +76 -0
  20. data/ext/isomorfeus_ferret_ext/brotli_dec_bit_reader.h +351 -0
  21. data/ext/isomorfeus_ferret_ext/brotli_dec_decode.c +2608 -0
  22. data/ext/isomorfeus_ferret_ext/brotli_dec_huffman.c +339 -0
  23. data/ext/isomorfeus_ferret_ext/brotli_dec_huffman.h +121 -0
  24. data/ext/isomorfeus_ferret_ext/brotli_dec_prefix.h +732 -0
  25. data/ext/isomorfeus_ferret_ext/brotli_dec_state.c +159 -0
  26. data/ext/isomorfeus_ferret_ext/brotli_dec_state.h +365 -0
  27. data/ext/isomorfeus_ferret_ext/brotli_decode.h +344 -0
  28. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references.c +145 -0
  29. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references.h +39 -0
  30. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_hq.c +843 -0
  31. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_hq.h +95 -0
  32. data/ext/isomorfeus_ferret_ext/brotli_enc_backward_references_inc.h +163 -0
  33. data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost.c +35 -0
  34. data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost.h +63 -0
  35. data/ext/isomorfeus_ferret_ext/brotli_enc_bit_cost_inc.h +127 -0
  36. data/ext/isomorfeus_ferret_ext/brotli_enc_block_encoder_inc.h +34 -0
  37. data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter.c +194 -0
  38. data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter.h +51 -0
  39. data/ext/isomorfeus_ferret_ext/brotli_enc_block_splitter_inc.h +440 -0
  40. data/ext/isomorfeus_ferret_ext/brotli_enc_brotli_bit_stream.c +1314 -0
  41. data/ext/isomorfeus_ferret_ext/brotli_enc_brotli_bit_stream.h +84 -0
  42. data/ext/isomorfeus_ferret_ext/brotli_enc_cluster.c +56 -0
  43. data/ext/isomorfeus_ferret_ext/brotli_enc_cluster.h +48 -0
  44. data/ext/isomorfeus_ferret_ext/brotli_enc_cluster_inc.h +320 -0
  45. data/ext/isomorfeus_ferret_ext/brotli_enc_command.c +28 -0
  46. data/ext/isomorfeus_ferret_ext/brotli_enc_command.h +190 -0
  47. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment.c +790 -0
  48. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment.h +61 -0
  49. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment_two_pass.c +645 -0
  50. data/ext/isomorfeus_ferret_ext/brotli_enc_compress_fragment_two_pass.h +54 -0
  51. data/ext/isomorfeus_ferret_ext/brotli_enc_dictionary_hash.c +1846 -0
  52. data/ext/isomorfeus_ferret_ext/brotli_enc_dictionary_hash.h +25 -0
  53. data/ext/isomorfeus_ferret_ext/brotli_enc_encode.c +1927 -0
  54. data/ext/isomorfeus_ferret_ext/brotli_enc_encoder_dict.c +33 -0
  55. data/ext/isomorfeus_ferret_ext/brotli_enc_encoder_dict.h +43 -0
  56. data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode.c +503 -0
  57. data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode.h +122 -0
  58. data/ext/isomorfeus_ferret_ext/brotli_enc_entropy_encode_static.h +539 -0
  59. data/ext/isomorfeus_ferret_ext/brotli_enc_fast_log.c +105 -0
  60. data/ext/isomorfeus_ferret_ext/brotli_enc_fast_log.h +66 -0
  61. data/ext/isomorfeus_ferret_ext/brotli_enc_find_match_length.h +79 -0
  62. data/ext/isomorfeus_ferret_ext/brotli_enc_hash.h +488 -0
  63. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_composite_inc.h +125 -0
  64. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_forgetful_chain_inc.h +293 -0
  65. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match64_inc.h +267 -0
  66. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match_inc.h +262 -0
  67. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_longest_match_quickly_inc.h +266 -0
  68. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_rolling_inc.h +212 -0
  69. data/ext/isomorfeus_ferret_ext/brotli_enc_hash_to_binary_tree_inc.h +329 -0
  70. data/ext/isomorfeus_ferret_ext/brotli_enc_histogram.c +100 -0
  71. data/ext/isomorfeus_ferret_ext/brotli_enc_histogram.h +63 -0
  72. data/ext/isomorfeus_ferret_ext/brotli_enc_histogram_inc.h +51 -0
  73. data/ext/isomorfeus_ferret_ext/brotli_enc_literal_cost.c +175 -0
  74. data/ext/isomorfeus_ferret_ext/brotli_enc_literal_cost.h +30 -0
  75. data/ext/isomorfeus_ferret_ext/brotli_enc_memory.c +170 -0
  76. data/ext/isomorfeus_ferret_ext/brotli_enc_memory.h +114 -0
  77. data/ext/isomorfeus_ferret_ext/brotli_enc_metablock.c +663 -0
  78. data/ext/isomorfeus_ferret_ext/brotli_enc_metablock.h +105 -0
  79. data/ext/isomorfeus_ferret_ext/brotli_enc_metablock_inc.h +183 -0
  80. data/ext/isomorfeus_ferret_ext/brotli_enc_params.h +46 -0
  81. data/ext/isomorfeus_ferret_ext/brotli_enc_prefix.h +53 -0
  82. data/ext/isomorfeus_ferret_ext/brotli_enc_quality.h +165 -0
  83. data/ext/isomorfeus_ferret_ext/brotli_enc_ringbuffer.h +167 -0
  84. data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict.c +486 -0
  85. data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict.h +40 -0
  86. data/ext/isomorfeus_ferret_ext/brotli_enc_static_dict_lut.h +5864 -0
  87. data/ext/isomorfeus_ferret_ext/brotli_enc_utf8_util.c +85 -0
  88. data/ext/isomorfeus_ferret_ext/brotli_enc_utf8_util.h +32 -0
  89. data/ext/isomorfeus_ferret_ext/brotli_enc_write_bits.h +87 -0
  90. data/ext/isomorfeus_ferret_ext/brotli_encode.h +448 -0
  91. data/ext/isomorfeus_ferret_ext/brotli_port.h +288 -0
  92. data/ext/isomorfeus_ferret_ext/brotli_types.h +83 -0
  93. data/ext/isomorfeus_ferret_ext/bzlib.c +1572 -0
  94. data/ext/isomorfeus_ferret_ext/bzlib.h +282 -0
  95. data/ext/isomorfeus_ferret_ext/bzlib_blocksort.c +1094 -0
  96. data/ext/isomorfeus_ferret_ext/bzlib_compress.c +672 -0
  97. data/ext/isomorfeus_ferret_ext/bzlib_crctable.c +104 -0
  98. data/ext/isomorfeus_ferret_ext/bzlib_decompress.c +652 -0
  99. data/ext/isomorfeus_ferret_ext/bzlib_huffman.c +205 -0
  100. data/ext/isomorfeus_ferret_ext/bzlib_private.h +509 -0
  101. data/ext/isomorfeus_ferret_ext/bzlib_randtable.c +84 -0
  102. data/ext/isomorfeus_ferret_ext/fio_tmpfile.h +53 -53
  103. data/ext/isomorfeus_ferret_ext/frb_analysis.c +785 -1192
  104. data/ext/isomorfeus_ferret_ext/frb_index.c +513 -464
  105. data/ext/isomorfeus_ferret_ext/frb_qparser.c +48 -60
  106. data/ext/isomorfeus_ferret_ext/frb_search.c +1520 -1002
  107. data/ext/isomorfeus_ferret_ext/frb_store.c +96 -96
  108. data/ext/isomorfeus_ferret_ext/frb_threading.h +0 -1
  109. data/ext/isomorfeus_ferret_ext/frb_utils.c +147 -196
  110. data/ext/isomorfeus_ferret_ext/frt_analysis.c +695 -1090
  111. data/ext/isomorfeus_ferret_ext/frt_analysis.h +174 -170
  112. data/ext/isomorfeus_ferret_ext/frt_array.c +2 -4
  113. data/ext/isomorfeus_ferret_ext/frt_bitvector.c +9 -16
  114. data/ext/isomorfeus_ferret_ext/frt_bitvector.h +32 -81
  115. data/ext/isomorfeus_ferret_ext/frt_document.c +15 -20
  116. data/ext/isomorfeus_ferret_ext/frt_document.h +10 -9
  117. data/ext/isomorfeus_ferret_ext/frt_except.c +5 -12
  118. data/ext/isomorfeus_ferret_ext/frt_field_index.c +3 -3
  119. data/ext/isomorfeus_ferret_ext/frt_field_index.h +6 -7
  120. data/ext/isomorfeus_ferret_ext/frt_filter.c +35 -46
  121. data/ext/isomorfeus_ferret_ext/frt_fs_store.c +2 -0
  122. data/ext/isomorfeus_ferret_ext/frt_global.c +91 -200
  123. data/ext/isomorfeus_ferret_ext/frt_global.h +7 -18
  124. data/ext/isomorfeus_ferret_ext/frt_hash.c +1 -2
  125. data/ext/isomorfeus_ferret_ext/frt_ind.c +32 -35
  126. data/ext/isomorfeus_ferret_ext/frt_ind.h +9 -9
  127. data/ext/isomorfeus_ferret_ext/frt_index.c +714 -384
  128. data/ext/isomorfeus_ferret_ext/frt_index.h +274 -290
  129. data/ext/isomorfeus_ferret_ext/frt_lang.c +0 -2
  130. data/ext/isomorfeus_ferret_ext/frt_mempool.c +1 -2
  131. data/ext/isomorfeus_ferret_ext/frt_multimapper.c +4 -7
  132. data/ext/isomorfeus_ferret_ext/frt_q_boolean.c +68 -91
  133. data/ext/isomorfeus_ferret_ext/frt_q_const_score.c +35 -38
  134. data/ext/isomorfeus_ferret_ext/frt_q_filtered_query.c +53 -72
  135. data/ext/isomorfeus_ferret_ext/frt_q_fuzzy.c +25 -32
  136. data/ext/isomorfeus_ferret_ext/frt_q_match_all.c +21 -23
  137. data/ext/isomorfeus_ferret_ext/frt_q_multi_term.c +66 -103
  138. data/ext/isomorfeus_ferret_ext/frt_q_parser.c +207 -195
  139. data/ext/isomorfeus_ferret_ext/frt_q_phrase.c +20 -16
  140. data/ext/isomorfeus_ferret_ext/frt_q_prefix.c +17 -14
  141. data/ext/isomorfeus_ferret_ext/frt_q_range.c +102 -131
  142. data/ext/isomorfeus_ferret_ext/frt_q_span.c +179 -178
  143. data/ext/isomorfeus_ferret_ext/frt_q_term.c +47 -60
  144. data/ext/isomorfeus_ferret_ext/frt_q_wildcard.c +18 -16
  145. data/ext/isomorfeus_ferret_ext/frt_ram_store.c +46 -84
  146. data/ext/isomorfeus_ferret_ext/frt_search.c +105 -146
  147. data/ext/isomorfeus_ferret_ext/frt_search.h +331 -320
  148. data/ext/isomorfeus_ferret_ext/frt_similarity.c +5 -13
  149. data/ext/isomorfeus_ferret_ext/frt_similarity.h +7 -12
  150. data/ext/isomorfeus_ferret_ext/frt_sort.c +105 -149
  151. data/ext/isomorfeus_ferret_ext/frt_store.c +13 -7
  152. data/ext/isomorfeus_ferret_ext/frt_store.h +10 -2
  153. data/ext/isomorfeus_ferret_ext/frt_threading.h +0 -1
  154. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.c +22 -112
  155. data/ext/isomorfeus_ferret_ext/isomorfeus_ferret.h +2 -32
  156. data/ext/isomorfeus_ferret_ext/lz4.c +2495 -0
  157. data/ext/isomorfeus_ferret_ext/lz4.h +774 -0
  158. data/ext/isomorfeus_ferret_ext/lz4frame.c +1899 -0
  159. data/ext/isomorfeus_ferret_ext/lz4frame.h +623 -0
  160. data/ext/isomorfeus_ferret_ext/lz4hc.c +1615 -0
  161. data/ext/isomorfeus_ferret_ext/lz4hc.h +413 -0
  162. data/ext/isomorfeus_ferret_ext/lz4xxhash.c +1030 -0
  163. data/ext/isomorfeus_ferret_ext/lz4xxhash.h +328 -0
  164. data/ext/isomorfeus_ferret_ext/stem_modules.h +0 -86
  165. data/ext/isomorfeus_ferret_ext/test.c +0 -17
  166. data/ext/isomorfeus_ferret_ext/test_1710.c +11 -12
  167. data/ext/isomorfeus_ferret_ext/test_analysis.c +590 -583
  168. data/ext/isomorfeus_ferret_ext/test_compound_io.c +1 -1
  169. data/ext/isomorfeus_ferret_ext/test_document.c +19 -15
  170. data/ext/isomorfeus_ferret_ext/test_except.c +1 -2
  171. data/ext/isomorfeus_ferret_ext/test_fields.c +111 -100
  172. data/ext/isomorfeus_ferret_ext/test_file_deleter.c +10 -27
  173. data/ext/isomorfeus_ferret_ext/test_filter.c +11 -8
  174. data/ext/isomorfeus_ferret_ext/test_global.c +0 -46
  175. data/ext/isomorfeus_ferret_ext/test_hash.c +2 -2
  176. data/ext/isomorfeus_ferret_ext/test_hashset.c +1 -1
  177. data/ext/isomorfeus_ferret_ext/test_highlighter.c +15 -11
  178. data/ext/isomorfeus_ferret_ext/test_index.c +373 -363
  179. data/ext/isomorfeus_ferret_ext/test_q_const_score.c +5 -3
  180. data/ext/isomorfeus_ferret_ext/test_q_filtered.c +5 -3
  181. data/ext/isomorfeus_ferret_ext/test_q_fuzzy.c +13 -10
  182. data/ext/isomorfeus_ferret_ext/test_q_parser.c +45 -7
  183. data/ext/isomorfeus_ferret_ext/test_q_span.c +15 -12
  184. data/ext/isomorfeus_ferret_ext/test_ram_store.c +3 -3
  185. data/ext/isomorfeus_ferret_ext/test_search.c +60 -64
  186. data/ext/isomorfeus_ferret_ext/test_segments.c +5 -4
  187. data/ext/isomorfeus_ferret_ext/test_sort.c +17 -14
  188. data/ext/isomorfeus_ferret_ext/test_store.c +2 -0
  189. data/ext/isomorfeus_ferret_ext/test_term.c +3 -1
  190. data/ext/isomorfeus_ferret_ext/test_term_vectors.c +9 -10
  191. data/ext/isomorfeus_ferret_ext/test_test.c +1 -2
  192. data/ext/isomorfeus_ferret_ext/test_threading.c +9 -10
  193. data/ext/isomorfeus_ferret_ext/testhelper.c +1 -2
  194. data/lib/isomorfeus/ferret/version.rb +1 -1
  195. metadata +113 -58
  196. data/ext/isomorfeus_ferret_ext/email.rl +0 -21
  197. data/ext/isomorfeus_ferret_ext/frt_scanner.c +0 -900
  198. data/ext/isomorfeus_ferret_ext/frt_scanner.h +0 -28
  199. data/ext/isomorfeus_ferret_ext/frt_scanner_mb.c +0 -6706
  200. data/ext/isomorfeus_ferret_ext/frt_scanner_utf8.c +0 -4420
  201. data/ext/isomorfeus_ferret_ext/scanner.h +0 -28
  202. data/ext/isomorfeus_ferret_ext/scanner.in +0 -43
  203. data/ext/isomorfeus_ferret_ext/scanner.rl +0 -84
  204. data/ext/isomorfeus_ferret_ext/scanner_mb.rl +0 -200
  205. data/ext/isomorfeus_ferret_ext/scanner_utf8.rl +0 -85
  206. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.c +0 -1167
  207. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_basque.h +0 -6
  208. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.c +0 -1433
  209. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_catalan.h +0 -6
  210. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.c +0 -301
  211. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_danish.h +0 -6
  212. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.c +0 -590
  213. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_dutch.h +0 -6
  214. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.c +0 -1049
  215. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_english.h +0 -6
  216. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.c +0 -705
  217. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_finnish.h +0 -6
  218. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.c +0 -1239
  219. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_french.h +0 -6
  220. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.c +0 -477
  221. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_german.h +0 -6
  222. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.c +0 -1217
  223. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_hungarian.h +0 -7
  224. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.c +0 -394
  225. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_indonesian.h +0 -6
  226. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.c +0 -457
  227. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_irish.h +0 -6
  228. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.c +0 -1009
  229. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_italian.h +0 -6
  230. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.c +0 -259
  231. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_norwegian.h +0 -6
  232. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.c +0 -704
  233. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_porter.h +0 -6
  234. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.c +0 -948
  235. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_portuguese.h +0 -6
  236. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.c +0 -1028
  237. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_spanish.h +0 -6
  238. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.c +0 -275
  239. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_1_swedish.h +0 -6
  240. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.c +0 -849
  241. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_hungarian.h +0 -6
  242. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.c +0 -952
  243. data/ext/isomorfeus_ferret_ext/stem_ISO_8859_2_romanian.h +0 -6
  244. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.c +0 -669
  245. data/ext/isomorfeus_ferret_ext/stem_KOI8_R_russian.h +0 -6
  246. data/ext/isomorfeus_ferret_ext/stem_modules.txt +0 -63
  247. data/ext/isomorfeus_ferret_ext/uchar-ucs4.rl +0 -1854
  248. data/ext/isomorfeus_ferret_ext/uchar-utf8.rl +0 -1999
  249. data/ext/isomorfeus_ferret_ext/url.rl +0 -27
@@ -1,6 +0,0 @@
1
- /* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
2
-
3
- extern struct SN_env * french_ISO_8859_1_create_env(void);
4
- extern void french_ISO_8859_1_close_env(struct SN_env * z);
5
-
6
- extern int french_ISO_8859_1_stem(struct SN_env * z);
@@ -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
-
@@ -1,6 +0,0 @@
1
- /* Generated by Snowball 2.2.0 - https://snowballstem.org/ */
2
-
3
- extern struct SN_env * german_ISO_8859_1_create_env(void);
4
- extern void german_ISO_8859_1_close_env(struct SN_env * z);
5
-
6
- extern int german_ISO_8859_1_stem(struct SN_env * z);