rroonga 2.0.8-x86-mingw32 → 2.1.0-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (389) hide show
  1. data/README.textile +2 -2
  2. data/bin/groonga-index-dump +47 -0
  3. data/doc/text/news.textile +733 -0
  4. data/doc/text/tutorial.textile +535 -0
  5. data/example/bookmark.rb +1 -1
  6. data/ext/groonga/rb-grn-database.c +21 -24
  7. data/ext/groonga/rb-grn-double-array-trie.c +50 -58
  8. data/ext/groonga/rb-grn-exception.c +18 -1
  9. data/ext/groonga/rb-grn-hash.c +18 -3
  10. data/ext/groonga/rb-grn-index-column.c +50 -2
  11. data/ext/groonga/rb-grn-normalizer.c +83 -0
  12. data/ext/groonga/rb-grn-object.c +18 -14
  13. data/ext/groonga/rb-grn-patricia-trie.c +17 -2
  14. data/ext/groonga/rb-grn-query-logger.c +263 -0
  15. data/ext/groonga/rb-grn-snippet.c +6 -0
  16. data/ext/groonga/rb-grn-table-key-support.c +204 -13
  17. data/ext/groonga/rb-grn-table.c +124 -46
  18. data/ext/groonga/rb-grn.h +14 -3
  19. data/ext/groonga/rb-groonga.c +2 -0
  20. data/lib/1.8/groonga.so +0 -0
  21. data/lib/1.9/groonga.so +0 -0
  22. data/lib/groonga.rb +2 -1
  23. data/lib/groonga/database.rb +7 -0
  24. data/lib/groonga/dumper.rb +21 -2
  25. data/lib/groonga/index-column.rb +170 -0
  26. data/lib/groonga/query-logger.rb +129 -0
  27. data/lib/groonga/record.rb +32 -8
  28. data/lib/groonga/schema.rb +231 -288
  29. data/rroonga-build.rb +2 -2
  30. data/rroonga.gemspec +11 -7
  31. data/test/groonga-test-utils.rb +18 -6
  32. data/test/test-hash.rb +49 -20
  33. data/test/test-index-cursor.rb +4 -4
  34. data/{Gemfile → test/test-normalizer.rb} +9 -5
  35. data/test/test-pagination.rb +1 -1
  36. data/test/test-patricia-trie.rb +8 -0
  37. data/test/test-schema.rb +16 -13
  38. data/test/test-snippet.rb +5 -0
  39. data/test/test-table.rb +24 -12
  40. data/test/test-view.rb +0 -1
  41. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  42. data/vendor/local/bin/groonga.exe +0 -0
  43. data/vendor/local/bin/libgroonga-0.dll +0 -0
  44. data/vendor/local/bin/libmecab-1.dll +0 -0
  45. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  46. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  47. data/vendor/local/bin/mecab-config +2 -2
  48. data/vendor/local/bin/mecab.exe +0 -0
  49. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  50. data/vendor/local/include/groonga/groonga.h +25 -14
  51. data/vendor/local/include/groonga/groonga/normalizer.h +55 -0
  52. data/vendor/local/include/groonga/groonga/tokenizer.h +33 -13
  53. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  54. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  55. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  56. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  57. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  58. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  59. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  60. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  61. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  62. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  63. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  64. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  65. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  66. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  67. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  68. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  69. data/vendor/local/lib/libgroonga.a +0 -0
  70. data/vendor/local/lib/libgroonga.dll.a +0 -0
  71. data/vendor/local/lib/libgroonga.la +2 -2
  72. data/vendor/local/lib/libmecab.a +0 -0
  73. data/vendor/local/lib/libmecab.dll.a +0 -0
  74. data/vendor/local/lib/libmecab.la +1 -1
  75. data/vendor/local/lib/libmsgpack.a +0 -0
  76. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  77. data/vendor/local/lib/libmsgpack.la +1 -1
  78. data/vendor/local/lib/libmsgpackc.a +0 -0
  79. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  80. data/vendor/local/lib/libmsgpackc.la +1 -1
  81. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  82. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  83. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  84. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  85. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  86. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  87. data/vendor/local/sbin/groonga-httpd-restart +9 -3
  88. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  89. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
  90. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  91. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  92. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  93. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  94. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  95. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -42
  96. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +16 -16
  97. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +59 -0
  98. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +129 -0
  99. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +0 -12
  100. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +3 -3
  101. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  102. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  103. data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
  104. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
  105. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
  106. data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
  107. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
  108. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +5 -5
  109. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
  110. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
  111. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
  112. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
  113. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
  114. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  115. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
  116. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  117. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +6 -6
  118. data/vendor/local/share/doc/groonga/en/html/index.html +12 -12
  119. data/vendor/local/share/doc/groonga/en/html/install.html +10 -11
  120. data/vendor/local/share/doc/groonga/en/html/install/centos.html +11 -11
  121. data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
  122. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +9 -9
  123. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
  124. data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
  125. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
  126. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +16 -53
  127. data/vendor/local/share/doc/groonga/en/html/install/windows.html +16 -16
  128. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  129. data/vendor/local/share/doc/groonga/en/html/news.html +146 -82
  130. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
  131. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
  132. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
  133. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
  134. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  135. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  136. data/vendor/local/share/doc/groonga/en/html/reference.html +6 -6
  137. data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
  138. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
  139. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
  140. data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
  141. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
  142. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
  143. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
  144. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
  145. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
  146. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
  147. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
  148. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
  149. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
  150. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
  151. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
  152. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
  153. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
  154. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
  155. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
  156. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
  157. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
  158. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
  159. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
  160. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +5 -5
  161. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
  162. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +5 -5
  163. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
  164. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
  165. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
  166. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
  167. data/vendor/local/share/doc/groonga/en/html/reference/commands/view_add.html +5 -5
  168. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
  169. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
  170. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
  171. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
  172. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
  173. data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +5 -5
  174. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +5 -5
  175. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
  176. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  177. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
  178. data/vendor/local/share/doc/groonga/en/html/reference/function.html +5 -5
  179. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
  180. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
  181. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
  182. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +5 -5
  183. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +5 -5
  184. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +5 -5
  185. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +5 -5
  186. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
  187. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
  188. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
  189. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +5 -5
  190. data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
  191. data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
  192. data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
  193. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
  194. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
  195. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/reference/type.html +5 -5
  197. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  198. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  199. data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
  200. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
  201. data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
  202. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
  203. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
  204. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
  205. data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
  206. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
  207. data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
  208. data/vendor/local/share/doc/groonga/en/html/suggest.html +6 -6
  209. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
  210. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
  211. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
  212. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
  213. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  214. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  215. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  216. data/vendor/local/share/doc/groonga/en/html/tutorial.html +8 -7
  217. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
  218. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
  219. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
  220. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +5 -5
  221. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
  222. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +265 -7
  223. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
  224. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
  225. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
  226. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
  227. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
  228. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  229. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
  230. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  231. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  232. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  233. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  234. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  235. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -42
  236. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +16 -16
  237. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +59 -0
  238. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +129 -0
  239. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +0 -12
  240. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  241. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  242. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  243. data/vendor/local/share/doc/groonga/ja/html/contribution.html +9 -9
  244. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
  245. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
  246. data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
  247. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
  248. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +5 -5
  249. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
  250. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  251. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  252. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
  253. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
  254. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  255. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
  256. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  257. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +6 -6
  258. data/vendor/local/share/doc/groonga/ja/html/index.html +12 -12
  259. data/vendor/local/share/doc/groonga/ja/html/install.html +10 -11
  260. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +11 -11
  261. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +8 -8
  262. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
  263. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
  264. data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
  265. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
  266. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +16 -51
  267. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +16 -16
  268. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  269. data/vendor/local/share/doc/groonga/ja/html/news.html +126 -82
  270. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
  271. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
  272. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
  273. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
  274. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  275. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  276. data/vendor/local/share/doc/groonga/ja/html/reference.html +6 -6
  277. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
  278. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
  279. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
  280. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
  281. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
  282. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
  283. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
  284. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
  285. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
  286. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
  287. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
  288. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
  289. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
  290. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
  291. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
  292. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
  293. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
  294. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
  295. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
  296. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
  297. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
  298. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
  299. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
  300. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +5 -5
  301. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
  302. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +5 -5
  303. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
  304. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +5 -5
  305. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
  306. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
  307. data/vendor/local/share/doc/groonga/ja/html/reference/commands/view_add.html +5 -5
  308. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
  309. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
  310. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
  311. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
  312. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
  313. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
  314. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +5 -5
  315. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
  316. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  317. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
  318. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +5 -5
  319. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
  320. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +5 -5
  321. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
  322. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +5 -5
  323. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +5 -5
  324. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +5 -5
  325. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +5 -5
  326. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +5 -5
  327. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +5 -5
  328. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +5 -5
  329. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +5 -5
  330. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
  331. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
  332. data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
  333. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
  334. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +5 -5
  335. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
  336. data/vendor/local/share/doc/groonga/ja/html/reference/type.html +5 -5
  337. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  338. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  339. data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
  340. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
  341. data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
  342. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +5 -5
  343. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
  344. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
  345. data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
  346. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
  347. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
  348. data/vendor/local/share/doc/groonga/ja/html/suggest.html +6 -6
  349. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
  350. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
  351. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
  352. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
  353. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  354. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  355. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  356. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +8 -7
  357. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
  358. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
  359. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
  360. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +5 -5
  361. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
  362. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +259 -7
  363. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
  364. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
  365. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
  366. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
  367. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
  368. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data-with-three-relationship.log +23 -0
  369. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data.log +16 -0
  370. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema-with-three-relationship.log +30 -0
  371. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema.log +20 -0
  372. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select-with-three-relationship.log +86 -0
  373. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select.log +41 -0
  374. data/vendor/local/share/doc/groonga/source/install/centos.txt +6 -6
  375. data/vendor/local/share/doc/groonga/source/install/debian.txt +3 -3
  376. data/vendor/local/share/doc/groonga/source/install/fedora.txt +4 -4
  377. data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +3 -3
  378. data/vendor/local/share/doc/groonga/source/install/others.txt +3 -3
  379. data/vendor/local/share/doc/groonga/source/install/solaris.txt +3 -3
  380. data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +3 -42
  381. data/vendor/local/share/doc/groonga/source/install/windows.txt +16 -16
  382. data/vendor/local/share/doc/groonga/source/news.txt +59 -0
  383. data/vendor/local/share/doc/groonga/source/tutorial/match_columns.txt +129 -0
  384. data/vendor/local/share/man/ja/man1/groonga.1 +338 -93
  385. data/vendor/local/share/man/man1/groonga.1 +341 -92
  386. metadata +1258 -1242
  387. data/AUTHORS +0 -5
  388. data/Rakefile +0 -203
  389. data/bin/groonga-query-log-extract +0 -117
