metry 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (377) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +376 -0
  3. data/README.txt +62 -0
  4. data/Rakefile +23 -0
  5. data/TODO +10 -0
  6. data/example/example.rb +22 -0
  7. data/features/app_tracking.feature +11 -0
  8. data/features/basic_tracking.feature +88 -0
  9. data/features/sample_application.feature +12 -0
  10. data/features/step_definitions/tracking.rb +35 -0
  11. data/features/step_definitions/web.rb +31 -0
  12. data/features/support/env.rb +22 -0
  13. data/lib/metry.rb +19 -0
  14. data/lib/metry/experiment.rb +25 -0
  15. data/lib/metry/memory.rb +27 -0
  16. data/lib/metry/rack/tracking.rb +51 -0
  17. data/lib/metry/tokyo.rb +153 -0
  18. data/radiant/example/CHANGELOG +611 -0
  19. data/radiant/example/CONTRIBUTORS +168 -0
  20. data/radiant/example/INSTALL +38 -0
  21. data/radiant/example/LICENSE +21 -0
  22. data/radiant/example/README +60 -0
  23. data/radiant/example/Rakefile +21 -0
  24. data/radiant/example/config/boot.rb +161 -0
  25. data/radiant/example/config/database.yml +20 -0
  26. data/radiant/example/config/environment.rb +83 -0
  27. data/radiant/example/config/environments/cucumber.rb +18 -0
  28. data/radiant/example/config/environments/development.rb +17 -0
  29. data/radiant/example/config/environments/production.rb +19 -0
  30. data/radiant/example/config/environments/test.rb +36 -0
  31. data/radiant/example/config/routes.rb +1 -0
  32. data/radiant/example/db/schema.rb +112 -0
  33. data/radiant/example/features/metry.feature +139 -0
  34. data/radiant/example/features/step_definitions/experiments.rb +12 -0
  35. data/radiant/example/features/step_definitions/radiant.rb +14 -0
  36. data/radiant/example/features/step_definitions/tracking.rb +35 -0
  37. data/radiant/example/features/step_definitions/web.rb +22 -0
  38. data/radiant/example/features/support/env.rb +52 -0
  39. data/radiant/example/public/.htaccess +40 -0
  40. data/radiant/example/public/404.html +8 -0
  41. data/radiant/example/public/500.html +8 -0
  42. data/radiant/example/public/dispatch.cgi +10 -0
  43. data/radiant/example/public/dispatch.fcgi +24 -0
  44. data/radiant/example/public/dispatch.rb +10 -0
  45. data/radiant/example/public/favicon.ico +0 -0
  46. data/radiant/example/public/images/admin/add-child.png +0 -0
  47. data/radiant/example/public/images/admin/brown-bottom-line.gif +0 -0
  48. data/radiant/example/public/images/admin/clear-page-cache.png +0 -0
  49. data/radiant/example/public/images/admin/collapse.png +0 -0
  50. data/radiant/example/public/images/admin/expand.png +0 -0
  51. data/radiant/example/public/images/admin/layout.png +0 -0
  52. data/radiant/example/public/images/admin/minus.png +0 -0
  53. data/radiant/example/public/images/admin/new-homepage.png +0 -0
  54. data/radiant/example/public/images/admin/new-layout.png +0 -0
  55. data/radiant/example/public/images/admin/new-snippet.png +0 -0
  56. data/radiant/example/public/images/admin/new-user.png +0 -0
  57. data/radiant/example/public/images/admin/page.png +0 -0
  58. data/radiant/example/public/images/admin/plus.png +0 -0
  59. data/radiant/example/public/images/admin/remove-disabled.png +0 -0
  60. data/radiant/example/public/images/admin/remove.png +0 -0
  61. data/radiant/example/public/images/admin/snippet.png +0 -0
  62. data/radiant/example/public/images/admin/spinner.gif +0 -0
  63. data/radiant/example/public/images/admin/view-site.gif +0 -0
  64. data/radiant/example/public/images/admin/virtual-page.png +0 -0
  65. data/radiant/example/public/javascripts/admin/admin.js +149 -0
  66. data/radiant/example/public/javascripts/admin/ruledtable.js +13 -0
  67. data/radiant/example/public/javascripts/admin/sitemap.js +132 -0
  68. data/radiant/example/public/javascripts/admin/tabcontrol.js +133 -0
  69. data/radiant/example/public/javascripts/application.js +2 -0
  70. data/radiant/example/public/javascripts/controls.js +963 -0
  71. data/radiant/example/public/javascripts/dragdrop.js +973 -0
  72. data/radiant/example/public/javascripts/effects.js +1128 -0
  73. data/radiant/example/public/javascripts/pngfix.js +39 -0
  74. data/radiant/example/public/javascripts/prototype.js +4320 -0
  75. data/radiant/example/public/javascripts/string.js +17 -0
  76. data/radiant/example/public/robots.txt +1 -0
  77. data/radiant/example/public/stylesheets/admin/main.css +640 -0
  78. data/radiant/example/script/about +3 -0
  79. data/radiant/example/script/autospec +5 -0
  80. data/radiant/example/script/breakpointer +3 -0
  81. data/radiant/example/script/console +3 -0
  82. data/radiant/example/script/cucumber +8 -0
  83. data/radiant/example/script/dbconsole +3 -0
  84. data/radiant/example/script/extension +5 -0
  85. data/radiant/example/script/generate +18 -0
  86. data/radiant/example/script/performance/benchmarker +3 -0
  87. data/radiant/example/script/performance/profiler +3 -0
  88. data/radiant/example/script/performance/request +3 -0
  89. data/radiant/example/script/process/inspector +3 -0
  90. data/radiant/example/script/process/reaper +3 -0
  91. data/radiant/example/script/process/spawner +3 -0
  92. data/radiant/example/script/process/spinner +3 -0
  93. data/radiant/example/script/runner +3 -0
  94. data/radiant/example/script/server +3 -0
  95. data/radiant/example/script/spec +5 -0
  96. data/radiant/example/script/spec_server +116 -0
  97. data/radiant/example/script/version +5 -0
  98. data/radiant/extension/README +3 -0
  99. data/radiant/extension/Rakefile +120 -0
  100. data/radiant/extension/lib/metry_tags.rb +25 -0
  101. data/radiant/extension/lib/tasks/metry_extension_tasks.rake +28 -0
  102. data/radiant/extension/metry_extension.rb +24 -0
  103. data/test/shared.rb +6 -0
  104. data/test/test_tokyo.rb +14 -0
  105. data/vendor/rufus-tokyo/CHANGELOG.txt +112 -0
  106. data/vendor/rufus-tokyo/CREDITS.txt +27 -0
  107. data/vendor/rufus-tokyo/LICENSE.txt +21 -0
  108. data/vendor/rufus-tokyo/README.txt +310 -0
  109. data/vendor/rufus-tokyo/Rakefile +118 -0
  110. data/vendor/rufus-tokyo/TODO.txt +25 -0
  111. data/vendor/rufus-tokyo/doc/decision_table.numbers +0 -0
  112. data/vendor/rufus-tokyo/doc/rdoc-style.css +320 -0
  113. data/vendor/rufus-tokyo/lib/rufus-edo.rb +3 -0
  114. data/vendor/rufus-tokyo/lib/rufus-tokyo.rb +3 -0
  115. data/vendor/rufus-tokyo/lib/rufus/edo.rb +39 -0
  116. data/vendor/rufus-tokyo/lib/rufus/edo/README.txt +106 -0
  117. data/vendor/rufus-tokyo/lib/rufus/edo/cabcore.rb +333 -0
  118. data/vendor/rufus-tokyo/lib/rufus/edo/cabinet/abstract.rb +219 -0
  119. data/vendor/rufus-tokyo/lib/rufus/edo/cabinet/table.rb +159 -0
  120. data/vendor/rufus-tokyo/lib/rufus/edo/error.rb +36 -0
  121. data/vendor/rufus-tokyo/lib/rufus/edo/ntyrant.rb +4 -0
  122. data/vendor/rufus-tokyo/lib/rufus/edo/ntyrant/abstract.rb +137 -0
  123. data/vendor/rufus-tokyo/lib/rufus/edo/ntyrant/table.rb +141 -0
  124. data/vendor/rufus-tokyo/lib/rufus/edo/tabcore.rb +567 -0
  125. data/vendor/rufus-tokyo/lib/rufus/tokyo.rb +58 -0
  126. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/abstract.rb +568 -0
  127. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/lib.rb +230 -0
  128. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/table.rb +753 -0
  129. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/util.rb +425 -0
  130. data/vendor/rufus-tokyo/lib/rufus/tokyo/config.rb +161 -0
  131. data/vendor/rufus-tokyo/lib/rufus/tokyo/dystopia.rb +43 -0
  132. data/vendor/rufus-tokyo/lib/rufus/tokyo/dystopia/lib.rb +65 -0
  133. data/vendor/rufus-tokyo/lib/rufus/tokyo/dystopia/words.rb +71 -0
  134. data/vendor/rufus-tokyo/lib/rufus/tokyo/hmethods.rb +111 -0
  135. data/vendor/rufus-tokyo/lib/rufus/tokyo/query.rb +102 -0
  136. data/vendor/rufus-tokyo/lib/rufus/tokyo/transactions.rb +74 -0
  137. data/vendor/rufus-tokyo/lib/rufus/tokyo/ttcommons.rb +59 -0
  138. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant.rb +35 -0
  139. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant/abstract.rb +146 -0
  140. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant/lib.rb +153 -0
  141. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant/table.rb +162 -0
  142. data/vendor/rufus-tokyo/rufus-tokyo.gemspec +25 -0
  143. data/vendor/rufus-tokyo/spec/cabinet_spec.rb +472 -0
  144. data/vendor/rufus-tokyo/spec/cabinetconfig_spec.rb +82 -0
  145. data/vendor/rufus-tokyo/spec/edo_cabinet_spec.rb +447 -0
  146. data/vendor/rufus-tokyo/spec/edo_ntyrant_spec.rb +299 -0
  147. data/vendor/rufus-tokyo/spec/edo_ntyrant_table_spec.rb +462 -0
  148. data/vendor/rufus-tokyo/spec/edo_table_spec.rb +560 -0
  149. data/vendor/rufus-tokyo/spec/hmethods_spec.rb +44 -0
  150. data/vendor/rufus-tokyo/spec/incr.lua +20 -0
  151. data/vendor/rufus-tokyo/spec/spec.rb +9 -0
  152. data/vendor/rufus-tokyo/spec/spec_base.rb +23 -0
  153. data/vendor/rufus-tokyo/spec/start_tyrants.sh +26 -0
  154. data/vendor/rufus-tokyo/spec/stop_tyrants.sh +9 -0
  155. data/vendor/rufus-tokyo/spec/table_spec.rb +567 -0
  156. data/vendor/rufus-tokyo/spec/tyrant_spec.rb +309 -0
  157. data/vendor/rufus-tokyo/spec/tyrant_table_spec.rb +479 -0
  158. data/vendor/rufus-tokyo/spec/util_list_spec.rb +200 -0
  159. data/vendor/rufus-tokyo/spec/util_map_spec.rb +132 -0
  160. data/vendor/rufus-tokyo/tasks/dev.rb +70 -0
  161. data/vendor/rufus-tokyo/test/bm0.rb +353 -0
  162. data/vendor/rufus-tokyo/test/bm1_compression.rb +54 -0
  163. data/vendor/rufus-tokyo/test/con0.rb +30 -0
  164. data/vendor/rufus-tokyo/test/mem.rb +49 -0
  165. data/vendor/rufus-tokyo/test/mem1.rb +44 -0
  166. data/vendor/rufus-tokyo/test/readme0.rb +17 -0
  167. data/vendor/rufus-tokyo/test/readme1.rb +21 -0
  168. data/vendor/rufus-tokyo/test/readme2.rb +15 -0
  169. data/vendor/rufus-tokyo/test/readme3.rb +24 -0
  170. data/vendor/rufus-tokyo/test/readmes_test.sh +17 -0
  171. data/vendor/webrat/.document +4 -0
  172. data/vendor/webrat/History.txt +358 -0
  173. data/vendor/webrat/MIT-LICENSE.txt +19 -0
  174. data/vendor/webrat/README.rdoc +85 -0
  175. data/vendor/webrat/Rakefile +200 -0
  176. data/vendor/webrat/install.rb +1 -0
  177. data/vendor/webrat/lib/webrat.rb +31 -0
  178. data/vendor/webrat/lib/webrat/core.rb +14 -0
  179. data/vendor/webrat/lib/webrat/core/configuration.rb +102 -0
  180. data/vendor/webrat/lib/webrat/core/elements/area.rb +31 -0
  181. data/vendor/webrat/lib/webrat/core/elements/element.rb +33 -0
  182. data/vendor/webrat/lib/webrat/core/elements/field.rb +411 -0
  183. data/vendor/webrat/lib/webrat/core/elements/form.rb +103 -0
  184. data/vendor/webrat/lib/webrat/core/elements/label.rb +31 -0
  185. data/vendor/webrat/lib/webrat/core/elements/link.rb +93 -0
  186. data/vendor/webrat/lib/webrat/core/elements/select_option.rb +35 -0
  187. data/vendor/webrat/lib/webrat/core/locators.rb +20 -0
  188. data/vendor/webrat/lib/webrat/core/locators/area_locator.rb +38 -0
  189. data/vendor/webrat/lib/webrat/core/locators/button_locator.rb +54 -0
  190. data/vendor/webrat/lib/webrat/core/locators/field_by_id_locator.rb +37 -0
  191. data/vendor/webrat/lib/webrat/core/locators/field_labeled_locator.rb +56 -0
  192. data/vendor/webrat/lib/webrat/core/locators/field_locator.rb +25 -0
  193. data/vendor/webrat/lib/webrat/core/locators/field_named_locator.rb +41 -0
  194. data/vendor/webrat/lib/webrat/core/locators/form_locator.rb +19 -0
  195. data/vendor/webrat/lib/webrat/core/locators/label_locator.rb +34 -0
  196. data/vendor/webrat/lib/webrat/core/locators/link_locator.rb +74 -0
  197. data/vendor/webrat/lib/webrat/core/locators/locator.rb +20 -0
  198. data/vendor/webrat/lib/webrat/core/locators/select_option_locator.rb +59 -0
  199. data/vendor/webrat/lib/webrat/core/logging.rb +24 -0
  200. data/vendor/webrat/lib/webrat/core/matchers.rb +4 -0
  201. data/vendor/webrat/lib/webrat/core/matchers/have_content.rb +73 -0
  202. data/vendor/webrat/lib/webrat/core/matchers/have_selector.rb +74 -0
  203. data/vendor/webrat/lib/webrat/core/matchers/have_tag.rb +21 -0
  204. data/vendor/webrat/lib/webrat/core/matchers/have_xpath.rb +147 -0
  205. data/vendor/webrat/lib/webrat/core/methods.rb +63 -0
  206. data/vendor/webrat/lib/webrat/core/mime.rb +29 -0
  207. data/vendor/webrat/lib/webrat/core/save_and_open_page.rb +48 -0
  208. data/vendor/webrat/lib/webrat/core/scope.rb +350 -0
  209. data/vendor/webrat/lib/webrat/core/session.rb +290 -0
  210. data/vendor/webrat/lib/webrat/core/xml.rb +115 -0
  211. data/vendor/webrat/lib/webrat/core/xml/hpricot.rb +19 -0
  212. data/vendor/webrat/lib/webrat/core/xml/nokogiri.rb +76 -0
  213. data/vendor/webrat/lib/webrat/core/xml/rexml.rb +24 -0
  214. data/vendor/webrat/lib/webrat/core_extensions/blank.rb +58 -0
  215. data/vendor/webrat/lib/webrat/core_extensions/deprecate.rb +8 -0
  216. data/vendor/webrat/lib/webrat/core_extensions/detect_mapped.rb +12 -0
  217. data/vendor/webrat/lib/webrat/core_extensions/meta_class.rb +6 -0
  218. data/vendor/webrat/lib/webrat/core_extensions/nil_to_param.rb +5 -0
  219. data/vendor/webrat/lib/webrat/core_extensions/tcp_socket.rb +27 -0
  220. data/vendor/webrat/lib/webrat/mechanize.rb +74 -0
  221. data/vendor/webrat/lib/webrat/merb.rb +9 -0
  222. data/vendor/webrat/lib/webrat/merb_multipart_support.rb +27 -0
  223. data/vendor/webrat/lib/webrat/merb_session.rb +80 -0
  224. data/vendor/webrat/lib/webrat/rack.rb +24 -0
  225. data/vendor/webrat/lib/webrat/rack_test.rb +32 -0
  226. data/vendor/webrat/lib/webrat/rails.rb +105 -0
  227. data/vendor/webrat/lib/webrat/rspec-rails.rb +10 -0
  228. data/vendor/webrat/lib/webrat/selenium.rb +81 -0
  229. data/vendor/webrat/lib/webrat/selenium/application_server_factory.rb +40 -0
  230. data/vendor/webrat/lib/webrat/selenium/application_servers.rb +5 -0
  231. data/vendor/webrat/lib/webrat/selenium/application_servers/base.rb +46 -0
  232. data/vendor/webrat/lib/webrat/selenium/application_servers/external.rb +26 -0
  233. data/vendor/webrat/lib/webrat/selenium/application_servers/merb.rb +50 -0
  234. data/vendor/webrat/lib/webrat/selenium/application_servers/rails.rb +44 -0
  235. data/vendor/webrat/lib/webrat/selenium/application_servers/sinatra.rb +37 -0
  236. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/button.js +19 -0
  237. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/label.js +16 -0
  238. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webrat.js +5 -0
  239. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlink.js +12 -0
  240. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlinkwithin.js +15 -0
  241. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratselectwithoption.js +5 -0
  242. data/vendor/webrat/lib/webrat/selenium/matchers.rb +4 -0
  243. data/vendor/webrat/lib/webrat/selenium/matchers/have_content.rb +66 -0
  244. data/vendor/webrat/lib/webrat/selenium/matchers/have_selector.rb +49 -0
  245. data/vendor/webrat/lib/webrat/selenium/matchers/have_tag.rb +72 -0
  246. data/vendor/webrat/lib/webrat/selenium/matchers/have_xpath.rb +45 -0
  247. data/vendor/webrat/lib/webrat/selenium/selenium_extensions.js +6 -0
  248. data/vendor/webrat/lib/webrat/selenium/selenium_rc_server.rb +84 -0
  249. data/vendor/webrat/lib/webrat/selenium/selenium_session.rb +248 -0
  250. data/vendor/webrat/lib/webrat/selenium/silence_stream.rb +18 -0
  251. data/vendor/webrat/lib/webrat/sinatra.rb +44 -0
  252. data/vendor/webrat/spec/fakes/test_session.rb +34 -0
  253. data/vendor/webrat/spec/integration/merb/Rakefile +35 -0
  254. data/vendor/webrat/spec/integration/merb/app/controllers/application.rb +2 -0
  255. data/vendor/webrat/spec/integration/merb/app/controllers/exceptions.rb +13 -0
  256. data/vendor/webrat/spec/integration/merb/app/controllers/testing.rb +27 -0
  257. data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_acceptable.html.erb +63 -0
  258. data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_found.html.erb +47 -0
  259. data/vendor/webrat/spec/integration/merb/app/views/layout/application.html.erb +12 -0
  260. data/vendor/webrat/spec/integration/merb/app/views/testing/show_form.html.erb +27 -0
  261. data/vendor/webrat/spec/integration/merb/app/views/testing/upload.html.erb +9 -0
  262. data/vendor/webrat/spec/integration/merb/config/environments/development.rb +15 -0
  263. data/vendor/webrat/spec/integration/merb/config/environments/rake.rb +11 -0
  264. data/vendor/webrat/spec/integration/merb/config/environments/test.rb +14 -0
  265. data/vendor/webrat/spec/integration/merb/config/init.rb +25 -0
  266. data/vendor/webrat/spec/integration/merb/config/rack.rb +11 -0
  267. data/vendor/webrat/spec/integration/merb/config/router.rb +34 -0
  268. data/vendor/webrat/spec/integration/merb/spec/spec.opts +1 -0
  269. data/vendor/webrat/spec/integration/merb/spec/spec_helper.rb +24 -0
  270. data/vendor/webrat/spec/integration/merb/spec/webrat_spec.rb +39 -0
  271. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/app_script.rb +31 -0
  272. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/common.rb +64 -0
  273. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/gem_ext.rb +124 -0
  274. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/main.thor +150 -0
  275. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/ops.rb +93 -0
  276. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/utils.rb +40 -0
  277. data/vendor/webrat/spec/integration/rack/Rakefile +5 -0
  278. data/vendor/webrat/spec/integration/rack/rack_app.rb +16 -0
  279. data/vendor/webrat/spec/integration/rack/test/test_helper.rb +20 -0
  280. data/vendor/webrat/spec/integration/rack/test/webrat_rack_test.rb +67 -0
  281. data/vendor/webrat/spec/integration/rails/Rakefile +30 -0
  282. data/vendor/webrat/spec/integration/rails/app/controllers/application.rb +15 -0
  283. data/vendor/webrat/spec/integration/rails/app/controllers/buttons_controller.rb +7 -0
  284. data/vendor/webrat/spec/integration/rails/app/controllers/fields_controller.rb +4 -0
  285. data/vendor/webrat/spec/integration/rails/app/controllers/links_controller.rb +7 -0
  286. data/vendor/webrat/spec/integration/rails/app/controllers/webrat_controller.rb +43 -0
  287. data/vendor/webrat/spec/integration/rails/app/helpers/buttons_helper.rb +2 -0
  288. data/vendor/webrat/spec/integration/rails/app/helpers/fields_helper.rb +2 -0
  289. data/vendor/webrat/spec/integration/rails/app/helpers/links_helper.rb +2 -0
  290. data/vendor/webrat/spec/integration/rails/app/views/buttons/show.html.erb +11 -0
  291. data/vendor/webrat/spec/integration/rails/app/views/fields/show.html.erb +9 -0
  292. data/vendor/webrat/spec/integration/rails/app/views/links/show.html.erb +5 -0
  293. data/vendor/webrat/spec/integration/rails/app/views/webrat/before_redirect_form.html.erb +4 -0
  294. data/vendor/webrat/spec/integration/rails/app/views/webrat/buttons.html.erb +11 -0
  295. data/vendor/webrat/spec/integration/rails/app/views/webrat/form.html.erb +28 -0
  296. data/vendor/webrat/spec/integration/rails/config/boot.rb +109 -0
  297. data/vendor/webrat/spec/integration/rails/config/environment.rb +12 -0
  298. data/vendor/webrat/spec/integration/rails/config/environments/development.rb +17 -0
  299. data/vendor/webrat/spec/integration/rails/config/environments/selenium.rb +22 -0
  300. data/vendor/webrat/spec/integration/rails/config/environments/test.rb +22 -0
  301. data/vendor/webrat/spec/integration/rails/config/initializers/inflections.rb +10 -0
  302. data/vendor/webrat/spec/integration/rails/config/initializers/mime_types.rb +5 -0
  303. data/vendor/webrat/spec/integration/rails/config/initializers/new_rails_defaults.rb +17 -0
  304. data/vendor/webrat/spec/integration/rails/config/locales/en.yml +5 -0
  305. data/vendor/webrat/spec/integration/rails/config/routes.rb +18 -0
  306. data/vendor/webrat/spec/integration/rails/public/404.html +30 -0
  307. data/vendor/webrat/spec/integration/rails/public/422.html +30 -0
  308. data/vendor/webrat/spec/integration/rails/public/500.html +33 -0
  309. data/vendor/webrat/spec/integration/rails/script/about +4 -0
  310. data/vendor/webrat/spec/integration/rails/script/console +3 -0
  311. data/vendor/webrat/spec/integration/rails/script/dbconsole +3 -0
  312. data/vendor/webrat/spec/integration/rails/script/destroy +3 -0
  313. data/vendor/webrat/spec/integration/rails/script/generate +3 -0
  314. data/vendor/webrat/spec/integration/rails/script/performance/benchmarker +3 -0
  315. data/vendor/webrat/spec/integration/rails/script/performance/profiler +3 -0
  316. data/vendor/webrat/spec/integration/rails/script/performance/request +3 -0
  317. data/vendor/webrat/spec/integration/rails/script/plugin +3 -0
  318. data/vendor/webrat/spec/integration/rails/script/process/inspector +3 -0
  319. data/vendor/webrat/spec/integration/rails/script/process/reaper +3 -0
  320. data/vendor/webrat/spec/integration/rails/script/process/spawner +3 -0
  321. data/vendor/webrat/spec/integration/rails/script/runner +3 -0
  322. data/vendor/webrat/spec/integration/rails/script/server +3 -0
  323. data/vendor/webrat/spec/integration/rails/test/integration/button_click_test.rb +80 -0
  324. data/vendor/webrat/spec/integration/rails/test/integration/fill_in_test.rb +24 -0
  325. data/vendor/webrat/spec/integration/rails/test/integration/link_click_test.rb +27 -0
  326. data/vendor/webrat/spec/integration/rails/test/integration/webrat_test.rb +97 -0
  327. data/vendor/webrat/spec/integration/rails/test/test_helper.rb +25 -0
  328. data/vendor/webrat/spec/integration/sinatra/Rakefile +5 -0
  329. data/vendor/webrat/spec/integration/sinatra/classic_app.rb +64 -0
  330. data/vendor/webrat/spec/integration/sinatra/modular_app.rb +16 -0
  331. data/vendor/webrat/spec/integration/sinatra/test/classic_app_test.rb +37 -0
  332. data/vendor/webrat/spec/integration/sinatra/test/modular_app_test.rb +18 -0
  333. data/vendor/webrat/spec/integration/sinatra/test/test_helper.rb +16 -0
  334. data/vendor/webrat/spec/private/core/configuration_spec.rb +116 -0
  335. data/vendor/webrat/spec/private/core/field_spec.rb +85 -0
  336. data/vendor/webrat/spec/private/core/link_spec.rb +24 -0
  337. data/vendor/webrat/spec/private/core/logging_spec.rb +10 -0
  338. data/vendor/webrat/spec/private/core/session_spec.rb +195 -0
  339. data/vendor/webrat/spec/private/mechanize/mechanize_session_spec.rb +81 -0
  340. data/vendor/webrat/spec/private/merb/attaches_file_spec.rb +93 -0
  341. data/vendor/webrat/spec/private/merb/merb_session_spec.rb +61 -0
  342. data/vendor/webrat/spec/private/nokogiri_spec.rb +77 -0
  343. data/vendor/webrat/spec/private/rails/attaches_file_spec.rb +81 -0
  344. data/vendor/webrat/spec/private/rails/rails_session_spec.rb +110 -0
  345. data/vendor/webrat/spec/private/selenium/application_servers/rails_spec.rb +26 -0
  346. data/vendor/webrat/spec/public/basic_auth_spec.rb +24 -0
  347. data/vendor/webrat/spec/public/check_spec.rb +191 -0
  348. data/vendor/webrat/spec/public/choose_spec.rb +118 -0
  349. data/vendor/webrat/spec/public/click_area_spec.rb +106 -0
  350. data/vendor/webrat/spec/public/click_button_spec.rb +496 -0
  351. data/vendor/webrat/spec/public/click_link_spec.rb +511 -0
  352. data/vendor/webrat/spec/public/fill_in_spec.rb +209 -0
  353. data/vendor/webrat/spec/public/locators/field_by_xpath_spec.rb +19 -0
  354. data/vendor/webrat/spec/public/locators/field_labeled_spec.rb +172 -0
  355. data/vendor/webrat/spec/public/locators/field_with_id_spec.rb +16 -0
  356. data/vendor/webrat/spec/public/matchers/contain_spec.rb +114 -0
  357. data/vendor/webrat/spec/public/matchers/have_selector_spec.rb +142 -0
  358. data/vendor/webrat/spec/public/matchers/have_tag_spec.rb +39 -0
  359. data/vendor/webrat/spec/public/matchers/have_xpath_spec.rb +136 -0
  360. data/vendor/webrat/spec/public/reload_spec.rb +10 -0
  361. data/vendor/webrat/spec/public/save_and_open_spec.rb +70 -0
  362. data/vendor/webrat/spec/public/select_date_spec.rb +112 -0
  363. data/vendor/webrat/spec/public/select_datetime_spec.rb +137 -0
  364. data/vendor/webrat/spec/public/select_spec.rb +249 -0
  365. data/vendor/webrat/spec/public/select_time_spec.rb +100 -0
  366. data/vendor/webrat/spec/public/selenium/application_server_factory_spec.rb +49 -0
  367. data/vendor/webrat/spec/public/selenium/application_servers/external_spec.rb +12 -0
  368. data/vendor/webrat/spec/public/selenium/selenium_session_spec.rb +37 -0
  369. data/vendor/webrat/spec/public/set_hidden_field_spec.rb +5 -0
  370. data/vendor/webrat/spec/public/submit_form_spec.rb +5 -0
  371. data/vendor/webrat/spec/public/visit_spec.rb +58 -0
  372. data/vendor/webrat/spec/public/within_spec.rb +177 -0
  373. data/vendor/webrat/spec/rcov.opts +1 -0
  374. data/vendor/webrat/spec/spec.opts +2 -0
  375. data/vendor/webrat/spec/spec_helper.rb +50 -0
  376. data/vendor/webrat/vendor/selenium-server.jar +0 -0
  377. metadata +442 -0
@@ -0,0 +1,230 @@
1
+ #--
2
+ # Copyright (c) 2009, John Mettraux, jmettraux@gmail.com
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to deal
6
+ # in the Software without restriction, including without limitation the rights
7
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ # copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in
12
+ # all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ # THE SOFTWARE.
21
+ #
22
+ # Made in Japan.
23
+ #++
24
+
25
+
26
+ module Rufus::Tokyo
27
+
28
+ #
29
+ # The libtokyocabinet.so methods get bound to this module
30
+ #
31
+ module CabinetLib #:nodoc#
32
+ extend FFI::Library
33
+
34
+ #
35
+ # find Tokyo Cabinet lib
36
+
37
+ paths = Array(ENV['TOKYO_CABINET_LIB'] || %w{
38
+ /usr/lib/libtokyocabinet.so
39
+ /opt/local/lib/libtokyocabinet.dylib
40
+ /opt/local/lib/libtokyocabinet.so
41
+ /usr/local/lib/libtokyocabinet.dylib
42
+ /usr/local/lib/libtokyocabinet.so
43
+ })
44
+
45
+ begin
46
+
47
+ ffi_lib(*paths)
48
+
49
+ rescue LoadError => le
50
+ raise(
51
+ "didn't find Tokyo Cabinet libs on your system. " +
52
+ "Please install Tokyo Cabinet (http://tokyocabinet.sf.net) " +
53
+ "(see also http://openwferu.rubyforge.org/tokyo.html)"
54
+ )
55
+ end
56
+
57
+ class << self
58
+ alias :attfunc :attach_function
59
+ end
60
+
61
+ #
62
+ # maybe put that in a standalone c_lib.rb
63
+
64
+ # length of a string
65
+ #
66
+ attfunc :strlen, [ :string ], :int
67
+
68
+ # frees a mem zone (TC style)
69
+ #
70
+ attfunc :tcfree, [ :pointer ], :void
71
+
72
+ #
73
+ # tcadb functions
74
+ #
75
+ # http://tokyocabinet.sourceforge.net/spex-en.html#tcadbapi
76
+
77
+ attfunc :tcadbnew, [], :pointer
78
+
79
+ attfunc :tcadbopen, [ :pointer, :string ], :int
80
+ attfunc :abs_close, :tcadbclose, [ :pointer ], :int
81
+
82
+ attfunc :abs_del, :tcadbdel, [ :pointer ], :void
83
+
84
+ attfunc :abs_rnum, :tcadbrnum, [ :pointer ], :uint64
85
+ attfunc :abs_size, :tcadbsize, [ :pointer ], :uint64
86
+
87
+ attfunc :abs_put, :tcadbput, [ :pointer, :pointer, :int, :pointer, :int ], :int
88
+
89
+ attfunc :abs_get, :tcadbget, [ :pointer, :pointer, :int, :pointer ], :pointer
90
+
91
+ attfunc :abs_out, :tcadbout, [ :pointer, :pointer, :int ], :int
92
+
93
+ attfunc :abs_putkeep, :tcadbputkeep, [ :pointer, :pointer, :int, :pointer, :int ], :int
94
+
95
+ attfunc :abs_iterinit, :tcadbiterinit, [ :pointer ], :int
96
+ attfunc :abs_iternext, :tcadbiternext, [ :pointer, :pointer ], :pointer
97
+
98
+ attfunc :abs_vanish, :tcadbvanish, [ :pointer ], :int
99
+
100
+ attfunc :abs_sync, :tcadbsync, [ :pointer ], :int
101
+ attfunc :abs_copy, :tcadbcopy, [ :pointer, :string ], :int
102
+
103
+ attfunc :abs_fwmkeys, :tcadbfwmkeys, [ :pointer, :pointer, :int, :int ], :pointer
104
+
105
+ attfunc :tcadbmisc, [ :pointer, :string, :pointer ], :pointer
106
+
107
+ attfunc :addint, :tcadbaddint, [ :pointer, :string, :int, :int ], :int
108
+ attfunc :adddouble, :tcadbadddouble, [ :pointer, :string, :int, :double ], :double
109
+
110
+ begin # since TC 1.4.13
111
+ attfunc :tcadbtranbegin, [ :pointer ], :int
112
+ attfunc :tcadbtrancommit, [ :pointer ], :int
113
+ attfunc :tcadbtranabort, [ :pointer ], :int
114
+ rescue FFI::NotFoundError => nfe
115
+ end
116
+
117
+ #
118
+ # tctdb functions
119
+ #
120
+ # http://tokyocabinet.sourceforge.net/spex-en.html#tctdbapi
121
+
122
+ attfunc :tctdbnew, [], :pointer
123
+ attfunc :tctdbsetmutex, [ :pointer ], :int
124
+ attfunc :tctdbtune, [ :pointer, :uint64, :uint8, :uint8, :uint8 ], :int
125
+ attfunc :tctdbsetcache, [ :pointer, :uint32, :uint32, :uint32 ], :int
126
+ attfunc :tctdbsetxmsiz, [ :pointer, :uint64 ], :int
127
+
128
+ begin # since TC 1.4.21
129
+ attfunc :tctdbsetdfunit, [ :pointer, :uint32 ], :int
130
+ rescue FFI::NotFoundError => nfe
131
+ end
132
+
133
+ attfunc :tctdbopen, [ :pointer, :string, :int ], :int
134
+
135
+ attfunc :tab_close, :tctdbclose, [ :pointer ], :int
136
+
137
+ attfunc :tab_genuid, :tctdbgenuid, [ :pointer ], :int64
138
+
139
+ attfunc :tab_get, :tctdbget, [ :pointer, :pointer, :int ], :pointer
140
+
141
+ attfunc :tab_iterinit, :tctdbiterinit, [ :pointer ], :int
142
+ attfunc :tab_iternext, :tctdbiternext, [ :pointer, :pointer ], :pointer
143
+
144
+ attfunc :tab_put, :tctdbput, [ :pointer, :pointer, :int, :pointer ], :int
145
+
146
+ #attfunc :tctdbput3, [ :pointer, :string, :string ], :int
147
+ # not using it anymore, Ruby can turn an array into a hash so easily
148
+
149
+ attfunc :tab_out, :tctdbout, [ :pointer, :string, :int ], :int
150
+
151
+ attfunc :tab_ecode, :tctdbecode, [ :pointer ], :int
152
+ attfunc :tab_errmsg, :tctdberrmsg, [ :int ], :string
153
+
154
+ attfunc :tab_del, :tctdbdel, [ :pointer ], :void
155
+
156
+ attfunc :tab_rnum, :tctdbrnum, [ :pointer ], :uint64
157
+
158
+ attfunc :tab_vanish, :tctdbvanish, [ :pointer ], :int
159
+
160
+ attfunc :tab_setindex, :tctdbsetindex, [ :pointer, :string, :int ], :int
161
+
162
+ attfunc :tctdbtranbegin, [ :pointer ], :int
163
+ attfunc :tctdbtrancommit, [ :pointer ], :int
164
+ attfunc :tctdbtranabort, [ :pointer ], :int
165
+
166
+ attfunc :tab_fwmkeys, :tctdbfwmkeys, [ :pointer, :pointer, :int, :int ], :pointer
167
+
168
+ #
169
+ # tctdbqry functions
170
+ #
171
+ # http://tokyocabinet.sourceforge.net/spex-en.html#tctdbapi
172
+
173
+ attfunc :qry_new, :tctdbqrynew, [ :pointer ], :pointer
174
+ attfunc :qry_del, :tctdbqrydel, [ :pointer ], :void
175
+
176
+ attfunc :qry_addcond, :tctdbqryaddcond, [ :pointer, :string, :int, :string ], :void
177
+ attfunc :qry_setorder, :tctdbqrysetorder, [ :pointer, :string, :int ], :void
178
+
179
+ callback :TDBQRYPROC, [:pointer, :int, :pointer, :pointer], :int
180
+ attfunc :qry_proc, :tctdbqryproc, [ :pointer, :TDBQRYPROC, :pointer], :int
181
+
182
+
183
+ begin # since TC 1.4.10
184
+ attfunc :qry_setmax, :tctdbqrysetmax, [ :pointer, :int ], :void
185
+ rescue FFI::NotFoundError => nfe
186
+ attfunc :qry_setlimit, :tctdbqrysetlimit, [ :pointer, :int, :int ], :void
187
+ end
188
+
189
+ attfunc :qry_search, :tctdbqrysearch, [ :pointer ], :pointer
190
+ attfunc :qry_searchout, :tctdbqrysearchout, [ :pointer ], :int
191
+
192
+ begin # since TC 1.4.12
193
+ attfunc :qry_count, :tctdbqrycount, [ :pointer ], :int
194
+ rescue FFI::NotFoundError => nfe
195
+ end
196
+
197
+ #
198
+ # tcmap functions
199
+ #
200
+ # http://tokyocabinet.sourceforge.net/spex-en.html#tcutilapi
201
+
202
+ attfunc :tcmapnew, [], :pointer
203
+ attfunc :tcmapput, [ :pointer, :pointer, :int, :pointer, :int ], :void
204
+ attfunc :tcmapout, [ :pointer, :pointer, :int ], :int
205
+ attfunc :tcmapclear, [ :pointer ], :void
206
+ attfunc :tcmapdel, [ :pointer ], :void
207
+ attfunc :tcmapget, [ :pointer, :pointer, :int, :pointer ], :pointer
208
+ attfunc :tcmapiterinit, [ :pointer ], :void
209
+ attfunc :tcmapiternext, [ :pointer, :pointer ], :pointer
210
+ attfunc :tcmaprnum, [ :pointer ], :uint64
211
+
212
+ #
213
+ # tclist functions
214
+ #
215
+ # http://tokyocabinet.sourceforge.net/spex-en.html#tcutilapi
216
+
217
+ attfunc :tclistnew, [], :pointer
218
+ attfunc :tclistnum, [ :pointer ], :int
219
+ attfunc :tclistval, [ :pointer, :int, :pointer ], :pointer
220
+ attfunc :tclistpush, [ :pointer, :pointer, :int ], :void
221
+ attfunc :tclistpop, [ :pointer, :pointer ], :pointer
222
+ attfunc :tclistshift, [ :pointer, :pointer ], :pointer
223
+ attfunc :tclistunshift, [ :pointer, :pointer, :int ], :void
224
+ attfunc :tclistover, [ :pointer, :int, :pointer, :int ], :void
225
+ attfunc :tclistremove, [ :pointer, :int, :pointer ], :pointer
226
+ attfunc :tclistdel, [ :pointer ], :void
227
+ end
228
+
229
+ end
230
+
@@ -0,0 +1,753 @@
1
+ #--
2
+ # Copyright (c) 2009, John Mettraux, jmettraux@gmail.com
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ # of this software and associated documentation files (the "Software"), to deal
6
+ # in the Software without restriction, including without limitation the rights
7
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ # copies of the Software, and to permit persons to whom the Software is
9
+ # furnished to do so, subject to the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be included in
12
+ # all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
+ # THE SOFTWARE.
21
+ #
22
+ # Made in Japan.
23
+ #++
24
+
25
+
26
+ require 'rufus/tokyo/query'
27
+ require 'rufus/tokyo/config'
28
+ require 'rufus/tokyo/transactions'
29
+
30
+
31
+ module Rufus::Tokyo
32
+
33
+ #
34
+ # A 'table' a table database.
35
+ #
36
+ # http://alpha.mixi.co.jp/blog/?p=290
37
+ # http://tokyocabinet.sourceforge.net/spex-en.html#tctdbapi
38
+ #
39
+ # A short example :
40
+ #
41
+ # require 'rubygems'
42
+ # require 'rufus/tokyo/cabinet/table'
43
+ #
44
+ # t = Rufus::Tokyo::Table.new('table.tdb', :create, :write)
45
+ # # '.tdb' suffix is a must
46
+ #
47
+ # t['pk0'] = { 'name' => 'alfred', 'age' => '22' }
48
+ # t['pk1'] = { 'name' => 'bob', 'age' => '18' }
49
+ # t['pk2'] = { 'name' => 'charly', 'age' => '45' }
50
+ # t['pk3'] = { 'name' => 'doug', 'age' => '77' }
51
+ # t['pk4'] = { 'name' => 'ephrem', 'age' => '32' }
52
+ #
53
+ # p t.query { |q|
54
+ # q.add_condition 'age', :numge, '32'
55
+ # q.order_by 'age'
56
+ # q.limit 2
57
+ # }
58
+ # # => [ {"name"=>"ephrem", :pk=>"pk4", "age"=>"32"},
59
+ # # {"name"=>"charly", :pk=>"pk2", "age"=>"45"} ]
60
+ #
61
+ # t.close
62
+ #
63
+ class Table
64
+
65
+ include HashMethods
66
+ include CabinetConfig
67
+
68
+ include Transactions
69
+ # this class has tranbegin/trancommit/tranabort so let's include the
70
+ # transaction mixin
71
+
72
+ # Creates a Table instance (creates or opens it depending on the args)
73
+ #
74
+ # For example,
75
+ #
76
+ # t = Rufus::Tokyo::Table.new('table.tdb')
77
+ # # '.tdb' suffix is a must
78
+ #
79
+ # will create the table.tdb (or simply open it if already present)
80
+ # and make sure we have write access to it.
81
+ #
82
+ # == parameters
83
+ #
84
+ # Parameters can be set in the path or via the optional params hash (like
85
+ # in Rufus::Tokyo::Cabinet)
86
+ #
87
+ # * :mode a set of chars ('r'ead, 'w'rite, 'c'reate, 't'runcate,
88
+ # 'e' non locking, 'f' non blocking lock), default is 'wc'
89
+ # * :opts a set of chars ('l'arge, 'd'eflate, 'b'zip2, 't'cbs)
90
+ # (usually empty or something like 'ld' or 'lb')
91
+ #
92
+ # * :bnum number of elements of the bucket array
93
+ # * :apow size of record alignment by power of 2 (defaults to 4)
94
+ # * :fpow maximum number of elements of the free block pool by
95
+ # power of 2 (defaults to 10)
96
+ # * :mutex when set to true, makes sure only 1 thread at a time
97
+ # accesses the table (well, Ruby, global thread lock, ...)
98
+ #
99
+ # * :rcnum specifies the maximum number of records to be cached.
100
+ # If it is not more than 0, the record cache is disabled.
101
+ # It is disabled by default.
102
+ # * :lcnum specifies the maximum number of leaf nodes to be cached.
103
+ # If it is not more than 0, the default value is specified.
104
+ # The default value is 2048.
105
+ # * :ncnum specifies the maximum number of non-leaf nodes to be
106
+ # cached. If it is not more than 0, the default value is
107
+ # specified. The default value is 512.
108
+ #
109
+ # * :xmsiz specifies the size of the extra mapped memory. If it is
110
+ # not more than 0, the extra mapped memory is disabled.
111
+ # The default size is 67108864.
112
+ #
113
+ # * :dfunit unit step number. If it is not more than 0,
114
+ # the auto defragmentation is disabled. (Since TC 1.4.21)
115
+ #
116
+ # Some examples :
117
+ #
118
+ # t = Rufus::Tokyo::Table.new('table.tdb')
119
+ # t = Rufus::Tokyo::Table.new('table.tdb#mode=r')
120
+ # t = Rufus::Tokyo::Table.new('table.tdb', :mode => 'r')
121
+ # t = Rufus::Tokyo::Table.new('table.tdb#opts=ld#mode=r')
122
+ # t = Rufus::Tokyo::Table.new('table.tdb', :opts => 'ld', :mode => 'r')
123
+ #
124
+ def initialize (path, params={})
125
+
126
+ conf = determine_conf(path, params, :table)
127
+
128
+ @db = lib.tctdbnew
129
+
130
+ #
131
+ # tune table
132
+
133
+ libcall(:tctdbsetmutex) if conf[:mutex]
134
+
135
+ libcall(:tctdbtune, conf[:bnum], conf[:apow], conf[:fpow], conf[:opts])
136
+
137
+ # TODO : set indexes here... well, there is already #set_index
138
+ #conf[:indexes]...
139
+
140
+ libcall(:tctdbsetcache, conf[:rcnum], conf[:lcnum], conf[:ncnum])
141
+
142
+ libcall(:tctdbsetxmsiz, conf[:xmsiz])
143
+
144
+ libcall(:tctdbsetdfunit, conf[:dfunit]) \
145
+ if lib.respond_to?(:tctdbsetdfunit) # TC >= 1.4.21
146
+
147
+ #
148
+ # open table
149
+
150
+ @path = conf[:path]
151
+
152
+ libcall(:tctdbopen, @path, conf[:mode])
153
+ end
154
+
155
+ # Using the cabinet lib
156
+ #
157
+ def lib
158
+
159
+ CabinetLib
160
+ end
161
+
162
+ # Returns the path to the table.
163
+ #
164
+ def path
165
+
166
+ @path
167
+ end
168
+
169
+ # Closes the table (and frees the datastructure allocated for it),
170
+ # returns true in case of success.
171
+ #
172
+ def close
173
+
174
+ result = lib.tab_close(@db)
175
+ lib.tab_del(@db)
176
+
177
+ (result == 1)
178
+ end
179
+
180
+ # Generates a unique id (in the context of this Table instance)
181
+ #
182
+ def generate_unique_id
183
+
184
+ lib.tab_genuid(@db)
185
+ end
186
+ alias :genuid :generate_unique_id
187
+
188
+ INDEX_TYPES = {
189
+ :lexical => 0,
190
+ :decimal => 1,
191
+ :void => 9999,
192
+ :remove => 9999,
193
+ :keep => 1 << 24
194
+ }
195
+
196
+ # Sets an index on a column of the table.
197
+ #
198
+ # Types maybe be :lexical or :decimal, use :keep to "add" and
199
+ # :remove (or :void) to "remove" an index.
200
+ #
201
+ # If column_name is :pk or "", the index will be set on the primary key.
202
+ #
203
+ # Returns true in case of success.
204
+ #
205
+ def set_index (column_name, *types)
206
+
207
+ column_name = '' if column_name == :pk
208
+
209
+ i = types.inject(0) { |i, t| i = i | INDEX_TYPES[t]; i }
210
+
211
+ (lib.tab_setindex(@db, column_name, i) == 1)
212
+ end
213
+
214
+ # Inserts a record in the table db
215
+ #
216
+ # table['pk0'] = [ 'name', 'fred', 'age', '45' ]
217
+ # table['pk1'] = { 'name' => 'jeff', 'age' => '46' }
218
+ #
219
+ # Accepts both a hash or an array (expects the array to be of the
220
+ # form [ key, value, key, value, ... ] else it will raise
221
+ # an ArgumentError)
222
+ #
223
+ # Raises an error in case of failure.
224
+ #
225
+ def []= (pk, h_or_a)
226
+
227
+ m = Rufus::Tokyo::Map[h_or_a]
228
+
229
+ r = lib.tab_put(@db, pk, Rufus::Tokyo.blen(pk), m.pointer)
230
+
231
+ m.free
232
+
233
+ (r == 1) || raise_error # raising potential error after freeing map
234
+
235
+ h_or_a
236
+ end
237
+
238
+ # Removes an entry in the table
239
+ #
240
+ # (might raise an error if the delete itself failed, but returns nil
241
+ # if there was no entry for the given key)
242
+ #
243
+ def delete (k)
244
+
245
+ v = self[k]
246
+ return nil unless v
247
+ libcall(:tab_out, k, Rufus::Tokyo.blen(k))
248
+
249
+ v
250
+ end
251
+
252
+ # Removes all records in this table database
253
+ #
254
+ def clear
255
+
256
+ libcall(:tab_vanish)
257
+ end
258
+
259
+ # Returns an array of all the primary keys in the table
260
+ #
261
+ # With no options given, this method will return all the keys (strings)
262
+ # in a Ruby array.
263
+ #
264
+ # :prefix --> returns only the keys who match a given string prefix
265
+ #
266
+ # :limit --> returns a limited number of keys
267
+ #
268
+ # :native --> returns an instance of Rufus::Tokyo::List instead of
269
+ # a Ruby Hash, you have to call #free on that List when done with it !
270
+ # Else you're exposing yourself to a memory leak.
271
+ #
272
+ def keys (options={})
273
+
274
+ outlen = nil
275
+
276
+ if pre = options[:prefix]
277
+
278
+ l = lib.tab_fwmkeys(
279
+ @db, pre, Rufus::Tokyo.blen(pre), options[:limit] || -1)
280
+
281
+ l = Rufus::Tokyo::List.new(l)
282
+
283
+ options[:native] ? l : l.release
284
+
285
+ else
286
+
287
+ limit = options[:limit] || -1
288
+ limit = nil if limit < 1
289
+
290
+ l = options[:native] ? Rufus::Tokyo::List.new : []
291
+
292
+ lib.tab_iterinit(@db)
293
+
294
+ outlen = FFI::MemoryPointer.new(:int)
295
+
296
+ loop do
297
+ break if limit and l.size >= limit
298
+ out = lib.tab_iternext(@db, outlen)
299
+ break if out.address == 0
300
+ l << out.get_bytes(0, outlen.get_int(0))
301
+ end
302
+
303
+ l
304
+ end
305
+
306
+ ensure
307
+
308
+ outlen.free if outlen
309
+ end
310
+
311
+ # Deletes all the entries whose key begin with the given prefix.
312
+ #
313
+ def delete_keys_with_prefix (prefix)
314
+
315
+ # TODO : use ...searchout
316
+
317
+ ks = lib.tab_fwmkeys(@db, prefix, Rufus::Tokyo.blen(prefix), -1)
318
+ # -1 for no limit
319
+
320
+ begin
321
+ ks = Rufus::Tokyo::List.new(ks)
322
+ ks.each { |k| self.delete(k) }
323
+ ensure
324
+ ks.free
325
+ end
326
+ end
327
+
328
+ # No 'misc' methods for the table library, so this lget is equivalent
329
+ # to calling get for each key. Hoping later versions of TC will provide
330
+ # a mget method.
331
+ #
332
+ def lget (keys)
333
+
334
+ keys.inject({}) { |h, k| v = self[k]; h[k] = v if v; h }
335
+ end
336
+
337
+ # Returns the number of records in this table db
338
+ #
339
+ def size
340
+
341
+ lib.tab_rnum(@db)
342
+ end
343
+
344
+ # Prepares a query instance (block is optional)
345
+ #
346
+ def prepare_query (&block)
347
+
348
+ q = TableQuery.new(self)
349
+ block.call(q) if block
350
+
351
+ q
352
+ end
353
+
354
+ # Prepares and runs a query, returns a ResultSet instance
355
+ # (takes care of freeing the query structure)
356
+ #
357
+ def do_query (&block)
358
+
359
+ q = prepare_query(&block)
360
+ rs = q.run
361
+
362
+ return rs
363
+
364
+ ensure
365
+ q.free
366
+ end
367
+
368
+ # Prepares and runs a query, returns an array of hashes (all Ruby)
369
+ # (takes care of freeing the query and the result set structures)
370
+ #
371
+ def query (&block)
372
+
373
+ rs = do_query(&block)
374
+ a = rs.to_a
375
+
376
+ return a
377
+
378
+ ensure
379
+ rs.free
380
+ end
381
+
382
+ # Prepares a query and then runs it and deletes all the results.
383
+ #
384
+ def query_delete (&block)
385
+
386
+ q = prepare_query(&block)
387
+ rs = q.delete
388
+
389
+ return rs
390
+
391
+ ensure
392
+ q.free
393
+ end
394
+
395
+ # Warning : this method is low-level, you probably only need
396
+ # to use #transaction and a block.
397
+ #
398
+ # Direct call for 'transaction begin'.
399
+ #
400
+ def tranbegin
401
+
402
+ libcall(:tctdbtranbegin)
403
+ end
404
+
405
+ # Warning : this method is low-level, you probably only need
406
+ # to use #transaction and a block.
407
+ #
408
+ # Direct call for 'transaction commit'.
409
+ #
410
+ def trancommit
411
+ libcall(:tctdbtrancommit)
412
+ end
413
+
414
+ # Warning : this method is low-level, you probably only need
415
+ # to use #transaction and a block.
416
+ #
417
+ # Direct call for 'transaction abort'.
418
+ #
419
+ def tranabort
420
+ libcall(:tctdbtranabort)
421
+ end
422
+
423
+ # Returns the actual pointer to the Tokyo Cabinet table
424
+ #
425
+ def pointer
426
+ @db
427
+ end
428
+
429
+ protected
430
+
431
+ # Returns the value (as a Ruby Hash) else nil
432
+ #
433
+ # (the actual #[] method is provided by HashMethods)
434
+ #
435
+ def get (k)
436
+
437
+ m = lib.tab_get(@db, k, Rufus::Tokyo.blen(k))
438
+
439
+ return nil if m.address == 0
440
+
441
+ Map.to_h(m) # which frees the map
442
+ end
443
+
444
+ def libcall (lib_method, *args)
445
+
446
+ #(lib.send(lib_method, @db, *args) == 1) or raise_error
447
+ # stack level too deep with JRuby 1.1.6 :(
448
+
449
+ (eval(%{ lib.#{lib_method}(@db, *args) }) == 1) or raise_error
450
+ # works with JRuby 1.1.6
451
+ end
452
+
453
+ # Obviously something got wrong, let's ask the db about it and raise
454
+ # a TokyoError
455
+ #
456
+ def raise_error
457
+
458
+ err_code = lib.tab_ecode(@db)
459
+ err_msg = lib.tab_errmsg(err_code)
460
+
461
+ raise TokyoError.new("(err #{err_code}) #{err_msg}")
462
+ end
463
+ end
464
+
465
+ #
466
+ # A query on a Tokyo Cabinet table db
467
+ #
468
+ class TableQuery
469
+
470
+ include QueryConstants
471
+
472
+ # Creates a query for a given Rufus::Tokyo::Table
473
+ #
474
+ # Queries are usually created via the #query (#prepare_query #do_query)
475
+ # of the Table instance.
476
+ #
477
+ # Methods of interest here are :
478
+ #
479
+ # * #add (or #add_condition)
480
+ # * #order_by
481
+ # * #limit
482
+ #
483
+ # also
484
+ #
485
+ # * #pk_only
486
+ # * #no_pk
487
+ #
488
+ def initialize (table)
489
+ @table = table
490
+ @query = @table.lib.qry_new(@table.pointer)
491
+ @opts = {}
492
+ end
493
+
494
+ def lib
495
+ @table.lib
496
+ end
497
+
498
+ # Adds a condition
499
+ #
500
+ # table.query { |q|
501
+ # q.add 'name', :equals, 'Oppenheimer'
502
+ # q.add 'age', :numgt, 35
503
+ # }
504
+ #
505
+ # Understood 'operators' :
506
+ #
507
+ # :streq # string equality
508
+ # :eq
509
+ # :eql
510
+ # :equals
511
+ #
512
+ # :strinc # string include
513
+ # :inc # string include
514
+ # :includes # string include
515
+ #
516
+ # :strbw # string begins with
517
+ # :bw
518
+ # :starts_with
519
+ # :strew # string ends with
520
+ # :ew
521
+ # :ends_with
522
+ #
523
+ # :strand # string which include all the tokens in the given exp
524
+ # :and
525
+ #
526
+ # :stror # string which include at least one of the tokens
527
+ # :or
528
+ #
529
+ # :stroreq # string which is equal to at least one token
530
+ #
531
+ # :strorrx # string which matches the given regex
532
+ # :regex
533
+ # :matches
534
+ #
535
+ # # numbers...
536
+ #
537
+ # :numeq # equal
538
+ # :numequals
539
+ # :numgt # greater than
540
+ # :gt
541
+ # :numge # greater or equal
542
+ # :ge
543
+ # :gte
544
+ # :numlt # greater or equal
545
+ # :lt
546
+ # :numle # greater or equal
547
+ # :le
548
+ # :lte
549
+ # :numbt # a number between two tokens in the given exp
550
+ # :bt
551
+ # :between
552
+ #
553
+ # :numoreq # number which is equal to at least one token
554
+ #
555
+ def add (colname, operator, val, affirmative=true, no_index=false)
556
+
557
+ op = operator.is_a?(Fixnum) ? operator : OPERATORS[operator]
558
+ op = op | TDBQCNEGATE unless affirmative
559
+ op = op | TDBQCNOIDX if no_index
560
+ lib.qry_addcond(@query, colname, op, val)
561
+ end
562
+ alias :add_condition :add
563
+
564
+ # Sets the max number of records to return for this query.
565
+ #
566
+ # (If you're using TC >= 1.4.10 the optional 'offset' (skip) parameter
567
+ # is accepted)
568
+ #
569
+ def limit (i, offset=-1)
570
+
571
+ lib.respond_to?(:qry_setlimit) ?
572
+ lib.qry_setlimit(@query, i, offset) :
573
+ lib.qry_setmax(@query, i)
574
+ end
575
+
576
+ # Sets the sort order for the result of the query
577
+ #
578
+ # The 'direction' may be :
579
+ #
580
+ # :strasc # string ascending
581
+ # :strdesc
582
+ # :asc # string ascending
583
+ # :desc
584
+ # :numasc # number ascending
585
+ # :numdesc
586
+ #
587
+ def order_by (colname, direction=:strasc)
588
+ lib.qry_setorder(@query, colname, DIRECTIONS[direction])
589
+ end
590
+
591
+ # When set to true, only the primary keys of the matching records will
592
+ # be returned.
593
+ #
594
+ def pk_only (on=true)
595
+ @opts[:pk_only] = on
596
+ end
597
+
598
+ # When set to true, the :pk (primary key) is not inserted in the record
599
+ # (hashes) returned
600
+ #
601
+ def no_pk (on=true)
602
+
603
+ @opts[:no_pk] = on
604
+ end
605
+
606
+ # Process each record using the supplied block, which will be passed
607
+ # two parameters, the primary key and the value hash.
608
+ #
609
+ # The block passed to this method accepts two parameters : the [String]
610
+ # primary key and a Hash of the values for the record.
611
+ #
612
+ # The return value of the passed block does matter. Three different
613
+ # values are expected :stop, :delete or a Hash instance.
614
+ #
615
+ # :stop will make the iteration stop, further matching records will not
616
+ # be passed to the block
617
+ #
618
+ # :delete will let Tokyo Cabinet delete the record just seen.
619
+ #
620
+ # a Hash is passed to let TC update the values for the record just seen.
621
+ #
622
+ # Passing an array is possible : [ :stop, { 'name' => 'Toto' } ] will
623
+ # update the record just seen to a unique column 'name' and will stop the
624
+ # iteration. Likewise, returning [ :stop, :delete ] will work as well.
625
+ #
626
+ # (by Matthew King)
627
+ #
628
+ def process (&block)
629
+
630
+ callback = lambda do |pk, pklen, map, opt_param|
631
+
632
+ key = pk.read_string(pklen)
633
+ val = Rufus::Tokyo::Map.new(map).to_h
634
+
635
+ r = block.call(key, val)
636
+ r = [ r ] unless r.is_a?(Array)
637
+
638
+ if updated_value = r.find { |e| e.is_a?(Hash) }
639
+ Rufus::Tokyo::Map.new(map).merge!(updated_value)
640
+ end
641
+
642
+ r.inject(0) { |i, v|
643
+ case v
644
+ when :stop then i = i | 1 << 24
645
+ when :delete then i = i | 2
646
+ when Hash then i = i | 1
647
+ end
648
+ i
649
+ }
650
+ end
651
+
652
+ lib.qry_proc(@query, callback, nil)
653
+
654
+ self
655
+ end
656
+
657
+ # Runs this query (returns a TableResultSet instance)
658
+ #
659
+ def run
660
+
661
+ @last_resultset =
662
+ TableResultSet.new(@table, lib.qry_search(@query), @opts)
663
+ end
664
+
665
+ # Runs this query AND let all the matching records get deleted.
666
+ #
667
+ def delete
668
+
669
+ lib.qry_searchout(@query) || raise_error
670
+ end
671
+
672
+ # Gets the count of records returned by this query.
673
+ #
674
+ # Note : the 'real' impl is only available since TokyoCabinet 1.4.12.
675
+ #
676
+ def count
677
+
678
+ if lib.respond_to?(:qry_count)
679
+ lib.qry_count(@query)
680
+ else
681
+ @last_resultset ? @last_resultset.size : 0
682
+ end
683
+ end
684
+
685
+ # Frees this data structure
686
+ #
687
+ def free
688
+ lib.qry_del(@query)
689
+ @query = nil
690
+ end
691
+
692
+ alias :close :free
693
+ alias :destroy :free
694
+ end
695
+
696
+ #
697
+ # The thing queries return
698
+ #
699
+ class TableResultSet
700
+
701
+ include Enumerable
702
+
703
+ def initialize (table, list_pointer, query_opts)
704
+
705
+ @table = table
706
+ @list = Rufus::Tokyo::List.new(list_pointer)
707
+ @opts = query_opts
708
+ end
709
+
710
+ # Returns the count of element in this result set
711
+ #
712
+ def size
713
+
714
+ @list.size
715
+ end
716
+
717
+ alias :length :size
718
+
719
+ # The classical each
720
+ #
721
+ def each
722
+ (0..size-1).each do |i|
723
+ pk = @list[i]
724
+ if @opts[:pk_only]
725
+ yield(pk)
726
+ else
727
+ val = @table[pk]
728
+ val[:pk] = pk unless @opts[:no_pk]
729
+ yield(val)
730
+ end
731
+ end
732
+ end
733
+
734
+ # Returns an array of hashes
735
+ #
736
+ def to_a
737
+
738
+ collect { |m| m }
739
+ end
740
+
741
+ # Frees this query (the underlying Tokyo Cabinet list structure)
742
+ #
743
+ def free
744
+
745
+ @list.free
746
+ @list = nil
747
+ end
748
+
749
+ alias :close :free
750
+ alias :destroy :free
751
+ end
752
+ end
753
+