@@ -143,7 +143,7 @@ rb_grn_table_initialize (VALUE self)
143
143
  return Qnil;
144
144
  }
145
145
 
146
- static VALUE
146
+ VALUE
147
147
  rb_grn_table_inspect_content (VALUE self, VALUE inspected)
148
148
  {
149
149
  RbGrnTable *rb_grn_table;
@@ -165,25 +165,6 @@ rb_grn_table_inspect_content (VALUE self, VALUE inspected)
165
165
  if (!context)
166
166
  return inspected;
167
167
 
168
- if (table->header.type != GRN_TABLE_NO_KEY) {
169
- grn_obj value;
170
- grn_encoding encoding;
171
-
172
- rb_str_cat2(inspected, ", ");
173
- rb_str_cat2(inspected, "encoding: <");
174
- GRN_OBJ_INIT(&value, GRN_BULK, 0, GRN_ID_NIL);
175
- grn_obj_get_info(context, table, GRN_INFO_ENCODING, &value);
176
- encoding = *((grn_encoding *)GRN_BULK_HEAD(&value));
177
- grn_obj_unlink(context, &value);
178
-
179
- if (context->rc == GRN_SUCCESS)
180
- rb_str_concat(inspected, rb_inspect(GRNENCODING2RVAL(encoding)));
181
- else
182
- rb_str_cat2(inspected, "invalid");
183
-
184
- rb_str_cat2(inspected, ">");
185
- }
186
-
187
168
  rb_str_cat2(inspected, ", ");
188
169
  rb_str_cat2(inspected, "size: <");
189
170
  {
@@ -949,7 +930,6 @@ rb_grn_table_each (int argc, VALUE *argv, VALUE self)
949
930
  RbGrnTable *rb_table;
950
931
  RbGrnObject *rb_grn_object;
951
932
  grn_ctx *context = NULL;
952
- grn_obj *table;
953
933
  grn_table_cursor *cursor;
954
934
  VALUE rb_cursor;
955
935
  grn_id id;
@@ -969,13 +949,8 @@ rb_grn_table_each (int argc, VALUE *argv, VALUE self)
969
949
  return Qnil;
970
950
  }
971
951
 
972
- /*
973
- * テーブルの _id_ に対応するレコードを削除する。
974
- *
975
- * @overload delete(id)
976
- */
977
952
  VALUE
978
- rb_grn_table_delete (VALUE self, VALUE rb_id)
953
+ rb_grn_table_delete_by_id (VALUE self, VALUE rb_id)
979
954
  {
980
955
  grn_ctx *context = NULL;
981
956
  grn_obj *table;
@@ -994,6 +969,97 @@ rb_grn_table_delete (VALUE self, VALUE rb_id)
994
969
  return Qnil;
995
970
  }
996
971
 
972
+ VALUE
973
+ rb_grn_table_delete_by_expression (VALUE self)
974
+ {
975
+ grn_ctx *context = NULL;
976
+ grn_obj *table;
977
+ VALUE rb_builder, rb_expression;
978
+ grn_obj *needless_records, *expression;
979
+ grn_operator operator = GRN_OP_OR;
980
+ grn_table_cursor *cursor;
981
+
982
+ rb_grn_table_deconstruct(SELF(self), &table, &context,
983
+ NULL, NULL,
984
+ NULL, NULL, NULL,
985
+ NULL);
986
+
987
+ rb_builder = rb_grn_record_expression_builder_new(self, Qnil);
988
+ rb_expression = rb_grn_record_expression_builder_build(rb_builder);
989
+ rb_grn_object_deconstruct(RB_GRN_OBJECT(DATA_PTR(rb_expression)),
990
+ &expression, NULL,
991
+ NULL, NULL, NULL, NULL);
992
+
993
+ needless_records =
994
+ grn_table_create(context, NULL, 0, NULL,
995
+ GRN_TABLE_HASH_KEY | GRN_OBJ_WITH_SUBREC,
996
+ table,
997
+ NULL);
998
+ if (!needless_records) {
999
+ rb_grn_context_check(context, self);
1000
+ rb_grn_rc_check(GRN_NO_MEMORY_AVAILABLE, self);
1001
+ }
1002
+
1003
+ grn_table_select(context, table, expression, needless_records, operator);
1004
+ cursor = grn_table_cursor_open(context, needless_records,
1005
+ NULL, 0,
1006
+ NULL, 0,
1007
+ 0, -1, 0);
1008
+ if (cursor) {
1009
+ while (grn_table_cursor_next(context, cursor)) {
1010
+ grn_id *id;
1011
+ grn_table_cursor_get_key(context, cursor, (void **)&id);
1012
+ grn_table_delete_by_id(context, table, *id);
1013
+ }
1014
+ grn_table_cursor_close(context, cursor);
1015
+ }
1016
+ grn_obj_unlink(context, needless_records);
1017
+
1018
+ return Qnil;
1019
+ }
1020
+
1021
+ /*
1022
+ * @overload delete(id)
1023
+ * Delete a record that has ID @id@.
1024
+ *
1025
+ * @param id [Integer] The ID of delete target record.
1026
+ *
1027
+ * @return void
1028
+ *
1029
+ * @overload delete
1030
+ * Delete records that are matched with the given condition
1031
+ * specified block.
1032
+ *
1033
+ * @example Delete users that are younger than 20.
1034
+ * users.delete do |recod|
1035
+ * record.age < 20
1036
+ * end
1037
+ *
1038
+ * @yield [record]
1039
+ * TODO: See #select.
1040
+ * @yieldparam [Groonga::RecodExpressionBuilder] record
1041
+ * TODO: See #select.
1042
+ * @yieldreturn [Groonga::ExpressionBuilder]
1043
+ * TODO: See #select.
1044
+ *
1045
+ * @return void
1046
+ */
1047
+ static VALUE
1048
+ rb_grn_table_delete (int argc, VALUE *argv, VALUE self)
1049
+ {
1050
+ VALUE rb_id;
1051
+
1052
+ rb_scan_args(argc, argv, "01", &rb_id);
1053
+
1054
+ if (rb_block_given_p()) {
1055
+ rb_grn_table_delete_by_expression(self);
1056
+ } else {
1057
+ rb_grn_table_delete_by_id(self, rb_id);
1058
+ }
1059
+
1060
+ return Qnil;
1061
+ }
1062
+
997
1063
  /*
998
1064
  * テーブルに登録されているレコードを _keys_ で指定されたルー
999
1065
  * ルに従ってソートしたレコードの配列を返す。
@@ -1047,7 +1113,35 @@ rb_grn_table_delete (VALUE self, VALUE rb_id)
1047
1113
  * ソートされたレコードのうち、 _:limit_ 件のみを取り出す。
1048
1114
  * 省略された場合または-1が指定された場合は、全件が指定され
1049
1115
  * たものとみなす。
1050
- * @return [::Array<Groonga::Record>]
1116
+ *
1117
+ * @return [Groonga::Array] The sorted result. You can get the
1118
+ * original record by {#value} method of a record in the sorted
1119
+ * result. Normally, you doesn't need to get the original record
1120
+ * because you can access via column name method:
1121
+ *
1122
+ * <pre>
1123
+ * !!!ruby
1124
+ * names_recommended_access = sorted_users.collect do |sorted_user|
1125
+ * sorted_user.name
1126
+ * end
1127
+ * names_manually_access = sorted_users.collect do |sorted_user|
1128
+ * sorted_user.value.name
1129
+ * end
1130
+ * names_recommended_access == names_manually_access # => true
1131
+ * </pre>
1132
+ *
1133
+ * If you want to access the key of the original record, you need to
1134
+ * get the original record.
1135
+ *
1136
+ * @note The return value is changed to {Groonga::Array} from
1137
+ * {::Array} since 2.1.0. If you want to get before 2.1.0 style
1138
+ * result, use the following code:
1139
+ *
1140
+ * @example Describe incompatible API change
1141
+ * result_since_2_1_0 = table.sort(["sort_key"])
1142
+ * result_before_2_1_0 = result_since_2_1_0.collect do |record|
1143
+ * record.value
1144
+ * end
1051
1145
  */
1052
1146
  static VALUE
1053
1147
  rb_grn_table_sort (int argc, VALUE *argv, VALUE self)
@@ -1061,8 +1155,6 @@ rb_grn_table_sort (int argc, VALUE *argv, VALUE self)
1061
1155
  VALUE rb_keys, options;
1062
1156
  VALUE rb_offset, rb_limit;
1063
1157
  VALUE *rb_sort_keys;
1064
- grn_table_cursor *cursor;
1065
- VALUE rb_result;
1066
1158
  VALUE exception;
1067
1159
 
1068
1160
  rb_grn_table_deconstruct(SELF(self), &table, &context,
@@ -1150,21 +1242,7 @@ rb_grn_table_sort (int argc, VALUE *argv, VALUE self)
1150
1242
  rb_exc_raise(exception);
1151
1243
  }
1152
1244
 
1153
- rb_result = rb_ary_new();
1154
- cursor = grn_table_cursor_open(context, result, NULL, 0, NULL, 0,
1155
- 0, -1, GRN_CURSOR_ASCENDING);
1156
- while (grn_table_cursor_next(context, cursor) != GRN_ID_NIL) {
1157
- void *value;
1158
- grn_id *id;
1159
-
1160
- grn_table_cursor_get_value(context, cursor, &value);
1161
- id = value;
1162
- rb_ary_push(rb_result, rb_grn_record_new(self, *id, Qnil));
1163
- }
1164
- grn_table_cursor_close(context, cursor);
1165
- grn_obj_unlink(context, result);
1166
-
1167
- return rb_result;
1245
+ return GRNOBJECT2RVAL(Qnil, context, result, GRN_TRUE);
1168
1246
  }
1169
1247
 
1170
1248
  /*
@@ -2149,7 +2227,7 @@ rb_grn_init_table (VALUE mGrn)
2149
2227
 
2150
2228
  rb_define_method(rb_cGrnTable, "each", rb_grn_table_each, -1);
2151
2229
 
2152
- rb_define_method(rb_cGrnTable, "delete", rb_grn_table_delete, 1);
2230
+ rb_define_method(rb_cGrnTable, "delete", rb_grn_table_delete, -1);
2153
2231
 
2154
2232
  rb_define_method(rb_cGrnTable, "sort", rb_grn_table_sort, -1);
2155
2233
  rb_define_method(rb_cGrnTable, "group", rb_grn_table_group, -1);
data/ext/groonga/rb-grn.h CHANGED
@@ -75,8 +75,8 @@ RB_GRN_BEGIN_DECLS
75
75
  #endif
76
76
 
77
77
  #define RB_GRN_MAJOR_VERSION 2
78
- #define RB_GRN_MINOR_VERSION 0
79
- #define RB_GRN_MICRO_VERSION 8
78
+ #define RB_GRN_MINOR_VERSION 1
79
+ #define RB_GRN_MICRO_VERSION 0
80
80
 
81
81
  #define RB_GRN_QUERY_DEFAULT_MAX_EXPRESSIONS 32
82
82
 
@@ -252,6 +252,7 @@ RB_GRN_VAR VALUE rb_cGrnExpression;
252
252
  RB_GRN_VAR VALUE rb_cGrnRecordExpressionBuilder;
253
253
  RB_GRN_VAR VALUE rb_cGrnColumnExpressionBuilder;
254
254
  RB_GRN_VAR VALUE rb_cGrnPlugin;
255
+ RB_GRN_VAR VALUE rb_cGrnNormalizer;
255
256
 
256
257
  void rb_grn_init_utils (VALUE mGrn);
257
258
  void rb_grn_init_exception (VALUE mGrn);
@@ -292,8 +293,10 @@ void rb_grn_init_operator (VALUE mGrn);
292
293
  void rb_grn_init_expression (VALUE mGrn);
293
294
  void rb_grn_init_expression_builder (VALUE mGrn);
294
295
  void rb_grn_init_logger (VALUE mGrn);
296
+ void rb_grn_init_query_logger (VALUE mGrn);
295
297
  void rb_grn_init_snippet (VALUE mGrn);
296
298
  void rb_grn_init_plugin (VALUE mGrn);
299
+ void rb_grn_init_normalizer (VALUE mGrn);
297
300
 
298
301
  VALUE rb_grn_rc_to_exception (grn_rc rc);
299
302
  const char *rb_grn_rc_to_message (grn_rc rc);
@@ -360,6 +363,10 @@ VALUE rb_grn_object_inspect_object (VALUE inspected,
360
363
  VALUE rb_grn_object_inspect_object_content (VALUE inspected,
361
364
  grn_ctx *context,
362
365
  grn_obj *object);
366
+ VALUE rb_grn_object_inspect_object_content_name
367
+ (VALUE inspected,
368
+ grn_ctx *context,
369
+ grn_obj *object);
363
370
  VALUE rb_grn_object_inspect_header (VALUE object,
364
371
  VALUE inspected);
365
372
  VALUE rb_grn_object_inspect_content (VALUE object,
@@ -398,8 +405,9 @@ void rb_grn_table_deconstruct (RbGrnTable *rb_grn_table,
398
405
  grn_obj **range,
399
406
  VALUE *columns);
400
407
 
401
- VALUE rb_grn_table_delete (VALUE self,
408
+ VALUE rb_grn_table_delete_by_id (VALUE self,
402
409
  VALUE rb_id);
410
+ VALUE rb_grn_table_delete_by_expression (VALUE self);
403
411
  VALUE rb_grn_table_array_reference (VALUE self,
404
412
  VALUE rb_id);
405
413
  VALUE rb_grn_table_array_set (VALUE self,
@@ -428,6 +436,8 @@ VALUE rb_grn_table_set_column_value (VALUE self,
428
436
  VALUE rb_id,
429
437
  VALUE rb_name,
430
438
  VALUE rb_value);
439
+ VALUE rb_grn_table_inspect_content (VALUE object,
440
+ VALUE inspected);
431
441
 
432
442
  grn_ctx *rb_grn_table_cursor_ensure_context (VALUE cursor,
433
443
  VALUE *rb_context);
@@ -596,6 +606,7 @@ VALUE rb_grn_column_expression_builder_build
596
606
  #define RVAL2GRNOPERATOR(object) (rb_grn_operator_from_ruby_object(object))
597
607
 
598
608
  #define RVAL2GRNLOGGER(object) (rb_grn_logger_from_ruby_object(object))
609
+ #define RVAL2GRNQUERYLOGGER(object) (rb_grn_query_logger_from_ruby_object(object))
599
610
 
600
611
  #define RVAL2GRNBULK(object, context, bulk) \
601
612
  (rb_grn_bulk_from_ruby_object(object, context, bulk))
@@ -144,6 +144,8 @@ Init_groonga (void)
144
144
  rb_grn_init_expression(mGrn);
145
145
  rb_grn_init_expression_builder(mGrn);
146
146
  rb_grn_init_logger(mGrn);
147
+ rb_grn_init_query_logger(mGrn);
147
148
  rb_grn_init_snippet(mGrn);
148
149
  rb_grn_init_plugin(mGrn);
150
+ rb_grn_init_normalizer(mGrn);
149
151
  }
data/lib/1.8/groonga.so CHANGED
Binary file
data/lib/1.9/groonga.so CHANGED
Binary file
data/lib/groonga.rb CHANGED
@@ -93,8 +93,9 @@ end
93
93
  require 'groonga/context'
94
94
  require 'groonga/database'
95
95
  require 'groonga/patricia-trie'
96
+ require 'groonga/index-column'
96
97
  require 'groonga/dumper'
97
98
  require 'groonga/schema'
98
99
  require 'groonga/pagination'
99
- # require 'groonga/query-log'
100
100
  require 'groonga/grntest-log'
101
+ require 'groonga/query-logger'
@@ -23,5 +23,12 @@ module Groonga
23
23
  object.is_a?(Groonga::Table)
24
24
  end
25
25
  end
26
+
27
+ def dump_index(output_directory)
28
+ each do |object|
29
+ next unless object.is_a?(Groonga::IndexColumn)
30
+ object.dump(output_directory)
31
+ end
32
+ end
26
33
  end
27
34
  end
@@ -340,6 +340,17 @@ module Groonga
340
340
  change_table_footer(table)
341
341
  @table_defined = true
342
342
  end
343
+
344
+ def normalizer_name(table)
345
+ return nil unless table.domain
346
+ normalizer = table.normalizer
347
+ return nil if normalizer.nil?
348
+ normalizer.name
349
+ end
350
+
351
+ def default_normalizer?(normalizer_name)
352
+ normalizer_name == "NormalizerAuto"
353
+ end
343
354
  end
344
355
 
345
356
  # @private
@@ -347,6 +358,7 @@ module Groonga
347
358
  private
348
359
  def create_table_header(table)
349
360
  parameters = []
361
+ _normalizer_name = normalizer_name(table)
350
362
  unless table.is_a?(Groonga::Array)
351
363
  case table
352
364
  when Groonga::Hash
@@ -356,7 +368,7 @@ module Groonga
356
368
  end
357
369
  if table.domain
358
370
  parameters << ":key_type => #{table.domain.name.dump}"
359
- if table.normalize_key?
371
+ if default_normalizer?(_normalizer_name)
360
372
  parameters << ":key_normalize => true"
361
373
  end
362
374
  end
@@ -364,6 +376,9 @@ module Groonga
364
376
  if default_tokenizer
365
377
  parameters << ":default_tokenizer => #{default_tokenizer.name.dump}"
366
378
  end
379
+ if _normalizer_name and not default_normalizer?(_normalizer_name)
380
+ parameters << ":normalizer => #{_normalizer_name.dump}"
381
+ end
367
382
  end
368
383
  parameters << ":force => true"
369
384
  parameters.unshift("")
@@ -475,6 +490,7 @@ module Groonga
475
490
  def create_table_header(table)
476
491
  parameters = []
477
492
  flags = []
493
+ _normalizer_name = normalizer_name(table)
478
494
  case table
479
495
  when Groonga::Array
480
496
  flags << "TABLE_NO_KEY"
@@ -484,7 +500,7 @@ module Groonga
484
500
  flags << "TABLE_PAT_KEY"
485
501
  end
486
502
  if table.domain
487
- flags << "KEY_NORMALIZE" if table.normalize_key?
503
+ flags << "KEY_NORMALIZE" if default_normalizer?(_normalizer_name)
488
504
  if table.is_a?(Groonga::PatriciaTrie) and table.register_key_with_sis?
489
505
  flags << "KEY_WITH_SIS"
490
506
  end
@@ -502,6 +518,9 @@ module Groonga
502
518
  parameters << "--default_tokenizer #{default_tokenizer.name}"
503
519
  end
504
520
  end
521
+ if _normalizer_name and not default_normalizer?(_normalizer_name)
522
+ parameters << "--normalizer #{_normalizer_name}"
523
+ end
505
524
  write("table_create #{table.name} #{parameters.join(' ')}\n")
506
525
  end
507
526
 
@@ -0,0 +1,170 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com>
4
+ #
5
+ # This library is free software; you can redistribute it and/or
6
+ # modify it under the terms of the GNU Lesser General Public
7
+ # License version 2.1 as published by the Free Software Foundation.
8
+ #
9
+ # This library is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ # Lesser General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU Lesser General Public
15
+ # License along with this library; if not, write to the Free Software
16
+ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
+
18
+ require "fileutils"
19
+ require "cgi"
20
+
21
+ module Groonga
22
+ class IndexColumn
23
+ def dump(output_directory)
24
+ dumper = IndexColumnDumper.new(self, output_directory)
25
+ dumper.dump
26
+ end
27
+ end
28
+
29
+ class IndexColumnDumper
30
+ def initialize(column, output_directory)
31
+ @column = column
32
+ @output_directory = output_directory
33
+ @sources = @column.sources
34
+ end
35
+
36
+ def dump
37
+ dump_indexes
38
+ end
39
+
40
+ private
41
+ def dump_indexes
42
+ @column.table.open_cursor do |table_cursor|
43
+ @column.open_cursor(table_cursor) do |cursor|
44
+ postings = []
45
+ cursor.each do |posting|
46
+ if postings.empty?
47
+ postings << posting
48
+ next
49
+ end
50
+
51
+ current_term_posting = postings.first
52
+ unless same_term_posting?(current_term_posting, posting)
53
+ dump_postings(postings)
54
+ postings.clear
55
+ end
56
+
57
+ postings << posting
58
+ end
59
+ dump_postings(postings)
60
+ end
61
+ end
62
+ end
63
+
64
+ def same_term_posting?(posting1, posting2)
65
+ posting1.term_id == posting2.term_id
66
+ end
67
+
68
+ def dump_file_info(posting)
69
+ items = [
70
+ "index: #{@column.name}",
71
+ "term: <#{posting.term.key}>",
72
+ "domain: #{@column.domain.name}",
73
+ "range: #{@column.range.name}",
74
+ "have_section: #{@column.with_section?}",
75
+ "have_weight: #{@column.with_weight?}",
76
+ "have_position: #{@column.with_position?}",
77
+ ]
78
+ info = items.join("\t")
79
+ @output.write("#{info}\n")
80
+ end
81
+
82
+ def dump_posting_header
83
+ header_items = [
84
+ "weight",
85
+ "position",
86
+ "term_frequency",
87
+ "record",
88
+ ]
89
+ header = header_items.join("\t")
90
+ @output.write(" #{header}\n")
91
+ end
92
+
93
+ def encode_term(term)
94
+ CGI.escape(term.to_s)
95
+ end
96
+
97
+ def dump_postings(postings)
98
+ return if postings.empty?
99
+
100
+ distinctive_posting = postings.first
101
+ term = distinctive_posting.term.key
102
+ encoded_term = encode_term(term)
103
+ output_dir = File.join(@output_directory, @column.name)
104
+ output_path = File.join(output_dir, "#{encoded_term}.dump")
105
+ FileUtils.mkdir_p(output_dir)
106
+ File.open(output_path, "w") do |output|
107
+ @output = output
108
+ dump_file_info(distinctive_posting)
109
+ dump_posting_header
110
+ sorted_postings = postings.sort_by do |posting|
111
+ [source_column_name(posting), record_key(posting), posting.position]
112
+ end
113
+ sorted_postings.each do |posting|
114
+ dump_posting(posting)
115
+ end
116
+ end
117
+ end
118
+
119
+ def dump_posting(posting)
120
+ found_record = "#{posting.table.name}[#{posting.record.record_id}]"
121
+ posting_info_items = [
122
+ "#{posting.weight}",
123
+ "#{posting.position}",
124
+ "#{posting.term_frequency}",
125
+ "#{found_record}.#{source_column_name(posting)}",
126
+ ]
127
+ posting_info = posting_info_items.join("\t")
128
+ @output.write(" #{posting_info}\n")
129
+ end
130
+
131
+ def term(posting)
132
+ posting.term.key
133
+ end
134
+
135
+ def record_key(posting)
136
+ posting.record.key || default_key(posting)
137
+ end
138
+
139
+ def default_key(posting)
140
+ type = posting.table.domain
141
+ return 0 if type.is_a?(Groonga::Table)
142
+
143
+ case type.name
144
+ when "ShortText", "Text", "LongText"
145
+ ""
146
+ when "TokyoGeoPoint"
147
+ Groonga::TokyoGeoPoint.new(0, 0)
148
+ when "WGS84GeoPoint"
149
+ Groonga::WGS84GeoPoint.new(0, 0)
150
+ when "Bool"
151
+ true
152
+ when "Time"
153
+ Time.at(0)
154
+ else
155
+ 0
156
+ end
157
+ end
158
+
159
+ def source_column_name(posting)
160
+ source = @sources[posting.section_id - 1]
161
+ if source.nil?
162
+ "<invalid section: #{posting.section_id}>"
163
+ elsif source.is_a?(Groonga::Table)
164
+ "_key"
165
+ else
166
+ source.local_name
167
+ end
168
+ end
169
+ end
170
+ end