webroar 0.2.2

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 (1988) hide show
  1. data/COPYING +675 -0
  2. data/Rakefile +27 -0
  3. data/bin/webroar +38 -0
  4. data/bin/webroar-analyzer +23 -0
  5. data/conf/server_internal_config.yml +16 -0
  6. data/conf/starling_server_config.yml +13 -0
  7. data/conf/test_suite_config.yml +12 -0
  8. data/doc/images/icons/caution.png +0 -0
  9. data/doc/images/icons/example.png +0 -0
  10. data/doc/images/icons/important.png +0 -0
  11. data/doc/images/icons/note.png +0 -0
  12. data/doc/images/icons/tip.png +0 -0
  13. data/doc/images/icons/warning.png +0 -0
  14. data/doc/user-guide.html +912 -0
  15. data/doc/user-guide.txt +323 -0
  16. data/lib/command_runner.rb +241 -0
  17. data/lib/constant.rb +49 -0
  18. data/lib/dependencies.rb +177 -0
  19. data/lib/installer.rb +658 -0
  20. data/lib/webroar_command.rb +357 -0
  21. data/src/admin_panel/Rakefile +10 -0
  22. data/src/admin_panel/app/controllers/admin_controller.rb +197 -0
  23. data/src/admin_panel/app/controllers/application_controller.rb +137 -0
  24. data/src/admin_panel/app/controllers/application_specification_controller.rb +117 -0
  25. data/src/admin_panel/app/controllers/exceptions_controller.rb +179 -0
  26. data/src/admin_panel/app/controllers/graph_controller.rb +504 -0
  27. data/src/admin_panel/app/controllers/mail_specification_controller.rb +169 -0
  28. data/src/admin_panel/app/controllers/server_specification_controller.rb +106 -0
  29. data/src/admin_panel/app/helpers/admin_helper.rb +270 -0
  30. data/src/admin_panel/app/helpers/application_helper.rb +87 -0
  31. data/src/admin_panel/app/helpers/exceptions_helper.rb +22 -0
  32. data/src/admin_panel/app/helpers/graph_helper.rb +39 -0
  33. data/src/admin_panel/app/models/app.rb +34 -0
  34. data/src/admin_panel/app/models/app_exception.rb +72 -0
  35. data/src/admin_panel/app/models/app_time_sample.rb +212 -0
  36. data/src/admin_panel/app/models/application_specification.rb +315 -0
  37. data/src/admin_panel/app/models/pseudo_model.rb +32 -0
  38. data/src/admin_panel/app/models/resource_usage.rb +179 -0
  39. data/src/admin_panel/app/models/server_specification.rb +145 -0
  40. data/src/admin_panel/app/models/url_breakup_time_sample.rb +40 -0
  41. data/src/admin_panel/app/models/url_time_sample.rb +339 -0
  42. data/src/admin_panel/app/models/user.rb +48 -0
  43. data/src/admin_panel/app/views/admin/_add_div.html.erb +42 -0
  44. data/src/admin_panel/app/views/admin/_application_table.html.erb +68 -0
  45. data/src/admin_panel/app/views/admin/change_password_form.html.erb +53 -0
  46. data/src/admin_panel/app/views/admin/configuration.html.erb +89 -0
  47. data/src/admin_panel/app/views/admin/home.html.erb +77 -0
  48. data/src/admin_panel/app/views/admin/index.html.erb +47 -0
  49. data/src/admin_panel/app/views/application_specification/_application_form.html.erb +124 -0
  50. data/src/admin_panel/app/views/application_specification/add_application_form.html.erb +29 -0
  51. data/src/admin_panel/app/views/application_specification/edit_application_form.html.erb +28 -0
  52. data/src/admin_panel/app/views/exceptions/_close_exception_list_partial.html.erb +57 -0
  53. data/src/admin_panel/app/views/exceptions/_exception_list_partial.html.erb +64 -0
  54. data/src/admin_panel/app/views/exceptions/_exceptions_listing_partial.html.erb +31 -0
  55. data/src/admin_panel/app/views/exceptions/_ignored_exception_list_partial.html.erb +57 -0
  56. data/src/admin_panel/app/views/exceptions/_link_partial.html.erb +25 -0
  57. data/src/admin_panel/app/views/exceptions/_show.html.erb +173 -0
  58. data/src/admin_panel/app/views/exceptions/index.html.erb +37 -0
  59. data/src/admin_panel/app/views/graph/_database_usage_graph.html.erb +23 -0
  60. data/src/admin_panel/app/views/graph/_get_database_data.html.erb +30 -0
  61. data/src/admin_panel/app/views/graph/_get_resource_usage_data_app.html.erb +37 -0
  62. data/src/admin_panel/app/views/graph/_get_resource_usage_data_server.html.erb +42 -0
  63. data/src/admin_panel/app/views/graph/_get_throughput_data.html.erb +39 -0
  64. data/src/admin_panel/app/views/graph/_get_url_breakup_data.html.erb +34 -0
  65. data/src/admin_panel/app/views/graph/_get_url_data.html.erb +62 -0
  66. data/src/admin_panel/app/views/graph/_graph_page.html.erb +50 -0
  67. data/src/admin_panel/app/views/graph/_javascript_partial.html.erb +15 -0
  68. data/src/admin_panel/app/views/graph/_pie.html.erb +88 -0
  69. data/src/admin_panel/app/views/graph/_query_date.html.erb +38 -0
  70. data/src/admin_panel/app/views/graph/_query_period.html.erb +40 -0
  71. data/src/admin_panel/app/views/graph/_resource_usage_graph_app.html.erb +23 -0
  72. data/src/admin_panel/app/views/graph/_resource_usage_graph_server.html.erb +23 -0
  73. data/src/admin_panel/app/views/graph/_slider_partial.html.erb +6 -0
  74. data/src/admin_panel/app/views/graph/_throughput_graph.html.erb +23 -0
  75. data/src/admin_panel/app/views/graph/_url_breakup_graph.html.erb +24 -0
  76. data/src/admin_panel/app/views/graph/_url_calls_graph.html.erb +23 -0
  77. data/src/admin_panel/app/views/graph/index.html.erb +42 -0
  78. data/src/admin_panel/app/views/layouts/application.html.erb +174 -0
  79. data/src/admin_panel/app/views/layouts/index.html.erb +57 -0
  80. data/src/admin_panel/app/views/mail_specification/_sendmail_form.html.erb +62 -0
  81. data/src/admin_panel/app/views/mail_specification/_smtp_form.html.erb +95 -0
  82. data/src/admin_panel/app/views/server_specification/_ssl_support_form.html.erb +59 -0
  83. data/src/admin_panel/config/boot.rb +110 -0
  84. data/src/admin_panel/config/database.yml +23 -0
  85. data/src/admin_panel/config/environment.rb +69 -0
  86. data/src/admin_panel/config/environments/development.rb +18 -0
  87. data/src/admin_panel/config/environments/production.rb +24 -0
  88. data/src/admin_panel/config/environments/test.rb +24 -0
  89. data/src/admin_panel/config/initializers/application_constants.rb +137 -0
  90. data/src/admin_panel/config/initializers/inflections.rb +10 -0
  91. data/src/admin_panel/config/initializers/mime_types.rb +5 -0
  92. data/src/admin_panel/config/initializers/new_rails_defaults.rb +17 -0
  93. data/src/admin_panel/config/initializers/ssl.rb +46 -0
  94. data/src/admin_panel/config/routes.rb +57 -0
  95. data/src/admin_panel/db/migrate/20081020052652_create_apps.rb +32 -0
  96. data/src/admin_panel/db/migrate/20081020052934_create_resource_usages.rb +35 -0
  97. data/src/admin_panel/db/migrate/20081020053129_create_app_time_samples.rb +39 -0
  98. data/src/admin_panel/db/migrate/20081020053411_create_url_time_samples.rb +39 -0
  99. data/src/admin_panel/db/migrate/20081020053624_create_url_breakup_time_samples.rb +35 -0
  100. data/src/admin_panel/db/migrate/20081021005144_add_constraints.rb +49 -0
  101. data/src/admin_panel/db/migrate/20090407052622_create_app_exceptions.rb +68 -0
  102. data/src/admin_panel/doc/README_FOR_APP +2 -0
  103. data/src/admin_panel/doc/app/classes/AdminController.html +628 -0
  104. data/src/admin_panel/doc/app/classes/AdminHelper.html +482 -0
  105. data/src/admin_panel/doc/app/classes/Analytics/Database.html +245 -0
  106. data/src/admin_panel/doc/app/classes/Analytics/ResourceUsage.html +478 -0
  107. data/src/admin_panel/doc/app/classes/Analytics/Throughput.html +316 -0
  108. data/src/admin_panel/doc/app/classes/Analytics/Url.html +310 -0
  109. data/src/admin_panel/doc/app/classes/Analytics/UrlBreakup.html +366 -0
  110. data/src/admin_panel/doc/app/classes/Analytics.html +138 -0
  111. data/src/admin_panel/doc/app/classes/App.html +158 -0
  112. data/src/admin_panel/doc/app/classes/AppException.html +357 -0
  113. data/src/admin_panel/doc/app/classes/AppTimeSample.html +467 -0
  114. data/src/admin_panel/doc/app/classes/ApplicationController.html +118 -0
  115. data/src/admin_panel/doc/app/classes/ApplicationHelper.html +278 -0
  116. data/src/admin_panel/doc/app/classes/ApplicationSpecification.html +541 -0
  117. data/src/admin_panel/doc/app/classes/ApplicationSpecificationController.html +350 -0
  118. data/src/admin_panel/doc/app/classes/Control.html +329 -0
  119. data/src/admin_panel/doc/app/classes/ExceptionsController.html +624 -0
  120. data/src/admin_panel/doc/app/classes/ExceptionsHelper.html +105 -0
  121. data/src/admin_panel/doc/app/classes/GraphController.html +687 -0
  122. data/src/admin_panel/doc/app/classes/GraphHelper.html +164 -0
  123. data/src/admin_panel/doc/app/classes/MailSpecificationController.html +338 -0
  124. data/src/admin_panel/doc/app/classes/PseudoModel.html +206 -0
  125. data/src/admin_panel/doc/app/classes/ResourceUsage.html +425 -0
  126. data/src/admin_panel/doc/app/classes/SCGI.html +406 -0
  127. data/src/admin_panel/doc/app/classes/ServerSpecification.html +327 -0
  128. data/src/admin_panel/doc/app/classes/ServerSpecificationController.html +273 -0
  129. data/src/admin_panel/doc/app/classes/UrlBreakupTimeSample.html +169 -0
  130. data/src/admin_panel/doc/app/classes/UrlTimeSample.html +774 -0
  131. data/src/admin_panel/doc/app/classes/User.html +165 -0
  132. data/src/admin_panel/doc/app/classes/YAMLWriter.html +159 -0
  133. data/src/admin_panel/doc/app/created.rid +1 -0
  134. data/src/admin_panel/doc/app/files/app/controllers/admin_controller_rb.html +101 -0
  135. data/src/admin_panel/doc/app/files/app/controllers/application_controller_rb.html +108 -0
  136. data/src/admin_panel/doc/app/files/app/controllers/application_specification_controller_rb.html +101 -0
  137. data/src/admin_panel/doc/app/files/app/controllers/exceptions_controller_rb.html +101 -0
  138. data/src/admin_panel/doc/app/files/app/controllers/graph_controller_rb.html +101 -0
  139. data/src/admin_panel/doc/app/files/app/controllers/mail_specification_controller_rb.html +101 -0
  140. data/src/admin_panel/doc/app/files/app/controllers/server_specification_controller_rb.html +101 -0
  141. data/src/admin_panel/doc/app/files/app/helpers/admin_helper_rb.html +101 -0
  142. data/src/admin_panel/doc/app/files/app/helpers/application_helper_rb.html +101 -0
  143. data/src/admin_panel/doc/app/files/app/helpers/exceptions_helper_rb.html +101 -0
  144. data/src/admin_panel/doc/app/files/app/helpers/graph_helper_rb.html +101 -0
  145. data/src/admin_panel/doc/app/files/app/models/app_exception_rb.html +101 -0
  146. data/src/admin_panel/doc/app/files/app/models/app_rb.html +108 -0
  147. data/src/admin_panel/doc/app/files/app/models/app_time_sample_rb.html +101 -0
  148. data/src/admin_panel/doc/app/files/app/models/application_specification_rb.html +101 -0
  149. data/src/admin_panel/doc/app/files/app/models/pseudo_model_rb.html +101 -0
  150. data/src/admin_panel/doc/app/files/app/models/resource_usage_rb.html +101 -0
  151. data/src/admin_panel/doc/app/files/app/models/server_specification_rb.html +101 -0
  152. data/src/admin_panel/doc/app/files/app/models/url_breakup_time_sample_rb.html +101 -0
  153. data/src/admin_panel/doc/app/files/app/models/url_time_sample_rb.html +101 -0
  154. data/src/admin_panel/doc/app/files/app/models/user_rb.html +101 -0
  155. data/src/admin_panel/doc/app/files/doc/README_FOR_APP.html +109 -0
  156. data/src/admin_panel/doc/app/files/lib/control_rb.html +109 -0
  157. data/src/admin_panel/doc/app/files/lib/graph_controller_extensions/database_analytics_rb.html +101 -0
  158. data/src/admin_panel/doc/app/files/lib/graph_controller_extensions/resource_usage_analytics_rb.html +101 -0
  159. data/src/admin_panel/doc/app/files/lib/graph_controller_extensions/throughput_analytics_rb.html +101 -0
  160. data/src/admin_panel/doc/app/files/lib/graph_controller_extensions/url_analytics_rb.html +101 -0
  161. data/src/admin_panel/doc/app/files/lib/graph_controller_extensions/url_breakup_analytics_rb.html +101 -0
  162. data/src/admin_panel/doc/app/files/lib/scgi_rb.html +101 -0
  163. data/src/admin_panel/doc/app/files/lib/yaml_writer_rb.html +101 -0
  164. data/src/admin_panel/doc/app/fr_class_index.html +56 -0
  165. data/src/admin_panel/doc/app/fr_file_index.html +56 -0
  166. data/src/admin_panel/doc/app/fr_method_index.html +196 -0
  167. data/src/admin_panel/doc/app/index.html +24 -0
  168. data/src/admin_panel/doc/app/rdoc-style.css +208 -0
  169. data/src/admin_panel/lib/control.rb +92 -0
  170. data/src/admin_panel/lib/graph_controller_extensions/database_analytics.rb +62 -0
  171. data/src/admin_panel/lib/graph_controller_extensions/resource_usage_analytics.rb +132 -0
  172. data/src/admin_panel/lib/graph_controller_extensions/throughput_analytics.rb +84 -0
  173. data/src/admin_panel/lib/graph_controller_extensions/url_analytics.rb +79 -0
  174. data/src/admin_panel/lib/graph_controller_extensions/url_breakup_analytics.rb +137 -0
  175. data/src/admin_panel/lib/scgi.rb +97 -0
  176. data/src/admin_panel/lib/yaml_writer.rb +125 -0
  177. data/src/admin_panel/public/404.html +30 -0
  178. data/src/admin_panel/public/422.html +30 -0
  179. data/src/admin_panel/public/500.html +30 -0
  180. data/src/admin_panel/public/blank_iframe.html +2 -0
  181. data/src/admin_panel/public/dispatch.cgi +10 -0
  182. data/src/admin_panel/public/dispatch.fcgi +24 -0
  183. data/src/admin_panel/public/dispatch.rb +10 -0
  184. data/src/admin_panel/public/favicon.ico +0 -0
  185. data/src/admin_panel/public/images/analytics_ad.gif +0 -0
  186. data/src/admin_panel/public/images/analytics_ad_ov.gif +0 -0
  187. data/src/admin_panel/public/images/analytics_dn.gif +0 -0
  188. data/src/admin_panel/public/images/analytics_up.gif +0 -0
  189. data/src/admin_panel/public/images/bar.gif +0 -0
  190. data/src/admin_panel/public/images/bullet.gif +0 -0
  191. data/src/admin_panel/public/images/calendar_date_select/calendar.gif +0 -0
  192. data/src/admin_panel/public/images/callout_left.gif +0 -0
  193. data/src/admin_panel/public/images/callout_right.gif +0 -0
  194. data/src/admin_panel/public/images/configuration_ad.gif +0 -0
  195. data/src/admin_panel/public/images/configuration_ad_ov.gif +0 -0
  196. data/src/admin_panel/public/images/configuration_dn.gif +0 -0
  197. data/src/admin_panel/public/images/configuration_up.gif +0 -0
  198. data/src/admin_panel/public/images/exception_dn.gif +0 -0
  199. data/src/admin_panel/public/images/exception_up.gif +0 -0
  200. data/src/admin_panel/public/images/exceptions_ad.gif +0 -0
  201. data/src/admin_panel/public/images/exceptions_ad_ov.gif +0 -0
  202. data/src/admin_panel/public/images/footer-bg.gif +0 -0
  203. data/src/admin_panel/public/images/home_ad.gif +0 -0
  204. data/src/admin_panel/public/images/home_ad_ov.gif +0 -0
  205. data/src/admin_panel/public/images/home_dn.gif +0 -0
  206. data/src/admin_panel/public/images/home_down.jpg +0 -0
  207. data/src/admin_panel/public/images/home_up.gif +0 -0
  208. data/src/admin_panel/public/images/home_up.jpg +0 -0
  209. data/src/admin_panel/public/images/impetus.gif +0 -0
  210. data/src/admin_panel/public/images/left_menu.gif +0 -0
  211. data/src/admin_panel/public/images/loading.gif +0 -0
  212. data/src/admin_panel/public/images/logout.gif +0 -0
  213. data/src/admin_panel/public/images/rails.png +0 -0
  214. data/src/admin_panel/public/images/right_menu.gif +0 -0
  215. data/src/admin_panel/public/images/server_logo.gif +0 -0
  216. data/src/admin_panel/public/images/setting_dn.gif +0 -0
  217. data/src/admin_panel/public/images/setting_up.gif +0 -0
  218. data/src/admin_panel/public/images/settings_ad.gif +0 -0
  219. data/src/admin_panel/public/images/settings_ad_ov.gif +0 -0
  220. data/src/admin_panel/public/images/settings_down.jpg +0 -0
  221. data/src/admin_panel/public/images/settings_up.jpg +0 -0
  222. data/src/admin_panel/public/images/slider.jpg +0 -0
  223. data/src/admin_panel/public/images/tit_analytics_ad.gif +0 -0
  224. data/src/admin_panel/public/images/tit_configuration_ad.gif +0 -0
  225. data/src/admin_panel/public/images/tit_exceptions_ad.gif +0 -0
  226. data/src/admin_panel/public/images/tit_home_ad.gif +0 -0
  227. data/src/admin_panel/public/images/tit_settings_ad.gif +0 -0
  228. data/src/admin_panel/public/images/webroar-logo.gif +0 -0
  229. data/src/admin_panel/public/javascripts/application.js +283 -0
  230. data/src/admin_panel/public/javascripts/builder.js +136 -0
  231. data/src/admin_panel/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
  232. data/src/admin_panel/public/javascripts/calendar_date_select/format_american.js +34 -0
  233. data/src/admin_panel/public/javascripts/calendar_date_select/format_db.js +27 -0
  234. data/src/admin_panel/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  235. data/src/admin_panel/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
  236. data/src/admin_panel/public/javascripts/calendar_date_select/format_finnish.js +32 -0
  237. data/src/admin_panel/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
  238. data/src/admin_panel/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
  239. data/src/admin_panel/public/javascripts/calendar_date_select/format_italian.js +24 -0
  240. data/src/admin_panel/public/javascripts/calendar_date_select/locale/de.js +11 -0
  241. data/src/admin_panel/public/javascripts/calendar_date_select/locale/fi.js +10 -0
  242. data/src/admin_panel/public/javascripts/calendar_date_select/locale/fr.js +10 -0
  243. data/src/admin_panel/public/javascripts/calendar_date_select/locale/pl.js +10 -0
  244. data/src/admin_panel/public/javascripts/calendar_date_select/locale/pt.js +11 -0
  245. data/src/admin_panel/public/javascripts/calendar_date_select/locale/ru.js +10 -0
  246. data/src/admin_panel/public/javascripts/controls.js +963 -0
  247. data/src/admin_panel/public/javascripts/dragdrop.js +973 -0
  248. data/src/admin_panel/public/javascripts/effects.js +1128 -0
  249. data/src/admin_panel/public/javascripts/jquery-1.3.2.js +4376 -0
  250. data/src/admin_panel/public/javascripts/prototype.js +4320 -0
  251. data/src/admin_panel/public/javascripts/scriptaculous.js +58 -0
  252. data/src/admin_panel/public/javascripts/swfobject.js +5 -0
  253. data/src/admin_panel/public/javascripts/ui.core.js +519 -0
  254. data/src/admin_panel/public/javascripts/ui.slider.js +555 -0
  255. data/src/admin_panel/public/javascripts/ui.slider_old.js +558 -0
  256. data/src/admin_panel/public/open-flash-chart.swf +0 -0
  257. data/src/admin_panel/public/robots.txt +5 -0
  258. data/src/admin_panel/public/stylesheets/calendar_date_select/blue.css +130 -0
  259. data/src/admin_panel/public/stylesheets/calendar_date_select/default.css +135 -0
  260. data/src/admin_panel/public/stylesheets/calendar_date_select/plain.css +128 -0
  261. data/src/admin_panel/public/stylesheets/calendar_date_select/red.css +135 -0
  262. data/src/admin_panel/public/stylesheets/calendar_date_select/silver.css +133 -0
  263. data/src/admin_panel/public/stylesheets/netscape/login.css +92 -0
  264. data/src/admin_panel/public/stylesheets/netscape/style.css +657 -0
  265. data/src/admin_panel/public/stylesheets/other/login.css +91 -0
  266. data/src/admin_panel/public/stylesheets/other/style.css +657 -0
  267. data/src/admin_panel/public/stylesheets/safari/login.css +75 -0
  268. data/src/admin_panel/public/stylesheets/safari/style.css +668 -0
  269. data/src/admin_panel/public/stylesheets/ui.all.css +2 -0
  270. data/src/admin_panel/public/stylesheets/ui.base.css +2 -0
  271. data/src/admin_panel/public/stylesheets/ui.core.css +37 -0
  272. data/src/admin_panel/public/stylesheets/ui.slider.css +23 -0
  273. data/src/admin_panel/public/stylesheets/ui.theme.css +245 -0
  274. data/src/admin_panel/script/about +4 -0
  275. data/src/admin_panel/script/console +3 -0
  276. data/src/admin_panel/script/dbconsole +3 -0
  277. data/src/admin_panel/script/destroy +3 -0
  278. data/src/admin_panel/script/generate +3 -0
  279. data/src/admin_panel/script/performance/benchmarker +3 -0
  280. data/src/admin_panel/script/performance/profiler +3 -0
  281. data/src/admin_panel/script/performance/request +3 -0
  282. data/src/admin_panel/script/plugin +3 -0
  283. data/src/admin_panel/script/process/inspector +3 -0
  284. data/src/admin_panel/script/process/reaper +3 -0
  285. data/src/admin_panel/script/process/spawner +3 -0
  286. data/src/admin_panel/script/runner +3 -0
  287. data/src/admin_panel/script/server +3 -0
  288. data/src/admin_panel/test/functional/admin_controller_test.rb +126 -0
  289. data/src/admin_panel/test/functional/application_specification_controller_test.rb +61 -0
  290. data/src/admin_panel/test/functional/exceptions_controller_test.rb +28 -0
  291. data/src/admin_panel/test/functional/graph_controller_test.rb +44 -0
  292. data/src/admin_panel/test/test_helper.rb +76 -0
  293. data/src/admin_panel/test/unit/app_exception_test.rb +28 -0
  294. data/src/admin_panel/test/unit/app_test.rb +34 -0
  295. data/src/admin_panel/test/unit/app_time_sample_test.rb +38 -0
  296. data/src/admin_panel/test/unit/helpers/exceptions_helper_test.rb +24 -0
  297. data/src/admin_panel/test/unit/resource_usage_test.rb +55 -0
  298. data/src/admin_panel/test/unit/url_breakup_time_sample_test.rb +25 -0
  299. data/src/admin_panel/test/unit/url_time_sample_test.rb +34 -0
  300. data/src/admin_panel/vendor/plugins/open_flash_chart_2/CHANGES +12 -0
  301. data/src/admin_panel/vendor/plugins/open_flash_chart_2/MIT-LICENSE +20 -0
  302. data/src/admin_panel/vendor/plugins/open_flash_chart_2/README +79 -0
  303. data/src/admin_panel/vendor/plugins/open_flash_chart_2/Rakefile +22 -0
  304. data/src/admin_panel/vendor/plugins/open_flash_chart_2/TODO +11 -0
  305. data/src/admin_panel/vendor/plugins/open_flash_chart_2/init.rb +3 -0
  306. data/src/admin_panel/vendor/plugins/open_flash_chart_2/install.rb +6 -0
  307. data/src/admin_panel/vendor/plugins/open_flash_chart_2/lib/open_flash_chart_2.rb +563 -0
  308. data/src/admin_panel/vendor/plugins/open_flash_chart_2/requirements/json/json2.js +461 -0
  309. data/src/admin_panel/vendor/plugins/open_flash_chart_2/requirements/open-flash-chart.swf +0 -0
  310. data/src/admin_panel/vendor/plugins/open_flash_chart_2/requirements/swfobject.js +5 -0
  311. data/src/admin_panel/vendor/plugins/open_flash_chart_2/tasks/open_flash_chart_tasks.rake +16 -0
  312. data/src/admin_panel/vendor/plugins/open_flash_chart_2/test/open_flash_chart_test.rb +8 -0
  313. data/src/admin_panel/vendor/plugins/open_flash_chart_2/uninstall.rb +4 -0
  314. data/src/admin_panel/vendor/plugins/ssl_requirement/README +43 -0
  315. data/src/admin_panel/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +72 -0
  316. data/src/admin_panel/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
  317. data/src/admin_panel/vendor/rails/actionmailer/CHANGELOG +358 -0
  318. data/src/admin_panel/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  319. data/src/admin_panel/vendor/rails/actionmailer/README +149 -0
  320. data/src/admin_panel/vendor/rails/actionmailer/Rakefile +98 -0
  321. data/src/admin_panel/vendor/rails/actionmailer/install.rb +30 -0
  322. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  323. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/base.rb +705 -0
  324. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +113 -0
  325. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +17 -0
  326. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/part.rb +107 -0
  327. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +55 -0
  328. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +61 -0
  329. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/test_case.rb +64 -0
  330. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/test_helper.rb +68 -0
  331. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/utils.rb +7 -0
  332. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb +1466 -0
  333. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/text_format.rb +10 -0
  334. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/address.rb +426 -0
  335. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
  336. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/base64.rb +46 -0
  337. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/compat.rb +41 -0
  338. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/config.rb +67 -0
  339. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/core_extensions.rb +63 -0
  340. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/encode.rb +581 -0
  341. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/header.rb +960 -0
  342. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/index.rb +9 -0
  343. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb +1130 -0
  344. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/loader.rb +3 -0
  345. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mail.rb +578 -0
  346. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mailbox.rb +495 -0
  347. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/main.rb +6 -0
  348. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/mbox.rb +3 -0
  349. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/net.rb +248 -0
  350. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/obsolete.rb +132 -0
  351. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
  352. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/port.rb +379 -0
  353. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/quoting.rb +118 -0
  354. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/require_arch.rb +58 -0
  355. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner.rb +49 -0
  356. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/scanner_r.rb +261 -0
  357. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/stringio.rb +280 -0
  358. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/utils.rb +337 -0
  359. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/version.rb +39 -0
  360. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail.rb +5 -0
  361. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +17 -0
  362. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  363. data/src/admin_panel/vendor/rails/actionmailer/lib/action_mailer.rb +62 -0
  364. data/src/admin_panel/vendor/rails/actionmailer/lib/actionmailer.rb +1 -0
  365. data/src/admin_panel/vendor/rails/actionmailer/test/abstract_unit.rb +65 -0
  366. data/src/admin_panel/vendor/rails/actionmailer/test/asset_host_test.rb +54 -0
  367. data/src/admin_panel/vendor/rails/actionmailer/test/delivery_method_test.rb +51 -0
  368. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/asset_host_mailer/email_with_asset.html.erb +1 -0
  369. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/hello.html.erb +1 -0
  370. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.html.erb +1 -0
  371. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/auto_layout_mailer/multipart.text.plain.erb +1 -0
  372. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/logout.html.erb +1 -0
  373. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/explicit_layout_mailer/signup.html.erb +1 -0
  374. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/first_mailer/share.erb +1 -0
  375. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_example_helper.erb +1 -0
  376. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.erb +1 -0
  377. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.erb +1 -0
  378. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.erb +5 -0
  379. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +5 -0
  380. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.html.erb +1 -0
  381. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/layouts/auto_layout_mailer.text.erb +1 -0
  382. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/layouts/spam.html.erb +1 -0
  383. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.erb +1 -0
  384. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  385. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  386. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  387. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  388. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  389. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  390. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  391. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  392. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  393. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  394. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  395. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  396. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  397. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email_with_invalid_characters_in_content_type +104 -0
  398. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email_with_nested_attachment +100 -0
  399. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  400. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/second_mailer/share.erb +1 -0
  401. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/templates/signed_up.erb +3 -0
  402. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/_subtemplate.text.plain.erb +1 -0
  403. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/body_ivar.erb +2 -0
  404. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.html.haml +6 -0
  405. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/custom_templating_extension.text.plain.haml +6 -0
  406. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb +1 -0
  407. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb +10 -0
  408. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.erb +2 -0
  409. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb +1 -0
  410. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/included_subtemplate.text.plain.erb +1 -0
  411. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.builder +2 -0
  412. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/rxml_template.rxml +2 -0
  413. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.html.erb +3 -0
  414. data/src/admin_panel/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb +5 -0
  415. data/src/admin_panel/vendor/rails/actionmailer/test/mail_helper_test.rb +95 -0
  416. data/src/admin_panel/vendor/rails/actionmailer/test/mail_layout_test.rb +123 -0
  417. data/src/admin_panel/vendor/rails/actionmailer/test/mail_render_test.rb +116 -0
  418. data/src/admin_panel/vendor/rails/actionmailer/test/mail_service_test.rb +1078 -0
  419. data/src/admin_panel/vendor/rails/actionmailer/test/quoting_test.rb +99 -0
  420. data/src/admin_panel/vendor/rails/actionmailer/test/test_helper_test.rb +129 -0
  421. data/src/admin_panel/vendor/rails/actionmailer/test/tmail_test.rb +22 -0
  422. data/src/admin_panel/vendor/rails/actionmailer/test/url_test.rb +76 -0
  423. data/src/admin_panel/vendor/rails/actionpack/CHANGELOG +5156 -0
  424. data/src/admin_panel/vendor/rails/actionpack/MIT-LICENSE +21 -0
  425. data/src/admin_panel/vendor/rails/actionpack/README +409 -0
  426. data/src/admin_panel/vendor/rails/actionpack/RUNNING_UNIT_TESTS +24 -0
  427. data/src/admin_panel/vendor/rails/actionpack/Rakefile +158 -0
  428. data/src/admin_panel/vendor/rails/actionpack/install.rb +30 -0
  429. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +39 -0
  430. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +21 -0
  431. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +150 -0
  432. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +146 -0
  433. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +632 -0
  434. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +127 -0
  435. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/base.rb +1414 -0
  436. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +107 -0
  437. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/caching/actions.rb +169 -0
  438. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +120 -0
  439. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/caching/pages.rb +152 -0
  440. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/caching/sweeping.rb +97 -0
  441. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/caching.rb +70 -0
  442. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie.rb +112 -0
  443. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/cgi_ext/query_extension.rb +22 -0
  444. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/cgi_ext/stdinput.rb +24 -0
  445. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/cgi_ext.rb +15 -0
  446. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +77 -0
  447. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/cookies.rb +94 -0
  448. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/dispatcher.rb +118 -0
  449. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/failsafe.rb +52 -0
  450. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/filters.rb +680 -0
  451. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/flash.rb +163 -0
  452. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/headers.rb +33 -0
  453. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/helpers.rb +225 -0
  454. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +304 -0
  455. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/integration.rb +687 -0
  456. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/layout.rb +281 -0
  457. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/middleware_stack.rb +119 -0
  458. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/middlewares.rb +13 -0
  459. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +193 -0
  460. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/mime_type.rb +212 -0
  461. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/mime_types.rb +21 -0
  462. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/params_parser.rb +71 -0
  463. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/performance_test.rb +15 -0
  464. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +204 -0
  465. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/record_identifier.rb +104 -0
  466. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/reloader.rb +14 -0
  467. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/request.rb +489 -0
  468. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +108 -0
  469. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/rescue.rb +183 -0
  470. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/resources.rb +678 -0
  471. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/response.rb +232 -0
  472. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/rewindable_input.rb +28 -0
  473. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/builder.rb +197 -0
  474. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/optimisations.rb +130 -0
  475. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/recognition_optimisation.rb +167 -0
  476. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/route.rb +265 -0
  477. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +488 -0
  478. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/routing_ext.rb +49 -0
  479. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing/segments.rb +343 -0
  480. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/routing.rb +385 -0
  481. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +181 -0
  482. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +221 -0
  483. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +51 -0
  484. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/session_management.rb +54 -0
  485. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  486. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/streaming.rb +179 -0
  487. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.erb +24 -0
  488. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +26 -0
  489. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.erb +11 -0
  490. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.erb +29 -0
  491. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.erb +2 -0
  492. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.erb +10 -0
  493. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.erb +21 -0
  494. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.erb +2 -0
  495. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/test_case.rb +204 -0
  496. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/test_process.rb +572 -0
  497. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/translation.rb +13 -0
  498. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +44 -0
  499. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +216 -0
  500. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +68 -0
  501. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +537 -0
  502. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/sanitizer.rb +173 -0
  503. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +828 -0
  504. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  505. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  506. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner.rb +16 -0
  507. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/adapter/camping.rb +22 -0
  508. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/abstract/handler.rb +37 -0
  509. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/abstract/request.rb +37 -0
  510. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/basic.rb +58 -0
  511. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/digest/md5.rb +124 -0
  512. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/digest/nonce.rb +51 -0
  513. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/digest/params.rb +55 -0
  514. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/digest/request.rb +40 -0
  515. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/auth/openid.rb +480 -0
  516. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/builder.rb +63 -0
  517. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/cascade.rb +36 -0
  518. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/chunked.rb +49 -0
  519. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/commonlogger.rb +61 -0
  520. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/conditionalget.rb +45 -0
  521. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/content_length.rb +29 -0
  522. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/content_type.rb +23 -0
  523. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/deflater.rb +85 -0
  524. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/directory.rb +153 -0
  525. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/file.rb +88 -0
  526. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/cgi.rb +61 -0
  527. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/evented_mongrel.rb +8 -0
  528. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/fastcgi.rb +89 -0
  529. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/lsws.rb +55 -0
  530. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/mongrel.rb +84 -0
  531. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/scgi.rb +59 -0
  532. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/swiftiplied_mongrel.rb +8 -0
  533. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/thin.rb +18 -0
  534. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler/webrick.rb +67 -0
  535. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/handler.rb +48 -0
  536. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/head.rb +19 -0
  537. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/lint.rb +462 -0
  538. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/lobster.rb +65 -0
  539. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/lock.rb +16 -0
  540. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/methodoverride.rb +27 -0
  541. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/mime.rb +204 -0
  542. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/mock.rb +160 -0
  543. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/recursive.rb +57 -0
  544. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/reloader.rb +64 -0
  545. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/request.rb +241 -0
  546. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/response.rb +179 -0
  547. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/session/abstract/id.rb +142 -0
  548. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/session/cookie.rb +91 -0
  549. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/session/memcache.rb +109 -0
  550. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/session/pool.rb +100 -0
  551. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/showexceptions.rb +349 -0
  552. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/showstatus.rb +106 -0
  553. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/static.rb +38 -0
  554. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/urlmap.rb +55 -0
  555. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack/utils.rb +392 -0
  556. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/vendor/rack-1.0/rack.rb +89 -0
  557. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller/verification.rb +130 -0
  558. data/src/admin_panel/vendor/rails/actionpack/lib/action_controller.rb +116 -0
  559. data/src/admin_panel/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  560. data/src/admin_panel/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  561. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/base.rb +357 -0
  562. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/erb/util.rb +38 -0
  563. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +305 -0
  564. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +682 -0
  565. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/atom_feed_helper.rb +198 -0
  566. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +54 -0
  567. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +39 -0
  568. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +136 -0
  569. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +976 -0
  570. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +38 -0
  571. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +1039 -0
  572. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +530 -0
  573. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +481 -0
  574. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +208 -0
  575. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +303 -0
  576. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +1305 -0
  577. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/record_identification_helper.rb +20 -0
  578. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/record_tag_helper.rb +58 -0
  579. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +251 -0
  580. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +226 -0
  581. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +150 -0
  582. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +578 -0
  583. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +39 -0
  584. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +638 -0
  585. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/helpers.rb +57 -0
  586. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/inline_template.rb +19 -0
  587. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/locale/en.yml +110 -0
  588. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/partials.rb +240 -0
  589. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/paths.rb +69 -0
  590. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/reloadable_template.rb +117 -0
  591. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/renderable.rb +95 -0
  592. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/renderable_partial.rb +47 -0
  593. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template.rb +257 -0
  594. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template_error.rb +99 -0
  595. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template_handler.rb +34 -0
  596. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template_handlers/builder.rb +17 -0
  597. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +22 -0
  598. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template_handlers/rjs.rb +13 -0
  599. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/template_handlers.rb +48 -0
  600. data/src/admin_panel/vendor/rails/actionpack/lib/action_view/test_case.rb +87 -0
  601. data/src/admin_panel/vendor/rails/actionpack/lib/action_view.rb +58 -0
  602. data/src/admin_panel/vendor/rails/actionpack/lib/actionpack.rb +1 -0
  603. data/src/admin_panel/vendor/rails/actionpack/test/abstract_unit.rb +45 -0
  604. data/src/admin_panel/vendor/rails/actionpack/test/active_record_unit.rb +104 -0
  605. data/src/admin_panel/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +174 -0
  606. data/src/admin_panel/vendor/rails/actionpack/test/activerecord/render_partial_with_record_identification_test.rb +188 -0
  607. data/src/admin_panel/vendor/rails/actionpack/test/adv_attr_test.rb +20 -0
  608. data/src/admin_panel/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +516 -0
  609. data/src/admin_panel/vendor/rails/actionpack/test/controller/addresses_render_test.rb +37 -0
  610. data/src/admin_panel/vendor/rails/actionpack/test/controller/assert_select_test.rb +734 -0
  611. data/src/admin_panel/vendor/rails/actionpack/test/controller/base_test.rb +217 -0
  612. data/src/admin_panel/vendor/rails/actionpack/test/controller/benchmark_test.rb +32 -0
  613. data/src/admin_panel/vendor/rails/actionpack/test/controller/caching_test.rb +690 -0
  614. data/src/admin_panel/vendor/rails/actionpack/test/controller/capture_test.rb +66 -0
  615. data/src/admin_panel/vendor/rails/actionpack/test/controller/content_type_test.rb +168 -0
  616. data/src/admin_panel/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  617. data/src/admin_panel/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  618. data/src/admin_panel/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  619. data/src/admin_panel/vendor/rails/actionpack/test/controller/cookie_test.rb +111 -0
  620. data/src/admin_panel/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +32 -0
  621. data/src/admin_panel/vendor/rails/actionpack/test/controller/dispatcher_test.rb +103 -0
  622. data/src/admin_panel/vendor/rails/actionpack/test/controller/fake_controllers.rb +33 -0
  623. data/src/admin_panel/vendor/rails/actionpack/test/controller/fake_models.rb +19 -0
  624. data/src/admin_panel/vendor/rails/actionpack/test/controller/filter_params_test.rb +49 -0
  625. data/src/admin_panel/vendor/rails/actionpack/test/controller/filters_test.rb +885 -0
  626. data/src/admin_panel/vendor/rails/actionpack/test/controller/flash_test.rb +142 -0
  627. data/src/admin_panel/vendor/rails/actionpack/test/controller/header_test.rb +14 -0
  628. data/src/admin_panel/vendor/rails/actionpack/test/controller/helper_test.rb +224 -0
  629. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/cdata_node_test.rb +15 -0
  630. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/document_test.rb +148 -0
  631. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/node_test.rb +89 -0
  632. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +273 -0
  633. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/tag_node_test.rb +238 -0
  634. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/text_node_test.rb +50 -0
  635. data/src/admin_panel/vendor/rails/actionpack/test/controller/html-scanner/tokenizer_test.rb +131 -0
  636. data/src/admin_panel/vendor/rails/actionpack/test/controller/http_basic_authentication_test.rb +88 -0
  637. data/src/admin_panel/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +178 -0
  638. data/src/admin_panel/vendor/rails/actionpack/test/controller/integration_test.rb +417 -0
  639. data/src/admin_panel/vendor/rails/actionpack/test/controller/layout_test.rb +204 -0
  640. data/src/admin_panel/vendor/rails/actionpack/test/controller/logging_test.rb +46 -0
  641. data/src/admin_panel/vendor/rails/actionpack/test/controller/middleware_stack_test.rb +90 -0
  642. data/src/admin_panel/vendor/rails/actionpack/test/controller/mime_responds_test.rb +536 -0
  643. data/src/admin_panel/vendor/rails/actionpack/test/controller/mime_type_test.rb +93 -0
  644. data/src/admin_panel/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +293 -0
  645. data/src/admin_panel/vendor/rails/actionpack/test/controller/rack_test.rb +294 -0
  646. data/src/admin_panel/vendor/rails/actionpack/test/controller/record_identifier_test.rb +139 -0
  647. data/src/admin_panel/vendor/rails/actionpack/test/controller/redirect_test.rb +282 -0
  648. data/src/admin_panel/vendor/rails/actionpack/test/controller/render_test.rb +1752 -0
  649. data/src/admin_panel/vendor/rails/actionpack/test/controller/request/json_params_parsing_test.rb +45 -0
  650. data/src/admin_panel/vendor/rails/actionpack/test/controller/request/multipart_params_parsing_test.rb +223 -0
  651. data/src/admin_panel/vendor/rails/actionpack/test/controller/request/query_string_parsing_test.rb +120 -0
  652. data/src/admin_panel/vendor/rails/actionpack/test/controller/request/url_encoded_params_parsing_test.rb +184 -0
  653. data/src/admin_panel/vendor/rails/actionpack/test/controller/request/xml_params_parsing_test.rb +88 -0
  654. data/src/admin_panel/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +246 -0
  655. data/src/admin_panel/vendor/rails/actionpack/test/controller/request_test.rb +407 -0
  656. data/src/admin_panel/vendor/rails/actionpack/test/controller/rescue_test.rb +536 -0
  657. data/src/admin_panel/vendor/rails/actionpack/test/controller/resources_test.rb +1341 -0
  658. data/src/admin_panel/vendor/rails/actionpack/test/controller/routing_test.rb +2557 -0
  659. data/src/admin_panel/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  660. data/src/admin_panel/vendor/rails/actionpack/test/controller/send_file_test.rb +161 -0
  661. data/src/admin_panel/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +239 -0
  662. data/src/admin_panel/vendor/rails/actionpack/test/controller/session/mem_cache_store_test.rb +127 -0
  663. data/src/admin_panel/vendor/rails/actionpack/test/controller/session/test_session_test.rb +58 -0
  664. data/src/admin_panel/vendor/rails/actionpack/test/controller/test_test.rb +692 -0
  665. data/src/admin_panel/vendor/rails/actionpack/test/controller/translation_test.rb +26 -0
  666. data/src/admin_panel/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +359 -0
  667. data/src/admin_panel/vendor/rails/actionpack/test/controller/verification_test.rb +270 -0
  668. data/src/admin_panel/vendor/rails/actionpack/test/controller/view_paths_test.rb +141 -0
  669. data/src/admin_panel/vendor/rails/actionpack/test/controller/webservice_test.rb +260 -0
  670. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/_top_level_partial.html.erb +1 -0
  671. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/_top_level_partial_only.erb +1 -0
  672. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/addresses/list.erb +1 -0
  673. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/alternate_helpers/foo_helper.rb +3 -0
  674. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/bad_customers/_bad_customer.html.erb +1 -0
  675. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  676. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/company.rb +10 -0
  677. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  678. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  679. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  680. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  681. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/customers/_customer.html.erb +1 -0
  682. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +49 -0
  683. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/developer.rb +9 -0
  684. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/developers/_developer.erb +1 -0
  685. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  686. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  687. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/fun/games/_game.erb +1 -0
  688. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.erb +1 -0
  689. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/fun/serious/games/_game.erb +1 -0
  690. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/_partial.erb +3 -0
  691. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.html.erb +3 -0
  692. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.js.rjs +6 -0
  693. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/formatted_fragment_cached.xml.builder +5 -0
  694. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/fragment_cached.html.erb +2 -0
  695. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/html_fragment_cached_with_partial.html.erb +1 -0
  696. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/inline_fragment_cached.html.erb +2 -0
  697. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/functional_caching/js_fragment_cached_with_partial.js.rjs +1 -0
  698. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/good_customers/_good_customer.html.erb +1 -0
  699. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  700. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  701. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  702. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/alt/hello.rhtml +1 -0
  703. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/alt/layouts/alt.rhtml +0 -0
  704. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  705. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  706. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  707. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/multiple_extensions.html.erb +1 -0
  708. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  709. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  710. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/_column.html.erb +2 -0
  711. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/block_with_layout.erb +3 -0
  712. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/builder.builder +3 -0
  713. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/default_html.html.erb +1 -0
  714. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/partial_with_layout.erb +3 -0
  715. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/standard.erb +1 -0
  716. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.erb +2 -0
  717. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/xhr.html.erb +2 -0
  718. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/layouts/yield.erb +2 -0
  719. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/mascot.rb +3 -0
  720. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/mascots/_mascot.html.erb +1 -0
  721. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/mascots.yml +4 -0
  722. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  723. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/boundary_problem_file +10 -0
  724. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/bracketed_param +5 -0
  725. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/empty +10 -0
  726. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/hello.txt +1 -0
  727. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  728. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  729. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  730. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/none +9 -0
  731. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  732. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  733. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/override/test/hello_world.erb +1 -0
  734. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/override2/layouts/test/sub.erb +1 -0
  735. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/post_test/layouts/post.html.erb +1 -0
  736. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/post_test/layouts/super_post.iphone.erb +1 -0
  737. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/post_test/post/index.html.erb +1 -0
  738. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/post_test/post/index.iphone.erb +1 -0
  739. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.html.erb +1 -0
  740. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/post_test/super_post/index.iphone.erb +1 -0
  741. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  742. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/projects/_project.erb +1 -0
  743. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  744. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/404.html +1 -0
  745. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/500.da.html +1 -0
  746. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/500.html +1 -0
  747. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  748. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
  749. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/bank.js +1 -0
  750. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/controls.js +1 -0
  751. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/dragdrop.js +1 -0
  752. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/effects.js +1 -0
  753. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/prototype.js +1 -0
  754. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/robber.js +1 -0
  755. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/subdir/subdir.js +1 -0
  756. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/javascripts/version.1.0.js +1 -0
  757. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/stylesheets/bank.css +1 -0
  758. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/stylesheets/robber.css +1 -0
  759. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/stylesheets/subdir/subdir.css +1 -0
  760. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/public/stylesheets/version.1.0.css +1 -0
  761. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/quiz/questions/_question.html.erb +1 -0
  762. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/replies/_reply.erb +1 -0
  763. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/replies.yml +15 -0
  764. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/reply.rb +7 -0
  765. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.html.erb +1 -0
  766. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.js.rjs +1 -0
  767. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/custom_constant_handling_without_block.mobile.erb +1 -0
  768. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.html.erb +1 -0
  769. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/iphone_with_html_response_type.iphone.erb +1 -0
  770. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/layouts/missing.html.erb +1 -0
  771. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.html.erb +1 -0
  772. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.iphone.erb +1 -0
  773. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.html.erb +1 -0
  774. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.js.rjs +1 -0
  775. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.xml.builder +1 -0
  776. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.html.erb +1 -0
  777. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.js.rjs +1 -0
  778. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.xml.builder +1 -0
  779. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.erb +1 -0
  780. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/shared.html.erb +1 -0
  781. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/symlink_parent/symlinked_layout.erb +5 -0
  782. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_counter.html.erb +1 -0
  783. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_customer.erb +1 -0
  784. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_customer_counter.erb +1 -0
  785. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.erb +1 -0
  786. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_customer_with_var.erb +1 -0
  787. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_form.erb +1 -0
  788. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_hash_greeting.erb +1 -0
  789. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_hash_object.erb +2 -0
  790. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_hello.builder +1 -0
  791. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_labelling_form.erb +1 -0
  792. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_layout_for_block_with_args.html.erb +3 -0
  793. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_layout_for_partial.html.erb +3 -0
  794. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb +1 -0
  795. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_one.html.erb +1 -0
  796. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_partial.erb +1 -0
  797. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_partial.html.erb +1 -0
  798. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_partial.js.erb +1 -0
  799. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb +1 -0
  800. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_partial_only.erb +1 -0
  801. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb +1 -0
  802. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_person.erb +2 -0
  803. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_raise.html.erb +1 -0
  804. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/_two.html.erb +1 -0
  805. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb +2 -0
  806. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/calling_partial_with_layout.html.erb +1 -0
  807. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/capturing.erb +4 -0
  808. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/content_for.erb +2 -0
  809. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/content_for_concatenated.erb +3 -0
  810. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/content_for_with_parameter.erb +2 -0
  811. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  812. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/dont_pick_me +1 -0
  813. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.erb +1 -0
  814. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  815. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb +1 -0
  816. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder +1 -0
  817. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.html.erb +1 -0
  818. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.xml.erb +1 -0
  819. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/greeting.erb +1 -0
  820. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs +1 -0
  821. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello.builder +4 -0
  822. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb +1 -0
  823. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_world.erb +1 -0
  824. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb +1 -0
  825. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_world_container.builder +3 -0
  826. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_world_from_rxml.builder +4 -0
  827. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb +1 -0
  828. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.builder +11 -0
  829. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb +1 -0
  830. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder +2 -0
  831. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/list.erb +1 -0
  832. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/nested_layout.erb +3 -0
  833. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.builder +4 -0
  834. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.erb +4 -0
  835. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_explicit_html_template.js.rjs +1 -0
  836. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb +1 -0
  837. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.erb +1 -0
  838. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.erb +1 -0
  839. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template.js.rjs +1 -0
  840. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb +1 -0
  841. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb +1 -0
  842. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb +1 -0
  843. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.erb +1 -0
  844. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb +1 -0
  845. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/template.erb +1 -0
  846. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.erb +9 -0
  847. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block.html.erb +1 -0
  848. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/using_layout_around_block_with_args.html.erb +1 -0
  849. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -0
  850. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  851. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb +1 -0
  852. data/src/admin_panel/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  853. data/src/admin_panel/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +44 -0
  854. data/src/admin_panel/vendor/rails/actionpack/test/template/active_record_helper_test.rb +302 -0
  855. data/src/admin_panel/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +713 -0
  856. data/src/admin_panel/vendor/rails/actionpack/test/template/atom_feed_helper_test.rb +286 -0
  857. data/src/admin_panel/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +86 -0
  858. data/src/admin_panel/vendor/rails/actionpack/test/template/compiled_templates_test.rb +203 -0
  859. data/src/admin_panel/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +120 -0
  860. data/src/admin_panel/vendor/rails/actionpack/test/template/date_helper_test.rb +2469 -0
  861. data/src/admin_panel/vendor/rails/actionpack/test/template/erb_util_test.rb +24 -0
  862. data/src/admin_panel/vendor/rails/actionpack/test/template/form_helper_test.rb +1176 -0
  863. data/src/admin_panel/vendor/rails/actionpack/test/template/form_options_helper_test.rb +751 -0
  864. data/src/admin_panel/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +327 -0
  865. data/src/admin_panel/vendor/rails/actionpack/test/template/javascript_helper_test.rb +106 -0
  866. data/src/admin_panel/vendor/rails/actionpack/test/template/number_helper_i18n_test.rb +69 -0
  867. data/src/admin_panel/vendor/rails/actionpack/test/template/number_helper_test.rb +128 -0
  868. data/src/admin_panel/vendor/rails/actionpack/test/template/prototype_helper_test.rb +639 -0
  869. data/src/admin_panel/vendor/rails/actionpack/test/template/record_tag_helper_test.rb +58 -0
  870. data/src/admin_panel/vendor/rails/actionpack/test/template/render_test.rb +290 -0
  871. data/src/admin_panel/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +48 -0
  872. data/src/admin_panel/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
  873. data/src/admin_panel/vendor/rails/actionpack/test/template/tag_helper_test.rb +97 -0
  874. data/src/admin_panel/vendor/rails/actionpack/test/template/test_test.rb +54 -0
  875. data/src/admin_panel/vendor/rails/actionpack/test/template/text_helper_test.rb +520 -0
  876. data/src/admin_panel/vendor/rails/actionpack/test/template/translation_helper_test.rb +32 -0
  877. data/src/admin_panel/vendor/rails/actionpack/test/template/url_helper_test.rb +614 -0
  878. data/src/admin_panel/vendor/rails/actionpack/test/testing_sandbox.rb +15 -0
  879. data/src/admin_panel/vendor/rails/actionpack/test/view/test_case_test.rb +8 -0
  880. data/src/admin_panel/vendor/rails/activerecord/CHANGELOG +5832 -0
  881. data/src/admin_panel/vendor/rails/activerecord/README +351 -0
  882. data/src/admin_panel/vendor/rails/activerecord/RUNNING_UNIT_TESTS +36 -0
  883. data/src/admin_panel/vendor/rails/activerecord/Rakefile +253 -0
  884. data/src/admin_panel/vendor/rails/activerecord/examples/associations.png +0 -0
  885. data/src/admin_panel/vendor/rails/activerecord/install.rb +30 -0
  886. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/aggregations.rb +261 -0
  887. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/association_preload.rb +389 -0
  888. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +470 -0
  889. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +279 -0
  890. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +58 -0
  891. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +49 -0
  892. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +127 -0
  893. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +121 -0
  894. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +256 -0
  895. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +124 -0
  896. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations/has_one_through_association.rb +31 -0
  897. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/associations.rb +2169 -0
  898. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +388 -0
  899. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/autosave_association.rb +349 -0
  900. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/base.rb +3155 -0
  901. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/batches.rb +73 -0
  902. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/calculations.rb +317 -0
  903. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/callbacks.rb +360 -0
  904. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
  905. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
  906. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
  907. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  908. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  909. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +708 -0
  910. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
  911. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +234 -0
  912. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +617 -0
  913. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +1050 -0
  914. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  915. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +438 -0
  916. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/dirty.rb +183 -0
  917. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/dynamic_finder_match.rb +41 -0
  918. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/dynamic_scope_match.rb +25 -0
  919. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/fixtures.rb +993 -0
  920. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  921. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/locale/en.yml +54 -0
  922. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +181 -0
  923. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  924. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/migration.rb +566 -0
  925. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/named_scope.rb +197 -0
  926. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +329 -0
  927. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/observer.rb +197 -0
  928. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/query_cache.rb +33 -0
  929. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/reflection.rb +320 -0
  930. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/schema.rb +51 -0
  931. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +179 -0
  932. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/serialization.rb +100 -0
  933. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +99 -0
  934. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/serializers/xml_serializer.rb +353 -0
  935. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/session_store.rb +318 -0
  936. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/test_case.rb +66 -0
  937. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/timestamp.rb +41 -0
  938. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/transactions.rb +235 -0
  939. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/validations.rb +1066 -0
  940. data/src/admin_panel/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  941. data/src/admin_panel/vendor/rails/activerecord/lib/active_record.rb +84 -0
  942. data/src/admin_panel/vendor/rails/activerecord/lib/activerecord.rb +1 -0
  943. data/src/admin_panel/vendor/rails/activerecord/test/assets/flowers.jpg +0 -0
  944. data/src/admin_panel/vendor/rails/activerecord/test/cases/aaa_create_tables_test.rb +24 -0
  945. data/src/admin_panel/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +100 -0
  946. data/src/admin_panel/vendor/rails/activerecord/test/cases/active_schema_test_postgresql.rb +24 -0
  947. data/src/admin_panel/vendor/rails/activerecord/test/cases/adapter_test.rb +133 -0
  948. data/src/admin_panel/vendor/rails/activerecord/test/cases/aggregations_test.rb +167 -0
  949. data/src/admin_panel/vendor/rails/activerecord/test/cases/ar_schema_test.rb +32 -0
  950. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +345 -0
  951. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/callbacks_test.rb +161 -0
  952. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
  953. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  954. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +130 -0
  955. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/eager_singularization_test.rb +145 -0
  956. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/eager_test.rb +822 -0
  957. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/extension_test.rb +62 -0
  958. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
  959. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +1062 -0
  960. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +279 -0
  961. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +309 -0
  962. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/has_one_through_associations_test.rb +192 -0
  963. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/inner_join_association_test.rb +88 -0
  964. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations/join_model_test.rb +712 -0
  965. data/src/admin_panel/vendor/rails/activerecord/test/cases/associations_test.rb +262 -0
  966. data/src/admin_panel/vendor/rails/activerecord/test/cases/attribute_methods_test.rb +305 -0
  967. data/src/admin_panel/vendor/rails/activerecord/test/cases/autosave_association_test.rb +901 -0
  968. data/src/admin_panel/vendor/rails/activerecord/test/cases/base_test.rb +2107 -0
  969. data/src/admin_panel/vendor/rails/activerecord/test/cases/batches_test.rb +61 -0
  970. data/src/admin_panel/vendor/rails/activerecord/test/cases/binary_test.rb +30 -0
  971. data/src/admin_panel/vendor/rails/activerecord/test/cases/calculations_test.rb +348 -0
  972. data/src/admin_panel/vendor/rails/activerecord/test/cases/callbacks_observers_test.rb +38 -0
  973. data/src/admin_panel/vendor/rails/activerecord/test/cases/callbacks_test.rb +438 -0
  974. data/src/admin_panel/vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb +32 -0
  975. data/src/admin_panel/vendor/rails/activerecord/test/cases/column_alias_test.rb +17 -0
  976. data/src/admin_panel/vendor/rails/activerecord/test/cases/column_definition_test.rb +36 -0
  977. data/src/admin_panel/vendor/rails/activerecord/test/cases/connection_pool_test.rb +25 -0
  978. data/src/admin_panel/vendor/rails/activerecord/test/cases/connection_test_firebird.rb +8 -0
  979. data/src/admin_panel/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +56 -0
  980. data/src/admin_panel/vendor/rails/activerecord/test/cases/copy_table_test_sqlite.rb +80 -0
  981. data/src/admin_panel/vendor/rails/activerecord/test/cases/database_statements_test.rb +12 -0
  982. data/src/admin_panel/vendor/rails/activerecord/test/cases/datatype_test_postgresql.rb +204 -0
  983. data/src/admin_panel/vendor/rails/activerecord/test/cases/date_time_test.rb +37 -0
  984. data/src/admin_panel/vendor/rails/activerecord/test/cases/default_test_firebird.rb +16 -0
  985. data/src/admin_panel/vendor/rails/activerecord/test/cases/defaults_test.rb +111 -0
  986. data/src/admin_panel/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb +30 -0
  987. data/src/admin_panel/vendor/rails/activerecord/test/cases/dirty_test.rb +306 -0
  988. data/src/admin_panel/vendor/rails/activerecord/test/cases/finder_respond_to_test.rb +76 -0
  989. data/src/admin_panel/vendor/rails/activerecord/test/cases/finder_test.rb +1083 -0
  990. data/src/admin_panel/vendor/rails/activerecord/test/cases/fixtures_test.rb +651 -0
  991. data/src/admin_panel/vendor/rails/activerecord/test/cases/helper.rb +69 -0
  992. data/src/admin_panel/vendor/rails/activerecord/test/cases/i18n_test.rb +41 -0
  993. data/src/admin_panel/vendor/rails/activerecord/test/cases/inheritance_test.rb +262 -0
  994. data/src/admin_panel/vendor/rails/activerecord/test/cases/invalid_date_test.rb +24 -0
  995. data/src/admin_panel/vendor/rails/activerecord/test/cases/json_serialization_test.rb +205 -0
  996. data/src/admin_panel/vendor/rails/activerecord/test/cases/lifecycle_test.rb +193 -0
  997. data/src/admin_panel/vendor/rails/activerecord/test/cases/locking_test.rb +322 -0
  998. data/src/admin_panel/vendor/rails/activerecord/test/cases/method_scoping_test.rb +694 -0
  999. data/src/admin_panel/vendor/rails/activerecord/test/cases/migration_test.rb +1495 -0
  1000. data/src/admin_panel/vendor/rails/activerecord/test/cases/migration_test_firebird.rb +124 -0
  1001. data/src/admin_panel/vendor/rails/activerecord/test/cases/mixin_test.rb +96 -0
  1002. data/src/admin_panel/vendor/rails/activerecord/test/cases/modules_test.rb +39 -0
  1003. data/src/admin_panel/vendor/rails/activerecord/test/cases/multiple_db_test.rb +85 -0
  1004. data/src/admin_panel/vendor/rails/activerecord/test/cases/named_scope_test.rb +359 -0
  1005. data/src/admin_panel/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +509 -0
  1006. data/src/admin_panel/vendor/rails/activerecord/test/cases/pk_test.rb +101 -0
  1007. data/src/admin_panel/vendor/rails/activerecord/test/cases/pooled_connections_test.rb +103 -0
  1008. data/src/admin_panel/vendor/rails/activerecord/test/cases/query_cache_test.rb +123 -0
  1009. data/src/admin_panel/vendor/rails/activerecord/test/cases/readonly_test.rb +107 -0
  1010. data/src/admin_panel/vendor/rails/activerecord/test/cases/reflection_test.rb +194 -0
  1011. data/src/admin_panel/vendor/rails/activerecord/test/cases/reload_models_test.rb +22 -0
  1012. data/src/admin_panel/vendor/rails/activerecord/test/cases/repair_helper.rb +50 -0
  1013. data/src/admin_panel/vendor/rails/activerecord/test/cases/reserved_word_test_mysql.rb +176 -0
  1014. data/src/admin_panel/vendor/rails/activerecord/test/cases/sanitize_test.rb +25 -0
  1015. data/src/admin_panel/vendor/rails/activerecord/test/cases/schema_authorization_test_postgresql.rb +75 -0
  1016. data/src/admin_panel/vendor/rails/activerecord/test/cases/schema_dumper_test.rb +183 -0
  1017. data/src/admin_panel/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +102 -0
  1018. data/src/admin_panel/vendor/rails/activerecord/test/cases/serialization_test.rb +47 -0
  1019. data/src/admin_panel/vendor/rails/activerecord/test/cases/synonym_test_oracle.rb +17 -0
  1020. data/src/admin_panel/vendor/rails/activerecord/test/cases/transactions_test.rb +522 -0
  1021. data/src/admin_panel/vendor/rails/activerecord/test/cases/unconnected_test.rb +32 -0
  1022. data/src/admin_panel/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +915 -0
  1023. data/src/admin_panel/vendor/rails/activerecord/test/cases/validations_test.rb +1602 -0
  1024. data/src/admin_panel/vendor/rails/activerecord/test/cases/xml_serialization_test.rb +220 -0
  1025. data/src/admin_panel/vendor/rails/activerecord/test/config.rb +5 -0
  1026. data/src/admin_panel/vendor/rails/activerecord/test/connections/jdbc_jdbcderby/connection.rb +18 -0
  1027. data/src/admin_panel/vendor/rails/activerecord/test/connections/jdbc_jdbch2/connection.rb +18 -0
  1028. data/src/admin_panel/vendor/rails/activerecord/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
  1029. data/src/admin_panel/vendor/rails/activerecord/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
  1030. data/src/admin_panel/vendor/rails/activerecord/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
  1031. data/src/admin_panel/vendor/rails/activerecord/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
  1032. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  1033. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  1034. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  1035. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +25 -0
  1036. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  1037. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  1038. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +21 -0
  1039. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +25 -0
  1040. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +25 -0
  1041. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  1042. data/src/admin_panel/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  1043. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
  1044. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/all/developers.yml +0 -0
  1045. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/all/people.csv +0 -0
  1046. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/all/tasks.yml +0 -0
  1047. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/author_addresses.yml +5 -0
  1048. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  1049. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/authors.yml +9 -0
  1050. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/binaries.yml +132 -0
  1051. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/books.yml +7 -0
  1052. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  1053. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  1054. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  1055. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  1056. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  1057. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  1058. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/clubs.yml +6 -0
  1059. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  1060. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/companies.yml +56 -0
  1061. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  1062. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  1063. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/customers.yml +26 -0
  1064. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  1065. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  1066. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  1067. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  1068. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  1069. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  1070. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  1071. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  1072. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  1073. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/items.yml +4 -0
  1074. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/jobs.yml +7 -0
  1075. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  1076. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/mateys.yml +4 -0
  1077. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/member_types.yml +6 -0
  1078. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/members.yml +6 -0
  1079. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/memberships.yml +20 -0
  1080. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/minimalistics.yml +2 -0
  1081. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  1082. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/mixins.yml +29 -0
  1083. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  1084. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  1085. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  1086. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  1087. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  1088. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/organizations.yml +5 -0
  1089. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/owners.yml +7 -0
  1090. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/parrots.yml +27 -0
  1091. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/parrots_pirates.yml +7 -0
  1092. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/people.yml +15 -0
  1093. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/pets.yml +14 -0
  1094. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/pirates.yml +9 -0
  1095. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/posts.yml +49 -0
  1096. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/price_estimates.yml +7 -0
  1097. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  1098. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/readers.yml +9 -0
  1099. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/references.yml +17 -0
  1100. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/reserved_words/distinct.yml +5 -0
  1101. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  1102. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/reserved_words/group.yml +14 -0
  1103. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/reserved_words/select.yml +8 -0
  1104. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/reserved_words/values.yml +7 -0
  1105. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/ships.yml +5 -0
  1106. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/sponsors.yml +9 -0
  1107. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/subscribers.yml +7 -0
  1108. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/subscriptions.yml +12 -0
  1109. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/taggings.yml +28 -0
  1110. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  1111. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  1112. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/topics.yml +42 -0
  1113. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/toys.yml +4 -0
  1114. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/treasures.yml +10 -0
  1115. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  1116. data/src/admin_panel/vendor/rails/activerecord/test/fixtures/warehouse-things.yml +3 -0
  1117. data/src/admin_panel/vendor/rails/activerecord/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  1118. data/src/admin_panel/vendor/rails/activerecord/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  1119. data/src/admin_panel/vendor/rails/activerecord/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  1120. data/src/admin_panel/vendor/rails/activerecord/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  1121. data/src/admin_panel/vendor/rails/activerecord/test/migrations/duplicate/3_foo.rb +7 -0
  1122. data/src/admin_panel/vendor/rails/activerecord/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  1123. data/src/admin_panel/vendor/rails/activerecord/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  1124. data/src/admin_panel/vendor/rails/activerecord/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  1125. data/src/admin_panel/vendor/rails/activerecord/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  1126. data/src/admin_panel/vendor/rails/activerecord/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  1127. data/src/admin_panel/vendor/rails/activerecord/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  1128. data/src/admin_panel/vendor/rails/activerecord/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  1129. data/src/admin_panel/vendor/rails/activerecord/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  1130. data/src/admin_panel/vendor/rails/activerecord/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  1131. data/src/admin_panel/vendor/rails/activerecord/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  1132. data/src/admin_panel/vendor/rails/activerecord/test/migrations/missing/1_people_have_last_names.rb +9 -0
  1133. data/src/admin_panel/vendor/rails/activerecord/test/migrations/missing/3_we_need_reminders.rb +12 -0
  1134. data/src/admin_panel/vendor/rails/activerecord/test/migrations/missing/4_innocent_jointable.rb +12 -0
  1135. data/src/admin_panel/vendor/rails/activerecord/test/migrations/valid/1_people_have_last_names.rb +9 -0
  1136. data/src/admin_panel/vendor/rails/activerecord/test/migrations/valid/2_we_need_reminders.rb +12 -0
  1137. data/src/admin_panel/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb +12 -0
  1138. data/src/admin_panel/vendor/rails/activerecord/test/models/author.rb +141 -0
  1139. data/src/admin_panel/vendor/rails/activerecord/test/models/auto_id.rb +4 -0
  1140. data/src/admin_panel/vendor/rails/activerecord/test/models/binary.rb +2 -0
  1141. data/src/admin_panel/vendor/rails/activerecord/test/models/bird.rb +3 -0
  1142. data/src/admin_panel/vendor/rails/activerecord/test/models/book.rb +4 -0
  1143. data/src/admin_panel/vendor/rails/activerecord/test/models/categorization.rb +5 -0
  1144. data/src/admin_panel/vendor/rails/activerecord/test/models/category.rb +34 -0
  1145. data/src/admin_panel/vendor/rails/activerecord/test/models/citation.rb +6 -0
  1146. data/src/admin_panel/vendor/rails/activerecord/test/models/club.rb +13 -0
  1147. data/src/admin_panel/vendor/rails/activerecord/test/models/column_name.rb +3 -0
  1148. data/src/admin_panel/vendor/rails/activerecord/test/models/comment.rb +25 -0
  1149. data/src/admin_panel/vendor/rails/activerecord/test/models/company.rb +159 -0
  1150. data/src/admin_panel/vendor/rails/activerecord/test/models/company_in_module.rb +61 -0
  1151. data/src/admin_panel/vendor/rails/activerecord/test/models/computer.rb +3 -0
  1152. data/src/admin_panel/vendor/rails/activerecord/test/models/contact.rb +16 -0
  1153. data/src/admin_panel/vendor/rails/activerecord/test/models/course.rb +3 -0
  1154. data/src/admin_panel/vendor/rails/activerecord/test/models/customer.rb +73 -0
  1155. data/src/admin_panel/vendor/rails/activerecord/test/models/default.rb +2 -0
  1156. data/src/admin_panel/vendor/rails/activerecord/test/models/developer.rb +91 -0
  1157. data/src/admin_panel/vendor/rails/activerecord/test/models/edge.rb +5 -0
  1158. data/src/admin_panel/vendor/rails/activerecord/test/models/entrant.rb +3 -0
  1159. data/src/admin_panel/vendor/rails/activerecord/test/models/event.rb +3 -0
  1160. data/src/admin_panel/vendor/rails/activerecord/test/models/guid.rb +2 -0
  1161. data/src/admin_panel/vendor/rails/activerecord/test/models/item.rb +7 -0
  1162. data/src/admin_panel/vendor/rails/activerecord/test/models/job.rb +5 -0
  1163. data/src/admin_panel/vendor/rails/activerecord/test/models/joke.rb +3 -0
  1164. data/src/admin_panel/vendor/rails/activerecord/test/models/keyboard.rb +3 -0
  1165. data/src/admin_panel/vendor/rails/activerecord/test/models/legacy_thing.rb +3 -0
  1166. data/src/admin_panel/vendor/rails/activerecord/test/models/matey.rb +4 -0
  1167. data/src/admin_panel/vendor/rails/activerecord/test/models/member.rb +12 -0
  1168. data/src/admin_panel/vendor/rails/activerecord/test/models/member_detail.rb +5 -0
  1169. data/src/admin_panel/vendor/rails/activerecord/test/models/member_type.rb +3 -0
  1170. data/src/admin_panel/vendor/rails/activerecord/test/models/membership.rb +9 -0
  1171. data/src/admin_panel/vendor/rails/activerecord/test/models/minimalistic.rb +2 -0
  1172. data/src/admin_panel/vendor/rails/activerecord/test/models/mixed_case_monkey.rb +3 -0
  1173. data/src/admin_panel/vendor/rails/activerecord/test/models/movie.rb +5 -0
  1174. data/src/admin_panel/vendor/rails/activerecord/test/models/order.rb +4 -0
  1175. data/src/admin_panel/vendor/rails/activerecord/test/models/organization.rb +4 -0
  1176. data/src/admin_panel/vendor/rails/activerecord/test/models/owner.rb +5 -0
  1177. data/src/admin_panel/vendor/rails/activerecord/test/models/parrot.rb +16 -0
  1178. data/src/admin_panel/vendor/rails/activerecord/test/models/person.rb +16 -0
  1179. data/src/admin_panel/vendor/rails/activerecord/test/models/pet.rb +5 -0
  1180. data/src/admin_panel/vendor/rails/activerecord/test/models/pirate.rb +63 -0
  1181. data/src/admin_panel/vendor/rails/activerecord/test/models/post.rb +100 -0
  1182. data/src/admin_panel/vendor/rails/activerecord/test/models/price_estimate.rb +3 -0
  1183. data/src/admin_panel/vendor/rails/activerecord/test/models/project.rb +30 -0
  1184. data/src/admin_panel/vendor/rails/activerecord/test/models/reader.rb +4 -0
  1185. data/src/admin_panel/vendor/rails/activerecord/test/models/reference.rb +4 -0
  1186. data/src/admin_panel/vendor/rails/activerecord/test/models/reply.rb +45 -0
  1187. data/src/admin_panel/vendor/rails/activerecord/test/models/ship.rb +10 -0
  1188. data/src/admin_panel/vendor/rails/activerecord/test/models/ship_part.rb +5 -0
  1189. data/src/admin_panel/vendor/rails/activerecord/test/models/sponsor.rb +4 -0
  1190. data/src/admin_panel/vendor/rails/activerecord/test/models/subject.rb +4 -0
  1191. data/src/admin_panel/vendor/rails/activerecord/test/models/subscriber.rb +8 -0
  1192. data/src/admin_panel/vendor/rails/activerecord/test/models/subscription.rb +4 -0
  1193. data/src/admin_panel/vendor/rails/activerecord/test/models/tag.rb +7 -0
  1194. data/src/admin_panel/vendor/rails/activerecord/test/models/tagging.rb +10 -0
  1195. data/src/admin_panel/vendor/rails/activerecord/test/models/task.rb +3 -0
  1196. data/src/admin_panel/vendor/rails/activerecord/test/models/topic.rb +81 -0
  1197. data/src/admin_panel/vendor/rails/activerecord/test/models/toy.rb +4 -0
  1198. data/src/admin_panel/vendor/rails/activerecord/test/models/treasure.rb +6 -0
  1199. data/src/admin_panel/vendor/rails/activerecord/test/models/vertex.rb +9 -0
  1200. data/src/admin_panel/vendor/rails/activerecord/test/models/warehouse_thing.rb +5 -0
  1201. data/src/admin_panel/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +12 -0
  1202. data/src/admin_panel/vendor/rails/activerecord/test/schema/postgresql_specific_schema.rb +103 -0
  1203. data/src/admin_panel/vendor/rails/activerecord/test/schema/schema.rb +473 -0
  1204. data/src/admin_panel/vendor/rails/activerecord/test/schema/schema2.rb +6 -0
  1205. data/src/admin_panel/vendor/rails/activerecord/test/schema/sqlite_specific_schema.rb +25 -0
  1206. data/src/admin_panel/vendor/rails/activeresource/CHANGELOG +267 -0
  1207. data/src/admin_panel/vendor/rails/activeresource/README +165 -0
  1208. data/src/admin_panel/vendor/rails/activeresource/Rakefile +138 -0
  1209. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/base.rb +1077 -0
  1210. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/connection.rb +218 -0
  1211. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/custom_methods.rb +120 -0
  1212. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb +23 -0
  1213. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/formats/xml_format.rb +34 -0
  1214. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/formats.rb +14 -0
  1215. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/http_mock.rb +207 -0
  1216. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/validations.rb +274 -0
  1217. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource/version.rb +9 -0
  1218. data/src/admin_panel/vendor/rails/activeresource/lib/active_resource.rb +44 -0
  1219. data/src/admin_panel/vendor/rails/activeresource/lib/activeresource.rb +1 -0
  1220. data/src/admin_panel/vendor/rails/activeresource/test/abstract_unit.rb +23 -0
  1221. data/src/admin_panel/vendor/rails/activeresource/test/authorization_test.rb +122 -0
  1222. data/src/admin_panel/vendor/rails/activeresource/test/base/custom_methods_test.rb +100 -0
  1223. data/src/admin_panel/vendor/rails/activeresource/test/base/equality_test.rb +52 -0
  1224. data/src/admin_panel/vendor/rails/activeresource/test/base/load_test.rb +146 -0
  1225. data/src/admin_panel/vendor/rails/activeresource/test/base_errors_test.rb +48 -0
  1226. data/src/admin_panel/vendor/rails/activeresource/test/base_test.rb +891 -0
  1227. data/src/admin_panel/vendor/rails/activeresource/test/connection_test.rb +196 -0
  1228. data/src/admin_panel/vendor/rails/activeresource/test/fixtures/beast.rb +14 -0
  1229. data/src/admin_panel/vendor/rails/activeresource/test/fixtures/customer.rb +3 -0
  1230. data/src/admin_panel/vendor/rails/activeresource/test/fixtures/person.rb +3 -0
  1231. data/src/admin_panel/vendor/rails/activeresource/test/fixtures/street_address.rb +4 -0
  1232. data/src/admin_panel/vendor/rails/activeresource/test/format_test.rb +112 -0
  1233. data/src/admin_panel/vendor/rails/activeresource/test/setter_trap.rb +26 -0
  1234. data/src/admin_panel/vendor/rails/activesupport/CHANGELOG +1309 -0
  1235. data/src/admin_panel/vendor/rails/activesupport/README +43 -0
  1236. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/backtrace_cleaner.rb +72 -0
  1237. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/base64.rb +33 -0
  1238. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/basic_object.rb +24 -0
  1239. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +127 -0
  1240. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/compressed_mem_cache_store.rb +20 -0
  1241. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/drb_store.rb +14 -0
  1242. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/file_store.rb +72 -0
  1243. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +132 -0
  1244. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +52 -0
  1245. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +104 -0
  1246. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache/synchronized_memory_store.rb +47 -0
  1247. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/cache.rb +228 -0
  1248. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/callbacks.rb +279 -0
  1249. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array/access.rb +53 -0
  1250. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +196 -0
  1251. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array/extract_options.rb +20 -0
  1252. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +106 -0
  1253. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +12 -0
  1254. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array/wrapper.rb +24 -0
  1255. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +15 -0
  1256. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/base64/encoding.rb +16 -0
  1257. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/base64.rb +4 -0
  1258. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/benchmark.rb +19 -0
  1259. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/conversions.rb +37 -0
  1260. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +6 -0
  1261. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -0
  1262. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +23 -0
  1263. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  1264. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +54 -0
  1265. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb +47 -0
  1266. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  1267. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +50 -0
  1268. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +4 -0
  1269. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date/behavior.rb +42 -0
  1270. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +230 -0
  1271. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +107 -0
  1272. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +10 -0
  1273. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date_time/calculations.rb +126 -0
  1274. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +96 -0
  1275. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/date_time.rb +12 -0
  1276. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/duplicable.rb +43 -0
  1277. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +116 -0
  1278. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +45 -0
  1279. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +46 -0
  1280. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/file.rb +5 -0
  1281. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/float/rounding.rb +24 -0
  1282. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/float/time.rb +27 -0
  1283. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/float.rb +7 -0
  1284. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +237 -0
  1285. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb +23 -0
  1286. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +19 -0
  1287. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/except.rb +25 -0
  1288. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +143 -0
  1289. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +52 -0
  1290. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +35 -0
  1291. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash/slice.rb +40 -0
  1292. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +14 -0
  1293. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +29 -0
  1294. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +20 -0
  1295. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/integer/time.rb +45 -0
  1296. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +9 -0
  1297. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  1298. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +7 -0
  1299. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +13 -0
  1300. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +59 -0
  1301. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  1302. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +5 -0
  1303. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  1304. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +145 -0
  1305. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +74 -0
  1306. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +31 -0
  1307. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +32 -0
  1308. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +58 -0
  1309. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +121 -0
  1310. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +30 -0
  1311. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +90 -0
  1312. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +23 -0
  1313. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/model_naming.rb +23 -0
  1314. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +39 -0
  1315. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +23 -0
  1316. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  1317. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  1318. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +19 -0
  1319. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +81 -0
  1320. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +9 -0
  1321. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/object/conversions.rb +15 -0
  1322. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +80 -0
  1323. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/object/instance_variables.rb +74 -0
  1324. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +13 -0
  1325. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +90 -0
  1326. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +5 -0
  1327. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  1328. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  1329. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  1330. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/process/daemon.rb +25 -0
  1331. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/process.rb +1 -0
  1332. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/range/blockless_step.rb +32 -0
  1333. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +27 -0
  1334. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/range/include_range.rb +30 -0
  1335. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/range/overlaps.rb +15 -0
  1336. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +11 -0
  1337. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/rexml.rb +41 -0
  1338. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +82 -0
  1339. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/behavior.rb +13 -0
  1340. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +28 -0
  1341. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/filters.rb +26 -0
  1342. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +167 -0
  1343. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +23 -0
  1344. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/multibyte.rb +81 -0
  1345. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +35 -0
  1346. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string/xchar.rb +11 -0
  1347. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +22 -0
  1348. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +14 -0
  1349. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/time/behavior.rb +13 -0
  1350. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +303 -0
  1351. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +90 -0
  1352. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/time/zones.rb +86 -0
  1353. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +42 -0
  1354. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/try.rb +36 -0
  1355. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext/uri.rb +16 -0
  1356. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/core_ext.rb +4 -0
  1357. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/dependencies.rb +625 -0
  1358. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/deprecation.rb +196 -0
  1359. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/duration.rb +98 -0
  1360. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/gzip.rb +25 -0
  1361. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/inflections.rb +56 -0
  1362. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/inflector.rb +406 -0
  1363. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/decoding.rb +82 -0
  1364. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/date.rb +21 -0
  1365. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/date_time.rb +21 -0
  1366. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/enumerable.rb +12 -0
  1367. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/false_class.rb +5 -0
  1368. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/hash.rb +46 -0
  1369. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/nil_class.rb +5 -0
  1370. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/numeric.rb +5 -0
  1371. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/object.rb +6 -0
  1372. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/regexp.rb +5 -0
  1373. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/string.rb +36 -0
  1374. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/symbol.rb +5 -0
  1375. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/time.rb +21 -0
  1376. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoders/true_class.rb +5 -0
  1377. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/encoding.rb +31 -0
  1378. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json/variable.rb +10 -0
  1379. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/json.rb +23 -0
  1380. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/locale/en.yml +33 -0
  1381. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/memoizable.rb +100 -0
  1382. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/message_encryptor.rb +70 -0
  1383. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/message_verifier.rb +46 -0
  1384. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +701 -0
  1385. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/multibyte/exceptions.rb +8 -0
  1386. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +71 -0
  1387. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/multibyte.rb +33 -0
  1388. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/option_merger.rb +23 -0
  1389. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +106 -0
  1390. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/ordered_options.rb +19 -0
  1391. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/rescuable.rb +108 -0
  1392. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/secure_random.rb +199 -0
  1393. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/string_inquirer.rb +21 -0
  1394. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/test_case.rb +39 -0
  1395. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +65 -0
  1396. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/testing/declarative.rb +21 -0
  1397. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/testing/default.rb +9 -0
  1398. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/testing/deprecation.rb +55 -0
  1399. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/testing/performance.rb +452 -0
  1400. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/testing/setup_and_teardown.rb +91 -0
  1401. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/time_with_zone.rb +334 -0
  1402. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +404 -0
  1403. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  1404. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb +113 -0
  1405. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb +20 -0
  1406. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb +250 -0
  1407. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xchar.rb +115 -0
  1408. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlbase.rb +139 -0
  1409. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb +63 -0
  1410. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb +328 -0
  1411. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb +13 -0
  1412. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
  1413. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
  1414. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
  1415. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
  1416. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
  1417. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb +53 -0
  1418. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n.rb +199 -0
  1419. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
  1420. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +100 -0
  1421. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +125 -0
  1422. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
  1423. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
  1424. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +568 -0
  1425. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/memcache-client-1.6.5/memcache.rb +935 -0
  1426. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone.rb +47 -0
  1427. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/data_timezone_info.rb +228 -0
  1428. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Algiers.rb +55 -0
  1429. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Cairo.rb +219 -0
  1430. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Casablanca.rb +40 -0
  1431. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Harare.rb +18 -0
  1432. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb +25 -0
  1433. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Monrovia.rb +22 -0
  1434. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Nairobi.rb +23 -0
  1435. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/Buenos_Aires.rb +166 -0
  1436. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Argentina/San_Juan.rb +86 -0
  1437. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Bogota.rb +23 -0
  1438. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Caracas.rb +23 -0
  1439. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chicago.rb +283 -0
  1440. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Chihuahua.rb +136 -0
  1441. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Denver.rb +204 -0
  1442. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Godthab.rb +161 -0
  1443. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Guatemala.rb +27 -0
  1444. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Halifax.rb +274 -0
  1445. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Indiana/Indianapolis.rb +149 -0
  1446. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Juneau.rb +194 -0
  1447. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/La_Paz.rb +22 -0
  1448. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Lima.rb +35 -0
  1449. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Los_Angeles.rb +232 -0
  1450. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mazatlan.rb +139 -0
  1451. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Mexico_City.rb +144 -0
  1452. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Monterrey.rb +131 -0
  1453. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/New_York.rb +282 -0
  1454. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Phoenix.rb +30 -0
  1455. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Regina.rb +74 -0
  1456. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Santiago.rb +205 -0
  1457. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Sao_Paulo.rb +171 -0
  1458. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/St_Johns.rb +288 -0
  1459. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/America/Tijuana.rb +196 -0
  1460. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Almaty.rb +67 -0
  1461. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baghdad.rb +73 -0
  1462. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Baku.rb +161 -0
  1463. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Bangkok.rb +20 -0
  1464. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Chongqing.rb +33 -0
  1465. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Colombo.rb +30 -0
  1466. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Dhaka.rb +27 -0
  1467. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Hong_Kong.rb +87 -0
  1468. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Irkutsk.rb +165 -0
  1469. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jakarta.rb +30 -0
  1470. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Jerusalem.rb +163 -0
  1471. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kabul.rb +20 -0
  1472. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kamchatka.rb +163 -0
  1473. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Karachi.rb +30 -0
  1474. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Katmandu.rb +20 -0
  1475. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kolkata.rb +25 -0
  1476. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Krasnoyarsk.rb +163 -0
  1477. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuala_Lumpur.rb +31 -0
  1478. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Kuwait.rb +18 -0
  1479. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Magadan.rb +163 -0
  1480. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Muscat.rb +18 -0
  1481. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Novosibirsk.rb +164 -0
  1482. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Rangoon.rb +24 -0
  1483. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Riyadh.rb +18 -0
  1484. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Seoul.rb +34 -0
  1485. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Shanghai.rb +35 -0
  1486. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Singapore.rb +33 -0
  1487. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Taipei.rb +59 -0
  1488. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tashkent.rb +47 -0
  1489. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tbilisi.rb +78 -0
  1490. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tehran.rb +121 -0
  1491. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Tokyo.rb +30 -0
  1492. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Ulaanbaatar.rb +65 -0
  1493. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Urumqi.rb +33 -0
  1494. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Vladivostok.rb +164 -0
  1495. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yakutsk.rb +163 -0
  1496. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yekaterinburg.rb +165 -0
  1497. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Asia/Yerevan.rb +165 -0
  1498. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Azores.rb +270 -0
  1499. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/Cape_Verde.rb +23 -0
  1500. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Atlantic/South_Georgia.rb +18 -0
  1501. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Adelaide.rb +187 -0
  1502. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Brisbane.rb +35 -0
  1503. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Darwin.rb +29 -0
  1504. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Hobart.rb +193 -0
  1505. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Melbourne.rb +185 -0
  1506. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Perth.rb +37 -0
  1507. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Australia/Sydney.rb +185 -0
  1508. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Etc/UTC.rb +16 -0
  1509. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Amsterdam.rb +228 -0
  1510. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Athens.rb +185 -0
  1511. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Belgrade.rb +163 -0
  1512. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Berlin.rb +188 -0
  1513. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bratislava.rb +13 -0
  1514. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Brussels.rb +232 -0
  1515. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Bucharest.rb +181 -0
  1516. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Budapest.rb +197 -0
  1517. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Copenhagen.rb +179 -0
  1518. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Dublin.rb +276 -0
  1519. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Helsinki.rb +163 -0
  1520. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Istanbul.rb +218 -0
  1521. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Kiev.rb +168 -0
  1522. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Lisbon.rb +268 -0
  1523. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Ljubljana.rb +13 -0
  1524. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/London.rb +288 -0
  1525. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Madrid.rb +211 -0
  1526. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Minsk.rb +170 -0
  1527. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Moscow.rb +181 -0
  1528. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Paris.rb +232 -0
  1529. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Prague.rb +187 -0
  1530. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Riga.rb +176 -0
  1531. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Rome.rb +215 -0
  1532. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sarajevo.rb +13 -0
  1533. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Skopje.rb +13 -0
  1534. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Sofia.rb +173 -0
  1535. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Stockholm.rb +165 -0
  1536. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Tallinn.rb +172 -0
  1537. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vienna.rb +183 -0
  1538. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Vilnius.rb +170 -0
  1539. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Warsaw.rb +212 -0
  1540. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Europe/Zagreb.rb +13 -0
  1541. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Auckland.rb +202 -0
  1542. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Fiji.rb +23 -0
  1543. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Guam.rb +22 -0
  1544. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Honolulu.rb +28 -0
  1545. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Majuro.rb +20 -0
  1546. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb +25 -0
  1547. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Noumea.rb +25 -0
  1548. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Pago_Pago.rb +26 -0
  1549. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Port_Moresby.rb +20 -0
  1550. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Tongatapu.rb +27 -0
  1551. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/info_timezone.rb +52 -0
  1552. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone.rb +51 -0
  1553. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/linked_timezone_info.rb +44 -0
  1554. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/offset_rationals.rb +98 -0
  1555. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/ruby_core_support.rb +56 -0
  1556. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/time_or_datetime.rb +292 -0
  1557. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone.rb +508 -0
  1558. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_definition.rb +56 -0
  1559. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_info.rb +40 -0
  1560. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_offset_info.rb +94 -0
  1561. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_period.rb +198 -0
  1562. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/timezone_transition_info.rb +129 -0
  1563. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo.rb +33 -0
  1564. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/vendor.rb +29 -0
  1565. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  1566. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +58 -0
  1567. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +133 -0
  1568. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +77 -0
  1569. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/xml_mini/rexml.rb +108 -0
  1570. data/src/admin_panel/vendor/rails/activesupport/lib/active_support/xml_mini.rb +31 -0
  1571. data/src/admin_panel/vendor/rails/activesupport/lib/active_support.rb +59 -0
  1572. data/src/admin_panel/vendor/rails/activesupport/lib/activesupport.rb +1 -0
  1573. data/src/admin_panel/vendor/rails/railties/CHANGELOG +2156 -0
  1574. data/src/admin_panel/vendor/rails/railties/MIT-LICENSE +20 -0
  1575. data/src/admin_panel/vendor/rails/railties/README +243 -0
  1576. data/src/admin_panel/vendor/rails/railties/Rakefile +364 -0
  1577. data/src/admin_panel/vendor/rails/railties/bin/about +4 -0
  1578. data/src/admin_panel/vendor/rails/railties/bin/console +3 -0
  1579. data/src/admin_panel/vendor/rails/railties/bin/dbconsole +3 -0
  1580. data/src/admin_panel/vendor/rails/railties/bin/destroy +3 -0
  1581. data/src/admin_panel/vendor/rails/railties/bin/generate +3 -0
  1582. data/src/admin_panel/vendor/rails/railties/bin/performance/benchmarker +3 -0
  1583. data/src/admin_panel/vendor/rails/railties/bin/performance/profiler +3 -0
  1584. data/src/admin_panel/vendor/rails/railties/bin/plugin +3 -0
  1585. data/src/admin_panel/vendor/rails/railties/bin/rails +20 -0
  1586. data/src/admin_panel/vendor/rails/railties/bin/runner +3 -0
  1587. data/src/admin_panel/vendor/rails/railties/bin/server +3 -0
  1588. data/src/admin_panel/vendor/rails/railties/builtin/rails_info/rails/info.rb +129 -0
  1589. data/src/admin_panel/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  1590. data/src/admin_panel/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  1591. data/src/admin_panel/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  1592. data/src/admin_panel/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  1593. data/src/admin_panel/vendor/rails/railties/configs/databases/ibm_db.yml +62 -0
  1594. data/src/admin_panel/vendor/rails/railties/configs/databases/mysql.yml +60 -0
  1595. data/src/admin_panel/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  1596. data/src/admin_panel/vendor/rails/railties/configs/databases/postgresql.yml +51 -0
  1597. data/src/admin_panel/vendor/rails/railties/configs/databases/sqlite2.yml +19 -0
  1598. data/src/admin_panel/vendor/rails/railties/configs/databases/sqlite3.yml +22 -0
  1599. data/src/admin_panel/vendor/rails/railties/configs/initializers/backtrace_silencers.rb +7 -0
  1600. data/src/admin_panel/vendor/rails/railties/configs/initializers/inflections.rb +10 -0
  1601. data/src/admin_panel/vendor/rails/railties/configs/initializers/mime_types.rb +5 -0
  1602. data/src/admin_panel/vendor/rails/railties/configs/initializers/new_rails_defaults.rb +19 -0
  1603. data/src/admin_panel/vendor/rails/railties/configs/initializers/session_store.rb +15 -0
  1604. data/src/admin_panel/vendor/rails/railties/configs/locales/en.yml +5 -0
  1605. data/src/admin_panel/vendor/rails/railties/configs/routes.rb +43 -0
  1606. data/src/admin_panel/vendor/rails/railties/dispatches/config.ru +7 -0
  1607. data/src/admin_panel/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  1608. data/src/admin_panel/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  1609. data/src/admin_panel/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  1610. data/src/admin_panel/vendor/rails/railties/doc/README_FOR_APP +2 -0
  1611. data/src/admin_panel/vendor/rails/railties/environments/boot.rb +110 -0
  1612. data/src/admin_panel/vendor/rails/railties/environments/development.rb +17 -0
  1613. data/src/admin_panel/vendor/rails/railties/environments/environment.rb +41 -0
  1614. data/src/admin_panel/vendor/rails/railties/environments/production.rb +28 -0
  1615. data/src/admin_panel/vendor/rails/railties/environments/test.rb +28 -0
  1616. data/src/admin_panel/vendor/rails/railties/fresh_rakefile +10 -0
  1617. data/src/admin_panel/vendor/rails/railties/helpers/application_controller.rb +10 -0
  1618. data/src/admin_panel/vendor/rails/railties/helpers/application_helper.rb +3 -0
  1619. data/src/admin_panel/vendor/rails/railties/helpers/performance_test.rb +9 -0
  1620. data/src/admin_panel/vendor/rails/railties/helpers/test_helper.rb +38 -0
  1621. data/src/admin_panel/vendor/rails/railties/html/404.html +30 -0
  1622. data/src/admin_panel/vendor/rails/railties/html/422.html +30 -0
  1623. data/src/admin_panel/vendor/rails/railties/html/500.html +30 -0
  1624. data/src/admin_panel/vendor/rails/railties/html/favicon.ico +0 -0
  1625. data/src/admin_panel/vendor/rails/railties/html/images/rails.png +0 -0
  1626. data/src/admin_panel/vendor/rails/railties/html/index.html +275 -0
  1627. data/src/admin_panel/vendor/rails/railties/html/javascripts/application.js +2 -0
  1628. data/src/admin_panel/vendor/rails/railties/html/javascripts/controls.js +963 -0
  1629. data/src/admin_panel/vendor/rails/railties/html/javascripts/dragdrop.js +973 -0
  1630. data/src/admin_panel/vendor/rails/railties/html/javascripts/effects.js +1128 -0
  1631. data/src/admin_panel/vendor/rails/railties/html/javascripts/prototype.js +4320 -0
  1632. data/src/admin_panel/vendor/rails/railties/html/robots.txt +5 -0
  1633. data/src/admin_panel/vendor/rails/railties/lib/code_statistics.rb +107 -0
  1634. data/src/admin_panel/vendor/rails/railties/lib/commands/about.rb +3 -0
  1635. data/src/admin_panel/vendor/rails/railties/lib/commands/console.rb +45 -0
  1636. data/src/admin_panel/vendor/rails/railties/lib/commands/dbconsole.rb +83 -0
  1637. data/src/admin_panel/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  1638. data/src/admin_panel/vendor/rails/railties/lib/commands/generate.rb +6 -0
  1639. data/src/admin_panel/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  1640. data/src/admin_panel/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  1641. data/src/admin_panel/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  1642. data/src/admin_panel/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  1643. data/src/admin_panel/vendor/rails/railties/lib/commands/plugin.rb +968 -0
  1644. data/src/admin_panel/vendor/rails/railties/lib/commands/runner.rb +54 -0
  1645. data/src/admin_panel/vendor/rails/railties/lib/commands/server.rb +114 -0
  1646. data/src/admin_panel/vendor/rails/railties/lib/commands/update.rb +4 -0
  1647. data/src/admin_panel/vendor/rails/railties/lib/commands.rb +17 -0
  1648. data/src/admin_panel/vendor/rails/railties/lib/console_app.rb +30 -0
  1649. data/src/admin_panel/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  1650. data/src/admin_panel/vendor/rails/railties/lib/console_with_helpers.rb +5 -0
  1651. data/src/admin_panel/vendor/rails/railties/lib/dispatcher.rb +24 -0
  1652. data/src/admin_panel/vendor/rails/railties/lib/fcgi_handler.rb +239 -0
  1653. data/src/admin_panel/vendor/rails/railties/lib/initializer.rb +1105 -0
  1654. data/src/admin_panel/vendor/rails/railties/lib/performance_test_help.rb +5 -0
  1655. data/src/admin_panel/vendor/rails/railties/lib/rails/backtrace_cleaner.rb +54 -0
  1656. data/src/admin_panel/vendor/rails/railties/lib/rails/gem_builder.rb +21 -0
  1657. data/src/admin_panel/vendor/rails/railties/lib/rails/gem_dependency.rb +282 -0
  1658. data/src/admin_panel/vendor/rails/railties/lib/rails/plugin/loader.rb +191 -0
  1659. data/src/admin_panel/vendor/rails/railties/lib/rails/plugin/locator.rb +100 -0
  1660. data/src/admin_panel/vendor/rails/railties/lib/rails/plugin.rb +167 -0
  1661. data/src/admin_panel/vendor/rails/railties/lib/rails/rack/debugger.rb +21 -0
  1662. data/src/admin_panel/vendor/rails/railties/lib/rails/rack/log_tailer.rb +35 -0
  1663. data/src/admin_panel/vendor/rails/railties/lib/rails/rack/metal.rb +51 -0
  1664. data/src/admin_panel/vendor/rails/railties/lib/rails/rack/static.rb +46 -0
  1665. data/src/admin_panel/vendor/rails/railties/lib/rails/rack.rb +8 -0
  1666. data/src/admin_panel/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +140 -0
  1667. data/src/admin_panel/vendor/rails/railties/lib/rails/version.rb +9 -0
  1668. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/base.rb +266 -0
  1669. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/commands.rb +621 -0
  1670. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +46 -0
  1671. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +9 -0
  1672. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +258 -0
  1673. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
  1674. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  1675. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  1676. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  1677. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
  1678. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +43 -0
  1679. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +7 -0
  1680. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +8 -0
  1681. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  1682. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  1683. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.html.erb +2 -0
  1684. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/helper/USAGE +24 -0
  1685. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  1686. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  1687. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  1688. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +8 -0
  1689. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  1690. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  1691. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +16 -0
  1692. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +30 -0
  1693. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.erb +3 -0
  1694. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +0 -0
  1695. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +15 -0
  1696. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +20 -0
  1697. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.erb +3 -0
  1698. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +0 -0
  1699. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/metal/USAGE +8 -0
  1700. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  1701. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  1702. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +29 -0
  1703. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +20 -0
  1704. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +11 -0
  1705. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +27 -0
  1706. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +45 -0
  1707. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +19 -0
  1708. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +16 -0
  1709. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +5 -0
  1710. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +8 -0
  1711. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +13 -0
  1712. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  1713. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  1714. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +8 -0
  1715. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/USAGE +8 -0
  1716. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/performance_test_generator.rb +16 -0
  1717. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/performance_test/templates/performance_test.rb +9 -0
  1718. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +25 -0
  1719. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +39 -0
  1720. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE +20 -0
  1721. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +13 -0
  1722. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +23 -0
  1723. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  1724. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  1725. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  1726. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  1727. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  1728. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  1729. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/test_helper.rb +3 -0
  1730. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  1731. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  1732. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/resource/USAGE +23 -0
  1733. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
  1734. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  1735. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +8 -0
  1736. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  1737. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  1738. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +29 -0
  1739. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +102 -0
  1740. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +85 -0
  1741. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +45 -0
  1742. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  1743. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  1744. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +17 -0
  1745. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +54 -0
  1746. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +18 -0
  1747. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +24 -0
  1748. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +17 -0
  1749. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +10 -0
  1750. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +10 -0
  1751. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  1752. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  1753. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/lookup.rb +249 -0
  1754. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  1755. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/options.rb +150 -0
  1756. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +29 -0
  1757. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  1758. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  1759. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/scripts.rb +89 -0
  1760. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/secret_key_generator.rb +24 -0
  1761. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  1762. data/src/admin_panel/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  1763. data/src/admin_panel/vendor/rails/railties/lib/rails_generator.rb +43 -0
  1764. data/src/admin_panel/vendor/rails/railties/lib/railties_path.rb +1 -0
  1765. data/src/admin_panel/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  1766. data/src/admin_panel/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  1767. data/src/admin_panel/vendor/rails/railties/lib/source_annotation_extractor.rb +102 -0
  1768. data/src/admin_panel/vendor/rails/railties/lib/tasks/annotations.rake +20 -0
  1769. data/src/admin_panel/vendor/rails/railties/lib/tasks/databases.rake +423 -0
  1770. data/src/admin_panel/vendor/rails/railties/lib/tasks/documentation.rake +88 -0
  1771. data/src/admin_panel/vendor/rails/railties/lib/tasks/framework.rake +143 -0
  1772. data/src/admin_panel/vendor/rails/railties/lib/tasks/gems.rake +65 -0
  1773. data/src/admin_panel/vendor/rails/railties/lib/tasks/log.rake +9 -0
  1774. data/src/admin_panel/vendor/rails/railties/lib/tasks/middleware.rake +7 -0
  1775. data/src/admin_panel/vendor/rails/railties/lib/tasks/misc.rake +63 -0
  1776. data/src/admin_panel/vendor/rails/railties/lib/tasks/rails.rb +8 -0
  1777. data/src/admin_panel/vendor/rails/railties/lib/tasks/routes.rake +17 -0
  1778. data/src/admin_panel/vendor/rails/railties/lib/tasks/statistics.rake +17 -0
  1779. data/src/admin_panel/vendor/rails/railties/lib/tasks/testing.rake +139 -0
  1780. data/src/admin_panel/vendor/rails/railties/lib/tasks/tmp.rake +37 -0
  1781. data/src/admin_panel/vendor/rails/railties/lib/test_help.rb +35 -0
  1782. data/src/admin_panel/vendor/rails/railties/lib/webrick_server.rb +156 -0
  1783. data/src/head/wr_access_log.c +68 -0
  1784. data/src/head/wr_access_log.h +31 -0
  1785. data/src/head/wr_application.c +514 -0
  1786. data/src/head/wr_application.h +82 -0
  1787. data/src/head/wr_config.h +128 -0
  1788. data/src/head/wr_configurator.c +1114 -0
  1789. data/src/head/wr_configurator.h +142 -0
  1790. data/src/head/wr_connection.c +325 -0
  1791. data/src/head/wr_connection.h +68 -0
  1792. data/src/head/wr_controller.c +764 -0
  1793. data/src/head/wr_controller.h +100 -0
  1794. data/src/head/wr_main.c +202 -0
  1795. data/src/head/wr_request.c +658 -0
  1796. data/src/head/wr_request.h +139 -0
  1797. data/src/head/wr_resolver.c +285 -0
  1798. data/src/head/wr_resolver.h +58 -0
  1799. data/src/head/wr_server.c +190 -0
  1800. data/src/head/wr_server.h +64 -0
  1801. data/src/head/wr_worker.c +865 -0
  1802. data/src/head/wr_worker.h +80 -0
  1803. data/src/helper/wr_helper.h +31 -0
  1804. data/src/helper/wr_logger.c +160 -0
  1805. data/src/helper/wr_logger.h +74 -0
  1806. data/src/helper/wr_macro.h +31 -0
  1807. data/src/helper/wr_queue.c +107 -0
  1808. data/src/helper/wr_queue.h +64 -0
  1809. data/src/helper/wr_scgi.c +394 -0
  1810. data/src/helper/wr_scgi.h +110 -0
  1811. data/src/helper/wr_string.c +78 -0
  1812. data/src/helper/wr_string.h +83 -0
  1813. data/src/helper/wr_util.c +84 -0
  1814. data/src/helper/wr_util.h +43 -0
  1815. data/src/helper/wr_yaml_parser.c +249 -0
  1816. data/src/helper/wr_yaml_parser.h +67 -0
  1817. data/src/ruby_lib/analyzer/db_connect.rb +64 -0
  1818. data/src/ruby_lib/analyzer/logger.rb +55 -0
  1819. data/src/ruby_lib/analyzer/message_analyzer.rb +295 -0
  1820. data/src/ruby_lib/analyzer/message_reader.rb +93 -0
  1821. data/src/ruby_lib/analyzer/process_helper.rb +140 -0
  1822. data/src/ruby_lib/analyzer/resources_analyzer.rb +225 -0
  1823. data/src/ruby_lib/analyzer/user_defined_exception.rb +25 -0
  1824. data/src/ruby_lib/analyzer/webroar_analyzer.rb +29 -0
  1825. data/src/ruby_lib/analyzer/webroar_analyzer_script_runner.rb +171 -0
  1826. data/src/ruby_lib/exception_tracker/instrumentation/action_controller.rb +24 -0
  1827. data/src/ruby_lib/exception_tracker/instrumentation/instrumentation.rb +27 -0
  1828. data/src/ruby_lib/exception_tracker/instrumentation/rails.rb +25 -0
  1829. data/src/ruby_lib/exception_tracker/webroar_exception.rb +59 -0
  1830. data/src/ruby_lib/mailer/smtpmail.rb +64 -0
  1831. data/src/ruby_lib/profiler/instrumentation/action_controller.rb +25 -0
  1832. data/src/ruby_lib/profiler/instrumentation/active_record.rb +48 -0
  1833. data/src/ruby_lib/profiler/instrumentation/instrumentation.rb +27 -0
  1834. data/src/ruby_lib/profiler/instrumentation/rails.rb +26 -0
  1835. data/src/ruby_lib/profiler/message_dispatcher.rb +94 -0
  1836. data/src/ruby_lib/profiler/webroar_profiling.rb +202 -0
  1837. data/src/ruby_lib/rack/adapter/rack.rb +62 -0
  1838. data/src/ruby_lib/rack/adapter/rails.rb +185 -0
  1839. data/src/ruby_lib/ruby_interface/adapter.rb +50 -0
  1840. data/src/ruby_lib/ruby_interface/client.rb +111 -0
  1841. data/src/ruby_lib/ruby_interface/constants.rb +126 -0
  1842. data/src/ruby_lib/ruby_interface/deflater.rb +100 -0
  1843. data/src/ruby_lib/ruby_interface/logger.rb +34 -0
  1844. data/src/ruby_lib/ruby_interface/request_body.rb +60 -0
  1845. data/src/ruby_lib/ruby_interface/request_handler.rb +76 -0
  1846. data/src/ruby_lib/ruby_interface/ruby_interface.rb +29 -0
  1847. data/src/ruby_lib/ruby_interface/utils.rb +37 -0
  1848. data/src/ruby_lib/ruby_interface/version.rb +32 -0
  1849. data/src/ruby_lib/webroar_app_loader.rb +80 -0
  1850. data/src/vendor/libebb/LICENSE +21 -0
  1851. data/src/vendor/libebb/README +7 -0
  1852. data/src/vendor/libebb/doc/icon.png +0 -0
  1853. data/src/vendor/libebb/doc/index.html +240 -0
  1854. data/src/vendor/libebb/ebb.c +813 -0
  1855. data/src/vendor/libebb/ebb.h +123 -0
  1856. data/src/vendor/libebb/ebb_request_parser.c +3799 -0
  1857. data/src/vendor/libebb/ebb_request_parser.h +117 -0
  1858. data/src/vendor/libebb/ebb_request_parser.rl +421 -0
  1859. data/src/vendor/libebb/examples/ca-cert.pem +12 -0
  1860. data/src/vendor/libebb/examples/ca-key.pem +15 -0
  1861. data/src/vendor/libebb/examples/hello_world.c +101 -0
  1862. data/src/vendor/libebb/rbtree.c +412 -0
  1863. data/src/vendor/libebb/rbtree.h +54 -0
  1864. data/src/vendor/libebb/test/test_examples.rb +60 -0
  1865. data/src/vendor/libebb/test/test_rbtree.c +108 -0
  1866. data/src/vendor/libebb/test/test_request_parser.c +746 -0
  1867. data/src/vendor/libev/Changes +221 -0
  1868. data/src/vendor/libev/LICENSE +36 -0
  1869. data/src/vendor/libev/README +58 -0
  1870. data/src/vendor/libev/config.h.in +115 -0
  1871. data/src/vendor/libev/ev++.h +786 -0
  1872. data/src/vendor/libev/ev.3 +4021 -0
  1873. data/src/vendor/libev/ev.c +3158 -0
  1874. data/src/vendor/libev/ev.h +648 -0
  1875. data/src/vendor/libev/ev.pod +3943 -0
  1876. data/src/vendor/libev/ev_epoll.c +215 -0
  1877. data/src/vendor/libev/ev_kqueue.c +194 -0
  1878. data/src/vendor/libev/ev_poll.c +140 -0
  1879. data/src/vendor/libev/ev_port.c +163 -0
  1880. data/src/vendor/libev/ev_select.c +300 -0
  1881. data/src/vendor/libev/ev_vars.h +164 -0
  1882. data/src/vendor/libev/ev_win32.c +154 -0
  1883. data/src/vendor/libev/ev_wrap.h +150 -0
  1884. data/src/vendor/libev/event.c +401 -0
  1885. data/src/vendor/libev/event.h +158 -0
  1886. data/src/vendor/libyaml/LICENSE +19 -0
  1887. data/src/vendor/libyaml/README +29 -0
  1888. data/src/vendor/libyaml/api.c +1388 -0
  1889. data/src/vendor/libyaml/config.h +78 -0
  1890. data/src/vendor/libyaml/dumper.c +394 -0
  1891. data/src/vendor/libyaml/emitter.c +2297 -0
  1892. data/src/vendor/libyaml/loader.c +430 -0
  1893. data/src/vendor/libyaml/parser.c +1374 -0
  1894. data/src/vendor/libyaml/reader.c +460 -0
  1895. data/src/vendor/libyaml/scanner.c +3568 -0
  1896. data/src/vendor/libyaml/writer.c +141 -0
  1897. data/src/vendor/libyaml/yaml.h +1971 -0
  1898. data/src/vendor/libyaml/yaml_private.h +635 -0
  1899. data/src/worker/wkr_controller.c +288 -0
  1900. data/src/worker/wkr_http.c +470 -0
  1901. data/src/worker/wkr_http.h +43 -0
  1902. data/src/worker/wkr_http_request.c +322 -0
  1903. data/src/worker/wkr_http_request.h +47 -0
  1904. data/src/worker/wkr_http_response.c +247 -0
  1905. data/src/worker/wkr_http_response.h +43 -0
  1906. data/src/worker/wkr_main.c +248 -0
  1907. data/src/worker/worker.c +336 -0
  1908. data/src/worker/worker.h +97 -0
  1909. data/tasks/compile.rake +297 -0
  1910. data/tasks/gem.rake +123 -0
  1911. data/tasks/test.rake +696 -0
  1912. data/test/load_test.rb +115 -0
  1913. data/test/spec/access_log_spec.rb +45 -0
  1914. data/test/spec/analytics_spec.rb +114 -0
  1915. data/test/spec/conditional_spec.rb +106 -0
  1916. data/test/spec/connection_keep_alive_spec.rb +76 -0
  1917. data/test/spec/content_encoding_spec.rb +52 -0
  1918. data/test/spec/heart_beat_spec.rb +41 -0
  1919. data/test/spec/host_name_spec.rb +215 -0
  1920. data/test/spec/http_request_parser_spec.rb +380 -0
  1921. data/test/spec/http_spec.rb +76 -0
  1922. data/test/spec/spec_helper.rb +254 -0
  1923. data/test/spec/test_app/Rakefile +10 -0
  1924. data/test/spec/test_app/app/controllers/application_controller.rb +28 -0
  1925. data/test/spec/test_app/app/controllers/test_controller.rb +91 -0
  1926. data/test/spec/test_app/app/controllers/users_controller.rb +103 -0
  1927. data/test/spec/test_app/app/helpers/application_helper.rb +21 -0
  1928. data/test/spec/test_app/app/helpers/test_helper.rb +20 -0
  1929. data/test/spec/test_app/app/helpers/users_helper.rb +20 -0
  1930. data/test/spec/test_app/app/models/user.rb +20 -0
  1931. data/test/spec/test_app/app/views/layouts/users.html.erb +37 -0
  1932. data/test/spec/test_app/app/views/test/post_data.html.erb +24 -0
  1933. data/test/spec/test_app/app/views/test/upload_file.html.erb +34 -0
  1934. data/test/spec/test_app/app/views/users/edit.html.erb +36 -0
  1935. data/test/spec/test_app/app/views/users/index.html.erb +40 -0
  1936. data/test/spec/test_app/app/views/users/new.html.erb +35 -0
  1937. data/test/spec/test_app/app/views/users/show.html.erb +28 -0
  1938. data/test/spec/test_app/config/boot.rb +110 -0
  1939. data/test/spec/test_app/config/database.yml +22 -0
  1940. data/test/spec/test_app/config/environment.rb +42 -0
  1941. data/test/spec/test_app/config/environments/development.rb +17 -0
  1942. data/test/spec/test_app/config/environments/production.rb +28 -0
  1943. data/test/spec/test_app/config/environments/test.rb +28 -0
  1944. data/test/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
  1945. data/test/spec/test_app/config/initializers/inflections.rb +10 -0
  1946. data/test/spec/test_app/config/initializers/mime_types.rb +5 -0
  1947. data/test/spec/test_app/config/initializers/new_rails_defaults.rb +19 -0
  1948. data/test/spec/test_app/config/initializers/session_store.rb +15 -0
  1949. data/test/spec/test_app/config/routes.rb +45 -0
  1950. data/test/spec/test_app/db/migrate/20090602102438_create_users.rb +31 -0
  1951. data/test/spec/test_app/public/404.html +30 -0
  1952. data/test/spec/test_app/public/422.html +30 -0
  1953. data/test/spec/test_app/public/500.html +30 -0
  1954. data/test/spec/test_app/public/index.html +275 -0
  1955. data/test/spec/test_app/public/javascripts/application.js +2 -0
  1956. data/test/spec/test_app/public/javascripts/controls.js +963 -0
  1957. data/test/spec/test_app/public/javascripts/dragdrop.js +973 -0
  1958. data/test/spec/test_app/public/javascripts/effects.js +1128 -0
  1959. data/test/spec/test_app/public/javascripts/prototype.js +4320 -0
  1960. data/test/spec/test_app/public/robots.txt +5 -0
  1961. data/test/spec/test_app/public/stylesheets/scaffold.css +54 -0
  1962. data/test/spec/test_app/script/about +4 -0
  1963. data/test/spec/test_app/script/console +3 -0
  1964. data/test/spec/test_app/script/dbconsole +3 -0
  1965. data/test/spec/test_app/script/destroy +3 -0
  1966. data/test/spec/test_app/script/generate +3 -0
  1967. data/test/spec/test_app/script/performance/benchmarker +3 -0
  1968. data/test/spec/test_app/script/performance/profiler +3 -0
  1969. data/test/spec/test_app/script/plugin +3 -0
  1970. data/test/spec/test_app/script/runner +3 -0
  1971. data/test/spec/test_app/script/server +3 -0
  1972. data/test/spec/test_app/vendor/.placeholder +0 -0
  1973. data/test/spec/upload_helper.rb +163 -0
  1974. data/test/spec/webroar_command_spec.rb +66 -0
  1975. data/test/unit/config/config1.yml +3 -0
  1976. data/test/unit/config/config2.yml +8 -0
  1977. data/test/unit/config/config3.yml +18 -0
  1978. data/test/unit/config/config4.yml +1 -0
  1979. data/test/unit/config/config5.yml +3 -0
  1980. data/test/unit/queue_test.c +89 -0
  1981. data/test/unit/scgi_test.c +194 -0
  1982. data/test/unit/test.c +42 -0
  1983. data/test/unit/test.h +38 -0
  1984. data/test/unit/ut_test.c +77 -0
  1985. data/test/unit/ut_test.h +62 -0
  1986. data/test/unit/util_test.c +57 -0
  1987. data/test/unit/yaml_test.c +144 -0
  1988. metadata +2114 -0
@@ -0,0 +1,4021 @@
1
+ .\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
2
+ .\"
3
+ .\" Standard preamble:
4
+ .\" ========================================================================
5
+ .de Sh \" Subsection heading
6
+ .br
7
+ .if t .Sp
8
+ .ne 5
9
+ .PP
10
+ \fB\\$1\fR
11
+ .PP
12
+ ..
13
+ .de Sp \" Vertical space (when we can't use .PP)
14
+ .if t .sp .5v
15
+ .if n .sp
16
+ ..
17
+ .de Vb \" Begin verbatim text
18
+ .ft CW
19
+ .nf
20
+ .ne \\$1
21
+ ..
22
+ .de Ve \" End verbatim text
23
+ .ft R
24
+ .fi
25
+ ..
26
+ .\" Set up some character translations and predefined strings. \*(-- will
27
+ .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
28
+ .\" double quote, and \*(R" will give a right double quote. \*(C+ will
29
+ .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
30
+ .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
31
+ .\" nothing in troff, for use with C<>.
32
+ .tr \(*W-
33
+ .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
34
+ .ie n \{\
35
+ . ds -- \(*W-
36
+ . ds PI pi
37
+ . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
38
+ . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
39
+ . ds L" ""
40
+ . ds R" ""
41
+ . ds C` ""
42
+ . ds C' ""
43
+ 'br\}
44
+ .el\{\
45
+ . ds -- \|\(em\|
46
+ . ds PI \(*p
47
+ . ds L" ``
48
+ . ds R" ''
49
+ 'br\}
50
+ .\"
51
+ .\" Escape single quotes in literal strings from groff's Unicode transform.
52
+ .ie \n(.g .ds Aq \(aq
53
+ .el .ds Aq '
54
+ .\"
55
+ .\" If the F register is turned on, we'll generate index entries on stderr for
56
+ .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
57
+ .\" entries marked with X<> in POD. Of course, you'll have to process the
58
+ .\" output yourself in some meaningful fashion.
59
+ .ie \nF \{\
60
+ . de IX
61
+ . tm Index:\\$1\t\\n%\t"\\$2"
62
+ ..
63
+ . nr % 0
64
+ . rr F
65
+ .\}
66
+ .el \{\
67
+ . de IX
68
+ ..
69
+ .\}
70
+ .\"
71
+ .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
72
+ .\" Fear. Run. Save yourself. No user-serviceable parts.
73
+ . \" fudge factors for nroff and troff
74
+ .if n \{\
75
+ . ds #H 0
76
+ . ds #V .8m
77
+ . ds #F .3m
78
+ . ds #[ \f1
79
+ . ds #] \fP
80
+ .\}
81
+ .if t \{\
82
+ . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
83
+ . ds #V .6m
84
+ . ds #F 0
85
+ . ds #[ \&
86
+ . ds #] \&
87
+ .\}
88
+ . \" simple accents for nroff and troff
89
+ .if n \{\
90
+ . ds ' \&
91
+ . ds ` \&
92
+ . ds ^ \&
93
+ . ds , \&
94
+ . ds ~ ~
95
+ . ds /
96
+ .\}
97
+ .if t \{\
98
+ . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
99
+ . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
100
+ . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
101
+ . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
102
+ . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
103
+ . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
104
+ .\}
105
+ . \" troff and (daisy-wheel) nroff accents
106
+ .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
107
+ .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
108
+ .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
109
+ .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
110
+ .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
111
+ .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
112
+ .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
113
+ .ds ae a\h'-(\w'a'u*4/10)'e
114
+ .ds Ae A\h'-(\w'A'u*4/10)'E
115
+ . \" corrections for vroff
116
+ .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
117
+ .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
118
+ . \" for low resolution devices (crt and lpr)
119
+ .if \n(.H>23 .if \n(.V>19 \
120
+ \{\
121
+ . ds : e
122
+ . ds 8 ss
123
+ . ds o a
124
+ . ds d- d\h'-1'\(ga
125
+ . ds D- D\h'-1'\(hy
126
+ . ds th \o'bp'
127
+ . ds Th \o'LP'
128
+ . ds ae ae
129
+ . ds Ae AE
130
+ .\}
131
+ .rm #[ #] #H #V #F C
132
+ .\" ========================================================================
133
+ .\"
134
+ .IX Title "LIBEV 3"
135
+ .TH LIBEV 3 "2009-02-06" "libev-3.53" "libev - high performance full featured event loop"
136
+ .\" For nroff, turn off justification. Always turn off hyphenation; it makes
137
+ .\" way too many mistakes in technical documents.
138
+ .if n .ad l
139
+ .nh
140
+ .SH "NAME"
141
+ libev \- a high performance full\-featured event loop written in C
142
+ .SH "SYNOPSIS"
143
+ .IX Header "SYNOPSIS"
144
+ .Vb 1
145
+ \& #include <ev.h>
146
+ .Ve
147
+ .Sh "\s-1EXAMPLE\s0 \s-1PROGRAM\s0"
148
+ .IX Subsection "EXAMPLE PROGRAM"
149
+ .Vb 2
150
+ \& // a single header file is required
151
+ \& #include <ev.h>
152
+ \&
153
+ \& #include <stdio.h> // for puts
154
+ \&
155
+ \& // every watcher type has its own typedef\*(Aqd struct
156
+ \& // with the name ev_TYPE
157
+ \& ev_io stdin_watcher;
158
+ \& ev_timer timeout_watcher;
159
+ \&
160
+ \& // all watcher callbacks have a similar signature
161
+ \& // this callback is called when data is readable on stdin
162
+ \& static void
163
+ \& stdin_cb (EV_P_ ev_io *w, int revents)
164
+ \& {
165
+ \& puts ("stdin ready");
166
+ \& // for one\-shot events, one must manually stop the watcher
167
+ \& // with its corresponding stop function.
168
+ \& ev_io_stop (EV_A_ w);
169
+ \&
170
+ \& // this causes all nested ev_loop\*(Aqs to stop iterating
171
+ \& ev_unloop (EV_A_ EVUNLOOP_ALL);
172
+ \& }
173
+ \&
174
+ \& // another callback, this time for a time\-out
175
+ \& static void
176
+ \& timeout_cb (EV_P_ ev_timer *w, int revents)
177
+ \& {
178
+ \& puts ("timeout");
179
+ \& // this causes the innermost ev_loop to stop iterating
180
+ \& ev_unloop (EV_A_ EVUNLOOP_ONE);
181
+ \& }
182
+ \&
183
+ \& int
184
+ \& main (void)
185
+ \& {
186
+ \& // use the default event loop unless you have special needs
187
+ \& struct ev_loop *loop = ev_default_loop (0);
188
+ \&
189
+ \& // initialise an io watcher, then start it
190
+ \& // this one will watch for stdin to become readable
191
+ \& ev_io_init (&stdin_watcher, stdin_cb, /*STDIN_FILENO*/ 0, EV_READ);
192
+ \& ev_io_start (loop, &stdin_watcher);
193
+ \&
194
+ \& // initialise a timer watcher, then start it
195
+ \& // simple non\-repeating 5.5 second timeout
196
+ \& ev_timer_init (&timeout_watcher, timeout_cb, 5.5, 0.);
197
+ \& ev_timer_start (loop, &timeout_watcher);
198
+ \&
199
+ \& // now wait for events to arrive
200
+ \& ev_loop (loop, 0);
201
+ \&
202
+ \& // unloop was called, so exit
203
+ \& return 0;
204
+ \& }
205
+ .Ve
206
+ .SH "DESCRIPTION"
207
+ .IX Header "DESCRIPTION"
208
+ The newest version of this document is also available as an html-formatted
209
+ web page you might find easier to navigate when reading it for the first
210
+ time: <http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod>.
211
+ .PP
212
+ Libev is an event loop: you register interest in certain events (such as a
213
+ file descriptor being readable or a timeout occurring), and it will manage
214
+ these event sources and provide your program with events.
215
+ .PP
216
+ To do this, it must take more or less complete control over your process
217
+ (or thread) by executing the \fIevent loop\fR handler, and will then
218
+ communicate events via a callback mechanism.
219
+ .PP
220
+ You register interest in certain events by registering so-called \fIevent
221
+ watchers\fR, which are relatively small C structures you initialise with the
222
+ details of the event, and then hand it over to libev by \fIstarting\fR the
223
+ watcher.
224
+ .Sh "\s-1FEATURES\s0"
225
+ .IX Subsection "FEATURES"
226
+ Libev supports \f(CW\*(C`select\*(C'\fR, \f(CW\*(C`poll\*(C'\fR, the Linux-specific \f(CW\*(C`epoll\*(C'\fR, the
227
+ BSD-specific \f(CW\*(C`kqueue\*(C'\fR and the Solaris-specific event port mechanisms
228
+ for file descriptor events (\f(CW\*(C`ev_io\*(C'\fR), the Linux \f(CW\*(C`inotify\*(C'\fR interface
229
+ (for \f(CW\*(C`ev_stat\*(C'\fR), relative timers (\f(CW\*(C`ev_timer\*(C'\fR), absolute timers
230
+ with customised rescheduling (\f(CW\*(C`ev_periodic\*(C'\fR), synchronous signals
231
+ (\f(CW\*(C`ev_signal\*(C'\fR), process status change events (\f(CW\*(C`ev_child\*(C'\fR), and event
232
+ watchers dealing with the event loop mechanism itself (\f(CW\*(C`ev_idle\*(C'\fR,
233
+ \&\f(CW\*(C`ev_embed\*(C'\fR, \f(CW\*(C`ev_prepare\*(C'\fR and \f(CW\*(C`ev_check\*(C'\fR watchers) as well as
234
+ file watchers (\f(CW\*(C`ev_stat\*(C'\fR) and even limited support for fork events
235
+ (\f(CW\*(C`ev_fork\*(C'\fR).
236
+ .PP
237
+ It also is quite fast (see this
238
+ benchmark comparing it to libevent
239
+ for example).
240
+ .Sh "\s-1CONVENTIONS\s0"
241
+ .IX Subsection "CONVENTIONS"
242
+ Libev is very configurable. In this manual the default (and most common)
243
+ configuration will be described, which supports multiple event loops. For
244
+ more info about various configuration options please have a look at
245
+ \&\fB\s-1EMBED\s0\fR section in this manual. If libev was configured without support
246
+ for multiple event loops, then all functions taking an initial argument of
247
+ name \f(CW\*(C`loop\*(C'\fR (which is always of type \f(CW\*(C`ev_loop *\*(C'\fR) will not have
248
+ this argument.
249
+ .Sh "\s-1TIME\s0 \s-1REPRESENTATION\s0"
250
+ .IX Subsection "TIME REPRESENTATION"
251
+ Libev represents time as a single floating point number, representing the
252
+ (fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near
253
+ the beginning of 1970, details are complicated, don't ask). This type is
254
+ called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases
255
+ to the \f(CW\*(C`double\*(C'\fR type in C, and when you need to do any calculations on
256
+ it, you should treat it as some floating point value. Unlike the name
257
+ component \f(CW\*(C`stamp\*(C'\fR might indicate, it is also used for time differences
258
+ throughout libev.
259
+ .SH "ERROR HANDLING"
260
+ .IX Header "ERROR HANDLING"
261
+ Libev knows three classes of errors: operating system errors, usage errors
262
+ and internal errors (bugs).
263
+ .PP
264
+ When libev catches an operating system error it cannot handle (for example
265
+ a system call indicating a condition libev cannot fix), it calls the callback
266
+ set via \f(CW\*(C`ev_set_syserr_cb\*(C'\fR, which is supposed to fix the problem or
267
+ abort. The default is to print a diagnostic message and to call \f(CW\*(C`abort
268
+ ()\*(C'\fR.
269
+ .PP
270
+ When libev detects a usage error such as a negative timer interval, then
271
+ it will print a diagnostic message and abort (via the \f(CW\*(C`assert\*(C'\fR mechanism,
272
+ so \f(CW\*(C`NDEBUG\*(C'\fR will disable this checking): these are programming errors in
273
+ the libev caller and need to be fixed there.
274
+ .PP
275
+ Libev also has a few internal error-checking \f(CW\*(C`assert\*(C'\fRions, and also has
276
+ extensive consistency checking code. These do not trigger under normal
277
+ circumstances, as they indicate either a bug in libev or worse.
278
+ .SH "GLOBAL FUNCTIONS"
279
+ .IX Header "GLOBAL FUNCTIONS"
280
+ These functions can be called anytime, even before initialising the
281
+ library in any way.
282
+ .IP "ev_tstamp ev_time ()" 4
283
+ .IX Item "ev_tstamp ev_time ()"
284
+ Returns the current time as libev would use it. Please note that the
285
+ \&\f(CW\*(C`ev_now\*(C'\fR function is usually faster and also often returns the timestamp
286
+ you actually want to know.
287
+ .IP "ev_sleep (ev_tstamp interval)" 4
288
+ .IX Item "ev_sleep (ev_tstamp interval)"
289
+ Sleep for the given interval: The current thread will be blocked until
290
+ either it is interrupted or the given time interval has passed. Basically
291
+ this is a sub-second-resolution \f(CW\*(C`sleep ()\*(C'\fR.
292
+ .IP "int ev_version_major ()" 4
293
+ .IX Item "int ev_version_major ()"
294
+ .PD 0
295
+ .IP "int ev_version_minor ()" 4
296
+ .IX Item "int ev_version_minor ()"
297
+ .PD
298
+ You can find out the major and minor \s-1ABI\s0 version numbers of the library
299
+ you linked against by calling the functions \f(CW\*(C`ev_version_major\*(C'\fR and
300
+ \&\f(CW\*(C`ev_version_minor\*(C'\fR. If you want, you can compare against the global
301
+ symbols \f(CW\*(C`EV_VERSION_MAJOR\*(C'\fR and \f(CW\*(C`EV_VERSION_MINOR\*(C'\fR, which specify the
302
+ version of the library your program was compiled against.
303
+ .Sp
304
+ These version numbers refer to the \s-1ABI\s0 version of the library, not the
305
+ release version.
306
+ .Sp
307
+ Usually, it's a good idea to terminate if the major versions mismatch,
308
+ as this indicates an incompatible change. Minor versions are usually
309
+ compatible to older versions, so a larger minor version alone is usually
310
+ not a problem.
311
+ .Sp
312
+ Example: Make sure we haven't accidentally been linked against the wrong
313
+ version.
314
+ .Sp
315
+ .Vb 3
316
+ \& assert (("libev version mismatch",
317
+ \& ev_version_major () == EV_VERSION_MAJOR
318
+ \& && ev_version_minor () >= EV_VERSION_MINOR));
319
+ .Ve
320
+ .IP "unsigned int ev_supported_backends ()" 4
321
+ .IX Item "unsigned int ev_supported_backends ()"
322
+ Return the set of all backends (i.e. their corresponding \f(CW\*(C`EV_BACKEND_*\*(C'\fR
323
+ value) compiled into this binary of libev (independent of their
324
+ availability on the system you are running on). See \f(CW\*(C`ev_default_loop\*(C'\fR for
325
+ a description of the set values.
326
+ .Sp
327
+ Example: make sure we have the epoll method, because yeah this is cool and
328
+ a must have and can we have a torrent of it please!!!11
329
+ .Sp
330
+ .Vb 2
331
+ \& assert (("sorry, no epoll, no sex",
332
+ \& ev_supported_backends () & EVBACKEND_EPOLL));
333
+ .Ve
334
+ .IP "unsigned int ev_recommended_backends ()" 4
335
+ .IX Item "unsigned int ev_recommended_backends ()"
336
+ Return the set of all backends compiled into this binary of libev and also
337
+ recommended for this platform. This set is often smaller than the one
338
+ returned by \f(CW\*(C`ev_supported_backends\*(C'\fR, as for example kqueue is broken on
339
+ most BSDs and will not be auto-detected unless you explicitly request it
340
+ (assuming you know what you are doing). This is the set of backends that
341
+ libev will probe for if you specify no backends explicitly.
342
+ .IP "unsigned int ev_embeddable_backends ()" 4
343
+ .IX Item "unsigned int ev_embeddable_backends ()"
344
+ Returns the set of backends that are embeddable in other event loops. This
345
+ is the theoretical, all-platform, value. To find which backends
346
+ might be supported on the current system, you would need to look at
347
+ \&\f(CW\*(C`ev_embeddable_backends () & ev_supported_backends ()\*(C'\fR, likewise for
348
+ recommended ones.
349
+ .Sp
350
+ See the description of \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
351
+ .IP "ev_set_allocator (void *(*cb)(void *ptr, long size)) [\s-1NOT\s0 \s-1REENTRANT\s0]" 4
352
+ .IX Item "ev_set_allocator (void *(*cb)(void *ptr, long size)) [NOT REENTRANT]"
353
+ Sets the allocation function to use (the prototype is similar \- the
354
+ semantics are identical to the \f(CW\*(C`realloc\*(C'\fR C89/SuS/POSIX function). It is
355
+ used to allocate and free memory (no surprises here). If it returns zero
356
+ when memory needs to be allocated (\f(CW\*(C`size != 0\*(C'\fR), the library might abort
357
+ or take some potentially destructive action.
358
+ .Sp
359
+ Since some systems (at least OpenBSD and Darwin) fail to implement
360
+ correct \f(CW\*(C`realloc\*(C'\fR semantics, libev will use a wrapper around the system
361
+ \&\f(CW\*(C`realloc\*(C'\fR and \f(CW\*(C`free\*(C'\fR functions by default.
362
+ .Sp
363
+ You could override this function in high-availability programs to, say,
364
+ free some memory if it cannot allocate memory, to use a special allocator,
365
+ or even to sleep a while and retry until some memory is available.
366
+ .Sp
367
+ Example: Replace the libev allocator with one that waits a bit and then
368
+ retries (example requires a standards-compliant \f(CW\*(C`realloc\*(C'\fR).
369
+ .Sp
370
+ .Vb 6
371
+ \& static void *
372
+ \& persistent_realloc (void *ptr, size_t size)
373
+ \& {
374
+ \& for (;;)
375
+ \& {
376
+ \& void *newptr = realloc (ptr, size);
377
+ \&
378
+ \& if (newptr)
379
+ \& return newptr;
380
+ \&
381
+ \& sleep (60);
382
+ \& }
383
+ \& }
384
+ \&
385
+ \& ...
386
+ \& ev_set_allocator (persistent_realloc);
387
+ .Ve
388
+ .IP "ev_set_syserr_cb (void (*cb)(const char *msg)); [\s-1NOT\s0 \s-1REENTRANT\s0]" 4
389
+ .IX Item "ev_set_syserr_cb (void (*cb)(const char *msg)); [NOT REENTRANT]"
390
+ Set the callback function to call on a retryable system call error (such
391
+ as failed select, poll, epoll_wait). The message is a printable string
392
+ indicating the system call or subsystem causing the problem. If this
393
+ callback is set, then libev will expect it to remedy the situation, no
394
+ matter what, when it returns. That is, libev will generally retry the
395
+ requested operation, or, if the condition doesn't go away, do bad stuff
396
+ (such as abort).
397
+ .Sp
398
+ Example: This is basically the same thing that libev does internally, too.
399
+ .Sp
400
+ .Vb 6
401
+ \& static void
402
+ \& fatal_error (const char *msg)
403
+ \& {
404
+ \& perror (msg);
405
+ \& abort ();
406
+ \& }
407
+ \&
408
+ \& ...
409
+ \& ev_set_syserr_cb (fatal_error);
410
+ .Ve
411
+ .SH "FUNCTIONS CONTROLLING THE EVENT LOOP"
412
+ .IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP"
413
+ An event loop is described by a \f(CW\*(C`struct ev_loop *\*(C'\fR (the \f(CW\*(C`struct\*(C'\fR
414
+ is \fInot\fR optional in this case, as there is also an \f(CW\*(C`ev_loop\*(C'\fR
415
+ \&\fIfunction\fR).
416
+ .PP
417
+ The library knows two types of such loops, the \fIdefault\fR loop, which
418
+ supports signals and child events, and dynamically created loops which do
419
+ not.
420
+ .IP "struct ev_loop *ev_default_loop (unsigned int flags)" 4
421
+ .IX Item "struct ev_loop *ev_default_loop (unsigned int flags)"
422
+ This will initialise the default event loop if it hasn't been initialised
423
+ yet and return it. If the default loop could not be initialised, returns
424
+ false. If it already was initialised it simply returns it (and ignores the
425
+ flags. If that is troubling you, check \f(CW\*(C`ev_backend ()\*(C'\fR afterwards).
426
+ .Sp
427
+ If you don't know what event loop to use, use the one returned from this
428
+ function.
429
+ .Sp
430
+ Note that this function is \fInot\fR thread-safe, so if you want to use it
431
+ from multiple threads, you have to lock (note also that this is unlikely,
432
+ as loops cannot be shared easily between threads anyway).
433
+ .Sp
434
+ The default loop is the only loop that can handle \f(CW\*(C`ev_signal\*(C'\fR and
435
+ \&\f(CW\*(C`ev_child\*(C'\fR watchers, and to do this, it always registers a handler
436
+ for \f(CW\*(C`SIGCHLD\*(C'\fR. If this is a problem for your application you can either
437
+ create a dynamic loop with \f(CW\*(C`ev_loop_new\*(C'\fR that doesn't do that, or you
438
+ can simply overwrite the \f(CW\*(C`SIGCHLD\*(C'\fR signal handler \fIafter\fR calling
439
+ \&\f(CW\*(C`ev_default_init\*(C'\fR.
440
+ .Sp
441
+ The flags argument can be used to specify special behaviour or specific
442
+ backends to use, and is usually specified as \f(CW0\fR (or \f(CW\*(C`EVFLAG_AUTO\*(C'\fR).
443
+ .Sp
444
+ The following flags are supported:
445
+ .RS 4
446
+ .ie n .IP """EVFLAG_AUTO""" 4
447
+ .el .IP "\f(CWEVFLAG_AUTO\fR" 4
448
+ .IX Item "EVFLAG_AUTO"
449
+ The default flags value. Use this if you have no clue (it's the right
450
+ thing, believe me).
451
+ .ie n .IP """EVFLAG_NOENV""" 4
452
+ .el .IP "\f(CWEVFLAG_NOENV\fR" 4
453
+ .IX Item "EVFLAG_NOENV"
454
+ If this flag bit is or'ed into the flag value (or the program runs setuid
455
+ or setgid) then libev will \fInot\fR look at the environment variable
456
+ \&\f(CW\*(C`LIBEV_FLAGS\*(C'\fR. Otherwise (the default), this environment variable will
457
+ override the flags completely if it is found in the environment. This is
458
+ useful to try out specific backends to test their performance, or to work
459
+ around bugs.
460
+ .ie n .IP """EVFLAG_FORKCHECK""" 4
461
+ .el .IP "\f(CWEVFLAG_FORKCHECK\fR" 4
462
+ .IX Item "EVFLAG_FORKCHECK"
463
+ Instead of calling \f(CW\*(C`ev_default_fork\*(C'\fR or \f(CW\*(C`ev_loop_fork\*(C'\fR manually after
464
+ a fork, you can also make libev check for a fork in each iteration by
465
+ enabling this flag.
466
+ .Sp
467
+ This works by calling \f(CW\*(C`getpid ()\*(C'\fR on every iteration of the loop,
468
+ and thus this might slow down your event loop if you do a lot of loop
469
+ iterations and little real work, but is usually not noticeable (on my
470
+ GNU/Linux system for example, \f(CW\*(C`getpid\*(C'\fR is actually a simple 5\-insn sequence
471
+ without a system call and thus \fIvery\fR fast, but my GNU/Linux system also has
472
+ \&\f(CW\*(C`pthread_atfork\*(C'\fR which is even faster).
473
+ .Sp
474
+ The big advantage of this flag is that you can forget about fork (and
475
+ forget about forgetting to tell libev about forking) when you use this
476
+ flag.
477
+ .Sp
478
+ This flag setting cannot be overridden or specified in the \f(CW\*(C`LIBEV_FLAGS\*(C'\fR
479
+ environment variable.
480
+ .ie n .IP """EVBACKEND_SELECT"" (value 1, portable select backend)" 4
481
+ .el .IP "\f(CWEVBACKEND_SELECT\fR (value 1, portable select backend)" 4
482
+ .IX Item "EVBACKEND_SELECT (value 1, portable select backend)"
483
+ This is your standard \fIselect\fR\|(2) backend. Not \fIcompletely\fR standard, as
484
+ libev tries to roll its own fd_set with no limits on the number of fds,
485
+ but if that fails, expect a fairly low limit on the number of fds when
486
+ using this backend. It doesn't scale too well (O(highest_fd)), but its
487
+ usually the fastest backend for a low number of (low-numbered :) fds.
488
+ .Sp
489
+ To get good performance out of this backend you need a high amount of
490
+ parallelism (most of the file descriptors should be busy). If you are
491
+ writing a server, you should \f(CW\*(C`accept ()\*(C'\fR in a loop to accept as many
492
+ connections as possible during one iteration. You might also want to have
493
+ a look at \f(CW\*(C`ev_set_io_collect_interval ()\*(C'\fR to increase the amount of
494
+ readiness notifications you get per iteration.
495
+ .Sp
496
+ This backend maps \f(CW\*(C`EV_READ\*(C'\fR to the \f(CW\*(C`readfds\*(C'\fR set and \f(CW\*(C`EV_WRITE\*(C'\fR to the
497
+ \&\f(CW\*(C`writefds\*(C'\fR set (and to work around Microsoft Windows bugs, also onto the
498
+ \&\f(CW\*(C`exceptfds\*(C'\fR set on that platform).
499
+ .ie n .IP """EVBACKEND_POLL"" (value 2, poll backend, available everywhere except on windows)" 4
500
+ .el .IP "\f(CWEVBACKEND_POLL\fR (value 2, poll backend, available everywhere except on windows)" 4
501
+ .IX Item "EVBACKEND_POLL (value 2, poll backend, available everywhere except on windows)"
502
+ And this is your standard \fIpoll\fR\|(2) backend. It's more complicated
503
+ than select, but handles sparse fds better and has no artificial
504
+ limit on the number of fds you can use (except it will slow down
505
+ considerably with a lot of inactive fds). It scales similarly to select,
506
+ i.e. O(total_fds). See the entry for \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR, above, for
507
+ performance tips.
508
+ .Sp
509
+ This backend maps \f(CW\*(C`EV_READ\*(C'\fR to \f(CW\*(C`POLLIN | POLLERR | POLLHUP\*(C'\fR, and
510
+ \&\f(CW\*(C`EV_WRITE\*(C'\fR to \f(CW\*(C`POLLOUT | POLLERR | POLLHUP\*(C'\fR.
511
+ .ie n .IP """EVBACKEND_EPOLL"" (value 4, Linux)" 4
512
+ .el .IP "\f(CWEVBACKEND_EPOLL\fR (value 4, Linux)" 4
513
+ .IX Item "EVBACKEND_EPOLL (value 4, Linux)"
514
+ For few fds, this backend is a bit little slower than poll and select,
515
+ but it scales phenomenally better. While poll and select usually scale
516
+ like O(total_fds) where n is the total number of fds (or the highest fd),
517
+ epoll scales either O(1) or O(active_fds).
518
+ .Sp
519
+ The epoll mechanism deserves honorable mention as the most misdesigned
520
+ of the more advanced event mechanisms: mere annoyances include silently
521
+ dropping file descriptors, requiring a system call per change per file
522
+ descriptor (and unnecessary guessing of parameters), problems with dup and
523
+ so on. The biggest issue is fork races, however \- if a program forks then
524
+ \&\fIboth\fR parent and child process have to recreate the epoll set, which can
525
+ take considerable time (one syscall per file descriptor) and is of course
526
+ hard to detect.
527
+ .Sp
528
+ Epoll is also notoriously buggy \- embedding epoll fds \fIshould\fR work, but
529
+ of course \fIdoesn't\fR, and epoll just loves to report events for totally
530
+ \&\fIdifferent\fR file descriptors (even already closed ones, so one cannot
531
+ even remove them from the set) than registered in the set (especially
532
+ on \s-1SMP\s0 systems). Libev tries to counter these spurious notifications by
533
+ employing an additional generation counter and comparing that against the
534
+ events to filter out spurious ones, recreating the set when required.
535
+ .Sp
536
+ While stopping, setting and starting an I/O watcher in the same iteration
537
+ will result in some caching, there is still a system call per such
538
+ incident (because the same \fIfile descriptor\fR could point to a different
539
+ \&\fIfile description\fR now), so its best to avoid that. Also, \f(CW\*(C`dup ()\*(C'\fR'ed
540
+ file descriptors might not work very well if you register events for both
541
+ file descriptors.
542
+ .Sp
543
+ Best performance from this backend is achieved by not unregistering all
544
+ watchers for a file descriptor until it has been closed, if possible,
545
+ i.e. keep at least one watcher active per fd at all times. Stopping and
546
+ starting a watcher (without re-setting it) also usually doesn't cause
547
+ extra overhead. A fork can both result in spurious notifications as well
548
+ as in libev having to destroy and recreate the epoll object, which can
549
+ take considerable time and thus should be avoided.
550
+ .Sp
551
+ All this means that, in practice, \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR can be as fast or
552
+ faster than epoll for maybe up to a hundred file descriptors, depending on
553
+ the usage. So sad.
554
+ .Sp
555
+ While nominally embeddable in other event loops, this feature is broken in
556
+ all kernel versions tested so far.
557
+ .Sp
558
+ This backend maps \f(CW\*(C`EV_READ\*(C'\fR and \f(CW\*(C`EV_WRITE\*(C'\fR in the same way as
559
+ \&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
560
+ .ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4
561
+ .el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4
562
+ .IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)"
563
+ Kqueue deserves special mention, as at the time of this writing, it
564
+ was broken on all BSDs except NetBSD (usually it doesn't work reliably
565
+ with anything but sockets and pipes, except on Darwin, where of course
566
+ it's completely useless). Unlike epoll, however, whose brokenness
567
+ is by design, these kqueue bugs can (and eventually will) be fixed
568
+ without \s-1API\s0 changes to existing programs. For this reason it's not being
569
+ \&\*(L"auto-detected\*(R" unless you explicitly specify it in the flags (i.e. using
570
+ \&\f(CW\*(C`EVBACKEND_KQUEUE\*(C'\fR) or libev was compiled on a known-to-be-good (\-enough)
571
+ system like NetBSD.
572
+ .Sp
573
+ You still can embed kqueue into a normal poll or select backend and use it
574
+ only for sockets (after having made sure that sockets work with kqueue on
575
+ the target platform). See \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
576
+ .Sp
577
+ It scales in the same way as the epoll backend, but the interface to the
578
+ kernel is more efficient (which says nothing about its actual speed, of
579
+ course). While stopping, setting and starting an I/O watcher does never
580
+ cause an extra system call as with \f(CW\*(C`EVBACKEND_EPOLL\*(C'\fR, it still adds up to
581
+ two event changes per incident. Support for \f(CW\*(C`fork ()\*(C'\fR is very bad (but
582
+ sane, unlike epoll) and it drops fds silently in similarly hard-to-detect
583
+ cases
584
+ .Sp
585
+ This backend usually performs well under most conditions.
586
+ .Sp
587
+ While nominally embeddable in other event loops, this doesn't work
588
+ everywhere, so you might need to test for this. And since it is broken
589
+ almost everywhere, you should only use it when you have a lot of sockets
590
+ (for which it usually works), by embedding it into another event loop
591
+ (e.g. \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR (but \f(CW\*(C`poll\*(C'\fR is of course
592
+ also broken on \s-1OS\s0 X)) and, did I mention it, using it only for sockets.
593
+ .Sp
594
+ This backend maps \f(CW\*(C`EV_READ\*(C'\fR into an \f(CW\*(C`EVFILT_READ\*(C'\fR kevent with
595
+ \&\f(CW\*(C`NOTE_EOF\*(C'\fR, and \f(CW\*(C`EV_WRITE\*(C'\fR into an \f(CW\*(C`EVFILT_WRITE\*(C'\fR kevent with
596
+ \&\f(CW\*(C`NOTE_EOF\*(C'\fR.
597
+ .ie n .IP """EVBACKEND_DEVPOLL"" (value 16, Solaris 8)" 4
598
+ .el .IP "\f(CWEVBACKEND_DEVPOLL\fR (value 16, Solaris 8)" 4
599
+ .IX Item "EVBACKEND_DEVPOLL (value 16, Solaris 8)"
600
+ This is not implemented yet (and might never be, unless you send me an
601
+ implementation). According to reports, \f(CW\*(C`/dev/poll\*(C'\fR only supports sockets
602
+ and is not embeddable, which would limit the usefulness of this backend
603
+ immensely.
604
+ .ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4
605
+ .el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4
606
+ .IX Item "EVBACKEND_PORT (value 32, Solaris 10)"
607
+ This uses the Solaris 10 event port mechanism. As with everything on Solaris,
608
+ it's really slow, but it still scales very well (O(active_fds)).
609
+ .Sp
610
+ Please note that Solaris event ports can deliver a lot of spurious
611
+ notifications, so you need to use non-blocking I/O or other means to avoid
612
+ blocking when no data (or space) is available.
613
+ .Sp
614
+ While this backend scales well, it requires one system call per active
615
+ file descriptor per loop iteration. For small and medium numbers of file
616
+ descriptors a \*(L"slow\*(R" \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR backend
617
+ might perform better.
618
+ .Sp
619
+ On the positive side, with the exception of the spurious readiness
620
+ notifications, this backend actually performed fully to specification
621
+ in all tests and is fully embeddable, which is a rare feat among the
622
+ OS-specific backends (I vastly prefer correctness over speed hacks).
623
+ .Sp
624
+ This backend maps \f(CW\*(C`EV_READ\*(C'\fR and \f(CW\*(C`EV_WRITE\*(C'\fR in the same way as
625
+ \&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
626
+ .ie n .IP """EVBACKEND_ALL""" 4
627
+ .el .IP "\f(CWEVBACKEND_ALL\fR" 4
628
+ .IX Item "EVBACKEND_ALL"
629
+ Try all backends (even potentially broken ones that wouldn't be tried
630
+ with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as
631
+ \&\f(CW\*(C`EVBACKEND_ALL & ~EVBACKEND_KQUEUE\*(C'\fR.
632
+ .Sp
633
+ It is definitely not recommended to use this flag.
634
+ .RE
635
+ .RS 4
636
+ .Sp
637
+ If one or more of these are or'ed into the flags value, then only these
638
+ backends will be tried (in the reverse order as listed here). If none are
639
+ specified, all backends in \f(CW\*(C`ev_recommended_backends ()\*(C'\fR will be tried.
640
+ .Sp
641
+ Example: This is the most typical usage.
642
+ .Sp
643
+ .Vb 2
644
+ \& if (!ev_default_loop (0))
645
+ \& fatal ("could not initialise libev, bad $LIBEV_FLAGS in environment?");
646
+ .Ve
647
+ .Sp
648
+ Example: Restrict libev to the select and poll backends, and do not allow
649
+ environment settings to be taken into account:
650
+ .Sp
651
+ .Vb 1
652
+ \& ev_default_loop (EVBACKEND_POLL | EVBACKEND_SELECT | EVFLAG_NOENV);
653
+ .Ve
654
+ .Sp
655
+ Example: Use whatever libev has to offer, but make sure that kqueue is
656
+ used if available (warning, breaks stuff, best use only with your own
657
+ private event loop and only if you know the \s-1OS\s0 supports your types of
658
+ fds):
659
+ .Sp
660
+ .Vb 1
661
+ \& ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE);
662
+ .Ve
663
+ .RE
664
+ .IP "struct ev_loop *ev_loop_new (unsigned int flags)" 4
665
+ .IX Item "struct ev_loop *ev_loop_new (unsigned int flags)"
666
+ Similar to \f(CW\*(C`ev_default_loop\*(C'\fR, but always creates a new event loop that is
667
+ always distinct from the default loop. Unlike the default loop, it cannot
668
+ handle signal and child watchers, and attempts to do so will be greeted by
669
+ undefined behaviour (or a failed assertion if assertions are enabled).
670
+ .Sp
671
+ Note that this function \fIis\fR thread-safe, and the recommended way to use
672
+ libev with threads is indeed to create one loop per thread, and using the
673
+ default loop in the \*(L"main\*(R" or \*(L"initial\*(R" thread.
674
+ .Sp
675
+ Example: Try to create a event loop that uses epoll and nothing else.
676
+ .Sp
677
+ .Vb 3
678
+ \& struct ev_loop *epoller = ev_loop_new (EVBACKEND_EPOLL | EVFLAG_NOENV);
679
+ \& if (!epoller)
680
+ \& fatal ("no epoll found here, maybe it hides under your chair");
681
+ .Ve
682
+ .IP "ev_default_destroy ()" 4
683
+ .IX Item "ev_default_destroy ()"
684
+ Destroys the default loop again (frees all memory and kernel state
685
+ etc.). None of the active event watchers will be stopped in the normal
686
+ sense, so e.g. \f(CW\*(C`ev_is_active\*(C'\fR might still return true. It is your
687
+ responsibility to either stop all watchers cleanly yourself \fIbefore\fR
688
+ calling this function, or cope with the fact afterwards (which is usually
689
+ the easiest thing, you can just ignore the watchers and/or \f(CW\*(C`free ()\*(C'\fR them
690
+ for example).
691
+ .Sp
692
+ Note that certain global state, such as signal state (and installed signal
693
+ handlers), will not be freed by this function, and related watchers (such
694
+ as signal and child watchers) would need to be stopped manually.
695
+ .Sp
696
+ In general it is not advisable to call this function except in the
697
+ rare occasion where you really need to free e.g. the signal handling
698
+ pipe fds. If you need dynamically allocated loops it is better to use
699
+ \&\f(CW\*(C`ev_loop_new\*(C'\fR and \f(CW\*(C`ev_loop_destroy\*(C'\fR).
700
+ .IP "ev_loop_destroy (loop)" 4
701
+ .IX Item "ev_loop_destroy (loop)"
702
+ Like \f(CW\*(C`ev_default_destroy\*(C'\fR, but destroys an event loop created by an
703
+ earlier call to \f(CW\*(C`ev_loop_new\*(C'\fR.
704
+ .IP "ev_default_fork ()" 4
705
+ .IX Item "ev_default_fork ()"
706
+ This function sets a flag that causes subsequent \f(CW\*(C`ev_loop\*(C'\fR iterations
707
+ to reinitialise the kernel state for backends that have one. Despite the
708
+ name, you can call it anytime, but it makes most sense after forking, in
709
+ the child process (or both child and parent, but that again makes little
710
+ sense). You \fImust\fR call it in the child before using any of the libev
711
+ functions, and it will only take effect at the next \f(CW\*(C`ev_loop\*(C'\fR iteration.
712
+ .Sp
713
+ On the other hand, you only need to call this function in the child
714
+ process if and only if you want to use the event library in the child. If
715
+ you just fork+exec, you don't have to call it at all.
716
+ .Sp
717
+ The function itself is quite fast and it's usually not a problem to call
718
+ it just in case after a fork. To make this easy, the function will fit in
719
+ quite nicely into a call to \f(CW\*(C`pthread_atfork\*(C'\fR:
720
+ .Sp
721
+ .Vb 1
722
+ \& pthread_atfork (0, 0, ev_default_fork);
723
+ .Ve
724
+ .IP "ev_loop_fork (loop)" 4
725
+ .IX Item "ev_loop_fork (loop)"
726
+ Like \f(CW\*(C`ev_default_fork\*(C'\fR, but acts on an event loop created by
727
+ \&\f(CW\*(C`ev_loop_new\*(C'\fR. Yes, you have to call this on every allocated event loop
728
+ after fork that you want to re-use in the child, and how you do this is
729
+ entirely your own problem.
730
+ .IP "int ev_is_default_loop (loop)" 4
731
+ .IX Item "int ev_is_default_loop (loop)"
732
+ Returns true when the given loop is, in fact, the default loop, and false
733
+ otherwise.
734
+ .IP "unsigned int ev_loop_count (loop)" 4
735
+ .IX Item "unsigned int ev_loop_count (loop)"
736
+ Returns the count of loop iterations for the loop, which is identical to
737
+ the number of times libev did poll for new events. It starts at \f(CW0\fR and
738
+ happily wraps around with enough iterations.
739
+ .Sp
740
+ This value can sometimes be useful as a generation counter of sorts (it
741
+ \&\*(L"ticks\*(R" the number of loop iterations), as it roughly corresponds with
742
+ \&\f(CW\*(C`ev_prepare\*(C'\fR and \f(CW\*(C`ev_check\*(C'\fR calls.
743
+ .IP "unsigned int ev_backend (loop)" 4
744
+ .IX Item "unsigned int ev_backend (loop)"
745
+ Returns one of the \f(CW\*(C`EVBACKEND_*\*(C'\fR flags indicating the event backend in
746
+ use.
747
+ .IP "ev_tstamp ev_now (loop)" 4
748
+ .IX Item "ev_tstamp ev_now (loop)"
749
+ Returns the current \*(L"event loop time\*(R", which is the time the event loop
750
+ received events and started processing them. This timestamp does not
751
+ change as long as callbacks are being processed, and this is also the base
752
+ time used for relative timers. You can treat it as the timestamp of the
753
+ event occurring (or more correctly, libev finding out about it).
754
+ .IP "ev_now_update (loop)" 4
755
+ .IX Item "ev_now_update (loop)"
756
+ Establishes the current time by querying the kernel, updating the time
757
+ returned by \f(CW\*(C`ev_now ()\*(C'\fR in the progress. This is a costly operation and
758
+ is usually done automatically within \f(CW\*(C`ev_loop ()\*(C'\fR.
759
+ .Sp
760
+ This function is rarely useful, but when some event callback runs for a
761
+ very long time without entering the event loop, updating libev's idea of
762
+ the current time is a good idea.
763
+ .Sp
764
+ See also \*(L"The special problem of time updates\*(R" in the \f(CW\*(C`ev_timer\*(C'\fR section.
765
+ .IP "ev_loop (loop, int flags)" 4
766
+ .IX Item "ev_loop (loop, int flags)"
767
+ Finally, this is it, the event handler. This function usually is called
768
+ after you initialised all your watchers and you want to start handling
769
+ events.
770
+ .Sp
771
+ If the flags argument is specified as \f(CW0\fR, it will not return until
772
+ either no event watchers are active anymore or \f(CW\*(C`ev_unloop\*(C'\fR was called.
773
+ .Sp
774
+ Please note that an explicit \f(CW\*(C`ev_unloop\*(C'\fR is usually better than
775
+ relying on all watchers to be stopped when deciding when a program has
776
+ finished (especially in interactive programs), but having a program
777
+ that automatically loops as long as it has to and no longer by virtue
778
+ of relying on its watchers stopping correctly, that is truly a thing of
779
+ beauty.
780
+ .Sp
781
+ A flags value of \f(CW\*(C`EVLOOP_NONBLOCK\*(C'\fR will look for new events, will handle
782
+ those events and any already outstanding ones, but will not block your
783
+ process in case there are no events and will return after one iteration of
784
+ the loop.
785
+ .Sp
786
+ A flags value of \f(CW\*(C`EVLOOP_ONESHOT\*(C'\fR will look for new events (waiting if
787
+ necessary) and will handle those and any already outstanding ones. It
788
+ will block your process until at least one new event arrives (which could
789
+ be an event internal to libev itself, so there is no guarantee that a
790
+ user-registered callback will be called), and will return after one
791
+ iteration of the loop.
792
+ .Sp
793
+ This is useful if you are waiting for some external event in conjunction
794
+ with something not expressible using other libev watchers (i.e. "roll your
795
+ own \f(CW\*(C`ev_loop\*(C'\fR"). However, a pair of \f(CW\*(C`ev_prepare\*(C'\fR/\f(CW\*(C`ev_check\*(C'\fR watchers is
796
+ usually a better approach for this kind of thing.
797
+ .Sp
798
+ Here are the gory details of what \f(CW\*(C`ev_loop\*(C'\fR does:
799
+ .Sp
800
+ .Vb 10
801
+ \& \- Before the first iteration, call any pending watchers.
802
+ \& * If EVFLAG_FORKCHECK was used, check for a fork.
803
+ \& \- If a fork was detected (by any means), queue and call all fork watchers.
804
+ \& \- Queue and call all prepare watchers.
805
+ \& \- If we have been forked, detach and recreate the kernel state
806
+ \& as to not disturb the other process.
807
+ \& \- Update the kernel state with all outstanding changes.
808
+ \& \- Update the "event loop time" (ev_now ()).
809
+ \& \- Calculate for how long to sleep or block, if at all
810
+ \& (active idle watchers, EVLOOP_NONBLOCK or not having
811
+ \& any active watchers at all will result in not sleeping).
812
+ \& \- Sleep if the I/O and timer collect interval say so.
813
+ \& \- Block the process, waiting for any events.
814
+ \& \- Queue all outstanding I/O (fd) events.
815
+ \& \- Update the "event loop time" (ev_now ()), and do time jump adjustments.
816
+ \& \- Queue all expired timers.
817
+ \& \- Queue all expired periodics.
818
+ \& \- Unless any events are pending now, queue all idle watchers.
819
+ \& \- Queue all check watchers.
820
+ \& \- Call all queued watchers in reverse order (i.e. check watchers first).
821
+ \& Signals and child watchers are implemented as I/O watchers, and will
822
+ \& be handled here by queueing them when their watcher gets executed.
823
+ \& \- If ev_unloop has been called, or EVLOOP_ONESHOT or EVLOOP_NONBLOCK
824
+ \& were used, or there are no active watchers, return, otherwise
825
+ \& continue with step *.
826
+ .Ve
827
+ .Sp
828
+ Example: Queue some jobs and then loop until no events are outstanding
829
+ anymore.
830
+ .Sp
831
+ .Vb 4
832
+ \& ... queue jobs here, make sure they register event watchers as long
833
+ \& ... as they still have work to do (even an idle watcher will do..)
834
+ \& ev_loop (my_loop, 0);
835
+ \& ... jobs done or somebody called unloop. yeah!
836
+ .Ve
837
+ .IP "ev_unloop (loop, how)" 4
838
+ .IX Item "ev_unloop (loop, how)"
839
+ Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it
840
+ has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either
841
+ \&\f(CW\*(C`EVUNLOOP_ONE\*(C'\fR, which will make the innermost \f(CW\*(C`ev_loop\*(C'\fR call return, or
842
+ \&\f(CW\*(C`EVUNLOOP_ALL\*(C'\fR, which will make all nested \f(CW\*(C`ev_loop\*(C'\fR calls return.
843
+ .Sp
844
+ This \*(L"unloop state\*(R" will be cleared when entering \f(CW\*(C`ev_loop\*(C'\fR again.
845
+ .Sp
846
+ It is safe to call \f(CW\*(C`ev_unloop\*(C'\fR from otuside any \f(CW\*(C`ev_loop\*(C'\fR calls.
847
+ .IP "ev_ref (loop)" 4
848
+ .IX Item "ev_ref (loop)"
849
+ .PD 0
850
+ .IP "ev_unref (loop)" 4
851
+ .IX Item "ev_unref (loop)"
852
+ .PD
853
+ Ref/unref can be used to add or remove a reference count on the event
854
+ loop: Every watcher keeps one reference, and as long as the reference
855
+ count is nonzero, \f(CW\*(C`ev_loop\*(C'\fR will not return on its own.
856
+ .Sp
857
+ If you have a watcher you never unregister that should not keep \f(CW\*(C`ev_loop\*(C'\fR
858
+ from returning, call \fIev_unref()\fR after starting, and \fIev_ref()\fR before
859
+ stopping it.
860
+ .Sp
861
+ As an example, libev itself uses this for its internal signal pipe: It is
862
+ not visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting
863
+ if no event watchers registered by it are active. It is also an excellent
864
+ way to do this for generic recurring timers or from within third-party
865
+ libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR
866
+ (but only if the watcher wasn't active before, or was active before,
867
+ respectively).
868
+ .Sp
869
+ Example: Create a signal watcher, but keep it from keeping \f(CW\*(C`ev_loop\*(C'\fR
870
+ running when nothing else is active.
871
+ .Sp
872
+ .Vb 4
873
+ \& ev_signal exitsig;
874
+ \& ev_signal_init (&exitsig, sig_cb, SIGINT);
875
+ \& ev_signal_start (loop, &exitsig);
876
+ \& evf_unref (loop);
877
+ .Ve
878
+ .Sp
879
+ Example: For some weird reason, unregister the above signal handler again.
880
+ .Sp
881
+ .Vb 2
882
+ \& ev_ref (loop);
883
+ \& ev_signal_stop (loop, &exitsig);
884
+ .Ve
885
+ .IP "ev_set_io_collect_interval (loop, ev_tstamp interval)" 4
886
+ .IX Item "ev_set_io_collect_interval (loop, ev_tstamp interval)"
887
+ .PD 0
888
+ .IP "ev_set_timeout_collect_interval (loop, ev_tstamp interval)" 4
889
+ .IX Item "ev_set_timeout_collect_interval (loop, ev_tstamp interval)"
890
+ .PD
891
+ These advanced functions influence the time that libev will spend waiting
892
+ for events. Both time intervals are by default \f(CW0\fR, meaning that libev
893
+ will try to invoke timer/periodic callbacks and I/O callbacks with minimum
894
+ latency.
895
+ .Sp
896
+ Setting these to a higher value (the \f(CW\*(C`interval\*(C'\fR \fImust\fR be >= \f(CW0\fR)
897
+ allows libev to delay invocation of I/O and timer/periodic callbacks
898
+ to increase efficiency of loop iterations (or to increase power-saving
899
+ opportunities).
900
+ .Sp
901
+ The idea is that sometimes your program runs just fast enough to handle
902
+ one (or very few) event(s) per loop iteration. While this makes the
903
+ program responsive, it also wastes a lot of \s-1CPU\s0 time to poll for new
904
+ events, especially with backends like \f(CW\*(C`select ()\*(C'\fR which have a high
905
+ overhead for the actual polling but can deliver many events at once.
906
+ .Sp
907
+ By setting a higher \fIio collect interval\fR you allow libev to spend more
908
+ time collecting I/O events, so you can handle more events per iteration,
909
+ at the cost of increasing latency. Timeouts (both \f(CW\*(C`ev_periodic\*(C'\fR and
910
+ \&\f(CW\*(C`ev_timer\*(C'\fR) will be not affected. Setting this to a non-null value will
911
+ introduce an additional \f(CW\*(C`ev_sleep ()\*(C'\fR call into most loop iterations.
912
+ .Sp
913
+ Likewise, by setting a higher \fItimeout collect interval\fR you allow libev
914
+ to spend more time collecting timeouts, at the expense of increased
915
+ latency/jitter/inexactness (the watcher callback will be called
916
+ later). \f(CW\*(C`ev_io\*(C'\fR watchers will not be affected. Setting this to a non-null
917
+ value will not introduce any overhead in libev.
918
+ .Sp
919
+ Many (busy) programs can usually benefit by setting the I/O collect
920
+ interval to a value near \f(CW0.1\fR or so, which is often enough for
921
+ interactive servers (of course not for games), likewise for timeouts. It
922
+ usually doesn't make much sense to set it to a lower value than \f(CW0.01\fR,
923
+ as this approaches the timing granularity of most systems.
924
+ .Sp
925
+ Setting the \fItimeout collect interval\fR can improve the opportunity for
926
+ saving power, as the program will \*(L"bundle\*(R" timer callback invocations that
927
+ are \*(L"near\*(R" in time together, by delaying some, thus reducing the number of
928
+ times the process sleeps and wakes up again. Another useful technique to
929
+ reduce iterations/wake\-ups is to use \f(CW\*(C`ev_periodic\*(C'\fR watchers and make sure
930
+ they fire on, say, one-second boundaries only.
931
+ .IP "ev_loop_verify (loop)" 4
932
+ .IX Item "ev_loop_verify (loop)"
933
+ This function only does something when \f(CW\*(C`EV_VERIFY\*(C'\fR support has been
934
+ compiled in, which is the default for non-minimal builds. It tries to go
935
+ through all internal structures and checks them for validity. If anything
936
+ is found to be inconsistent, it will print an error message to standard
937
+ error and call \f(CW\*(C`abort ()\*(C'\fR.
938
+ .Sp
939
+ This can be used to catch bugs inside libev itself: under normal
940
+ circumstances, this function will never abort as of course libev keeps its
941
+ data structures consistent.
942
+ .SH "ANATOMY OF A WATCHER"
943
+ .IX Header "ANATOMY OF A WATCHER"
944
+ In the following description, uppercase \f(CW\*(C`TYPE\*(C'\fR in names stands for the
945
+ watcher type, e.g. \f(CW\*(C`ev_TYPE_start\*(C'\fR can mean \f(CW\*(C`ev_timer_start\*(C'\fR for timer
946
+ watchers and \f(CW\*(C`ev_io_start\*(C'\fR for I/O watchers.
947
+ .PP
948
+ A watcher is a structure that you create and register to record your
949
+ interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to
950
+ become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that:
951
+ .PP
952
+ .Vb 5
953
+ \& static void my_cb (struct ev_loop *loop, ev_io *w, int revents)
954
+ \& {
955
+ \& ev_io_stop (w);
956
+ \& ev_unloop (loop, EVUNLOOP_ALL);
957
+ \& }
958
+ \&
959
+ \& struct ev_loop *loop = ev_default_loop (0);
960
+ \&
961
+ \& ev_io stdin_watcher;
962
+ \&
963
+ \& ev_init (&stdin_watcher, my_cb);
964
+ \& ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ);
965
+ \& ev_io_start (loop, &stdin_watcher);
966
+ \&
967
+ \& ev_loop (loop, 0);
968
+ .Ve
969
+ .PP
970
+ As you can see, you are responsible for allocating the memory for your
971
+ watcher structures (and it is \fIusually\fR a bad idea to do this on the
972
+ stack).
973
+ .PP
974
+ Each watcher has an associated watcher structure (called \f(CW\*(C`struct ev_TYPE\*(C'\fR
975
+ or simply \f(CW\*(C`ev_TYPE\*(C'\fR, as typedefs are provided for all watcher structs).
976
+ .PP
977
+ Each watcher structure must be initialised by a call to \f(CW\*(C`ev_init
978
+ (watcher *, callback)\*(C'\fR, which expects a callback to be provided. This
979
+ callback gets invoked each time the event occurs (or, in the case of I/O
980
+ watchers, each time the event loop detects that the file descriptor given
981
+ is readable and/or writable).
982
+ .PP
983
+ Each watcher type further has its own \f(CW\*(C`ev_TYPE_set (watcher *, ...)\*(C'\fR
984
+ macro to configure it, with arguments specific to the watcher type. There
985
+ is also a macro to combine initialisation and setting in one call: \f(CW\*(C`ev_TYPE_init (watcher *, callback, ...)\*(C'\fR.
986
+ .PP
987
+ To make the watcher actually watch out for events, you have to start it
988
+ with a watcher-specific start function (\f(CW\*(C`ev_TYPE_start (loop, watcher
989
+ *)\*(C'\fR), and you can stop watching for events at any time by calling the
990
+ corresponding stop function (\f(CW\*(C`ev_TYPE_stop (loop, watcher *)\*(C'\fR.
991
+ .PP
992
+ As long as your watcher is active (has been started but not stopped) you
993
+ must not touch the values stored in it. Most specifically you must never
994
+ reinitialise it or call its \f(CW\*(C`ev_TYPE_set\*(C'\fR macro.
995
+ .PP
996
+ Each and every callback receives the event loop pointer as first, the
997
+ registered watcher structure as second, and a bitset of received events as
998
+ third argument.
999
+ .PP
1000
+ The received events usually include a single bit per event type received
1001
+ (you can receive multiple events at the same time). The possible bit masks
1002
+ are:
1003
+ .ie n .IP """EV_READ""" 4
1004
+ .el .IP "\f(CWEV_READ\fR" 4
1005
+ .IX Item "EV_READ"
1006
+ .PD 0
1007
+ .ie n .IP """EV_WRITE""" 4
1008
+ .el .IP "\f(CWEV_WRITE\fR" 4
1009
+ .IX Item "EV_WRITE"
1010
+ .PD
1011
+ The file descriptor in the \f(CW\*(C`ev_io\*(C'\fR watcher has become readable and/or
1012
+ writable.
1013
+ .ie n .IP """EV_TIMEOUT""" 4
1014
+ .el .IP "\f(CWEV_TIMEOUT\fR" 4
1015
+ .IX Item "EV_TIMEOUT"
1016
+ The \f(CW\*(C`ev_timer\*(C'\fR watcher has timed out.
1017
+ .ie n .IP """EV_PERIODIC""" 4
1018
+ .el .IP "\f(CWEV_PERIODIC\fR" 4
1019
+ .IX Item "EV_PERIODIC"
1020
+ The \f(CW\*(C`ev_periodic\*(C'\fR watcher has timed out.
1021
+ .ie n .IP """EV_SIGNAL""" 4
1022
+ .el .IP "\f(CWEV_SIGNAL\fR" 4
1023
+ .IX Item "EV_SIGNAL"
1024
+ The signal specified in the \f(CW\*(C`ev_signal\*(C'\fR watcher has been received by a thread.
1025
+ .ie n .IP """EV_CHILD""" 4
1026
+ .el .IP "\f(CWEV_CHILD\fR" 4
1027
+ .IX Item "EV_CHILD"
1028
+ The pid specified in the \f(CW\*(C`ev_child\*(C'\fR watcher has received a status change.
1029
+ .ie n .IP """EV_STAT""" 4
1030
+ .el .IP "\f(CWEV_STAT\fR" 4
1031
+ .IX Item "EV_STAT"
1032
+ The path specified in the \f(CW\*(C`ev_stat\*(C'\fR watcher changed its attributes somehow.
1033
+ .ie n .IP """EV_IDLE""" 4
1034
+ .el .IP "\f(CWEV_IDLE\fR" 4
1035
+ .IX Item "EV_IDLE"
1036
+ The \f(CW\*(C`ev_idle\*(C'\fR watcher has determined that you have nothing better to do.
1037
+ .ie n .IP """EV_PREPARE""" 4
1038
+ .el .IP "\f(CWEV_PREPARE\fR" 4
1039
+ .IX Item "EV_PREPARE"
1040
+ .PD 0
1041
+ .ie n .IP """EV_CHECK""" 4
1042
+ .el .IP "\f(CWEV_CHECK\fR" 4
1043
+ .IX Item "EV_CHECK"
1044
+ .PD
1045
+ All \f(CW\*(C`ev_prepare\*(C'\fR watchers are invoked just \fIbefore\fR \f(CW\*(C`ev_loop\*(C'\fR starts
1046
+ to gather new events, and all \f(CW\*(C`ev_check\*(C'\fR watchers are invoked just after
1047
+ \&\f(CW\*(C`ev_loop\*(C'\fR has gathered them, but before it invokes any callbacks for any
1048
+ received events. Callbacks of both watcher types can start and stop as
1049
+ many watchers as they want, and all of them will be taken into account
1050
+ (for example, a \f(CW\*(C`ev_prepare\*(C'\fR watcher might start an idle watcher to keep
1051
+ \&\f(CW\*(C`ev_loop\*(C'\fR from blocking).
1052
+ .ie n .IP """EV_EMBED""" 4
1053
+ .el .IP "\f(CWEV_EMBED\fR" 4
1054
+ .IX Item "EV_EMBED"
1055
+ The embedded event loop specified in the \f(CW\*(C`ev_embed\*(C'\fR watcher needs attention.
1056
+ .ie n .IP """EV_FORK""" 4
1057
+ .el .IP "\f(CWEV_FORK\fR" 4
1058
+ .IX Item "EV_FORK"
1059
+ The event loop has been resumed in the child process after fork (see
1060
+ \&\f(CW\*(C`ev_fork\*(C'\fR).
1061
+ .ie n .IP """EV_ASYNC""" 4
1062
+ .el .IP "\f(CWEV_ASYNC\fR" 4
1063
+ .IX Item "EV_ASYNC"
1064
+ The given async watcher has been asynchronously notified (see \f(CW\*(C`ev_async\*(C'\fR).
1065
+ .ie n .IP """EV_ERROR""" 4
1066
+ .el .IP "\f(CWEV_ERROR\fR" 4
1067
+ .IX Item "EV_ERROR"
1068
+ An unspecified error has occurred, the watcher has been stopped. This might
1069
+ happen because the watcher could not be properly started because libev
1070
+ ran out of memory, a file descriptor was found to be closed or any other
1071
+ problem. Libev considers these application bugs.
1072
+ .Sp
1073
+ You best act on it by reporting the problem and somehow coping with the
1074
+ watcher being stopped. Note that well-written programs should not receive
1075
+ an error ever, so when your watcher receives it, this usually indicates a
1076
+ bug in your program.
1077
+ .Sp
1078
+ Libev will usually signal a few \*(L"dummy\*(R" events together with an error, for
1079
+ example it might indicate that a fd is readable or writable, and if your
1080
+ callbacks is well-written it can just attempt the operation and cope with
1081
+ the error from \fIread()\fR or \fIwrite()\fR. This will not work in multi-threaded
1082
+ programs, though, as the fd could already be closed and reused for another
1083
+ thing, so beware.
1084
+ .Sh "\s-1GENERIC\s0 \s-1WATCHER\s0 \s-1FUNCTIONS\s0"
1085
+ .IX Subsection "GENERIC WATCHER FUNCTIONS"
1086
+ .ie n .IP """ev_init"" (ev_TYPE *watcher, callback)" 4
1087
+ .el .IP "\f(CWev_init\fR (ev_TYPE *watcher, callback)" 4
1088
+ .IX Item "ev_init (ev_TYPE *watcher, callback)"
1089
+ This macro initialises the generic portion of a watcher. The contents
1090
+ of the watcher object can be arbitrary (so \f(CW\*(C`malloc\*(C'\fR will do). Only
1091
+ the generic parts of the watcher are initialised, you \fIneed\fR to call
1092
+ the type-specific \f(CW\*(C`ev_TYPE_set\*(C'\fR macro afterwards to initialise the
1093
+ type-specific parts. For each type there is also a \f(CW\*(C`ev_TYPE_init\*(C'\fR macro
1094
+ which rolls both calls into one.
1095
+ .Sp
1096
+ You can reinitialise a watcher at any time as long as it has been stopped
1097
+ (or never started) and there are no pending events outstanding.
1098
+ .Sp
1099
+ The callback is always of type \f(CW\*(C`void (*)(struct ev_loop *loop, ev_TYPE *watcher,
1100
+ int revents)\*(C'\fR.
1101
+ .Sp
1102
+ Example: Initialise an \f(CW\*(C`ev_io\*(C'\fR watcher in two steps.
1103
+ .Sp
1104
+ .Vb 3
1105
+ \& ev_io w;
1106
+ \& ev_init (&w, my_cb);
1107
+ \& ev_io_set (&w, STDIN_FILENO, EV_READ);
1108
+ .Ve
1109
+ .ie n .IP """ev_TYPE_set"" (ev_TYPE *, [args])" 4
1110
+ .el .IP "\f(CWev_TYPE_set\fR (ev_TYPE *, [args])" 4
1111
+ .IX Item "ev_TYPE_set (ev_TYPE *, [args])"
1112
+ This macro initialises the type-specific parts of a watcher. You need to
1113
+ call \f(CW\*(C`ev_init\*(C'\fR at least once before you call this macro, but you can
1114
+ call \f(CW\*(C`ev_TYPE_set\*(C'\fR any number of times. You must not, however, call this
1115
+ macro on a watcher that is active (it can be pending, however, which is a
1116
+ difference to the \f(CW\*(C`ev_init\*(C'\fR macro).
1117
+ .Sp
1118
+ Although some watcher types do not have type-specific arguments
1119
+ (e.g. \f(CW\*(C`ev_prepare\*(C'\fR) you still need to call its \f(CW\*(C`set\*(C'\fR macro.
1120
+ .Sp
1121
+ See \f(CW\*(C`ev_init\*(C'\fR, above, for an example.
1122
+ .ie n .IP """ev_TYPE_init"" (ev_TYPE *watcher, callback, [args])" 4
1123
+ .el .IP "\f(CWev_TYPE_init\fR (ev_TYPE *watcher, callback, [args])" 4
1124
+ .IX Item "ev_TYPE_init (ev_TYPE *watcher, callback, [args])"
1125
+ This convenience macro rolls both \f(CW\*(C`ev_init\*(C'\fR and \f(CW\*(C`ev_TYPE_set\*(C'\fR macro
1126
+ calls into a single call. This is the most convenient method to initialise
1127
+ a watcher. The same limitations apply, of course.
1128
+ .Sp
1129
+ Example: Initialise and set an \f(CW\*(C`ev_io\*(C'\fR watcher in one step.
1130
+ .Sp
1131
+ .Vb 1
1132
+ \& ev_io_init (&w, my_cb, STDIN_FILENO, EV_READ);
1133
+ .Ve
1134
+ .ie n .IP """ev_TYPE_start"" (loop *, ev_TYPE *watcher)" 4
1135
+ .el .IP "\f(CWev_TYPE_start\fR (loop *, ev_TYPE *watcher)" 4
1136
+ .IX Item "ev_TYPE_start (loop *, ev_TYPE *watcher)"
1137
+ Starts (activates) the given watcher. Only active watchers will receive
1138
+ events. If the watcher is already active nothing will happen.
1139
+ .Sp
1140
+ Example: Start the \f(CW\*(C`ev_io\*(C'\fR watcher that is being abused as example in this
1141
+ whole section.
1142
+ .Sp
1143
+ .Vb 1
1144
+ \& ev_io_start (EV_DEFAULT_UC, &w);
1145
+ .Ve
1146
+ .ie n .IP """ev_TYPE_stop"" (loop *, ev_TYPE *watcher)" 4
1147
+ .el .IP "\f(CWev_TYPE_stop\fR (loop *, ev_TYPE *watcher)" 4
1148
+ .IX Item "ev_TYPE_stop (loop *, ev_TYPE *watcher)"
1149
+ Stops the given watcher if active, and clears the pending status (whether
1150
+ the watcher was active or not).
1151
+ .Sp
1152
+ It is possible that stopped watchers are pending \- for example,
1153
+ non-repeating timers are being stopped when they become pending \- but
1154
+ calling \f(CW\*(C`ev_TYPE_stop\*(C'\fR ensures that the watcher is neither active nor
1155
+ pending. If you want to free or reuse the memory used by the watcher it is
1156
+ therefore a good idea to always call its \f(CW\*(C`ev_TYPE_stop\*(C'\fR function.
1157
+ .IP "bool ev_is_active (ev_TYPE *watcher)" 4
1158
+ .IX Item "bool ev_is_active (ev_TYPE *watcher)"
1159
+ Returns a true value iff the watcher is active (i.e. it has been started
1160
+ and not yet been stopped). As long as a watcher is active you must not modify
1161
+ it.
1162
+ .IP "bool ev_is_pending (ev_TYPE *watcher)" 4
1163
+ .IX Item "bool ev_is_pending (ev_TYPE *watcher)"
1164
+ Returns a true value iff the watcher is pending, (i.e. it has outstanding
1165
+ events but its callback has not yet been invoked). As long as a watcher
1166
+ is pending (but not active) you must not call an init function on it (but
1167
+ \&\f(CW\*(C`ev_TYPE_set\*(C'\fR is safe), you must not change its priority, and you must
1168
+ make sure the watcher is available to libev (e.g. you cannot \f(CW\*(C`free ()\*(C'\fR
1169
+ it).
1170
+ .IP "callback ev_cb (ev_TYPE *watcher)" 4
1171
+ .IX Item "callback ev_cb (ev_TYPE *watcher)"
1172
+ Returns the callback currently set on the watcher.
1173
+ .IP "ev_cb_set (ev_TYPE *watcher, callback)" 4
1174
+ .IX Item "ev_cb_set (ev_TYPE *watcher, callback)"
1175
+ Change the callback. You can change the callback at virtually any time
1176
+ (modulo threads).
1177
+ .IP "ev_set_priority (ev_TYPE *watcher, priority)" 4
1178
+ .IX Item "ev_set_priority (ev_TYPE *watcher, priority)"
1179
+ .PD 0
1180
+ .IP "int ev_priority (ev_TYPE *watcher)" 4
1181
+ .IX Item "int ev_priority (ev_TYPE *watcher)"
1182
+ .PD
1183
+ Set and query the priority of the watcher. The priority is a small
1184
+ integer between \f(CW\*(C`EV_MAXPRI\*(C'\fR (default: \f(CW2\fR) and \f(CW\*(C`EV_MINPRI\*(C'\fR
1185
+ (default: \f(CW\*(C`\-2\*(C'\fR). Pending watchers with higher priority will be invoked
1186
+ before watchers with lower priority, but priority will not keep watchers
1187
+ from being executed (except for \f(CW\*(C`ev_idle\*(C'\fR watchers).
1188
+ .Sp
1189
+ This means that priorities are \fIonly\fR used for ordering callback
1190
+ invocation after new events have been received. This is useful, for
1191
+ example, to reduce latency after idling, or more often, to bind two
1192
+ watchers on the same event and make sure one is called first.
1193
+ .Sp
1194
+ If you need to suppress invocation when higher priority events are pending
1195
+ you need to look at \f(CW\*(C`ev_idle\*(C'\fR watchers, which provide this functionality.
1196
+ .Sp
1197
+ You \fImust not\fR change the priority of a watcher as long as it is active or
1198
+ pending.
1199
+ .Sp
1200
+ The default priority used by watchers when no priority has been set is
1201
+ always \f(CW0\fR, which is supposed to not be too high and not be too low :).
1202
+ .Sp
1203
+ Setting a priority outside the range of \f(CW\*(C`EV_MINPRI\*(C'\fR to \f(CW\*(C`EV_MAXPRI\*(C'\fR is
1204
+ fine, as long as you do not mind that the priority value you query might
1205
+ or might not have been clamped to the valid range.
1206
+ .IP "ev_invoke (loop, ev_TYPE *watcher, int revents)" 4
1207
+ .IX Item "ev_invoke (loop, ev_TYPE *watcher, int revents)"
1208
+ Invoke the \f(CW\*(C`watcher\*(C'\fR with the given \f(CW\*(C`loop\*(C'\fR and \f(CW\*(C`revents\*(C'\fR. Neither
1209
+ \&\f(CW\*(C`loop\*(C'\fR nor \f(CW\*(C`revents\*(C'\fR need to be valid as long as the watcher callback
1210
+ can deal with that fact, as both are simply passed through to the
1211
+ callback.
1212
+ .IP "int ev_clear_pending (loop, ev_TYPE *watcher)" 4
1213
+ .IX Item "int ev_clear_pending (loop, ev_TYPE *watcher)"
1214
+ If the watcher is pending, this function clears its pending status and
1215
+ returns its \f(CW\*(C`revents\*(C'\fR bitset (as if its callback was invoked). If the
1216
+ watcher isn't pending it does nothing and returns \f(CW0\fR.
1217
+ .Sp
1218
+ Sometimes it can be useful to \*(L"poll\*(R" a watcher instead of waiting for its
1219
+ callback to be invoked, which can be accomplished with this function.
1220
+ .Sh "\s-1ASSOCIATING\s0 \s-1CUSTOM\s0 \s-1DATA\s0 \s-1WITH\s0 A \s-1WATCHER\s0"
1221
+ .IX Subsection "ASSOCIATING CUSTOM DATA WITH A WATCHER"
1222
+ Each watcher has, by default, a member \f(CW\*(C`void *data\*(C'\fR that you can change
1223
+ and read at any time: libev will completely ignore it. This can be used
1224
+ to associate arbitrary data with your watcher. If you need more data and
1225
+ don't want to allocate memory and store a pointer to it in that data
1226
+ member, you can also \*(L"subclass\*(R" the watcher type and provide your own
1227
+ data:
1228
+ .PP
1229
+ .Vb 7
1230
+ \& struct my_io
1231
+ \& {
1232
+ \& ev_io io;
1233
+ \& int otherfd;
1234
+ \& void *somedata;
1235
+ \& struct whatever *mostinteresting;
1236
+ \& };
1237
+ \&
1238
+ \& ...
1239
+ \& struct my_io w;
1240
+ \& ev_io_init (&w.io, my_cb, fd, EV_READ);
1241
+ .Ve
1242
+ .PP
1243
+ And since your callback will be called with a pointer to the watcher, you
1244
+ can cast it back to your own type:
1245
+ .PP
1246
+ .Vb 5
1247
+ \& static void my_cb (struct ev_loop *loop, ev_io *w_, int revents)
1248
+ \& {
1249
+ \& struct my_io *w = (struct my_io *)w_;
1250
+ \& ...
1251
+ \& }
1252
+ .Ve
1253
+ .PP
1254
+ More interesting and less C\-conformant ways of casting your callback type
1255
+ instead have been omitted.
1256
+ .PP
1257
+ Another common scenario is to use some data structure with multiple
1258
+ embedded watchers:
1259
+ .PP
1260
+ .Vb 6
1261
+ \& struct my_biggy
1262
+ \& {
1263
+ \& int some_data;
1264
+ \& ev_timer t1;
1265
+ \& ev_timer t2;
1266
+ \& }
1267
+ .Ve
1268
+ .PP
1269
+ In this case getting the pointer to \f(CW\*(C`my_biggy\*(C'\fR is a bit more
1270
+ complicated: Either you store the address of your \f(CW\*(C`my_biggy\*(C'\fR struct
1271
+ in the \f(CW\*(C`data\*(C'\fR member of the watcher (for woozies), or you need to use
1272
+ some pointer arithmetic using \f(CW\*(C`offsetof\*(C'\fR inside your watchers (for real
1273
+ programmers):
1274
+ .PP
1275
+ .Vb 1
1276
+ \& #include <stddef.h>
1277
+ \&
1278
+ \& static void
1279
+ \& t1_cb (EV_P_ ev_timer *w, int revents)
1280
+ \& {
1281
+ \& struct my_biggy big = (struct my_biggy *
1282
+ \& (((char *)w) \- offsetof (struct my_biggy, t1));
1283
+ \& }
1284
+ \&
1285
+ \& static void
1286
+ \& t2_cb (EV_P_ ev_timer *w, int revents)
1287
+ \& {
1288
+ \& struct my_biggy big = (struct my_biggy *
1289
+ \& (((char *)w) \- offsetof (struct my_biggy, t2));
1290
+ \& }
1291
+ .Ve
1292
+ .SH "WATCHER TYPES"
1293
+ .IX Header "WATCHER TYPES"
1294
+ This section describes each watcher in detail, but will not repeat
1295
+ information given in the last section. Any initialisation/set macros,
1296
+ functions and members specific to the watcher type are explained.
1297
+ .PP
1298
+ Members are additionally marked with either \fI[read\-only]\fR, meaning that,
1299
+ while the watcher is active, you can look at the member and expect some
1300
+ sensible content, but you must not modify it (you can modify it while the
1301
+ watcher is stopped to your hearts content), or \fI[read\-write]\fR, which
1302
+ means you can expect it to have some sensible content while the watcher
1303
+ is active, but you can also modify it. Modifying it may not do something
1304
+ sensible or take immediate effect (or do anything at all), but libev will
1305
+ not crash or malfunction in any way.
1306
+ .ie n .Sh """ev_io"" \- is this file descriptor readable or writable?"
1307
+ .el .Sh "\f(CWev_io\fP \- is this file descriptor readable or writable?"
1308
+ .IX Subsection "ev_io - is this file descriptor readable or writable?"
1309
+ I/O watchers check whether a file descriptor is readable or writable
1310
+ in each iteration of the event loop, or, more precisely, when reading
1311
+ would not block the process and writing would at least be able to write
1312
+ some data. This behaviour is called level-triggering because you keep
1313
+ receiving events as long as the condition persists. Remember you can stop
1314
+ the watcher if you don't want to act on the event and neither want to
1315
+ receive future events.
1316
+ .PP
1317
+ In general you can register as many read and/or write event watchers per
1318
+ fd as you want (as long as you don't confuse yourself). Setting all file
1319
+ descriptors to non-blocking mode is also usually a good idea (but not
1320
+ required if you know what you are doing).
1321
+ .PP
1322
+ If you cannot use non-blocking mode, then force the use of a
1323
+ known-to-be-good backend (at the time of this writing, this includes only
1324
+ \&\f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and \f(CW\*(C`EVBACKEND_POLL\*(C'\fR).
1325
+ .PP
1326
+ Another thing you have to watch out for is that it is quite easy to
1327
+ receive \*(L"spurious\*(R" readiness notifications, that is your callback might
1328
+ be called with \f(CW\*(C`EV_READ\*(C'\fR but a subsequent \f(CW\*(C`read\*(C'\fR(2) will actually block
1329
+ because there is no data. Not only are some backends known to create a
1330
+ lot of those (for example Solaris ports), it is very easy to get into
1331
+ this situation even with a relatively standard program structure. Thus
1332
+ it is best to always use non-blocking I/O: An extra \f(CW\*(C`read\*(C'\fR(2) returning
1333
+ \&\f(CW\*(C`EAGAIN\*(C'\fR is far preferable to a program hanging until some data arrives.
1334
+ .PP
1335
+ If you cannot run the fd in non-blocking mode (for example you should
1336
+ not play around with an Xlib connection), then you have to separately
1337
+ re-test whether a file descriptor is really ready with a known-to-be good
1338
+ interface such as poll (fortunately in our Xlib example, Xlib already
1339
+ does this on its own, so its quite safe to use). Some people additionally
1340
+ use \f(CW\*(C`SIGALRM\*(C'\fR and an interval timer, just to be sure you won't block
1341
+ indefinitely.
1342
+ .PP
1343
+ But really, best use non-blocking mode.
1344
+ .PP
1345
+ \fIThe special problem of disappearing file descriptors\fR
1346
+ .IX Subsection "The special problem of disappearing file descriptors"
1347
+ .PP
1348
+ Some backends (e.g. kqueue, epoll) need to be told about closing a file
1349
+ descriptor (either due to calling \f(CW\*(C`close\*(C'\fR explicitly or any other means,
1350
+ such as \f(CW\*(C`dup2\*(C'\fR). The reason is that you register interest in some file
1351
+ descriptor, but when it goes away, the operating system will silently drop
1352
+ this interest. If another file descriptor with the same number then is
1353
+ registered with libev, there is no efficient way to see that this is, in
1354
+ fact, a different file descriptor.
1355
+ .PP
1356
+ To avoid having to explicitly tell libev about such cases, libev follows
1357
+ the following policy: Each time \f(CW\*(C`ev_io_set\*(C'\fR is being called, libev
1358
+ will assume that this is potentially a new file descriptor, otherwise
1359
+ it is assumed that the file descriptor stays the same. That means that
1360
+ you \fIhave\fR to call \f(CW\*(C`ev_io_set\*(C'\fR (or \f(CW\*(C`ev_io_init\*(C'\fR) when you change the
1361
+ descriptor even if the file descriptor number itself did not change.
1362
+ .PP
1363
+ This is how one would do it normally anyway, the important point is that
1364
+ the libev application should not optimise around libev but should leave
1365
+ optimisations to libev.
1366
+ .PP
1367
+ \fIThe special problem of dup'ed file descriptors\fR
1368
+ .IX Subsection "The special problem of dup'ed file descriptors"
1369
+ .PP
1370
+ Some backends (e.g. epoll), cannot register events for file descriptors,
1371
+ but only events for the underlying file descriptions. That means when you
1372
+ have \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors or weirder constellations, and register
1373
+ events for them, only one file descriptor might actually receive events.
1374
+ .PP
1375
+ There is no workaround possible except not registering events
1376
+ for potentially \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors, or to resort to
1377
+ \&\f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
1378
+ .PP
1379
+ \fIThe special problem of fork\fR
1380
+ .IX Subsection "The special problem of fork"
1381
+ .PP
1382
+ Some backends (epoll, kqueue) do not support \f(CW\*(C`fork ()\*(C'\fR at all or exhibit
1383
+ useless behaviour. Libev fully supports fork, but needs to be told about
1384
+ it in the child.
1385
+ .PP
1386
+ To support fork in your programs, you either have to call
1387
+ \&\f(CW\*(C`ev_default_fork ()\*(C'\fR or \f(CW\*(C`ev_loop_fork ()\*(C'\fR after a fork in the child,
1388
+ enable \f(CW\*(C`EVFLAG_FORKCHECK\*(C'\fR, or resort to \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or
1389
+ \&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
1390
+ .PP
1391
+ \fIThe special problem of \s-1SIGPIPE\s0\fR
1392
+ .IX Subsection "The special problem of SIGPIPE"
1393
+ .PP
1394
+ While not really specific to libev, it is easy to forget about \f(CW\*(C`SIGPIPE\*(C'\fR:
1395
+ when writing to a pipe whose other end has been closed, your program gets
1396
+ sent a \s-1SIGPIPE\s0, which, by default, aborts your program. For most programs
1397
+ this is sensible behaviour, for daemons, this is usually undesirable.
1398
+ .PP
1399
+ So when you encounter spurious, unexplained daemon exits, make sure you
1400
+ ignore \s-1SIGPIPE\s0 (and maybe make sure you log the exit status of your daemon
1401
+ somewhere, as that would have given you a big clue).
1402
+ .PP
1403
+ \fIWatcher-Specific Functions\fR
1404
+ .IX Subsection "Watcher-Specific Functions"
1405
+ .IP "ev_io_init (ev_io *, callback, int fd, int events)" 4
1406
+ .IX Item "ev_io_init (ev_io *, callback, int fd, int events)"
1407
+ .PD 0
1408
+ .IP "ev_io_set (ev_io *, int fd, int events)" 4
1409
+ .IX Item "ev_io_set (ev_io *, int fd, int events)"
1410
+ .PD
1411
+ Configures an \f(CW\*(C`ev_io\*(C'\fR watcher. The \f(CW\*(C`fd\*(C'\fR is the file descriptor to
1412
+ receive events for and \f(CW\*(C`events\*(C'\fR is either \f(CW\*(C`EV_READ\*(C'\fR, \f(CW\*(C`EV_WRITE\*(C'\fR or
1413
+ \&\f(CW\*(C`EV_READ | EV_WRITE\*(C'\fR, to express the desire to receive the given events.
1414
+ .IP "int fd [read\-only]" 4
1415
+ .IX Item "int fd [read-only]"
1416
+ The file descriptor being watched.
1417
+ .IP "int events [read\-only]" 4
1418
+ .IX Item "int events [read-only]"
1419
+ The events being watched.
1420
+ .PP
1421
+ \fIExamples\fR
1422
+ .IX Subsection "Examples"
1423
+ .PP
1424
+ Example: Call \f(CW\*(C`stdin_readable_cb\*(C'\fR when \s-1STDIN_FILENO\s0 has become, well
1425
+ readable, but only once. Since it is likely line-buffered, you could
1426
+ attempt to read a whole line in the callback.
1427
+ .PP
1428
+ .Vb 6
1429
+ \& static void
1430
+ \& stdin_readable_cb (struct ev_loop *loop, ev_io *w, int revents)
1431
+ \& {
1432
+ \& ev_io_stop (loop, w);
1433
+ \& .. read from stdin here (or from w\->fd) and handle any I/O errors
1434
+ \& }
1435
+ \&
1436
+ \& ...
1437
+ \& struct ev_loop *loop = ev_default_init (0);
1438
+ \& ev_io stdin_readable;
1439
+ \& ev_io_init (&stdin_readable, stdin_readable_cb, STDIN_FILENO, EV_READ);
1440
+ \& ev_io_start (loop, &stdin_readable);
1441
+ \& ev_loop (loop, 0);
1442
+ .Ve
1443
+ .ie n .Sh """ev_timer"" \- relative and optionally repeating timeouts"
1444
+ .el .Sh "\f(CWev_timer\fP \- relative and optionally repeating timeouts"
1445
+ .IX Subsection "ev_timer - relative and optionally repeating timeouts"
1446
+ Timer watchers are simple relative timers that generate an event after a
1447
+ given time, and optionally repeating in regular intervals after that.
1448
+ .PP
1449
+ The timers are based on real time, that is, if you register an event that
1450
+ times out after an hour and you reset your system clock to January last
1451
+ year, it will still time out after (roughly) one hour. \*(L"Roughly\*(R" because
1452
+ detecting time jumps is hard, and some inaccuracies are unavoidable (the
1453
+ monotonic clock option helps a lot here).
1454
+ .PP
1455
+ The callback is guaranteed to be invoked only \fIafter\fR its timeout has
1456
+ passed, but if multiple timers become ready during the same loop iteration
1457
+ then order of execution is undefined.
1458
+ .PP
1459
+ \fIBe smart about timeouts\fR
1460
+ .IX Subsection "Be smart about timeouts"
1461
+ .PP
1462
+ Many real-world problems involve some kind of timeout, usually for error
1463
+ recovery. A typical example is an \s-1HTTP\s0 request \- if the other side hangs,
1464
+ you want to raise some error after a while.
1465
+ .PP
1466
+ What follows are some ways to handle this problem, from obvious and
1467
+ inefficient to smart and efficient.
1468
+ .PP
1469
+ In the following, a 60 second activity timeout is assumed \- a timeout that
1470
+ gets reset to 60 seconds each time there is activity (e.g. each time some
1471
+ data or other life sign was received).
1472
+ .IP "1. Use a timer and stop, reinitialise and start it on activity." 4
1473
+ .IX Item "1. Use a timer and stop, reinitialise and start it on activity."
1474
+ This is the most obvious, but not the most simple way: In the beginning,
1475
+ start the watcher:
1476
+ .Sp
1477
+ .Vb 2
1478
+ \& ev_timer_init (timer, callback, 60., 0.);
1479
+ \& ev_timer_start (loop, timer);
1480
+ .Ve
1481
+ .Sp
1482
+ Then, each time there is some activity, \f(CW\*(C`ev_timer_stop\*(C'\fR it, initialise it
1483
+ and start it again:
1484
+ .Sp
1485
+ .Vb 3
1486
+ \& ev_timer_stop (loop, timer);
1487
+ \& ev_timer_set (timer, 60., 0.);
1488
+ \& ev_timer_start (loop, timer);
1489
+ .Ve
1490
+ .Sp
1491
+ This is relatively simple to implement, but means that each time there is
1492
+ some activity, libev will first have to remove the timer from its internal
1493
+ data structure and then add it again. Libev tries to be fast, but it's
1494
+ still not a constant-time operation.
1495
+ .ie n .IP "2. Use a timer and re-start it with ""ev_timer_again"" inactivity." 4
1496
+ .el .IP "2. Use a timer and re-start it with \f(CWev_timer_again\fR inactivity." 4
1497
+ .IX Item "2. Use a timer and re-start it with ev_timer_again inactivity."
1498
+ This is the easiest way, and involves using \f(CW\*(C`ev_timer_again\*(C'\fR instead of
1499
+ \&\f(CW\*(C`ev_timer_start\*(C'\fR.
1500
+ .Sp
1501
+ To implement this, configure an \f(CW\*(C`ev_timer\*(C'\fR with a \f(CW\*(C`repeat\*(C'\fR value
1502
+ of \f(CW60\fR and then call \f(CW\*(C`ev_timer_again\*(C'\fR at start and each time you
1503
+ successfully read or write some data. If you go into an idle state where
1504
+ you do not expect data to travel on the socket, you can \f(CW\*(C`ev_timer_stop\*(C'\fR
1505
+ the timer, and \f(CW\*(C`ev_timer_again\*(C'\fR will automatically restart it if need be.
1506
+ .Sp
1507
+ That means you can ignore both the \f(CW\*(C`ev_timer_start\*(C'\fR function and the
1508
+ \&\f(CW\*(C`after\*(C'\fR argument to \f(CW\*(C`ev_timer_set\*(C'\fR, and only ever use the \f(CW\*(C`repeat\*(C'\fR
1509
+ member and \f(CW\*(C`ev_timer_again\*(C'\fR.
1510
+ .Sp
1511
+ At start:
1512
+ .Sp
1513
+ .Vb 3
1514
+ \& ev_timer_init (timer, callback);
1515
+ \& timer\->repeat = 60.;
1516
+ \& ev_timer_again (loop, timer);
1517
+ .Ve
1518
+ .Sp
1519
+ Each time there is some activity:
1520
+ .Sp
1521
+ .Vb 1
1522
+ \& ev_timer_again (loop, timer);
1523
+ .Ve
1524
+ .Sp
1525
+ It is even possible to change the time-out on the fly, regardless of
1526
+ whether the watcher is active or not:
1527
+ .Sp
1528
+ .Vb 2
1529
+ \& timer\->repeat = 30.;
1530
+ \& ev_timer_again (loop, timer);
1531
+ .Ve
1532
+ .Sp
1533
+ This is slightly more efficient then stopping/starting the timer each time
1534
+ you want to modify its timeout value, as libev does not have to completely
1535
+ remove and re-insert the timer from/into its internal data structure.
1536
+ .Sp
1537
+ It is, however, even simpler than the \*(L"obvious\*(R" way to do it.
1538
+ .IP "3. Let the timer time out, but then re-arm it as required." 4
1539
+ .IX Item "3. Let the timer time out, but then re-arm it as required."
1540
+ This method is more tricky, but usually most efficient: Most timeouts are
1541
+ relatively long compared to the intervals between other activity \- in
1542
+ our example, within 60 seconds, there are usually many I/O events with
1543
+ associated activity resets.
1544
+ .Sp
1545
+ In this case, it would be more efficient to leave the \f(CW\*(C`ev_timer\*(C'\fR alone,
1546
+ but remember the time of last activity, and check for a real timeout only
1547
+ within the callback:
1548
+ .Sp
1549
+ .Vb 1
1550
+ \& ev_tstamp last_activity; // time of last activity
1551
+ \&
1552
+ \& static void
1553
+ \& callback (EV_P_ ev_timer *w, int revents)
1554
+ \& {
1555
+ \& ev_tstamp now = ev_now (EV_A);
1556
+ \& ev_tstamp timeout = last_activity + 60.;
1557
+ \&
1558
+ \& // if last_activity + 60. is older than now, we did time out
1559
+ \& if (timeout < now)
1560
+ \& {
1561
+ \& // timeout occured, take action
1562
+ \& }
1563
+ \& else
1564
+ \& {
1565
+ \& // callback was invoked, but there was some activity, re\-arm
1566
+ \& // the watcher to fire in last_activity + 60, which is
1567
+ \& // guaranteed to be in the future, so "again" is positive:
1568
+ \& w\->repeat = timeout \- now;
1569
+ \& ev_timer_again (EV_A_ w);
1570
+ \& }
1571
+ \& }
1572
+ .Ve
1573
+ .Sp
1574
+ To summarise the callback: first calculate the real timeout (defined
1575
+ as \*(L"60 seconds after the last activity\*(R"), then check if that time has
1576
+ been reached, which means something \fIdid\fR, in fact, time out. Otherwise
1577
+ the callback was invoked too early (\f(CW\*(C`timeout\*(C'\fR is in the future), so
1578
+ re-schedule the timer to fire at that future time, to see if maybe we have
1579
+ a timeout then.
1580
+ .Sp
1581
+ Note how \f(CW\*(C`ev_timer_again\*(C'\fR is used, taking advantage of the
1582
+ \&\f(CW\*(C`ev_timer_again\*(C'\fR optimisation when the timer is already running.
1583
+ .Sp
1584
+ This scheme causes more callback invocations (about one every 60 seconds
1585
+ minus half the average time between activity), but virtually no calls to
1586
+ libev to change the timeout.
1587
+ .Sp
1588
+ To start the timer, simply initialise the watcher and set \f(CW\*(C`last_activity\*(C'\fR
1589
+ to the current time (meaning we just have some activity :), then call the
1590
+ callback, which will \*(L"do the right thing\*(R" and start the timer:
1591
+ .Sp
1592
+ .Vb 3
1593
+ \& ev_timer_init (timer, callback);
1594
+ \& last_activity = ev_now (loop);
1595
+ \& callback (loop, timer, EV_TIMEOUT);
1596
+ .Ve
1597
+ .Sp
1598
+ And when there is some activity, simply store the current time in
1599
+ \&\f(CW\*(C`last_activity\*(C'\fR, no libev calls at all:
1600
+ .Sp
1601
+ .Vb 1
1602
+ \& last_actiivty = ev_now (loop);
1603
+ .Ve
1604
+ .Sp
1605
+ This technique is slightly more complex, but in most cases where the
1606
+ time-out is unlikely to be triggered, much more efficient.
1607
+ .Sp
1608
+ Changing the timeout is trivial as well (if it isn't hard-coded in the
1609
+ callback :) \- just change the timeout and invoke the callback, which will
1610
+ fix things for you.
1611
+ .IP "4. Wee, just use a double-linked list for your timeouts." 4
1612
+ .IX Item "4. Wee, just use a double-linked list for your timeouts."
1613
+ If there is not one request, but many thousands (millions...), all
1614
+ employing some kind of timeout with the same timeout value, then one can
1615
+ do even better:
1616
+ .Sp
1617
+ When starting the timeout, calculate the timeout value and put the timeout
1618
+ at the \fIend\fR of the list.
1619
+ .Sp
1620
+ Then use an \f(CW\*(C`ev_timer\*(C'\fR to fire when the timeout at the \fIbeginning\fR of
1621
+ the list is expected to fire (for example, using the technique #3).
1622
+ .Sp
1623
+ When there is some activity, remove the timer from the list, recalculate
1624
+ the timeout, append it to the end of the list again, and make sure to
1625
+ update the \f(CW\*(C`ev_timer\*(C'\fR if it was taken from the beginning of the list.
1626
+ .Sp
1627
+ This way, one can manage an unlimited number of timeouts in O(1) time for
1628
+ starting, stopping and updating the timers, at the expense of a major
1629
+ complication, and having to use a constant timeout. The constant timeout
1630
+ ensures that the list stays sorted.
1631
+ .PP
1632
+ So which method the best?
1633
+ .PP
1634
+ Method #2 is a simple no-brain-required solution that is adequate in most
1635
+ situations. Method #3 requires a bit more thinking, but handles many cases
1636
+ better, and isn't very complicated either. In most case, choosing either
1637
+ one is fine, with #3 being better in typical situations.
1638
+ .PP
1639
+ Method #1 is almost always a bad idea, and buys you nothing. Method #4 is
1640
+ rather complicated, but extremely efficient, something that really pays
1641
+ off after the first million or so of active timers, i.e. it's usually
1642
+ overkill :)
1643
+ .PP
1644
+ \fIThe special problem of time updates\fR
1645
+ .IX Subsection "The special problem of time updates"
1646
+ .PP
1647
+ Establishing the current time is a costly operation (it usually takes at
1648
+ least two system calls): \s-1EV\s0 therefore updates its idea of the current
1649
+ time only before and after \f(CW\*(C`ev_loop\*(C'\fR collects new events, which causes a
1650
+ growing difference between \f(CW\*(C`ev_now ()\*(C'\fR and \f(CW\*(C`ev_time ()\*(C'\fR when handling
1651
+ lots of events in one iteration.
1652
+ .PP
1653
+ The relative timeouts are calculated relative to the \f(CW\*(C`ev_now ()\*(C'\fR
1654
+ time. This is usually the right thing as this timestamp refers to the time
1655
+ of the event triggering whatever timeout you are modifying/starting. If
1656
+ you suspect event processing to be delayed and you \fIneed\fR to base the
1657
+ timeout on the current time, use something like this to adjust for this:
1658
+ .PP
1659
+ .Vb 1
1660
+ \& ev_timer_set (&timer, after + ev_now () \- ev_time (), 0.);
1661
+ .Ve
1662
+ .PP
1663
+ If the event loop is suspended for a long time, you can also force an
1664
+ update of the time returned by \f(CW\*(C`ev_now ()\*(C'\fR by calling \f(CW\*(C`ev_now_update
1665
+ ()\*(C'\fR.
1666
+ .PP
1667
+ \fIWatcher-Specific Functions and Data Members\fR
1668
+ .IX Subsection "Watcher-Specific Functions and Data Members"
1669
+ .IP "ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat)" 4
1670
+ .IX Item "ev_timer_init (ev_timer *, callback, ev_tstamp after, ev_tstamp repeat)"
1671
+ .PD 0
1672
+ .IP "ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat)" 4
1673
+ .IX Item "ev_timer_set (ev_timer *, ev_tstamp after, ev_tstamp repeat)"
1674
+ .PD
1675
+ Configure the timer to trigger after \f(CW\*(C`after\*(C'\fR seconds. If \f(CW\*(C`repeat\*(C'\fR
1676
+ is \f(CW0.\fR, then it will automatically be stopped once the timeout is
1677
+ reached. If it is positive, then the timer will automatically be
1678
+ configured to trigger again \f(CW\*(C`repeat\*(C'\fR seconds later, again, and again,
1679
+ until stopped manually.
1680
+ .Sp
1681
+ The timer itself will do a best-effort at avoiding drift, that is, if
1682
+ you configure a timer to trigger every 10 seconds, then it will normally
1683
+ trigger at exactly 10 second intervals. If, however, your program cannot
1684
+ keep up with the timer (because it takes longer than those 10 seconds to
1685
+ do stuff) the timer will not fire more than once per event loop iteration.
1686
+ .IP "ev_timer_again (loop, ev_timer *)" 4
1687
+ .IX Item "ev_timer_again (loop, ev_timer *)"
1688
+ This will act as if the timer timed out and restart it again if it is
1689
+ repeating. The exact semantics are:
1690
+ .Sp
1691
+ If the timer is pending, its pending status is cleared.
1692
+ .Sp
1693
+ If the timer is started but non-repeating, stop it (as if it timed out).
1694
+ .Sp
1695
+ If the timer is repeating, either start it if necessary (with the
1696
+ \&\f(CW\*(C`repeat\*(C'\fR value), or reset the running timer to the \f(CW\*(C`repeat\*(C'\fR value.
1697
+ .Sp
1698
+ This sounds a bit complicated, see \*(L"Be smart about timeouts\*(R", above, for a
1699
+ usage example.
1700
+ .IP "ev_tstamp repeat [read\-write]" 4
1701
+ .IX Item "ev_tstamp repeat [read-write]"
1702
+ The current \f(CW\*(C`repeat\*(C'\fR value. Will be used each time the watcher times out
1703
+ or \f(CW\*(C`ev_timer_again\*(C'\fR is called, and determines the next timeout (if any),
1704
+ which is also when any modifications are taken into account.
1705
+ .PP
1706
+ \fIExamples\fR
1707
+ .IX Subsection "Examples"
1708
+ .PP
1709
+ Example: Create a timer that fires after 60 seconds.
1710
+ .PP
1711
+ .Vb 5
1712
+ \& static void
1713
+ \& one_minute_cb (struct ev_loop *loop, ev_timer *w, int revents)
1714
+ \& {
1715
+ \& .. one minute over, w is actually stopped right here
1716
+ \& }
1717
+ \&
1718
+ \& ev_timer mytimer;
1719
+ \& ev_timer_init (&mytimer, one_minute_cb, 60., 0.);
1720
+ \& ev_timer_start (loop, &mytimer);
1721
+ .Ve
1722
+ .PP
1723
+ Example: Create a timeout timer that times out after 10 seconds of
1724
+ inactivity.
1725
+ .PP
1726
+ .Vb 5
1727
+ \& static void
1728
+ \& timeout_cb (struct ev_loop *loop, ev_timer *w, int revents)
1729
+ \& {
1730
+ \& .. ten seconds without any activity
1731
+ \& }
1732
+ \&
1733
+ \& ev_timer mytimer;
1734
+ \& ev_timer_init (&mytimer, timeout_cb, 0., 10.); /* note, only repeat used */
1735
+ \& ev_timer_again (&mytimer); /* start timer */
1736
+ \& ev_loop (loop, 0);
1737
+ \&
1738
+ \& // and in some piece of code that gets executed on any "activity":
1739
+ \& // reset the timeout to start ticking again at 10 seconds
1740
+ \& ev_timer_again (&mytimer);
1741
+ .Ve
1742
+ .ie n .Sh """ev_periodic"" \- to cron or not to cron?"
1743
+ .el .Sh "\f(CWev_periodic\fP \- to cron or not to cron?"
1744
+ .IX Subsection "ev_periodic - to cron or not to cron?"
1745
+ Periodic watchers are also timers of a kind, but they are very versatile
1746
+ (and unfortunately a bit complex).
1747
+ .PP
1748
+ Unlike \f(CW\*(C`ev_timer\*(C'\fR's, they are not based on real time (or relative time)
1749
+ but on wall clock time (absolute time). You can tell a periodic watcher
1750
+ to trigger after some specific point in time. For example, if you tell a
1751
+ periodic watcher to trigger in 10 seconds (by specifying e.g. \f(CW\*(C`ev_now ()
1752
+ + 10.\*(C'\fR, that is, an absolute time not a delay) and then reset your system
1753
+ clock to January of the previous year, then it will take more than year
1754
+ to trigger the event (unlike an \f(CW\*(C`ev_timer\*(C'\fR, which would still trigger
1755
+ roughly 10 seconds later as it uses a relative timeout).
1756
+ .PP
1757
+ \&\f(CW\*(C`ev_periodic\*(C'\fRs can also be used to implement vastly more complex timers,
1758
+ such as triggering an event on each \*(L"midnight, local time\*(R", or other
1759
+ complicated rules.
1760
+ .PP
1761
+ As with timers, the callback is guaranteed to be invoked only when the
1762
+ time (\f(CW\*(C`at\*(C'\fR) has passed, but if multiple periodic timers become ready
1763
+ during the same loop iteration, then order of execution is undefined.
1764
+ .PP
1765
+ \fIWatcher-Specific Functions and Data Members\fR
1766
+ .IX Subsection "Watcher-Specific Functions and Data Members"
1767
+ .IP "ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb)" 4
1768
+ .IX Item "ev_periodic_init (ev_periodic *, callback, ev_tstamp at, ev_tstamp interval, reschedule_cb)"
1769
+ .PD 0
1770
+ .IP "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)" 4
1771
+ .IX Item "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)"
1772
+ .PD
1773
+ Lots of arguments, lets sort it out... There are basically three modes of
1774
+ operation, and we will explain them from simplest to most complex:
1775
+ .RS 4
1776
+ .IP "\(bu" 4
1777
+ absolute timer (at = time, interval = reschedule_cb = 0)
1778
+ .Sp
1779
+ In this configuration the watcher triggers an event after the wall clock
1780
+ time \f(CW\*(C`at\*(C'\fR has passed. It will not repeat and will not adjust when a time
1781
+ jump occurs, that is, if it is to be run at January 1st 2011 then it will
1782
+ only run when the system clock reaches or surpasses this time.
1783
+ .IP "\(bu" 4
1784
+ repeating interval timer (at = offset, interval > 0, reschedule_cb = 0)
1785
+ .Sp
1786
+ In this mode the watcher will always be scheduled to time out at the next
1787
+ \&\f(CW\*(C`at + N * interval\*(C'\fR time (for some integer N, which can also be negative)
1788
+ and then repeat, regardless of any time jumps.
1789
+ .Sp
1790
+ This can be used to create timers that do not drift with respect to the
1791
+ system clock, for example, here is a \f(CW\*(C`ev_periodic\*(C'\fR that triggers each
1792
+ hour, on the hour:
1793
+ .Sp
1794
+ .Vb 1
1795
+ \& ev_periodic_set (&periodic, 0., 3600., 0);
1796
+ .Ve
1797
+ .Sp
1798
+ This doesn't mean there will always be 3600 seconds in between triggers,
1799
+ but only that the callback will be called when the system time shows a
1800
+ full hour (\s-1UTC\s0), or more correctly, when the system time is evenly divisible
1801
+ by 3600.
1802
+ .Sp
1803
+ Another way to think about it (for the mathematically inclined) is that
1804
+ \&\f(CW\*(C`ev_periodic\*(C'\fR will try to run the callback in this mode at the next possible
1805
+ time where \f(CW\*(C`time = at (mod interval)\*(C'\fR, regardless of any time jumps.
1806
+ .Sp
1807
+ For numerical stability it is preferable that the \f(CW\*(C`at\*(C'\fR value is near
1808
+ \&\f(CW\*(C`ev_now ()\*(C'\fR (the current time), but there is no range requirement for
1809
+ this value, and in fact is often specified as zero.
1810
+ .Sp
1811
+ Note also that there is an upper limit to how often a timer can fire (\s-1CPU\s0
1812
+ speed for example), so if \f(CW\*(C`interval\*(C'\fR is very small then timing stability
1813
+ will of course deteriorate. Libev itself tries to be exact to be about one
1814
+ millisecond (if the \s-1OS\s0 supports it and the machine is fast enough).
1815
+ .IP "\(bu" 4
1816
+ manual reschedule mode (at and interval ignored, reschedule_cb = callback)
1817
+ .Sp
1818
+ In this mode the values for \f(CW\*(C`interval\*(C'\fR and \f(CW\*(C`at\*(C'\fR are both being
1819
+ ignored. Instead, each time the periodic watcher gets scheduled, the
1820
+ reschedule callback will be called with the watcher as first, and the
1821
+ current time as second argument.
1822
+ .Sp
1823
+ \&\s-1NOTE:\s0 \fIThis callback \s-1MUST\s0 \s-1NOT\s0 stop or destroy any periodic watcher,
1824
+ ever, or make \s-1ANY\s0 event loop modifications whatsoever\fR.
1825
+ .Sp
1826
+ If you need to stop it, return \f(CW\*(C`now + 1e30\*(C'\fR (or so, fudge fudge) and stop
1827
+ it afterwards (e.g. by starting an \f(CW\*(C`ev_prepare\*(C'\fR watcher, which is the
1828
+ only event loop modification you are allowed to do).
1829
+ .Sp
1830
+ The callback prototype is \f(CW\*(C`ev_tstamp (*reschedule_cb)(ev_periodic
1831
+ *w, ev_tstamp now)\*(C'\fR, e.g.:
1832
+ .Sp
1833
+ .Vb 5
1834
+ \& static ev_tstamp
1835
+ \& my_rescheduler (ev_periodic *w, ev_tstamp now)
1836
+ \& {
1837
+ \& return now + 60.;
1838
+ \& }
1839
+ .Ve
1840
+ .Sp
1841
+ It must return the next time to trigger, based on the passed time value
1842
+ (that is, the lowest time value larger than to the second argument). It
1843
+ will usually be called just before the callback will be triggered, but
1844
+ might be called at other times, too.
1845
+ .Sp
1846
+ \&\s-1NOTE:\s0 \fIThis callback must always return a time that is higher than or
1847
+ equal to the passed \f(CI\*(C`now\*(C'\fI value\fR.
1848
+ .Sp
1849
+ This can be used to create very complex timers, such as a timer that
1850
+ triggers on \*(L"next midnight, local time\*(R". To do this, you would calculate the
1851
+ next midnight after \f(CW\*(C`now\*(C'\fR and return the timestamp value for this. How
1852
+ you do this is, again, up to you (but it is not trivial, which is the main
1853
+ reason I omitted it as an example).
1854
+ .RE
1855
+ .RS 4
1856
+ .RE
1857
+ .IP "ev_periodic_again (loop, ev_periodic *)" 4
1858
+ .IX Item "ev_periodic_again (loop, ev_periodic *)"
1859
+ Simply stops and restarts the periodic watcher again. This is only useful
1860
+ when you changed some parameters or the reschedule callback would return
1861
+ a different time than the last time it was called (e.g. in a crond like
1862
+ program when the crontabs have changed).
1863
+ .IP "ev_tstamp ev_periodic_at (ev_periodic *)" 4
1864
+ .IX Item "ev_tstamp ev_periodic_at (ev_periodic *)"
1865
+ When active, returns the absolute time that the watcher is supposed to
1866
+ trigger next.
1867
+ .IP "ev_tstamp offset [read\-write]" 4
1868
+ .IX Item "ev_tstamp offset [read-write]"
1869
+ When repeating, this contains the offset value, otherwise this is the
1870
+ absolute point in time (the \f(CW\*(C`at\*(C'\fR value passed to \f(CW\*(C`ev_periodic_set\*(C'\fR).
1871
+ .Sp
1872
+ Can be modified any time, but changes only take effect when the periodic
1873
+ timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called.
1874
+ .IP "ev_tstamp interval [read\-write]" 4
1875
+ .IX Item "ev_tstamp interval [read-write]"
1876
+ The current interval value. Can be modified any time, but changes only
1877
+ take effect when the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being
1878
+ called.
1879
+ .IP "ev_tstamp (*reschedule_cb)(ev_periodic *w, ev_tstamp now) [read\-write]" 4
1880
+ .IX Item "ev_tstamp (*reschedule_cb)(ev_periodic *w, ev_tstamp now) [read-write]"
1881
+ The current reschedule callback, or \f(CW0\fR, if this functionality is
1882
+ switched off. Can be changed any time, but changes only take effect when
1883
+ the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called.
1884
+ .PP
1885
+ \fIExamples\fR
1886
+ .IX Subsection "Examples"
1887
+ .PP
1888
+ Example: Call a callback every hour, or, more precisely, whenever the
1889
+ system time is divisible by 3600. The callback invocation times have
1890
+ potentially a lot of jitter, but good long-term stability.
1891
+ .PP
1892
+ .Vb 5
1893
+ \& static void
1894
+ \& clock_cb (struct ev_loop *loop, ev_io *w, int revents)
1895
+ \& {
1896
+ \& ... its now a full hour (UTC, or TAI or whatever your clock follows)
1897
+ \& }
1898
+ \&
1899
+ \& ev_periodic hourly_tick;
1900
+ \& ev_periodic_init (&hourly_tick, clock_cb, 0., 3600., 0);
1901
+ \& ev_periodic_start (loop, &hourly_tick);
1902
+ .Ve
1903
+ .PP
1904
+ Example: The same as above, but use a reschedule callback to do it:
1905
+ .PP
1906
+ .Vb 1
1907
+ \& #include <math.h>
1908
+ \&
1909
+ \& static ev_tstamp
1910
+ \& my_scheduler_cb (ev_periodic *w, ev_tstamp now)
1911
+ \& {
1912
+ \& return now + (3600. \- fmod (now, 3600.));
1913
+ \& }
1914
+ \&
1915
+ \& ev_periodic_init (&hourly_tick, clock_cb, 0., 0., my_scheduler_cb);
1916
+ .Ve
1917
+ .PP
1918
+ Example: Call a callback every hour, starting now:
1919
+ .PP
1920
+ .Vb 4
1921
+ \& ev_periodic hourly_tick;
1922
+ \& ev_periodic_init (&hourly_tick, clock_cb,
1923
+ \& fmod (ev_now (loop), 3600.), 3600., 0);
1924
+ \& ev_periodic_start (loop, &hourly_tick);
1925
+ .Ve
1926
+ .ie n .Sh """ev_signal"" \- signal me when a signal gets signalled!"
1927
+ .el .Sh "\f(CWev_signal\fP \- signal me when a signal gets signalled!"
1928
+ .IX Subsection "ev_signal - signal me when a signal gets signalled!"
1929
+ Signal watchers will trigger an event when the process receives a specific
1930
+ signal one or more times. Even though signals are very asynchronous, libev
1931
+ will try it's best to deliver signals synchronously, i.e. as part of the
1932
+ normal event processing, like any other event.
1933
+ .PP
1934
+ If you want signals asynchronously, just use \f(CW\*(C`sigaction\*(C'\fR as you would
1935
+ do without libev and forget about sharing the signal. You can even use
1936
+ \&\f(CW\*(C`ev_async\*(C'\fR from a signal handler to synchronously wake up an event loop.
1937
+ .PP
1938
+ You can configure as many watchers as you like per signal. Only when the
1939
+ first watcher gets started will libev actually register a signal handler
1940
+ with the kernel (thus it coexists with your own signal handlers as long as
1941
+ you don't register any with libev for the same signal). Similarly, when
1942
+ the last signal watcher for a signal is stopped, libev will reset the
1943
+ signal handler to \s-1SIG_DFL\s0 (regardless of what it was set to before).
1944
+ .PP
1945
+ If possible and supported, libev will install its handlers with
1946
+ \&\f(CW\*(C`SA_RESTART\*(C'\fR behaviour enabled, so system calls should not be unduly
1947
+ interrupted. If you have a problem with system calls getting interrupted by
1948
+ signals you can block all signals in an \f(CW\*(C`ev_check\*(C'\fR watcher and unblock
1949
+ them in an \f(CW\*(C`ev_prepare\*(C'\fR watcher.
1950
+ .PP
1951
+ \fIWatcher-Specific Functions and Data Members\fR
1952
+ .IX Subsection "Watcher-Specific Functions and Data Members"
1953
+ .IP "ev_signal_init (ev_signal *, callback, int signum)" 4
1954
+ .IX Item "ev_signal_init (ev_signal *, callback, int signum)"
1955
+ .PD 0
1956
+ .IP "ev_signal_set (ev_signal *, int signum)" 4
1957
+ .IX Item "ev_signal_set (ev_signal *, int signum)"
1958
+ .PD
1959
+ Configures the watcher to trigger on the given signal number (usually one
1960
+ of the \f(CW\*(C`SIGxxx\*(C'\fR constants).
1961
+ .IP "int signum [read\-only]" 4
1962
+ .IX Item "int signum [read-only]"
1963
+ The signal the watcher watches out for.
1964
+ .PP
1965
+ \fIExamples\fR
1966
+ .IX Subsection "Examples"
1967
+ .PP
1968
+ Example: Try to exit cleanly on \s-1SIGINT\s0.
1969
+ .PP
1970
+ .Vb 5
1971
+ \& static void
1972
+ \& sigint_cb (struct ev_loop *loop, ev_signal *w, int revents)
1973
+ \& {
1974
+ \& ev_unloop (loop, EVUNLOOP_ALL);
1975
+ \& }
1976
+ \&
1977
+ \& ev_signal signal_watcher;
1978
+ \& ev_signal_init (&signal_watcher, sigint_cb, SIGINT);
1979
+ \& ev_signal_start (loop, &signal_watcher);
1980
+ .Ve
1981
+ .ie n .Sh """ev_child"" \- watch out for process status changes"
1982
+ .el .Sh "\f(CWev_child\fP \- watch out for process status changes"
1983
+ .IX Subsection "ev_child - watch out for process status changes"
1984
+ Child watchers trigger when your process receives a \s-1SIGCHLD\s0 in response to
1985
+ some child status changes (most typically when a child of yours dies or
1986
+ exits). It is permissible to install a child watcher \fIafter\fR the child
1987
+ has been forked (which implies it might have already exited), as long
1988
+ as the event loop isn't entered (or is continued from a watcher), i.e.,
1989
+ forking and then immediately registering a watcher for the child is fine,
1990
+ but forking and registering a watcher a few event loop iterations later is
1991
+ not.
1992
+ .PP
1993
+ Only the default event loop is capable of handling signals, and therefore
1994
+ you can only register child watchers in the default event loop.
1995
+ .PP
1996
+ \fIProcess Interaction\fR
1997
+ .IX Subsection "Process Interaction"
1998
+ .PP
1999
+ Libev grabs \f(CW\*(C`SIGCHLD\*(C'\fR as soon as the default event loop is
2000
+ initialised. This is necessary to guarantee proper behaviour even if
2001
+ the first child watcher is started after the child exits. The occurrence
2002
+ of \f(CW\*(C`SIGCHLD\*(C'\fR is recorded asynchronously, but child reaping is done
2003
+ synchronously as part of the event loop processing. Libev always reaps all
2004
+ children, even ones not watched.
2005
+ .PP
2006
+ \fIOverriding the Built-In Processing\fR
2007
+ .IX Subsection "Overriding the Built-In Processing"
2008
+ .PP
2009
+ Libev offers no special support for overriding the built-in child
2010
+ processing, but if your application collides with libev's default child
2011
+ handler, you can override it easily by installing your own handler for
2012
+ \&\f(CW\*(C`SIGCHLD\*(C'\fR after initialising the default loop, and making sure the
2013
+ default loop never gets destroyed. You are encouraged, however, to use an
2014
+ event-based approach to child reaping and thus use libev's support for
2015
+ that, so other libev users can use \f(CW\*(C`ev_child\*(C'\fR watchers freely.
2016
+ .PP
2017
+ \fIStopping the Child Watcher\fR
2018
+ .IX Subsection "Stopping the Child Watcher"
2019
+ .PP
2020
+ Currently, the child watcher never gets stopped, even when the
2021
+ child terminates, so normally one needs to stop the watcher in the
2022
+ callback. Future versions of libev might stop the watcher automatically
2023
+ when a child exit is detected.
2024
+ .PP
2025
+ \fIWatcher-Specific Functions and Data Members\fR
2026
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2027
+ .IP "ev_child_init (ev_child *, callback, int pid, int trace)" 4
2028
+ .IX Item "ev_child_init (ev_child *, callback, int pid, int trace)"
2029
+ .PD 0
2030
+ .IP "ev_child_set (ev_child *, int pid, int trace)" 4
2031
+ .IX Item "ev_child_set (ev_child *, int pid, int trace)"
2032
+ .PD
2033
+ Configures the watcher to wait for status changes of process \f(CW\*(C`pid\*(C'\fR (or
2034
+ \&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look
2035
+ at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see
2036
+ the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems
2037
+ \&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the
2038
+ process causing the status change. \f(CW\*(C`trace\*(C'\fR must be either \f(CW0\fR (only
2039
+ activate the watcher when the process terminates) or \f(CW1\fR (additionally
2040
+ activate the watcher when the process is stopped or continued).
2041
+ .IP "int pid [read\-only]" 4
2042
+ .IX Item "int pid [read-only]"
2043
+ The process id this watcher watches out for, or \f(CW0\fR, meaning any process id.
2044
+ .IP "int rpid [read\-write]" 4
2045
+ .IX Item "int rpid [read-write]"
2046
+ The process id that detected a status change.
2047
+ .IP "int rstatus [read\-write]" 4
2048
+ .IX Item "int rstatus [read-write]"
2049
+ The process exit/trace status caused by \f(CW\*(C`rpid\*(C'\fR (see your systems
2050
+ \&\f(CW\*(C`waitpid\*(C'\fR and \f(CW\*(C`sys/wait.h\*(C'\fR documentation for details).
2051
+ .PP
2052
+ \fIExamples\fR
2053
+ .IX Subsection "Examples"
2054
+ .PP
2055
+ Example: \f(CW\*(C`fork()\*(C'\fR a new process and install a child handler to wait for
2056
+ its completion.
2057
+ .PP
2058
+ .Vb 1
2059
+ \& ev_child cw;
2060
+ \&
2061
+ \& static void
2062
+ \& child_cb (EV_P_ ev_child *w, int revents)
2063
+ \& {
2064
+ \& ev_child_stop (EV_A_ w);
2065
+ \& printf ("process %d exited with status %x\en", w\->rpid, w\->rstatus);
2066
+ \& }
2067
+ \&
2068
+ \& pid_t pid = fork ();
2069
+ \&
2070
+ \& if (pid < 0)
2071
+ \& // error
2072
+ \& else if (pid == 0)
2073
+ \& {
2074
+ \& // the forked child executes here
2075
+ \& exit (1);
2076
+ \& }
2077
+ \& else
2078
+ \& {
2079
+ \& ev_child_init (&cw, child_cb, pid, 0);
2080
+ \& ev_child_start (EV_DEFAULT_ &cw);
2081
+ \& }
2082
+ .Ve
2083
+ .ie n .Sh """ev_stat"" \- did the file attributes just change?"
2084
+ .el .Sh "\f(CWev_stat\fP \- did the file attributes just change?"
2085
+ .IX Subsection "ev_stat - did the file attributes just change?"
2086
+ This watches a file system path for attribute changes. That is, it calls
2087
+ \&\f(CW\*(C`stat\*(C'\fR on that path in regular intervals (or when the \s-1OS\s0 says it changed)
2088
+ and sees if it changed compared to the last time, invoking the callback if
2089
+ it did.
2090
+ .PP
2091
+ The path does not need to exist: changing from \*(L"path exists\*(R" to \*(L"path does
2092
+ not exist\*(R" is a status change like any other. The condition \*(L"path does not
2093
+ exist\*(R" (or more correctly \*(L"path cannot be stat'ed\*(R") is signified by the
2094
+ \&\f(CW\*(C`st_nlink\*(C'\fR field being zero (which is otherwise always forced to be at
2095
+ least one) and all the other fields of the stat buffer having unspecified
2096
+ contents.
2097
+ .PP
2098
+ The path \fImust not\fR end in a slash or contain special components such as
2099
+ \&\f(CW\*(C`.\*(C'\fR or \f(CW\*(C`..\*(C'\fR. The path \fIshould\fR be absolute: If it is relative and
2100
+ your working directory changes, then the behaviour is undefined.
2101
+ .PP
2102
+ Since there is no portable change notification interface available, the
2103
+ portable implementation simply calls \f(CWstat(2)\fR regularly on the path
2104
+ to see if it changed somehow. You can specify a recommended polling
2105
+ interval for this case. If you specify a polling interval of \f(CW0\fR (highly
2106
+ recommended!) then a \fIsuitable, unspecified default\fR value will be used
2107
+ (which you can expect to be around five seconds, although this might
2108
+ change dynamically). Libev will also impose a minimum interval which is
2109
+ currently around \f(CW0.1\fR, but that's usually overkill.
2110
+ .PP
2111
+ This watcher type is not meant for massive numbers of stat watchers,
2112
+ as even with OS-supported change notifications, this can be
2113
+ resource-intensive.
2114
+ .PP
2115
+ At the time of this writing, the only OS-specific interface implemented
2116
+ is the Linux inotify interface (implementing kqueue support is left as an
2117
+ exercise for the reader. Note, however, that the author sees no way of
2118
+ implementing \f(CW\*(C`ev_stat\*(C'\fR semantics with kqueue, except as a hint).
2119
+ .PP
2120
+ \fI\s-1ABI\s0 Issues (Largefile Support)\fR
2121
+ .IX Subsection "ABI Issues (Largefile Support)"
2122
+ .PP
2123
+ Libev by default (unless the user overrides this) uses the default
2124
+ compilation environment, which means that on systems with large file
2125
+ support disabled by default, you get the 32 bit version of the stat
2126
+ structure. When using the library from programs that change the \s-1ABI\s0 to
2127
+ use 64 bit file offsets the programs will fail. In that case you have to
2128
+ compile libev with the same flags to get binary compatibility. This is
2129
+ obviously the case with any flags that change the \s-1ABI\s0, but the problem is
2130
+ most noticeably displayed with ev_stat and large file support.
2131
+ .PP
2132
+ The solution for this is to lobby your distribution maker to make large
2133
+ file interfaces available by default (as e.g. FreeBSD does) and not
2134
+ optional. Libev cannot simply switch on large file support because it has
2135
+ to exchange stat structures with application programs compiled using the
2136
+ default compilation environment.
2137
+ .PP
2138
+ \fIInotify and Kqueue\fR
2139
+ .IX Subsection "Inotify and Kqueue"
2140
+ .PP
2141
+ When \f(CW\*(C`inotify (7)\*(C'\fR support has been compiled into libev and present at
2142
+ runtime, it will be used to speed up change detection where possible. The
2143
+ inotify descriptor will be created lazily when the first \f(CW\*(C`ev_stat\*(C'\fR
2144
+ watcher is being started.
2145
+ .PP
2146
+ Inotify presence does not change the semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers
2147
+ except that changes might be detected earlier, and in some cases, to avoid
2148
+ making regular \f(CW\*(C`stat\*(C'\fR calls. Even in the presence of inotify support
2149
+ there are many cases where libev has to resort to regular \f(CW\*(C`stat\*(C'\fR polling,
2150
+ but as long as kernel 2.6.25 or newer is used (2.6.24 and older have too
2151
+ many bugs), the path exists (i.e. stat succeeds), and the path resides on
2152
+ a local filesystem (libev currently assumes only ext2/3, jfs, reiserfs and
2153
+ xfs are fully working) libev usually gets away without polling.
2154
+ .PP
2155
+ There is no support for kqueue, as apparently it cannot be used to
2156
+ implement this functionality, due to the requirement of having a file
2157
+ descriptor open on the object at all times, and detecting renames, unlinks
2158
+ etc. is difficult.
2159
+ .PP
2160
+ \fI\f(CI\*(C`stat ()\*(C'\fI is a synchronous operation\fR
2161
+ .IX Subsection "stat () is a synchronous operation"
2162
+ .PP
2163
+ Libev doesn't normally do any kind of I/O itself, and so is not blocking
2164
+ the process. The exception are \f(CW\*(C`ev_stat\*(C'\fR watchers \- those call \f(CW\*(C`stat
2165
+ ()\*(C'\fR, which is a synchronous operation.
2166
+ .PP
2167
+ For local paths, this usually doesn't matter: unless the system is very
2168
+ busy or the intervals between stat's are large, a stat call will be fast,
2169
+ as the path data is usually in memory already (except when starting the
2170
+ watcher).
2171
+ .PP
2172
+ For networked file systems, calling \f(CW\*(C`stat ()\*(C'\fR can block an indefinite
2173
+ time due to network issues, and even under good conditions, a stat call
2174
+ often takes multiple milliseconds.
2175
+ .PP
2176
+ Therefore, it is best to avoid using \f(CW\*(C`ev_stat\*(C'\fR watchers on networked
2177
+ paths, although this is fully supported by libev.
2178
+ .PP
2179
+ \fIThe special problem of stat time resolution\fR
2180
+ .IX Subsection "The special problem of stat time resolution"
2181
+ .PP
2182
+ The \f(CW\*(C`stat ()\*(C'\fR system call only supports full-second resolution portably,
2183
+ and even on systems where the resolution is higher, most file systems
2184
+ still only support whole seconds.
2185
+ .PP
2186
+ That means that, if the time is the only thing that changes, you can
2187
+ easily miss updates: on the first update, \f(CW\*(C`ev_stat\*(C'\fR detects a change and
2188
+ calls your callback, which does something. When there is another update
2189
+ within the same second, \f(CW\*(C`ev_stat\*(C'\fR will be unable to detect unless the
2190
+ stat data does change in other ways (e.g. file size).
2191
+ .PP
2192
+ The solution to this is to delay acting on a change for slightly more
2193
+ than a second (or till slightly after the next full second boundary), using
2194
+ a roughly one-second-delay \f(CW\*(C`ev_timer\*(C'\fR (e.g. \f(CW\*(C`ev_timer_set (w, 0., 1.02);
2195
+ ev_timer_again (loop, w)\*(C'\fR).
2196
+ .PP
2197
+ The \f(CW.02\fR offset is added to work around small timing inconsistencies
2198
+ of some operating systems (where the second counter of the current time
2199
+ might be be delayed. One such system is the Linux kernel, where a call to
2200
+ \&\f(CW\*(C`gettimeofday\*(C'\fR might return a timestamp with a full second later than
2201
+ a subsequent \f(CW\*(C`time\*(C'\fR call \- if the equivalent of \f(CW\*(C`time ()\*(C'\fR is used to
2202
+ update file times then there will be a small window where the kernel uses
2203
+ the previous second to update file times but libev might already execute
2204
+ the timer callback).
2205
+ .PP
2206
+ \fIWatcher-Specific Functions and Data Members\fR
2207
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2208
+ .IP "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 4
2209
+ .IX Item "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)"
2210
+ .PD 0
2211
+ .IP "ev_stat_set (ev_stat *, const char *path, ev_tstamp interval)" 4
2212
+ .IX Item "ev_stat_set (ev_stat *, const char *path, ev_tstamp interval)"
2213
+ .PD
2214
+ Configures the watcher to wait for status changes of the given
2215
+ \&\f(CW\*(C`path\*(C'\fR. The \f(CW\*(C`interval\*(C'\fR is a hint on how quickly a change is expected to
2216
+ be detected and should normally be specified as \f(CW0\fR to let libev choose
2217
+ a suitable value. The memory pointed to by \f(CW\*(C`path\*(C'\fR must point to the same
2218
+ path for as long as the watcher is active.
2219
+ .Sp
2220
+ The callback will receive an \f(CW\*(C`EV_STAT\*(C'\fR event when a change was detected,
2221
+ relative to the attributes at the time the watcher was started (or the
2222
+ last change was detected).
2223
+ .IP "ev_stat_stat (loop, ev_stat *)" 4
2224
+ .IX Item "ev_stat_stat (loop, ev_stat *)"
2225
+ Updates the stat buffer immediately with new values. If you change the
2226
+ watched path in your callback, you could call this function to avoid
2227
+ detecting this change (while introducing a race condition if you are not
2228
+ the only one changing the path). Can also be useful simply to find out the
2229
+ new values.
2230
+ .IP "ev_statdata attr [read\-only]" 4
2231
+ .IX Item "ev_statdata attr [read-only]"
2232
+ The most-recently detected attributes of the file. Although the type is
2233
+ \&\f(CW\*(C`ev_statdata\*(C'\fR, this is usually the (or one of the) \f(CW\*(C`struct stat\*(C'\fR types
2234
+ suitable for your system, but you can only rely on the POSIX-standardised
2235
+ members to be present. If the \f(CW\*(C`st_nlink\*(C'\fR member is \f(CW0\fR, then there was
2236
+ some error while \f(CW\*(C`stat\*(C'\fRing the file.
2237
+ .IP "ev_statdata prev [read\-only]" 4
2238
+ .IX Item "ev_statdata prev [read-only]"
2239
+ The previous attributes of the file. The callback gets invoked whenever
2240
+ \&\f(CW\*(C`prev\*(C'\fR != \f(CW\*(C`attr\*(C'\fR, or, more precisely, one or more of these members
2241
+ differ: \f(CW\*(C`st_dev\*(C'\fR, \f(CW\*(C`st_ino\*(C'\fR, \f(CW\*(C`st_mode\*(C'\fR, \f(CW\*(C`st_nlink\*(C'\fR, \f(CW\*(C`st_uid\*(C'\fR,
2242
+ \&\f(CW\*(C`st_gid\*(C'\fR, \f(CW\*(C`st_rdev\*(C'\fR, \f(CW\*(C`st_size\*(C'\fR, \f(CW\*(C`st_atime\*(C'\fR, \f(CW\*(C`st_mtime\*(C'\fR, \f(CW\*(C`st_ctime\*(C'\fR.
2243
+ .IP "ev_tstamp interval [read\-only]" 4
2244
+ .IX Item "ev_tstamp interval [read-only]"
2245
+ The specified interval.
2246
+ .IP "const char *path [read\-only]" 4
2247
+ .IX Item "const char *path [read-only]"
2248
+ The file system path that is being watched.
2249
+ .PP
2250
+ \fIExamples\fR
2251
+ .IX Subsection "Examples"
2252
+ .PP
2253
+ Example: Watch \f(CW\*(C`/etc/passwd\*(C'\fR for attribute changes.
2254
+ .PP
2255
+ .Vb 10
2256
+ \& static void
2257
+ \& passwd_cb (struct ev_loop *loop, ev_stat *w, int revents)
2258
+ \& {
2259
+ \& /* /etc/passwd changed in some way */
2260
+ \& if (w\->attr.st_nlink)
2261
+ \& {
2262
+ \& printf ("passwd current size %ld\en", (long)w\->attr.st_size);
2263
+ \& printf ("passwd current atime %ld\en", (long)w\->attr.st_mtime);
2264
+ \& printf ("passwd current mtime %ld\en", (long)w\->attr.st_mtime);
2265
+ \& }
2266
+ \& else
2267
+ \& /* you shalt not abuse printf for puts */
2268
+ \& puts ("wow, /etc/passwd is not there, expect problems. "
2269
+ \& "if this is windows, they already arrived\en");
2270
+ \& }
2271
+ \&
2272
+ \& ...
2273
+ \& ev_stat passwd;
2274
+ \&
2275
+ \& ev_stat_init (&passwd, passwd_cb, "/etc/passwd", 0.);
2276
+ \& ev_stat_start (loop, &passwd);
2277
+ .Ve
2278
+ .PP
2279
+ Example: Like above, but additionally use a one-second delay so we do not
2280
+ miss updates (however, frequent updates will delay processing, too, so
2281
+ one might do the work both on \f(CW\*(C`ev_stat\*(C'\fR callback invocation \fIand\fR on
2282
+ \&\f(CW\*(C`ev_timer\*(C'\fR callback invocation).
2283
+ .PP
2284
+ .Vb 2
2285
+ \& static ev_stat passwd;
2286
+ \& static ev_timer timer;
2287
+ \&
2288
+ \& static void
2289
+ \& timer_cb (EV_P_ ev_timer *w, int revents)
2290
+ \& {
2291
+ \& ev_timer_stop (EV_A_ w);
2292
+ \&
2293
+ \& /* now it\*(Aqs one second after the most recent passwd change */
2294
+ \& }
2295
+ \&
2296
+ \& static void
2297
+ \& stat_cb (EV_P_ ev_stat *w, int revents)
2298
+ \& {
2299
+ \& /* reset the one\-second timer */
2300
+ \& ev_timer_again (EV_A_ &timer);
2301
+ \& }
2302
+ \&
2303
+ \& ...
2304
+ \& ev_stat_init (&passwd, stat_cb, "/etc/passwd", 0.);
2305
+ \& ev_stat_start (loop, &passwd);
2306
+ \& ev_timer_init (&timer, timer_cb, 0., 1.02);
2307
+ .Ve
2308
+ .ie n .Sh """ev_idle"" \- when you've got nothing better to do..."
2309
+ .el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do..."
2310
+ .IX Subsection "ev_idle - when you've got nothing better to do..."
2311
+ Idle watchers trigger events when no other events of the same or higher
2312
+ priority are pending (prepare, check and other idle watchers do not count
2313
+ as receiving \*(L"events\*(R").
2314
+ .PP
2315
+ That is, as long as your process is busy handling sockets or timeouts
2316
+ (or even signals, imagine) of the same or higher priority it will not be
2317
+ triggered. But when your process is idle (or only lower-priority watchers
2318
+ are pending), the idle watchers are being called once per event loop
2319
+ iteration \- until stopped, that is, or your process receives more events
2320
+ and becomes busy again with higher priority stuff.
2321
+ .PP
2322
+ The most noteworthy effect is that as long as any idle watchers are
2323
+ active, the process will not block when waiting for new events.
2324
+ .PP
2325
+ Apart from keeping your process non-blocking (which is a useful
2326
+ effect on its own sometimes), idle watchers are a good place to do
2327
+ \&\*(L"pseudo-background processing\*(R", or delay processing stuff to after the
2328
+ event loop has handled all outstanding events.
2329
+ .PP
2330
+ \fIWatcher-Specific Functions and Data Members\fR
2331
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2332
+ .IP "ev_idle_init (ev_signal *, callback)" 4
2333
+ .IX Item "ev_idle_init (ev_signal *, callback)"
2334
+ Initialises and configures the idle watcher \- it has no parameters of any
2335
+ kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless,
2336
+ believe me.
2337
+ .PP
2338
+ \fIExamples\fR
2339
+ .IX Subsection "Examples"
2340
+ .PP
2341
+ Example: Dynamically allocate an \f(CW\*(C`ev_idle\*(C'\fR watcher, start it, and in the
2342
+ callback, free it. Also, use no error checking, as usual.
2343
+ .PP
2344
+ .Vb 7
2345
+ \& static void
2346
+ \& idle_cb (struct ev_loop *loop, ev_idle *w, int revents)
2347
+ \& {
2348
+ \& free (w);
2349
+ \& // now do something you wanted to do when the program has
2350
+ \& // no longer anything immediate to do.
2351
+ \& }
2352
+ \&
2353
+ \& ev_idle *idle_watcher = malloc (sizeof (ev_idle));
2354
+ \& ev_idle_init (idle_watcher, idle_cb);
2355
+ \& ev_idle_start (loop, idle_cb);
2356
+ .Ve
2357
+ .ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop!"
2358
+ .el .Sh "\f(CWev_prepare\fP and \f(CWev_check\fP \- customise your event loop!"
2359
+ .IX Subsection "ev_prepare and ev_check - customise your event loop!"
2360
+ Prepare and check watchers are usually (but not always) used in pairs:
2361
+ prepare watchers get invoked before the process blocks and check watchers
2362
+ afterwards.
2363
+ .PP
2364
+ You \fImust not\fR call \f(CW\*(C`ev_loop\*(C'\fR or similar functions that enter
2365
+ the current event loop from either \f(CW\*(C`ev_prepare\*(C'\fR or \f(CW\*(C`ev_check\*(C'\fR
2366
+ watchers. Other loops than the current one are fine, however. The
2367
+ rationale behind this is that you do not need to check for recursion in
2368
+ those watchers, i.e. the sequence will always be \f(CW\*(C`ev_prepare\*(C'\fR, blocking,
2369
+ \&\f(CW\*(C`ev_check\*(C'\fR so if you have one watcher of each kind they will always be
2370
+ called in pairs bracketing the blocking call.
2371
+ .PP
2372
+ Their main purpose is to integrate other event mechanisms into libev and
2373
+ their use is somewhat advanced. They could be used, for example, to track
2374
+ variable changes, implement your own watchers, integrate net-snmp or a
2375
+ coroutine library and lots more. They are also occasionally useful if
2376
+ you cache some data and want to flush it before blocking (for example,
2377
+ in X programs you might want to do an \f(CW\*(C`XFlush ()\*(C'\fR in an \f(CW\*(C`ev_prepare\*(C'\fR
2378
+ watcher).
2379
+ .PP
2380
+ This is done by examining in each prepare call which file descriptors
2381
+ need to be watched by the other library, registering \f(CW\*(C`ev_io\*(C'\fR watchers
2382
+ for them and starting an \f(CW\*(C`ev_timer\*(C'\fR watcher for any timeouts (many
2383
+ libraries provide exactly this functionality). Then, in the check watcher,
2384
+ you check for any events that occurred (by checking the pending status
2385
+ of all watchers and stopping them) and call back into the library. The
2386
+ I/O and timer callbacks will never actually be called (but must be valid
2387
+ nevertheless, because you never know, you know?).
2388
+ .PP
2389
+ As another example, the Perl Coro module uses these hooks to integrate
2390
+ coroutines into libev programs, by yielding to other active coroutines
2391
+ during each prepare and only letting the process block if no coroutines
2392
+ are ready to run (it's actually more complicated: it only runs coroutines
2393
+ with priority higher than or equal to the event loop and one coroutine
2394
+ of lower priority, but only once, using idle watchers to keep the event
2395
+ loop from blocking if lower-priority coroutines are active, thus mapping
2396
+ low-priority coroutines to idle/background tasks).
2397
+ .PP
2398
+ It is recommended to give \f(CW\*(C`ev_check\*(C'\fR watchers highest (\f(CW\*(C`EV_MAXPRI\*(C'\fR)
2399
+ priority, to ensure that they are being run before any other watchers
2400
+ after the poll (this doesn't matter for \f(CW\*(C`ev_prepare\*(C'\fR watchers).
2401
+ .PP
2402
+ Also, \f(CW\*(C`ev_check\*(C'\fR watchers (and \f(CW\*(C`ev_prepare\*(C'\fR watchers, too) should not
2403
+ activate (\*(L"feed\*(R") events into libev. While libev fully supports this, they
2404
+ might get executed before other \f(CW\*(C`ev_check\*(C'\fR watchers did their job. As
2405
+ \&\f(CW\*(C`ev_check\*(C'\fR watchers are often used to embed other (non-libev) event
2406
+ loops those other event loops might be in an unusable state until their
2407
+ \&\f(CW\*(C`ev_check\*(C'\fR watcher ran (always remind yourself to coexist peacefully with
2408
+ others).
2409
+ .PP
2410
+ \fIWatcher-Specific Functions and Data Members\fR
2411
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2412
+ .IP "ev_prepare_init (ev_prepare *, callback)" 4
2413
+ .IX Item "ev_prepare_init (ev_prepare *, callback)"
2414
+ .PD 0
2415
+ .IP "ev_check_init (ev_check *, callback)" 4
2416
+ .IX Item "ev_check_init (ev_check *, callback)"
2417
+ .PD
2418
+ Initialises and configures the prepare or check watcher \- they have no
2419
+ parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR
2420
+ macros, but using them is utterly, utterly, utterly and completely
2421
+ pointless.
2422
+ .PP
2423
+ \fIExamples\fR
2424
+ .IX Subsection "Examples"
2425
+ .PP
2426
+ There are a number of principal ways to embed other event loops or modules
2427
+ into libev. Here are some ideas on how to include libadns into libev
2428
+ (there is a Perl module named \f(CW\*(C`EV::ADNS\*(C'\fR that does this, which you could
2429
+ use as a working example. Another Perl module named \f(CW\*(C`EV::Glib\*(C'\fR embeds a
2430
+ Glib main context into libev, and finally, \f(CW\*(C`Glib::EV\*(C'\fR embeds \s-1EV\s0 into the
2431
+ Glib event loop).
2432
+ .PP
2433
+ Method 1: Add \s-1IO\s0 watchers and a timeout watcher in a prepare handler,
2434
+ and in a check watcher, destroy them and call into libadns. What follows
2435
+ is pseudo-code only of course. This requires you to either use a low
2436
+ priority for the check watcher or use \f(CW\*(C`ev_clear_pending\*(C'\fR explicitly, as
2437
+ the callbacks for the IO/timeout watchers might not have been called yet.
2438
+ .PP
2439
+ .Vb 2
2440
+ \& static ev_io iow [nfd];
2441
+ \& static ev_timer tw;
2442
+ \&
2443
+ \& static void
2444
+ \& io_cb (struct ev_loop *loop, ev_io *w, int revents)
2445
+ \& {
2446
+ \& }
2447
+ \&
2448
+ \& // create io watchers for each fd and a timer before blocking
2449
+ \& static void
2450
+ \& adns_prepare_cb (struct ev_loop *loop, ev_prepare *w, int revents)
2451
+ \& {
2452
+ \& int timeout = 3600000;
2453
+ \& struct pollfd fds [nfd];
2454
+ \& // actual code will need to loop here and realloc etc.
2455
+ \& adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ()));
2456
+ \&
2457
+ \& /* the callback is illegal, but won\*(Aqt be called as we stop during check */
2458
+ \& ev_timer_init (&tw, 0, timeout * 1e\-3);
2459
+ \& ev_timer_start (loop, &tw);
2460
+ \&
2461
+ \& // create one ev_io per pollfd
2462
+ \& for (int i = 0; i < nfd; ++i)
2463
+ \& {
2464
+ \& ev_io_init (iow + i, io_cb, fds [i].fd,
2465
+ \& ((fds [i].events & POLLIN ? EV_READ : 0)
2466
+ \& | (fds [i].events & POLLOUT ? EV_WRITE : 0)));
2467
+ \&
2468
+ \& fds [i].revents = 0;
2469
+ \& ev_io_start (loop, iow + i);
2470
+ \& }
2471
+ \& }
2472
+ \&
2473
+ \& // stop all watchers after blocking
2474
+ \& static void
2475
+ \& adns_check_cb (struct ev_loop *loop, ev_check *w, int revents)
2476
+ \& {
2477
+ \& ev_timer_stop (loop, &tw);
2478
+ \&
2479
+ \& for (int i = 0; i < nfd; ++i)
2480
+ \& {
2481
+ \& // set the relevant poll flags
2482
+ \& // could also call adns_processreadable etc. here
2483
+ \& struct pollfd *fd = fds + i;
2484
+ \& int revents = ev_clear_pending (iow + i);
2485
+ \& if (revents & EV_READ ) fd\->revents |= fd\->events & POLLIN;
2486
+ \& if (revents & EV_WRITE) fd\->revents |= fd\->events & POLLOUT;
2487
+ \&
2488
+ \& // now stop the watcher
2489
+ \& ev_io_stop (loop, iow + i);
2490
+ \& }
2491
+ \&
2492
+ \& adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop));
2493
+ \& }
2494
+ .Ve
2495
+ .PP
2496
+ Method 2: This would be just like method 1, but you run \f(CW\*(C`adns_afterpoll\*(C'\fR
2497
+ in the prepare watcher and would dispose of the check watcher.
2498
+ .PP
2499
+ Method 3: If the module to be embedded supports explicit event
2500
+ notification (libadns does), you can also make use of the actual watcher
2501
+ callbacks, and only destroy/create the watchers in the prepare watcher.
2502
+ .PP
2503
+ .Vb 5
2504
+ \& static void
2505
+ \& timer_cb (EV_P_ ev_timer *w, int revents)
2506
+ \& {
2507
+ \& adns_state ads = (adns_state)w\->data;
2508
+ \& update_now (EV_A);
2509
+ \&
2510
+ \& adns_processtimeouts (ads, &tv_now);
2511
+ \& }
2512
+ \&
2513
+ \& static void
2514
+ \& io_cb (EV_P_ ev_io *w, int revents)
2515
+ \& {
2516
+ \& adns_state ads = (adns_state)w\->data;
2517
+ \& update_now (EV_A);
2518
+ \&
2519
+ \& if (revents & EV_READ ) adns_processreadable (ads, w\->fd, &tv_now);
2520
+ \& if (revents & EV_WRITE) adns_processwriteable (ads, w\->fd, &tv_now);
2521
+ \& }
2522
+ \&
2523
+ \& // do not ever call adns_afterpoll
2524
+ .Ve
2525
+ .PP
2526
+ Method 4: Do not use a prepare or check watcher because the module you
2527
+ want to embed is not flexible enough to support it. Instead, you can
2528
+ override their poll function. The drawback with this solution is that the
2529
+ main loop is now no longer controllable by \s-1EV\s0. The \f(CW\*(C`Glib::EV\*(C'\fR module uses
2530
+ this approach, effectively embedding \s-1EV\s0 as a client into the horrible
2531
+ libglib event loop.
2532
+ .PP
2533
+ .Vb 4
2534
+ \& static gint
2535
+ \& event_poll_func (GPollFD *fds, guint nfds, gint timeout)
2536
+ \& {
2537
+ \& int got_events = 0;
2538
+ \&
2539
+ \& for (n = 0; n < nfds; ++n)
2540
+ \& // create/start io watcher that sets the relevant bits in fds[n] and increment got_events
2541
+ \&
2542
+ \& if (timeout >= 0)
2543
+ \& // create/start timer
2544
+ \&
2545
+ \& // poll
2546
+ \& ev_loop (EV_A_ 0);
2547
+ \&
2548
+ \& // stop timer again
2549
+ \& if (timeout >= 0)
2550
+ \& ev_timer_stop (EV_A_ &to);
2551
+ \&
2552
+ \& // stop io watchers again \- their callbacks should have set
2553
+ \& for (n = 0; n < nfds; ++n)
2554
+ \& ev_io_stop (EV_A_ iow [n]);
2555
+ \&
2556
+ \& return got_events;
2557
+ \& }
2558
+ .Ve
2559
+ .ie n .Sh """ev_embed"" \- when one backend isn't enough..."
2560
+ .el .Sh "\f(CWev_embed\fP \- when one backend isn't enough..."
2561
+ .IX Subsection "ev_embed - when one backend isn't enough..."
2562
+ This is a rather advanced watcher type that lets you embed one event loop
2563
+ into another (currently only \f(CW\*(C`ev_io\*(C'\fR events are supported in the embedded
2564
+ loop, other types of watchers might be handled in a delayed or incorrect
2565
+ fashion and must not be used).
2566
+ .PP
2567
+ There are primarily two reasons you would want that: work around bugs and
2568
+ prioritise I/O.
2569
+ .PP
2570
+ As an example for a bug workaround, the kqueue backend might only support
2571
+ sockets on some platform, so it is unusable as generic backend, but you
2572
+ still want to make use of it because you have many sockets and it scales
2573
+ so nicely. In this case, you would create a kqueue-based loop and embed
2574
+ it into your default loop (which might use e.g. poll). Overall operation
2575
+ will be a bit slower because first libev has to call \f(CW\*(C`poll\*(C'\fR and then
2576
+ \&\f(CW\*(C`kevent\*(C'\fR, but at least you can use both mechanisms for what they are
2577
+ best: \f(CW\*(C`kqueue\*(C'\fR for scalable sockets and \f(CW\*(C`poll\*(C'\fR if you want it to work :)
2578
+ .PP
2579
+ As for prioritising I/O: under rare circumstances you have the case where
2580
+ some fds have to be watched and handled very quickly (with low latency),
2581
+ and even priorities and idle watchers might have too much overhead. In
2582
+ this case you would put all the high priority stuff in one loop and all
2583
+ the rest in a second one, and embed the second one in the first.
2584
+ .PP
2585
+ As long as the watcher is active, the callback will be invoked every
2586
+ time there might be events pending in the embedded loop. The callback
2587
+ must then call \f(CW\*(C`ev_embed_sweep (mainloop, watcher)\*(C'\fR to make a single
2588
+ sweep and invoke their callbacks (the callback doesn't need to invoke the
2589
+ \&\f(CW\*(C`ev_embed_sweep\*(C'\fR function directly, it could also start an idle watcher
2590
+ to give the embedded loop strictly lower priority for example).
2591
+ .PP
2592
+ You can also set the callback to \f(CW0\fR, in which case the embed watcher
2593
+ will automatically execute the embedded loop sweep whenever necessary.
2594
+ .PP
2595
+ Fork detection will be handled transparently while the \f(CW\*(C`ev_embed\*(C'\fR watcher
2596
+ is active, i.e., the embedded loop will automatically be forked when the
2597
+ embedding loop forks. In other cases, the user is responsible for calling
2598
+ \&\f(CW\*(C`ev_loop_fork\*(C'\fR on the embedded loop.
2599
+ .PP
2600
+ Unfortunately, not all backends are embeddable: only the ones returned by
2601
+ \&\f(CW\*(C`ev_embeddable_backends\*(C'\fR are, which, unfortunately, does not include any
2602
+ portable one.
2603
+ .PP
2604
+ So when you want to use this feature you will always have to be prepared
2605
+ that you cannot get an embeddable loop. The recommended way to get around
2606
+ this is to have a separate variables for your embeddable loop, try to
2607
+ create it, and if that fails, use the normal loop for everything.
2608
+ .PP
2609
+ \fI\f(CI\*(C`ev_embed\*(C'\fI and fork\fR
2610
+ .IX Subsection "ev_embed and fork"
2611
+ .PP
2612
+ While the \f(CW\*(C`ev_embed\*(C'\fR watcher is running, forks in the embedding loop will
2613
+ automatically be applied to the embedded loop as well, so no special
2614
+ fork handling is required in that case. When the watcher is not running,
2615
+ however, it is still the task of the libev user to call \f(CW\*(C`ev_loop_fork ()\*(C'\fR
2616
+ as applicable.
2617
+ .PP
2618
+ \fIWatcher-Specific Functions and Data Members\fR
2619
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2620
+ .IP "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 4
2621
+ .IX Item "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)"
2622
+ .PD 0
2623
+ .IP "ev_embed_set (ev_embed *, callback, struct ev_loop *embedded_loop)" 4
2624
+ .IX Item "ev_embed_set (ev_embed *, callback, struct ev_loop *embedded_loop)"
2625
+ .PD
2626
+ Configures the watcher to embed the given loop, which must be
2627
+ embeddable. If the callback is \f(CW0\fR, then \f(CW\*(C`ev_embed_sweep\*(C'\fR will be
2628
+ invoked automatically, otherwise it is the responsibility of the callback
2629
+ to invoke it (it will continue to be called until the sweep has been done,
2630
+ if you do not want that, you need to temporarily stop the embed watcher).
2631
+ .IP "ev_embed_sweep (loop, ev_embed *)" 4
2632
+ .IX Item "ev_embed_sweep (loop, ev_embed *)"
2633
+ Make a single, non-blocking sweep over the embedded loop. This works
2634
+ similarly to \f(CW\*(C`ev_loop (embedded_loop, EVLOOP_NONBLOCK)\*(C'\fR, but in the most
2635
+ appropriate way for embedded loops.
2636
+ .IP "struct ev_loop *other [read\-only]" 4
2637
+ .IX Item "struct ev_loop *other [read-only]"
2638
+ The embedded event loop.
2639
+ .PP
2640
+ \fIExamples\fR
2641
+ .IX Subsection "Examples"
2642
+ .PP
2643
+ Example: Try to get an embeddable event loop and embed it into the default
2644
+ event loop. If that is not possible, use the default loop. The default
2645
+ loop is stored in \f(CW\*(C`loop_hi\*(C'\fR, while the embeddable loop is stored in
2646
+ \&\f(CW\*(C`loop_lo\*(C'\fR (which is \f(CW\*(C`loop_hi\*(C'\fR in the case no embeddable loop can be
2647
+ used).
2648
+ .PP
2649
+ .Vb 3
2650
+ \& struct ev_loop *loop_hi = ev_default_init (0);
2651
+ \& struct ev_loop *loop_lo = 0;
2652
+ \& ev_embed embed;
2653
+ \&
2654
+ \& // see if there is a chance of getting one that works
2655
+ \& // (remember that a flags value of 0 means autodetection)
2656
+ \& loop_lo = ev_embeddable_backends () & ev_recommended_backends ()
2657
+ \& ? ev_loop_new (ev_embeddable_backends () & ev_recommended_backends ())
2658
+ \& : 0;
2659
+ \&
2660
+ \& // if we got one, then embed it, otherwise default to loop_hi
2661
+ \& if (loop_lo)
2662
+ \& {
2663
+ \& ev_embed_init (&embed, 0, loop_lo);
2664
+ \& ev_embed_start (loop_hi, &embed);
2665
+ \& }
2666
+ \& else
2667
+ \& loop_lo = loop_hi;
2668
+ .Ve
2669
+ .PP
2670
+ Example: Check if kqueue is available but not recommended and create
2671
+ a kqueue backend for use with sockets (which usually work with any
2672
+ kqueue implementation). Store the kqueue/socket\-only event loop in
2673
+ \&\f(CW\*(C`loop_socket\*(C'\fR. (One might optionally use \f(CW\*(C`EVFLAG_NOENV\*(C'\fR, too).
2674
+ .PP
2675
+ .Vb 3
2676
+ \& struct ev_loop *loop = ev_default_init (0);
2677
+ \& struct ev_loop *loop_socket = 0;
2678
+ \& ev_embed embed;
2679
+ \&
2680
+ \& if (ev_supported_backends () & ~ev_recommended_backends () & EVBACKEND_KQUEUE)
2681
+ \& if ((loop_socket = ev_loop_new (EVBACKEND_KQUEUE))
2682
+ \& {
2683
+ \& ev_embed_init (&embed, 0, loop_socket);
2684
+ \& ev_embed_start (loop, &embed);
2685
+ \& }
2686
+ \&
2687
+ \& if (!loop_socket)
2688
+ \& loop_socket = loop;
2689
+ \&
2690
+ \& // now use loop_socket for all sockets, and loop for everything else
2691
+ .Ve
2692
+ .ie n .Sh """ev_fork"" \- the audacity to resume the event loop after a fork"
2693
+ .el .Sh "\f(CWev_fork\fP \- the audacity to resume the event loop after a fork"
2694
+ .IX Subsection "ev_fork - the audacity to resume the event loop after a fork"
2695
+ Fork watchers are called when a \f(CW\*(C`fork ()\*(C'\fR was detected (usually because
2696
+ whoever is a good citizen cared to tell libev about it by calling
2697
+ \&\f(CW\*(C`ev_default_fork\*(C'\fR or \f(CW\*(C`ev_loop_fork\*(C'\fR). The invocation is done before the
2698
+ event loop blocks next and before \f(CW\*(C`ev_check\*(C'\fR watchers are being called,
2699
+ and only in the child after the fork. If whoever good citizen calling
2700
+ \&\f(CW\*(C`ev_default_fork\*(C'\fR cheats and calls it in the wrong process, the fork
2701
+ handlers will be invoked, too, of course.
2702
+ .PP
2703
+ \fIWatcher-Specific Functions and Data Members\fR
2704
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2705
+ .IP "ev_fork_init (ev_signal *, callback)" 4
2706
+ .IX Item "ev_fork_init (ev_signal *, callback)"
2707
+ Initialises and configures the fork watcher \- it has no parameters of any
2708
+ kind. There is a \f(CW\*(C`ev_fork_set\*(C'\fR macro, but using it is utterly pointless,
2709
+ believe me.
2710
+ .ie n .Sh """ev_async"" \- how to wake up another event loop"
2711
+ .el .Sh "\f(CWev_async\fP \- how to wake up another event loop"
2712
+ .IX Subsection "ev_async - how to wake up another event loop"
2713
+ In general, you cannot use an \f(CW\*(C`ev_loop\*(C'\fR from multiple threads or other
2714
+ asynchronous sources such as signal handlers (as opposed to multiple event
2715
+ loops \- those are of course safe to use in different threads).
2716
+ .PP
2717
+ Sometimes, however, you need to wake up another event loop you do not
2718
+ control, for example because it belongs to another thread. This is what
2719
+ \&\f(CW\*(C`ev_async\*(C'\fR watchers do: as long as the \f(CW\*(C`ev_async\*(C'\fR watcher is active, you
2720
+ can signal it by calling \f(CW\*(C`ev_async_send\*(C'\fR, which is thread\- and signal
2721
+ safe.
2722
+ .PP
2723
+ This functionality is very similar to \f(CW\*(C`ev_signal\*(C'\fR watchers, as signals,
2724
+ too, are asynchronous in nature, and signals, too, will be compressed
2725
+ (i.e. the number of callback invocations may be less than the number of
2726
+ \&\f(CW\*(C`ev_async_sent\*(C'\fR calls).
2727
+ .PP
2728
+ Unlike \f(CW\*(C`ev_signal\*(C'\fR watchers, \f(CW\*(C`ev_async\*(C'\fR works with any event loop, not
2729
+ just the default loop.
2730
+ .PP
2731
+ \fIQueueing\fR
2732
+ .IX Subsection "Queueing"
2733
+ .PP
2734
+ \&\f(CW\*(C`ev_async\*(C'\fR does not support queueing of data in any way. The reason
2735
+ is that the author does not know of a simple (or any) algorithm for a
2736
+ multiple-writer-single-reader queue that works in all cases and doesn't
2737
+ need elaborate support such as pthreads.
2738
+ .PP
2739
+ That means that if you want to queue data, you have to provide your own
2740
+ queue. But at least I can tell you how to implement locking around your
2741
+ queue:
2742
+ .IP "queueing from a signal handler context" 4
2743
+ .IX Item "queueing from a signal handler context"
2744
+ To implement race-free queueing, you simply add to the queue in the signal
2745
+ handler but you block the signal handler in the watcher callback. Here is
2746
+ an example that does that for some fictitious \s-1SIGUSR1\s0 handler:
2747
+ .Sp
2748
+ .Vb 1
2749
+ \& static ev_async mysig;
2750
+ \&
2751
+ \& static void
2752
+ \& sigusr1_handler (void)
2753
+ \& {
2754
+ \& sometype data;
2755
+ \&
2756
+ \& // no locking etc.
2757
+ \& queue_put (data);
2758
+ \& ev_async_send (EV_DEFAULT_ &mysig);
2759
+ \& }
2760
+ \&
2761
+ \& static void
2762
+ \& mysig_cb (EV_P_ ev_async *w, int revents)
2763
+ \& {
2764
+ \& sometype data;
2765
+ \& sigset_t block, prev;
2766
+ \&
2767
+ \& sigemptyset (&block);
2768
+ \& sigaddset (&block, SIGUSR1);
2769
+ \& sigprocmask (SIG_BLOCK, &block, &prev);
2770
+ \&
2771
+ \& while (queue_get (&data))
2772
+ \& process (data);
2773
+ \&
2774
+ \& if (sigismember (&prev, SIGUSR1)
2775
+ \& sigprocmask (SIG_UNBLOCK, &block, 0);
2776
+ \& }
2777
+ .Ve
2778
+ .Sp
2779
+ (Note: pthreads in theory requires you to use \f(CW\*(C`pthread_setmask\*(C'\fR
2780
+ instead of \f(CW\*(C`sigprocmask\*(C'\fR when you use threads, but libev doesn't do it
2781
+ either...).
2782
+ .IP "queueing from a thread context" 4
2783
+ .IX Item "queueing from a thread context"
2784
+ The strategy for threads is different, as you cannot (easily) block
2785
+ threads but you can easily preempt them, so to queue safely you need to
2786
+ employ a traditional mutex lock, such as in this pthread example:
2787
+ .Sp
2788
+ .Vb 2
2789
+ \& static ev_async mysig;
2790
+ \& static pthread_mutex_t mymutex = PTHREAD_MUTEX_INITIALIZER;
2791
+ \&
2792
+ \& static void
2793
+ \& otherthread (void)
2794
+ \& {
2795
+ \& // only need to lock the actual queueing operation
2796
+ \& pthread_mutex_lock (&mymutex);
2797
+ \& queue_put (data);
2798
+ \& pthread_mutex_unlock (&mymutex);
2799
+ \&
2800
+ \& ev_async_send (EV_DEFAULT_ &mysig);
2801
+ \& }
2802
+ \&
2803
+ \& static void
2804
+ \& mysig_cb (EV_P_ ev_async *w, int revents)
2805
+ \& {
2806
+ \& pthread_mutex_lock (&mymutex);
2807
+ \&
2808
+ \& while (queue_get (&data))
2809
+ \& process (data);
2810
+ \&
2811
+ \& pthread_mutex_unlock (&mymutex);
2812
+ \& }
2813
+ .Ve
2814
+ .PP
2815
+ \fIWatcher-Specific Functions and Data Members\fR
2816
+ .IX Subsection "Watcher-Specific Functions and Data Members"
2817
+ .IP "ev_async_init (ev_async *, callback)" 4
2818
+ .IX Item "ev_async_init (ev_async *, callback)"
2819
+ Initialises and configures the async watcher \- it has no parameters of any
2820
+ kind. There is a \f(CW\*(C`ev_async_set\*(C'\fR macro, but using it is utterly pointless,
2821
+ trust me.
2822
+ .IP "ev_async_send (loop, ev_async *)" 4
2823
+ .IX Item "ev_async_send (loop, ev_async *)"
2824
+ Sends/signals/activates the given \f(CW\*(C`ev_async\*(C'\fR watcher, that is, feeds
2825
+ an \f(CW\*(C`EV_ASYNC\*(C'\fR event on the watcher into the event loop. Unlike
2826
+ \&\f(CW\*(C`ev_feed_event\*(C'\fR, this call is safe to do from other threads, signal or
2827
+ similar contexts (see the discussion of \f(CW\*(C`EV_ATOMIC_T\*(C'\fR in the embedding
2828
+ section below on what exactly this means).
2829
+ .Sp
2830
+ This call incurs the overhead of a system call only once per loop iteration,
2831
+ so while the overhead might be noticeable, it doesn't apply to repeated
2832
+ calls to \f(CW\*(C`ev_async_send\*(C'\fR.
2833
+ .IP "bool = ev_async_pending (ev_async *)" 4
2834
+ .IX Item "bool = ev_async_pending (ev_async *)"
2835
+ Returns a non-zero value when \f(CW\*(C`ev_async_send\*(C'\fR has been called on the
2836
+ watcher but the event has not yet been processed (or even noted) by the
2837
+ event loop.
2838
+ .Sp
2839
+ \&\f(CW\*(C`ev_async_send\*(C'\fR sets a flag in the watcher and wakes up the loop. When
2840
+ the loop iterates next and checks for the watcher to have become active,
2841
+ it will reset the flag again. \f(CW\*(C`ev_async_pending\*(C'\fR can be used to very
2842
+ quickly check whether invoking the loop might be a good idea.
2843
+ .Sp
2844
+ Not that this does \fInot\fR check whether the watcher itself is pending, only
2845
+ whether it has been requested to make this watcher pending.
2846
+ .SH "OTHER FUNCTIONS"
2847
+ .IX Header "OTHER FUNCTIONS"
2848
+ There are some other functions of possible interest. Described. Here. Now.
2849
+ .IP "ev_once (loop, int fd, int events, ev_tstamp timeout, callback)" 4
2850
+ .IX Item "ev_once (loop, int fd, int events, ev_tstamp timeout, callback)"
2851
+ This function combines a simple timer and an I/O watcher, calls your
2852
+ callback on whichever event happens first and automatically stops both
2853
+ watchers. This is useful if you want to wait for a single event on an fd
2854
+ or timeout without having to allocate/configure/start/stop/free one or
2855
+ more watchers yourself.
2856
+ .Sp
2857
+ If \f(CW\*(C`fd\*(C'\fR is less than 0, then no I/O watcher will be started and the
2858
+ \&\f(CW\*(C`events\*(C'\fR argument is being ignored. Otherwise, an \f(CW\*(C`ev_io\*(C'\fR watcher for
2859
+ the given \f(CW\*(C`fd\*(C'\fR and \f(CW\*(C`events\*(C'\fR set will be created and started.
2860
+ .Sp
2861
+ If \f(CW\*(C`timeout\*(C'\fR is less than 0, then no timeout watcher will be
2862
+ started. Otherwise an \f(CW\*(C`ev_timer\*(C'\fR watcher with after = \f(CW\*(C`timeout\*(C'\fR (and
2863
+ repeat = 0) will be started. \f(CW0\fR is a valid timeout.
2864
+ .Sp
2865
+ The callback has the type \f(CW\*(C`void (*cb)(int revents, void *arg)\*(C'\fR and gets
2866
+ passed an \f(CW\*(C`revents\*(C'\fR set like normal event callbacks (a combination of
2867
+ \&\f(CW\*(C`EV_ERROR\*(C'\fR, \f(CW\*(C`EV_READ\*(C'\fR, \f(CW\*(C`EV_WRITE\*(C'\fR or \f(CW\*(C`EV_TIMEOUT\*(C'\fR) and the \f(CW\*(C`arg\*(C'\fR
2868
+ value passed to \f(CW\*(C`ev_once\*(C'\fR. Note that it is possible to receive \fIboth\fR
2869
+ a timeout and an io event at the same time \- you probably should give io
2870
+ events precedence.
2871
+ .Sp
2872
+ Example: wait up to ten seconds for data to appear on \s-1STDIN_FILENO\s0.
2873
+ .Sp
2874
+ .Vb 7
2875
+ \& static void stdin_ready (int revents, void *arg)
2876
+ \& {
2877
+ \& if (revents & EV_READ)
2878
+ \& /* stdin might have data for us, joy! */;
2879
+ \& else if (revents & EV_TIMEOUT)
2880
+ \& /* doh, nothing entered */;
2881
+ \& }
2882
+ \&
2883
+ \& ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0);
2884
+ .Ve
2885
+ .IP "ev_feed_event (struct ev_loop *, watcher *, int revents)" 4
2886
+ .IX Item "ev_feed_event (struct ev_loop *, watcher *, int revents)"
2887
+ Feeds the given event set into the event loop, as if the specified event
2888
+ had happened for the specified watcher (which must be a pointer to an
2889
+ initialised but not necessarily started event watcher).
2890
+ .IP "ev_feed_fd_event (struct ev_loop *, int fd, int revents)" 4
2891
+ .IX Item "ev_feed_fd_event (struct ev_loop *, int fd, int revents)"
2892
+ Feed an event on the given fd, as if a file descriptor backend detected
2893
+ the given events it.
2894
+ .IP "ev_feed_signal_event (struct ev_loop *loop, int signum)" 4
2895
+ .IX Item "ev_feed_signal_event (struct ev_loop *loop, int signum)"
2896
+ Feed an event as if the given signal occurred (\f(CW\*(C`loop\*(C'\fR must be the default
2897
+ loop!).
2898
+ .SH "LIBEVENT EMULATION"
2899
+ .IX Header "LIBEVENT EMULATION"
2900
+ Libev offers a compatibility emulation layer for libevent. It cannot
2901
+ emulate the internals of libevent, so here are some usage hints:
2902
+ .IP "\(bu" 4
2903
+ Use it by including <event.h>, as usual.
2904
+ .IP "\(bu" 4
2905
+ The following members are fully supported: ev_base, ev_callback,
2906
+ ev_arg, ev_fd, ev_res, ev_events.
2907
+ .IP "\(bu" 4
2908
+ Avoid using ev_flags and the EVLIST_*\-macros, while it is
2909
+ maintained by libev, it does not work exactly the same way as in libevent (consider
2910
+ it a private \s-1API\s0).
2911
+ .IP "\(bu" 4
2912
+ Priorities are not currently supported. Initialising priorities
2913
+ will fail and all watchers will have the same priority, even though there
2914
+ is an ev_pri field.
2915
+ .IP "\(bu" 4
2916
+ In libevent, the last base created gets the signals, in libev, the
2917
+ first base created (== the default loop) gets the signals.
2918
+ .IP "\(bu" 4
2919
+ Other members are not supported.
2920
+ .IP "\(bu" 4
2921
+ The libev emulation is \fInot\fR \s-1ABI\s0 compatible to libevent, you need
2922
+ to use the libev header file and library.
2923
+ .SH "\*(C+ SUPPORT"
2924
+ .IX Header " SUPPORT"
2925
+ Libev comes with some simplistic wrapper classes for \*(C+ that mainly allow
2926
+ you to use some convenience methods to start/stop watchers and also change
2927
+ the callback model to a model using method callbacks on objects.
2928
+ .PP
2929
+ To use it,
2930
+ .PP
2931
+ .Vb 1
2932
+ \& #include <ev++.h>
2933
+ .Ve
2934
+ .PP
2935
+ This automatically includes \fIev.h\fR and puts all of its definitions (many
2936
+ of them macros) into the global namespace. All \*(C+ specific things are
2937
+ put into the \f(CW\*(C`ev\*(C'\fR namespace. It should support all the same embedding
2938
+ options as \fIev.h\fR, most notably \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR.
2939
+ .PP
2940
+ Care has been taken to keep the overhead low. The only data member the \*(C+
2941
+ classes add (compared to plain C\-style watchers) is the event loop pointer
2942
+ that the watcher is associated with (or no additional members at all if
2943
+ you disable \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR when embedding libev).
2944
+ .PP
2945
+ Currently, functions, and static and non-static member functions can be
2946
+ used as callbacks. Other types should be easy to add as long as they only
2947
+ need one additional pointer for context. If you need support for other
2948
+ types of functors please contact the author (preferably after implementing
2949
+ it).
2950
+ .PP
2951
+ Here is a list of things available in the \f(CW\*(C`ev\*(C'\fR namespace:
2952
+ .ie n .IP """ev::READ""\fR, \f(CW""ev::WRITE"" etc." 4
2953
+ .el .IP "\f(CWev::READ\fR, \f(CWev::WRITE\fR etc." 4
2954
+ .IX Item "ev::READ, ev::WRITE etc."
2955
+ These are just enum values with the same values as the \f(CW\*(C`EV_READ\*(C'\fR etc.
2956
+ macros from \fIev.h\fR.
2957
+ .ie n .IP """ev::tstamp""\fR, \f(CW""ev::now""" 4
2958
+ .el .IP "\f(CWev::tstamp\fR, \f(CWev::now\fR" 4
2959
+ .IX Item "ev::tstamp, ev::now"
2960
+ Aliases to the same types/functions as with the \f(CW\*(C`ev_\*(C'\fR prefix.
2961
+ .ie n .IP """ev::io""\fR, \f(CW""ev::timer""\fR, \f(CW""ev::periodic""\fR, \f(CW""ev::idle""\fR, \f(CW""ev::sig"" etc." 4
2962
+ .el .IP "\f(CWev::io\fR, \f(CWev::timer\fR, \f(CWev::periodic\fR, \f(CWev::idle\fR, \f(CWev::sig\fR etc." 4
2963
+ .IX Item "ev::io, ev::timer, ev::periodic, ev::idle, ev::sig etc."
2964
+ For each \f(CW\*(C`ev_TYPE\*(C'\fR watcher in \fIev.h\fR there is a corresponding class of
2965
+ the same name in the \f(CW\*(C`ev\*(C'\fR namespace, with the exception of \f(CW\*(C`ev_signal\*(C'\fR
2966
+ which is called \f(CW\*(C`ev::sig\*(C'\fR to avoid clashes with the \f(CW\*(C`signal\*(C'\fR macro
2967
+ defines by many implementations.
2968
+ .Sp
2969
+ All of those classes have these methods:
2970
+ .RS 4
2971
+ .IP "ev::TYPE::TYPE ()" 4
2972
+ .IX Item "ev::TYPE::TYPE ()"
2973
+ .PD 0
2974
+ .IP "ev::TYPE::TYPE (struct ev_loop *)" 4
2975
+ .IX Item "ev::TYPE::TYPE (struct ev_loop *)"
2976
+ .IP "ev::TYPE::~TYPE" 4
2977
+ .IX Item "ev::TYPE::~TYPE"
2978
+ .PD
2979
+ The constructor (optionally) takes an event loop to associate the watcher
2980
+ with. If it is omitted, it will use \f(CW\*(C`EV_DEFAULT\*(C'\fR.
2981
+ .Sp
2982
+ The constructor calls \f(CW\*(C`ev_init\*(C'\fR for you, which means you have to call the
2983
+ \&\f(CW\*(C`set\*(C'\fR method before starting it.
2984
+ .Sp
2985
+ It will not set a callback, however: You have to call the templated \f(CW\*(C`set\*(C'\fR
2986
+ method to set a callback before you can start the watcher.
2987
+ .Sp
2988
+ (The reason why you have to use a method is a limitation in \*(C+ which does
2989
+ not allow explicit template arguments for constructors).
2990
+ .Sp
2991
+ The destructor automatically stops the watcher if it is active.
2992
+ .IP "w\->set<class, &class::method> (object *)" 4
2993
+ .IX Item "w->set<class, &class::method> (object *)"
2994
+ This method sets the callback method to call. The method has to have a
2995
+ signature of \f(CW\*(C`void (*)(ev_TYPE &, int)\*(C'\fR, it receives the watcher as
2996
+ first argument and the \f(CW\*(C`revents\*(C'\fR as second. The object must be given as
2997
+ parameter and is stored in the \f(CW\*(C`data\*(C'\fR member of the watcher.
2998
+ .Sp
2999
+ This method synthesizes efficient thunking code to call your method from
3000
+ the C callback that libev requires. If your compiler can inline your
3001
+ callback (i.e. it is visible to it at the place of the \f(CW\*(C`set\*(C'\fR call and
3002
+ your compiler is good :), then the method will be fully inlined into the
3003
+ thunking function, making it as fast as a direct C callback.
3004
+ .Sp
3005
+ Example: simple class declaration and watcher initialisation
3006
+ .Sp
3007
+ .Vb 4
3008
+ \& struct myclass
3009
+ \& {
3010
+ \& void io_cb (ev::io &w, int revents) { }
3011
+ \& }
3012
+ \&
3013
+ \& myclass obj;
3014
+ \& ev::io iow;
3015
+ \& iow.set <myclass, &myclass::io_cb> (&obj);
3016
+ .Ve
3017
+ .IP "w\->set (object *)" 4
3018
+ .IX Item "w->set (object *)"
3019
+ This is an \fBexperimental\fR feature that might go away in a future version.
3020
+ .Sp
3021
+ This is a variation of a method callback \- leaving out the method to call
3022
+ will default the method to \f(CW\*(C`operator ()\*(C'\fR, which makes it possible to use
3023
+ functor objects without having to manually specify the \f(CW\*(C`operator ()\*(C'\fR all
3024
+ the time. Incidentally, you can then also leave out the template argument
3025
+ list.
3026
+ .Sp
3027
+ The \f(CW\*(C`operator ()\*(C'\fR method prototype must be \f(CW\*(C`void operator ()(watcher &w,
3028
+ int revents)\*(C'\fR.
3029
+ .Sp
3030
+ See the method\-\f(CW\*(C`set\*(C'\fR above for more details.
3031
+ .Sp
3032
+ Example: use a functor object as callback.
3033
+ .Sp
3034
+ .Vb 7
3035
+ \& struct myfunctor
3036
+ \& {
3037
+ \& void operator() (ev::io &w, int revents)
3038
+ \& {
3039
+ \& ...
3040
+ \& }
3041
+ \& }
3042
+ \&
3043
+ \& myfunctor f;
3044
+ \&
3045
+ \& ev::io w;
3046
+ \& w.set (&f);
3047
+ .Ve
3048
+ .IP "w\->set<function> (void *data = 0)" 4
3049
+ .IX Item "w->set<function> (void *data = 0)"
3050
+ Also sets a callback, but uses a static method or plain function as
3051
+ callback. The optional \f(CW\*(C`data\*(C'\fR argument will be stored in the watcher's
3052
+ \&\f(CW\*(C`data\*(C'\fR member and is free for you to use.
3053
+ .Sp
3054
+ The prototype of the \f(CW\*(C`function\*(C'\fR must be \f(CW\*(C`void (*)(ev::TYPE &w, int)\*(C'\fR.
3055
+ .Sp
3056
+ See the method\-\f(CW\*(C`set\*(C'\fR above for more details.
3057
+ .Sp
3058
+ Example: Use a plain function as callback.
3059
+ .Sp
3060
+ .Vb 2
3061
+ \& static void io_cb (ev::io &w, int revents) { }
3062
+ \& iow.set <io_cb> ();
3063
+ .Ve
3064
+ .IP "w\->set (struct ev_loop *)" 4
3065
+ .IX Item "w->set (struct ev_loop *)"
3066
+ Associates a different \f(CW\*(C`struct ev_loop\*(C'\fR with this watcher. You can only
3067
+ do this when the watcher is inactive (and not pending either).
3068
+ .IP "w\->set ([arguments])" 4
3069
+ .IX Item "w->set ([arguments])"
3070
+ Basically the same as \f(CW\*(C`ev_TYPE_set\*(C'\fR, with the same arguments. Must be
3071
+ called at least once. Unlike the C counterpart, an active watcher gets
3072
+ automatically stopped and restarted when reconfiguring it with this
3073
+ method.
3074
+ .IP "w\->start ()" 4
3075
+ .IX Item "w->start ()"
3076
+ Starts the watcher. Note that there is no \f(CW\*(C`loop\*(C'\fR argument, as the
3077
+ constructor already stores the event loop.
3078
+ .IP "w\->stop ()" 4
3079
+ .IX Item "w->stop ()"
3080
+ Stops the watcher if it is active. Again, no \f(CW\*(C`loop\*(C'\fR argument.
3081
+ .ie n .IP "w\->again () (""ev::timer""\fR, \f(CW""ev::periodic"" only)" 4
3082
+ .el .IP "w\->again () (\f(CWev::timer\fR, \f(CWev::periodic\fR only)" 4
3083
+ .IX Item "w->again () (ev::timer, ev::periodic only)"
3084
+ For \f(CW\*(C`ev::timer\*(C'\fR and \f(CW\*(C`ev::periodic\*(C'\fR, this invokes the corresponding
3085
+ \&\f(CW\*(C`ev_TYPE_again\*(C'\fR function.
3086
+ .ie n .IP "w\->sweep () (""ev::embed"" only)" 4
3087
+ .el .IP "w\->sweep () (\f(CWev::embed\fR only)" 4
3088
+ .IX Item "w->sweep () (ev::embed only)"
3089
+ Invokes \f(CW\*(C`ev_embed_sweep\*(C'\fR.
3090
+ .ie n .IP "w\->update () (""ev::stat"" only)" 4
3091
+ .el .IP "w\->update () (\f(CWev::stat\fR only)" 4
3092
+ .IX Item "w->update () (ev::stat only)"
3093
+ Invokes \f(CW\*(C`ev_stat_stat\*(C'\fR.
3094
+ .RE
3095
+ .RS 4
3096
+ .RE
3097
+ .PP
3098
+ Example: Define a class with an \s-1IO\s0 and idle watcher, start one of them in
3099
+ the constructor.
3100
+ .PP
3101
+ .Vb 4
3102
+ \& class myclass
3103
+ \& {
3104
+ \& ev::io io ; void io_cb (ev::io &w, int revents);
3105
+ \& ev::idle idle; void idle_cb (ev::idle &w, int revents);
3106
+ \&
3107
+ \& myclass (int fd)
3108
+ \& {
3109
+ \& io .set <myclass, &myclass::io_cb > (this);
3110
+ \& idle.set <myclass, &myclass::idle_cb> (this);
3111
+ \&
3112
+ \& io.start (fd, ev::READ);
3113
+ \& }
3114
+ \& };
3115
+ .Ve
3116
+ .SH "OTHER LANGUAGE BINDINGS"
3117
+ .IX Header "OTHER LANGUAGE BINDINGS"
3118
+ Libev does not offer other language bindings itself, but bindings for a
3119
+ number of languages exist in the form of third-party packages. If you know
3120
+ any interesting language binding in addition to the ones listed here, drop
3121
+ me a note.
3122
+ .IP "Perl" 4
3123
+ .IX Item "Perl"
3124
+ The \s-1EV\s0 module implements the full libev \s-1API\s0 and is actually used to test
3125
+ libev. \s-1EV\s0 is developed together with libev. Apart from the \s-1EV\s0 core module,
3126
+ there are additional modules that implement libev-compatible interfaces
3127
+ to \f(CW\*(C`libadns\*(C'\fR (\f(CW\*(C`EV::ADNS\*(C'\fR, but \f(CW\*(C`AnyEvent::DNS\*(C'\fR is preferred nowadays),
3128
+ \&\f(CW\*(C`Net::SNMP\*(C'\fR (\f(CW\*(C`Net::SNMP::EV\*(C'\fR) and the \f(CW\*(C`libglib\*(C'\fR event core (\f(CW\*(C`Glib::EV\*(C'\fR
3129
+ and \f(CW\*(C`EV::Glib\*(C'\fR).
3130
+ .Sp
3131
+ It can be found and installed via \s-1CPAN\s0, its homepage is at
3132
+ <http://software.schmorp.de/pkg/EV>.
3133
+ .IP "Python" 4
3134
+ .IX Item "Python"
3135
+ Python bindings can be found at <http://code.google.com/p/pyev/>. It
3136
+ seems to be quite complete and well-documented. Note, however, that the
3137
+ patch they require for libev is outright dangerous as it breaks the \s-1ABI\s0
3138
+ for everybody else, and therefore, should never be applied in an installed
3139
+ libev (if python requires an incompatible \s-1ABI\s0 then it needs to embed
3140
+ libev).
3141
+ .IP "Ruby" 4
3142
+ .IX Item "Ruby"
3143
+ Tony Arcieri has written a ruby extension that offers access to a subset
3144
+ of the libev \s-1API\s0 and adds file handle abstractions, asynchronous \s-1DNS\s0 and
3145
+ more on top of it. It can be found via gem servers. Its homepage is at
3146
+ <http://rev.rubyforge.org/>.
3147
+ .Sp
3148
+ Roger Pack reports that using the link order \f(CW\*(C`\-lws2_32 \-lmsvcrt\-ruby\-190\*(C'\fR
3149
+ makes rev work even on mingw.
3150
+ .IP "D" 4
3151
+ .IX Item "D"
3152
+ Leandro Lucarella has written a D language binding (\fIev.d\fR) for libev, to
3153
+ be found at <http://proj.llucax.com.ar/wiki/evd>.
3154
+ .IP "Ocaml" 4
3155
+ .IX Item "Ocaml"
3156
+ Erkki Seppala has written Ocaml bindings for libev, to be found at
3157
+ <http://modeemi.cs.tut.fi/~flux/software/ocaml\-ev/>.
3158
+ .SH "MACRO MAGIC"
3159
+ .IX Header "MACRO MAGIC"
3160
+ Libev can be compiled with a variety of options, the most fundamental
3161
+ of which is \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR. This option determines whether (most)
3162
+ functions and callbacks have an initial \f(CW\*(C`struct ev_loop *\*(C'\fR argument.
3163
+ .PP
3164
+ To make it easier to write programs that cope with either variant, the
3165
+ following macros are defined:
3166
+ .ie n .IP """EV_A""\fR, \f(CW""EV_A_""" 4
3167
+ .el .IP "\f(CWEV_A\fR, \f(CWEV_A_\fR" 4
3168
+ .IX Item "EV_A, EV_A_"
3169
+ This provides the loop \fIargument\fR for functions, if one is required (\*(L"ev
3170
+ loop argument\*(R"). The \f(CW\*(C`EV_A\*(C'\fR form is used when this is the sole argument,
3171
+ \&\f(CW\*(C`EV_A_\*(C'\fR is used when other arguments are following. Example:
3172
+ .Sp
3173
+ .Vb 3
3174
+ \& ev_unref (EV_A);
3175
+ \& ev_timer_add (EV_A_ watcher);
3176
+ \& ev_loop (EV_A_ 0);
3177
+ .Ve
3178
+ .Sp
3179
+ It assumes the variable \f(CW\*(C`loop\*(C'\fR of type \f(CW\*(C`struct ev_loop *\*(C'\fR is in scope,
3180
+ which is often provided by the following macro.
3181
+ .ie n .IP """EV_P""\fR, \f(CW""EV_P_""" 4
3182
+ .el .IP "\f(CWEV_P\fR, \f(CWEV_P_\fR" 4
3183
+ .IX Item "EV_P, EV_P_"
3184
+ This provides the loop \fIparameter\fR for functions, if one is required (\*(L"ev
3185
+ loop parameter\*(R"). The \f(CW\*(C`EV_P\*(C'\fR form is used when this is the sole parameter,
3186
+ \&\f(CW\*(C`EV_P_\*(C'\fR is used when other parameters are following. Example:
3187
+ .Sp
3188
+ .Vb 2
3189
+ \& // this is how ev_unref is being declared
3190
+ \& static void ev_unref (EV_P);
3191
+ \&
3192
+ \& // this is how you can declare your typical callback
3193
+ \& static void cb (EV_P_ ev_timer *w, int revents)
3194
+ .Ve
3195
+ .Sp
3196
+ It declares a parameter \f(CW\*(C`loop\*(C'\fR of type \f(CW\*(C`struct ev_loop *\*(C'\fR, quite
3197
+ suitable for use with \f(CW\*(C`EV_A\*(C'\fR.
3198
+ .ie n .IP """EV_DEFAULT""\fR, \f(CW""EV_DEFAULT_""" 4
3199
+ .el .IP "\f(CWEV_DEFAULT\fR, \f(CWEV_DEFAULT_\fR" 4
3200
+ .IX Item "EV_DEFAULT, EV_DEFAULT_"
3201
+ Similar to the other two macros, this gives you the value of the default
3202
+ loop, if multiple loops are supported (\*(L"ev loop default\*(R").
3203
+ .ie n .IP """EV_DEFAULT_UC""\fR, \f(CW""EV_DEFAULT_UC_""" 4
3204
+ .el .IP "\f(CWEV_DEFAULT_UC\fR, \f(CWEV_DEFAULT_UC_\fR" 4
3205
+ .IX Item "EV_DEFAULT_UC, EV_DEFAULT_UC_"
3206
+ Usage identical to \f(CW\*(C`EV_DEFAULT\*(C'\fR and \f(CW\*(C`EV_DEFAULT_\*(C'\fR, but requires that the
3207
+ default loop has been initialised (\f(CW\*(C`UC\*(C'\fR == unchecked). Their behaviour
3208
+ is undefined when the default loop has not been initialised by a previous
3209
+ execution of \f(CW\*(C`EV_DEFAULT\*(C'\fR, \f(CW\*(C`EV_DEFAULT_\*(C'\fR or \f(CW\*(C`ev_default_init (...)\*(C'\fR.
3210
+ .Sp
3211
+ It is often prudent to use \f(CW\*(C`EV_DEFAULT\*(C'\fR when initialising the first
3212
+ watcher in a function but use \f(CW\*(C`EV_DEFAULT_UC\*(C'\fR afterwards.
3213
+ .PP
3214
+ Example: Declare and initialise a check watcher, utilising the above
3215
+ macros so it will work regardless of whether multiple loops are supported
3216
+ or not.
3217
+ .PP
3218
+ .Vb 5
3219
+ \& static void
3220
+ \& check_cb (EV_P_ ev_timer *w, int revents)
3221
+ \& {
3222
+ \& ev_check_stop (EV_A_ w);
3223
+ \& }
3224
+ \&
3225
+ \& ev_check check;
3226
+ \& ev_check_init (&check, check_cb);
3227
+ \& ev_check_start (EV_DEFAULT_ &check);
3228
+ \& ev_loop (EV_DEFAULT_ 0);
3229
+ .Ve
3230
+ .SH "EMBEDDING"
3231
+ .IX Header "EMBEDDING"
3232
+ Libev can (and often is) directly embedded into host
3233
+ applications. Examples of applications that embed it include the Deliantra
3234
+ Game Server, the \s-1EV\s0 perl module, the \s-1GNU\s0 Virtual Private Ethernet (gvpe)
3235
+ and rxvt-unicode.
3236
+ .PP
3237
+ The goal is to enable you to just copy the necessary files into your
3238
+ source directory without having to change even a single line in them, so
3239
+ you can easily upgrade by simply copying (or having a checked-out copy of
3240
+ libev somewhere in your source tree).
3241
+ .Sh "\s-1FILESETS\s0"
3242
+ .IX Subsection "FILESETS"
3243
+ Depending on what features you need you need to include one or more sets of files
3244
+ in your application.
3245
+ .PP
3246
+ \fI\s-1CORE\s0 \s-1EVENT\s0 \s-1LOOP\s0\fR
3247
+ .IX Subsection "CORE EVENT LOOP"
3248
+ .PP
3249
+ To include only the libev core (all the \f(CW\*(C`ev_*\*(C'\fR functions), with manual
3250
+ configuration (no autoconf):
3251
+ .PP
3252
+ .Vb 2
3253
+ \& #define EV_STANDALONE 1
3254
+ \& #include "ev.c"
3255
+ .Ve
3256
+ .PP
3257
+ This will automatically include \fIev.h\fR, too, and should be done in a
3258
+ single C source file only to provide the function implementations. To use
3259
+ it, do the same for \fIev.h\fR in all files wishing to use this \s-1API\s0 (best
3260
+ done by writing a wrapper around \fIev.h\fR that you can include instead and
3261
+ where you can put other configuration options):
3262
+ .PP
3263
+ .Vb 2
3264
+ \& #define EV_STANDALONE 1
3265
+ \& #include "ev.h"
3266
+ .Ve
3267
+ .PP
3268
+ Both header files and implementation files can be compiled with a \*(C+
3269
+ compiler (at least, that's a stated goal, and breakage will be treated
3270
+ as a bug).
3271
+ .PP
3272
+ You need the following files in your source tree, or in a directory
3273
+ in your include path (e.g. in libev/ when using \-Ilibev):
3274
+ .PP
3275
+ .Vb 4
3276
+ \& ev.h
3277
+ \& ev.c
3278
+ \& ev_vars.h
3279
+ \& ev_wrap.h
3280
+ \&
3281
+ \& ev_win32.c required on win32 platforms only
3282
+ \&
3283
+ \& ev_select.c only when select backend is enabled (which is enabled by default)
3284
+ \& ev_poll.c only when poll backend is enabled (disabled by default)
3285
+ \& ev_epoll.c only when the epoll backend is enabled (disabled by default)
3286
+ \& ev_kqueue.c only when the kqueue backend is enabled (disabled by default)
3287
+ \& ev_port.c only when the solaris port backend is enabled (disabled by default)
3288
+ .Ve
3289
+ .PP
3290
+ \&\fIev.c\fR includes the backend files directly when enabled, so you only need
3291
+ to compile this single file.
3292
+ .PP
3293
+ \fI\s-1LIBEVENT\s0 \s-1COMPATIBILITY\s0 \s-1API\s0\fR
3294
+ .IX Subsection "LIBEVENT COMPATIBILITY API"
3295
+ .PP
3296
+ To include the libevent compatibility \s-1API\s0, also include:
3297
+ .PP
3298
+ .Vb 1
3299
+ \& #include "event.c"
3300
+ .Ve
3301
+ .PP
3302
+ in the file including \fIev.c\fR, and:
3303
+ .PP
3304
+ .Vb 1
3305
+ \& #include "event.h"
3306
+ .Ve
3307
+ .PP
3308
+ in the files that want to use the libevent \s-1API\s0. This also includes \fIev.h\fR.
3309
+ .PP
3310
+ You need the following additional files for this:
3311
+ .PP
3312
+ .Vb 2
3313
+ \& event.h
3314
+ \& event.c
3315
+ .Ve
3316
+ .PP
3317
+ \fI\s-1AUTOCONF\s0 \s-1SUPPORT\s0\fR
3318
+ .IX Subsection "AUTOCONF SUPPORT"
3319
+ .PP
3320
+ Instead of using \f(CW\*(C`EV_STANDALONE=1\*(C'\fR and providing your configuration in
3321
+ whatever way you want, you can also \f(CW\*(C`m4_include([libev.m4])\*(C'\fR in your
3322
+ \&\fIconfigure.ac\fR and leave \f(CW\*(C`EV_STANDALONE\*(C'\fR undefined. \fIev.c\fR will then
3323
+ include \fIconfig.h\fR and configure itself accordingly.
3324
+ .PP
3325
+ For this of course you need the m4 file:
3326
+ .PP
3327
+ .Vb 1
3328
+ \& libev.m4
3329
+ .Ve
3330
+ .Sh "\s-1PREPROCESSOR\s0 \s-1SYMBOLS/MACROS\s0"
3331
+ .IX Subsection "PREPROCESSOR SYMBOLS/MACROS"
3332
+ Libev can be configured via a variety of preprocessor symbols you have to
3333
+ define before including any of its files. The default in the absence of
3334
+ autoconf is documented for every option.
3335
+ .IP "\s-1EV_STANDALONE\s0" 4
3336
+ .IX Item "EV_STANDALONE"
3337
+ Must always be \f(CW1\fR if you do not use autoconf configuration, which
3338
+ keeps libev from including \fIconfig.h\fR, and it also defines dummy
3339
+ implementations for some libevent functions (such as logging, which is not
3340
+ supported). It will also not define any of the structs usually found in
3341
+ \&\fIevent.h\fR that are not directly supported by the libev core alone.
3342
+ .Sp
3343
+ In stanbdalone mode, libev will still try to automatically deduce the
3344
+ configuration, but has to be more conservative.
3345
+ .IP "\s-1EV_USE_MONOTONIC\s0" 4
3346
+ .IX Item "EV_USE_MONOTONIC"
3347
+ If defined to be \f(CW1\fR, libev will try to detect the availability of the
3348
+ monotonic clock option at both compile time and runtime. Otherwise no
3349
+ use of the monotonic clock option will be attempted. If you enable this,
3350
+ you usually have to link against librt or something similar. Enabling it
3351
+ when the functionality isn't available is safe, though, although you have
3352
+ to make sure you link against any libraries where the \f(CW\*(C`clock_gettime\*(C'\fR
3353
+ function is hiding in (often \fI\-lrt\fR). See also \f(CW\*(C`EV_USE_CLOCK_SYSCALL\*(C'\fR.
3354
+ .IP "\s-1EV_USE_REALTIME\s0" 4
3355
+ .IX Item "EV_USE_REALTIME"
3356
+ If defined to be \f(CW1\fR, libev will try to detect the availability of the
3357
+ real-time clock option at compile time (and assume its availability
3358
+ at runtime if successful). Otherwise no use of the real-time clock
3359
+ option will be attempted. This effectively replaces \f(CW\*(C`gettimeofday\*(C'\fR
3360
+ by \f(CW\*(C`clock_get (CLOCK_REALTIME, ...)\*(C'\fR and will not normally affect
3361
+ correctness. See the note about libraries in the description of
3362
+ \&\f(CW\*(C`EV_USE_MONOTONIC\*(C'\fR, though. Defaults to the opposite value of
3363
+ \&\f(CW\*(C`EV_USE_CLOCK_SYSCALL\*(C'\fR.
3364
+ .IP "\s-1EV_USE_CLOCK_SYSCALL\s0" 4
3365
+ .IX Item "EV_USE_CLOCK_SYSCALL"
3366
+ If defined to be \f(CW1\fR, libev will try to use a direct syscall instead
3367
+ of calling the system-provided \f(CW\*(C`clock_gettime\*(C'\fR function. This option
3368
+ exists because on GNU/Linux, \f(CW\*(C`clock_gettime\*(C'\fR is in \f(CW\*(C`librt\*(C'\fR, but \f(CW\*(C`librt\*(C'\fR
3369
+ unconditionally pulls in \f(CW\*(C`libpthread\*(C'\fR, slowing down single-threaded
3370
+ programs needlessly. Using a direct syscall is slightly slower (in
3371
+ theory), because no optimised vdso implementation can be used, but avoids
3372
+ the pthread dependency. Defaults to \f(CW1\fR on GNU/Linux with glibc 2.x or
3373
+ higher, as it simplifies linking (no need for \f(CW\*(C`\-lrt\*(C'\fR).
3374
+ .IP "\s-1EV_USE_NANOSLEEP\s0" 4
3375
+ .IX Item "EV_USE_NANOSLEEP"
3376
+ If defined to be \f(CW1\fR, libev will assume that \f(CW\*(C`nanosleep ()\*(C'\fR is available
3377
+ and will use it for delays. Otherwise it will use \f(CW\*(C`select ()\*(C'\fR.
3378
+ .IP "\s-1EV_USE_EVENTFD\s0" 4
3379
+ .IX Item "EV_USE_EVENTFD"
3380
+ If defined to be \f(CW1\fR, then libev will assume that \f(CW\*(C`eventfd ()\*(C'\fR is
3381
+ available and will probe for kernel support at runtime. This will improve
3382
+ \&\f(CW\*(C`ev_signal\*(C'\fR and \f(CW\*(C`ev_async\*(C'\fR performance and reduce resource consumption.
3383
+ If undefined, it will be enabled if the headers indicate GNU/Linux + Glibc
3384
+ 2.7 or newer, otherwise disabled.
3385
+ .IP "\s-1EV_USE_SELECT\s0" 4
3386
+ .IX Item "EV_USE_SELECT"
3387
+ If undefined or defined to be \f(CW1\fR, libev will compile in support for the
3388
+ \&\f(CW\*(C`select\*(C'\fR(2) backend. No attempt at auto-detection will be done: if no
3389
+ other method takes over, select will be it. Otherwise the select backend
3390
+ will not be compiled in.
3391
+ .IP "\s-1EV_SELECT_USE_FD_SET\s0" 4
3392
+ .IX Item "EV_SELECT_USE_FD_SET"
3393
+ If defined to \f(CW1\fR, then the select backend will use the system \f(CW\*(C`fd_set\*(C'\fR
3394
+ structure. This is useful if libev doesn't compile due to a missing
3395
+ \&\f(CW\*(C`NFDBITS\*(C'\fR or \f(CW\*(C`fd_mask\*(C'\fR definition or it mis-guesses the bitset layout
3396
+ on exotic systems. This usually limits the range of file descriptors to
3397
+ some low limit such as 1024 or might have other limitations (winsocket
3398
+ only allows 64 sockets). The \f(CW\*(C`FD_SETSIZE\*(C'\fR macro, set before compilation,
3399
+ configures the maximum size of the \f(CW\*(C`fd_set\*(C'\fR.
3400
+ .IP "\s-1EV_SELECT_IS_WINSOCKET\s0" 4
3401
+ .IX Item "EV_SELECT_IS_WINSOCKET"
3402
+ When defined to \f(CW1\fR, the select backend will assume that
3403
+ select/socket/connect etc. don't understand file descriptors but
3404
+ wants osf handles on win32 (this is the case when the select to
3405
+ be used is the winsock select). This means that it will call
3406
+ \&\f(CW\*(C`_get_osfhandle\*(C'\fR on the fd to convert it to an \s-1OS\s0 handle. Otherwise,
3407
+ it is assumed that all these functions actually work on fds, even
3408
+ on win32. Should not be defined on non\-win32 platforms.
3409
+ .IP "\s-1EV_FD_TO_WIN32_HANDLE\s0" 4
3410
+ .IX Item "EV_FD_TO_WIN32_HANDLE"
3411
+ If \f(CW\*(C`EV_SELECT_IS_WINSOCKET\*(C'\fR is enabled, then libev needs a way to map
3412
+ file descriptors to socket handles. When not defining this symbol (the
3413
+ default), then libev will call \f(CW\*(C`_get_osfhandle\*(C'\fR, which is usually
3414
+ correct. In some cases, programs use their own file descriptor management,
3415
+ in which case they can provide this function to map fds to socket handles.
3416
+ .IP "\s-1EV_USE_POLL\s0" 4
3417
+ .IX Item "EV_USE_POLL"
3418
+ If defined to be \f(CW1\fR, libev will compile in support for the \f(CW\*(C`poll\*(C'\fR(2)
3419
+ backend. Otherwise it will be enabled on non\-win32 platforms. It
3420
+ takes precedence over select.
3421
+ .IP "\s-1EV_USE_EPOLL\s0" 4
3422
+ .IX Item "EV_USE_EPOLL"
3423
+ If defined to be \f(CW1\fR, libev will compile in support for the Linux
3424
+ \&\f(CW\*(C`epoll\*(C'\fR(7) backend. Its availability will be detected at runtime,
3425
+ otherwise another method will be used as fallback. This is the preferred
3426
+ backend for GNU/Linux systems. If undefined, it will be enabled if the
3427
+ headers indicate GNU/Linux + Glibc 2.4 or newer, otherwise disabled.
3428
+ .IP "\s-1EV_USE_KQUEUE\s0" 4
3429
+ .IX Item "EV_USE_KQUEUE"
3430
+ If defined to be \f(CW1\fR, libev will compile in support for the \s-1BSD\s0 style
3431
+ \&\f(CW\*(C`kqueue\*(C'\fR(2) backend. Its actual availability will be detected at runtime,
3432
+ otherwise another method will be used as fallback. This is the preferred
3433
+ backend for \s-1BSD\s0 and BSD-like systems, although on most BSDs kqueue only
3434
+ supports some types of fds correctly (the only platform we found that
3435
+ supports ptys for example was NetBSD), so kqueue might be compiled in, but
3436
+ not be used unless explicitly requested. The best way to use it is to find
3437
+ out whether kqueue supports your type of fd properly and use an embedded
3438
+ kqueue loop.
3439
+ .IP "\s-1EV_USE_PORT\s0" 4
3440
+ .IX Item "EV_USE_PORT"
3441
+ If defined to be \f(CW1\fR, libev will compile in support for the Solaris
3442
+ 10 port style backend. Its availability will be detected at runtime,
3443
+ otherwise another method will be used as fallback. This is the preferred
3444
+ backend for Solaris 10 systems.
3445
+ .IP "\s-1EV_USE_DEVPOLL\s0" 4
3446
+ .IX Item "EV_USE_DEVPOLL"
3447
+ Reserved for future expansion, works like the \s-1USE\s0 symbols above.
3448
+ .IP "\s-1EV_USE_INOTIFY\s0" 4
3449
+ .IX Item "EV_USE_INOTIFY"
3450
+ If defined to be \f(CW1\fR, libev will compile in support for the Linux inotify
3451
+ interface to speed up \f(CW\*(C`ev_stat\*(C'\fR watchers. Its actual availability will
3452
+ be detected at runtime. If undefined, it will be enabled if the headers
3453
+ indicate GNU/Linux + Glibc 2.4 or newer, otherwise disabled.
3454
+ .IP "\s-1EV_ATOMIC_T\s0" 4
3455
+ .IX Item "EV_ATOMIC_T"
3456
+ Libev requires an integer type (suitable for storing \f(CW0\fR or \f(CW1\fR) whose
3457
+ access is atomic with respect to other threads or signal contexts. No such
3458
+ type is easily found in the C language, so you can provide your own type
3459
+ that you know is safe for your purposes. It is used both for signal handler \*(L"locking\*(R"
3460
+ as well as for signal and thread safety in \f(CW\*(C`ev_async\*(C'\fR watchers.
3461
+ .Sp
3462
+ In the absence of this define, libev will use \f(CW\*(C`sig_atomic_t volatile\*(C'\fR
3463
+ (from \fIsignal.h\fR), which is usually good enough on most platforms.
3464
+ .IP "\s-1EV_H\s0" 4
3465
+ .IX Item "EV_H"
3466
+ The name of the \fIev.h\fR header file used to include it. The default if
3467
+ undefined is \f(CW"ev.h"\fR in \fIevent.h\fR, \fIev.c\fR and \fIev++.h\fR. This can be
3468
+ used to virtually rename the \fIev.h\fR header file in case of conflicts.
3469
+ .IP "\s-1EV_CONFIG_H\s0" 4
3470
+ .IX Item "EV_CONFIG_H"
3471
+ If \f(CW\*(C`EV_STANDALONE\*(C'\fR isn't \f(CW1\fR, this variable can be used to override
3472
+ \&\fIev.c\fR's idea of where to find the \fIconfig.h\fR file, similarly to
3473
+ \&\f(CW\*(C`EV_H\*(C'\fR, above.
3474
+ .IP "\s-1EV_EVENT_H\s0" 4
3475
+ .IX Item "EV_EVENT_H"
3476
+ Similarly to \f(CW\*(C`EV_H\*(C'\fR, this macro can be used to override \fIevent.c\fR's idea
3477
+ of how the \fIevent.h\fR header can be found, the default is \f(CW"event.h"\fR.
3478
+ .IP "\s-1EV_PROTOTYPES\s0" 4
3479
+ .IX Item "EV_PROTOTYPES"
3480
+ If defined to be \f(CW0\fR, then \fIev.h\fR will not define any function
3481
+ prototypes, but still define all the structs and other symbols. This is
3482
+ occasionally useful if you want to provide your own wrapper functions
3483
+ around libev functions.
3484
+ .IP "\s-1EV_MULTIPLICITY\s0" 4
3485
+ .IX Item "EV_MULTIPLICITY"
3486
+ If undefined or defined to \f(CW1\fR, then all event-loop-specific functions
3487
+ will have the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument, and you can create
3488
+ additional independent event loops. Otherwise there will be no support
3489
+ for multiple event loops and there is no first event loop pointer
3490
+ argument. Instead, all functions act on the single default loop.
3491
+ .IP "\s-1EV_MINPRI\s0" 4
3492
+ .IX Item "EV_MINPRI"
3493
+ .PD 0
3494
+ .IP "\s-1EV_MAXPRI\s0" 4
3495
+ .IX Item "EV_MAXPRI"
3496
+ .PD
3497
+ The range of allowed priorities. \f(CW\*(C`EV_MINPRI\*(C'\fR must be smaller or equal to
3498
+ \&\f(CW\*(C`EV_MAXPRI\*(C'\fR, but otherwise there are no non-obvious limitations. You can
3499
+ provide for more priorities by overriding those symbols (usually defined
3500
+ to be \f(CW\*(C`\-2\*(C'\fR and \f(CW2\fR, respectively).
3501
+ .Sp
3502
+ When doing priority-based operations, libev usually has to linearly search
3503
+ all the priorities, so having many of them (hundreds) uses a lot of space
3504
+ and time, so using the defaults of five priorities (\-2 .. +2) is usually
3505
+ fine.
3506
+ .Sp
3507
+ If your embedding application does not need any priorities, defining these
3508
+ both to \f(CW0\fR will save some memory and \s-1CPU\s0.
3509
+ .IP "\s-1EV_PERIODIC_ENABLE\s0" 4
3510
+ .IX Item "EV_PERIODIC_ENABLE"
3511
+ If undefined or defined to be \f(CW1\fR, then periodic timers are supported. If
3512
+ defined to be \f(CW0\fR, then they are not. Disabling them saves a few kB of
3513
+ code.
3514
+ .IP "\s-1EV_IDLE_ENABLE\s0" 4
3515
+ .IX Item "EV_IDLE_ENABLE"
3516
+ If undefined or defined to be \f(CW1\fR, then idle watchers are supported. If
3517
+ defined to be \f(CW0\fR, then they are not. Disabling them saves a few kB of
3518
+ code.
3519
+ .IP "\s-1EV_EMBED_ENABLE\s0" 4
3520
+ .IX Item "EV_EMBED_ENABLE"
3521
+ If undefined or defined to be \f(CW1\fR, then embed watchers are supported. If
3522
+ defined to be \f(CW0\fR, then they are not. Embed watchers rely on most other
3523
+ watcher types, which therefore must not be disabled.
3524
+ .IP "\s-1EV_STAT_ENABLE\s0" 4
3525
+ .IX Item "EV_STAT_ENABLE"
3526
+ If undefined or defined to be \f(CW1\fR, then stat watchers are supported. If
3527
+ defined to be \f(CW0\fR, then they are not.
3528
+ .IP "\s-1EV_FORK_ENABLE\s0" 4
3529
+ .IX Item "EV_FORK_ENABLE"
3530
+ If undefined or defined to be \f(CW1\fR, then fork watchers are supported. If
3531
+ defined to be \f(CW0\fR, then they are not.
3532
+ .IP "\s-1EV_ASYNC_ENABLE\s0" 4
3533
+ .IX Item "EV_ASYNC_ENABLE"
3534
+ If undefined or defined to be \f(CW1\fR, then async watchers are supported. If
3535
+ defined to be \f(CW0\fR, then they are not.
3536
+ .IP "\s-1EV_MINIMAL\s0" 4
3537
+ .IX Item "EV_MINIMAL"
3538
+ If you need to shave off some kilobytes of code at the expense of some
3539
+ speed, define this symbol to \f(CW1\fR. Currently this is used to override some
3540
+ inlining decisions, saves roughly 30% code size on amd64. It also selects a
3541
+ much smaller 2\-heap for timer management over the default 4\-heap.
3542
+ .IP "\s-1EV_PID_HASHSIZE\s0" 4
3543
+ .IX Item "EV_PID_HASHSIZE"
3544
+ \&\f(CW\*(C`ev_child\*(C'\fR watchers use a small hash table to distribute workload by
3545
+ pid. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), usually more
3546
+ than enough. If you need to manage thousands of children you might want to
3547
+ increase this value (\fImust\fR be a power of two).
3548
+ .IP "\s-1EV_INOTIFY_HASHSIZE\s0" 4
3549
+ .IX Item "EV_INOTIFY_HASHSIZE"
3550
+ \&\f(CW\*(C`ev_stat\*(C'\fR watchers use a small hash table to distribute workload by
3551
+ inotify watch id. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR),
3552
+ usually more than enough. If you need to manage thousands of \f(CW\*(C`ev_stat\*(C'\fR
3553
+ watchers you might want to increase this value (\fImust\fR be a power of
3554
+ two).
3555
+ .IP "\s-1EV_USE_4HEAP\s0" 4
3556
+ .IX Item "EV_USE_4HEAP"
3557
+ Heaps are not very cache-efficient. To improve the cache-efficiency of the
3558
+ timer and periodics heaps, libev uses a 4\-heap when this symbol is defined
3559
+ to \f(CW1\fR. The 4\-heap uses more complicated (longer) code but has noticeably
3560
+ faster performance with many (thousands) of watchers.
3561
+ .Sp
3562
+ The default is \f(CW1\fR unless \f(CW\*(C`EV_MINIMAL\*(C'\fR is set in which case it is \f(CW0\fR
3563
+ (disabled).
3564
+ .IP "\s-1EV_HEAP_CACHE_AT\s0" 4
3565
+ .IX Item "EV_HEAP_CACHE_AT"
3566
+ Heaps are not very cache-efficient. To improve the cache-efficiency of the
3567
+ timer and periodics heaps, libev can cache the timestamp (\fIat\fR) within
3568
+ the heap structure (selected by defining \f(CW\*(C`EV_HEAP_CACHE_AT\*(C'\fR to \f(CW1\fR),
3569
+ which uses 8\-12 bytes more per watcher and a few hundred bytes more code,
3570
+ but avoids random read accesses on heap changes. This improves performance
3571
+ noticeably with many (hundreds) of watchers.
3572
+ .Sp
3573
+ The default is \f(CW1\fR unless \f(CW\*(C`EV_MINIMAL\*(C'\fR is set in which case it is \f(CW0\fR
3574
+ (disabled).
3575
+ .IP "\s-1EV_VERIFY\s0" 4
3576
+ .IX Item "EV_VERIFY"
3577
+ Controls how much internal verification (see \f(CW\*(C`ev_loop_verify ()\*(C'\fR) will
3578
+ be done: If set to \f(CW0\fR, no internal verification code will be compiled
3579
+ in. If set to \f(CW1\fR, then verification code will be compiled in, but not
3580
+ called. If set to \f(CW2\fR, then the internal verification code will be
3581
+ called once per loop, which can slow down libev. If set to \f(CW3\fR, then the
3582
+ verification code will be called very frequently, which will slow down
3583
+ libev considerably.
3584
+ .Sp
3585
+ The default is \f(CW1\fR, unless \f(CW\*(C`EV_MINIMAL\*(C'\fR is set, in which case it will be
3586
+ \&\f(CW0\fR.
3587
+ .IP "\s-1EV_COMMON\s0" 4
3588
+ .IX Item "EV_COMMON"
3589
+ By default, all watchers have a \f(CW\*(C`void *data\*(C'\fR member. By redefining
3590
+ this macro to a something else you can include more and other types of
3591
+ members. You have to define it each time you include one of the files,
3592
+ though, and it must be identical each time.
3593
+ .Sp
3594
+ For example, the perl \s-1EV\s0 module uses something like this:
3595
+ .Sp
3596
+ .Vb 3
3597
+ \& #define EV_COMMON \e
3598
+ \& SV *self; /* contains this struct */ \e
3599
+ \& SV *cb_sv, *fh /* note no trailing ";" */
3600
+ .Ve
3601
+ .IP "\s-1EV_CB_DECLARE\s0 (type)" 4
3602
+ .IX Item "EV_CB_DECLARE (type)"
3603
+ .PD 0
3604
+ .IP "\s-1EV_CB_INVOKE\s0 (watcher, revents)" 4
3605
+ .IX Item "EV_CB_INVOKE (watcher, revents)"
3606
+ .IP "ev_set_cb (ev, cb)" 4
3607
+ .IX Item "ev_set_cb (ev, cb)"
3608
+ .PD
3609
+ Can be used to change the callback member declaration in each watcher,
3610
+ and the way callbacks are invoked and set. Must expand to a struct member
3611
+ definition and a statement, respectively. See the \fIev.h\fR header file for
3612
+ their default definitions. One possible use for overriding these is to
3613
+ avoid the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument in all cases, or to use
3614
+ method calls instead of plain function calls in \*(C+.
3615
+ .Sh "\s-1EXPORTED\s0 \s-1API\s0 \s-1SYMBOLS\s0"
3616
+ .IX Subsection "EXPORTED API SYMBOLS"
3617
+ If you need to re-export the \s-1API\s0 (e.g. via a \s-1DLL\s0) and you need a list of
3618
+ exported symbols, you can use the provided \fISymbol.*\fR files which list
3619
+ all public symbols, one per line:
3620
+ .PP
3621
+ .Vb 2
3622
+ \& Symbols.ev for libev proper
3623
+ \& Symbols.event for the libevent emulation
3624
+ .Ve
3625
+ .PP
3626
+ This can also be used to rename all public symbols to avoid clashes with
3627
+ multiple versions of libev linked together (which is obviously bad in
3628
+ itself, but sometimes it is inconvenient to avoid this).
3629
+ .PP
3630
+ A sed command like this will create wrapper \f(CW\*(C`#define\*(C'\fR's that you need to
3631
+ include before including \fIev.h\fR:
3632
+ .PP
3633
+ .Vb 1
3634
+ \& <Symbols.ev sed \-e "s/.*/#define & myprefix_&/" >wrap.h
3635
+ .Ve
3636
+ .PP
3637
+ This would create a file \fIwrap.h\fR which essentially looks like this:
3638
+ .PP
3639
+ .Vb 4
3640
+ \& #define ev_backend myprefix_ev_backend
3641
+ \& #define ev_check_start myprefix_ev_check_start
3642
+ \& #define ev_check_stop myprefix_ev_check_stop
3643
+ \& ...
3644
+ .Ve
3645
+ .Sh "\s-1EXAMPLES\s0"
3646
+ .IX Subsection "EXAMPLES"
3647
+ For a real-world example of a program the includes libev
3648
+ verbatim, you can have a look at the \s-1EV\s0 perl module
3649
+ (<http://software.schmorp.de/pkg/EV.html>). It has the libev files in
3650
+ the \fIlibev/\fR subdirectory and includes them in the \fI\s-1EV/EVAPI\s0.h\fR (public
3651
+ interface) and \fI\s-1EV\s0.xs\fR (implementation) files. Only the \fI\s-1EV\s0.xs\fR file
3652
+ will be compiled. It is pretty complex because it provides its own header
3653
+ file.
3654
+ .PP
3655
+ The usage in rxvt-unicode is simpler. It has a \fIev_cpp.h\fR header file
3656
+ that everybody includes and which overrides some configure choices:
3657
+ .PP
3658
+ .Vb 9
3659
+ \& #define EV_MINIMAL 1
3660
+ \& #define EV_USE_POLL 0
3661
+ \& #define EV_MULTIPLICITY 0
3662
+ \& #define EV_PERIODIC_ENABLE 0
3663
+ \& #define EV_STAT_ENABLE 0
3664
+ \& #define EV_FORK_ENABLE 0
3665
+ \& #define EV_CONFIG_H <config.h>
3666
+ \& #define EV_MINPRI 0
3667
+ \& #define EV_MAXPRI 0
3668
+ \&
3669
+ \& #include "ev++.h"
3670
+ .Ve
3671
+ .PP
3672
+ And a \fIev_cpp.C\fR implementation file that contains libev proper and is compiled:
3673
+ .PP
3674
+ .Vb 2
3675
+ \& #include "ev_cpp.h"
3676
+ \& #include "ev.c"
3677
+ .Ve
3678
+ .SH "INTERACTION WITH OTHER PROGRAMS OR LIBRARIES"
3679
+ .IX Header "INTERACTION WITH OTHER PROGRAMS OR LIBRARIES"
3680
+ .Sh "\s-1THREADS\s0 \s-1AND\s0 \s-1COROUTINES\s0"
3681
+ .IX Subsection "THREADS AND COROUTINES"
3682
+ \fI\s-1THREADS\s0\fR
3683
+ .IX Subsection "THREADS"
3684
+ .PP
3685
+ All libev functions are reentrant and thread-safe unless explicitly
3686
+ documented otherwise, but libev implements no locking itself. This means
3687
+ that you can use as many loops as you want in parallel, as long as there
3688
+ are no concurrent calls into any libev function with the same loop
3689
+ parameter (\f(CW\*(C`ev_default_*\*(C'\fR calls have an implicit default loop parameter,
3690
+ of course): libev guarantees that different event loops share no data
3691
+ structures that need any locking.
3692
+ .PP
3693
+ Or to put it differently: calls with different loop parameters can be done
3694
+ concurrently from multiple threads, calls with the same loop parameter
3695
+ must be done serially (but can be done from different threads, as long as
3696
+ only one thread ever is inside a call at any point in time, e.g. by using
3697
+ a mutex per loop).
3698
+ .PP
3699
+ Specifically to support threads (and signal handlers), libev implements
3700
+ so-called \f(CW\*(C`ev_async\*(C'\fR watchers, which allow some limited form of
3701
+ concurrency on the same event loop, namely waking it up \*(L"from the
3702
+ outside\*(R".
3703
+ .PP
3704
+ If you want to know which design (one loop, locking, or multiple loops
3705
+ without or something else still) is best for your problem, then I cannot
3706
+ help you, but here is some generic advice:
3707
+ .IP "\(bu" 4
3708
+ most applications have a main thread: use the default libev loop
3709
+ in that thread, or create a separate thread running only the default loop.
3710
+ .Sp
3711
+ This helps integrating other libraries or software modules that use libev
3712
+ themselves and don't care/know about threading.
3713
+ .IP "\(bu" 4
3714
+ one loop per thread is usually a good model.
3715
+ .Sp
3716
+ Doing this is almost never wrong, sometimes a better-performance model
3717
+ exists, but it is always a good start.
3718
+ .IP "\(bu" 4
3719
+ other models exist, such as the leader/follower pattern, where one
3720
+ loop is handed through multiple threads in a kind of round-robin fashion.
3721
+ .Sp
3722
+ Choosing a model is hard \- look around, learn, know that usually you can do
3723
+ better than you currently do :\-)
3724
+ .IP "\(bu" 4
3725
+ often you need to talk to some other thread which blocks in the
3726
+ event loop.
3727
+ .Sp
3728
+ \&\f(CW\*(C`ev_async\*(C'\fR watchers can be used to wake them up from other threads safely
3729
+ (or from signal contexts...).
3730
+ .Sp
3731
+ An example use would be to communicate signals or other events that only
3732
+ work in the default loop by registering the signal watcher with the
3733
+ default loop and triggering an \f(CW\*(C`ev_async\*(C'\fR watcher from the default loop
3734
+ watcher callback into the event loop interested in the signal.
3735
+ .PP
3736
+ \fI\s-1COROUTINES\s0\fR
3737
+ .IX Subsection "COROUTINES"
3738
+ .PP
3739
+ Libev is very accommodating to coroutines (\*(L"cooperative threads\*(R"):
3740
+ libev fully supports nesting calls to its functions from different
3741
+ coroutines (e.g. you can call \f(CW\*(C`ev_loop\*(C'\fR on the same loop from two
3742
+ different coroutines, and switch freely between both coroutines running the
3743
+ loop, as long as you don't confuse yourself). The only exception is that
3744
+ you must not do this from \f(CW\*(C`ev_periodic\*(C'\fR reschedule callbacks.
3745
+ .PP
3746
+ Care has been taken to ensure that libev does not keep local state inside
3747
+ \&\f(CW\*(C`ev_loop\*(C'\fR, and other calls do not usually allow for coroutine switches as
3748
+ they do not call any callbacks.
3749
+ .Sh "\s-1COMPILER\s0 \s-1WARNINGS\s0"
3750
+ .IX Subsection "COMPILER WARNINGS"
3751
+ Depending on your compiler and compiler settings, you might get no or a
3752
+ lot of warnings when compiling libev code. Some people are apparently
3753
+ scared by this.
3754
+ .PP
3755
+ However, these are unavoidable for many reasons. For one, each compiler
3756
+ has different warnings, and each user has different tastes regarding
3757
+ warning options. \*(L"Warn-free\*(R" code therefore cannot be a goal except when
3758
+ targeting a specific compiler and compiler-version.
3759
+ .PP
3760
+ Another reason is that some compiler warnings require elaborate
3761
+ workarounds, or other changes to the code that make it less clear and less
3762
+ maintainable.
3763
+ .PP
3764
+ And of course, some compiler warnings are just plain stupid, or simply
3765
+ wrong (because they don't actually warn about the condition their message
3766
+ seems to warn about). For example, certain older gcc versions had some
3767
+ warnings that resulted an extreme number of false positives. These have
3768
+ been fixed, but some people still insist on making code warn-free with
3769
+ such buggy versions.
3770
+ .PP
3771
+ While libev is written to generate as few warnings as possible,
3772
+ \&\*(L"warn-free\*(R" code is not a goal, and it is recommended not to build libev
3773
+ with any compiler warnings enabled unless you are prepared to cope with
3774
+ them (e.g. by ignoring them). Remember that warnings are just that:
3775
+ warnings, not errors, or proof of bugs.
3776
+ .Sh "\s-1VALGRIND\s0"
3777
+ .IX Subsection "VALGRIND"
3778
+ Valgrind has a special section here because it is a popular tool that is
3779
+ highly useful. Unfortunately, valgrind reports are very hard to interpret.
3780
+ .PP
3781
+ If you think you found a bug (memory leak, uninitialised data access etc.)
3782
+ in libev, then check twice: If valgrind reports something like:
3783
+ .PP
3784
+ .Vb 3
3785
+ \& ==2274== definitely lost: 0 bytes in 0 blocks.
3786
+ \& ==2274== possibly lost: 0 bytes in 0 blocks.
3787
+ \& ==2274== still reachable: 256 bytes in 1 blocks.
3788
+ .Ve
3789
+ .PP
3790
+ Then there is no memory leak, just as memory accounted to global variables
3791
+ is not a memleak \- the memory is still being referenced, and didn't leak.
3792
+ .PP
3793
+ Similarly, under some circumstances, valgrind might report kernel bugs
3794
+ as if it were a bug in libev (e.g. in realloc or in the poll backend,
3795
+ although an acceptable workaround has been found here), or it might be
3796
+ confused.
3797
+ .PP
3798
+ Keep in mind that valgrind is a very good tool, but only a tool. Don't
3799
+ make it into some kind of religion.
3800
+ .PP
3801
+ If you are unsure about something, feel free to contact the mailing list
3802
+ with the full valgrind report and an explanation on why you think this
3803
+ is a bug in libev (best check the archives, too :). However, don't be
3804
+ annoyed when you get a brisk \*(L"this is no bug\*(R" answer and take the chance
3805
+ of learning how to interpret valgrind properly.
3806
+ .PP
3807
+ If you need, for some reason, empty reports from valgrind for your project
3808
+ I suggest using suppression lists.
3809
+ .SH "PORTABILITY NOTES"
3810
+ .IX Header "PORTABILITY NOTES"
3811
+ .Sh "\s-1WIN32\s0 \s-1PLATFORM\s0 \s-1LIMITATIONS\s0 \s-1AND\s0 \s-1WORKAROUNDS\s0"
3812
+ .IX Subsection "WIN32 PLATFORM LIMITATIONS AND WORKAROUNDS"
3813
+ Win32 doesn't support any of the standards (e.g. \s-1POSIX\s0) that libev
3814
+ requires, and its I/O model is fundamentally incompatible with the \s-1POSIX\s0
3815
+ model. Libev still offers limited functionality on this platform in
3816
+ the form of the \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR backend, and only supports socket
3817
+ descriptors. This only applies when using Win32 natively, not when using
3818
+ e.g. cygwin.
3819
+ .PP
3820
+ Lifting these limitations would basically require the full
3821
+ re-implementation of the I/O system. If you are into these kinds of
3822
+ things, then note that glib does exactly that for you in a very portable
3823
+ way (note also that glib is the slowest event library known to man).
3824
+ .PP
3825
+ There is no supported compilation method available on windows except
3826
+ embedding it into other applications.
3827
+ .PP
3828
+ Not a libev limitation but worth mentioning: windows apparently doesn't
3829
+ accept large writes: instead of resulting in a partial write, windows will
3830
+ either accept everything or return \f(CW\*(C`ENOBUFS\*(C'\fR if the buffer is too large,
3831
+ so make sure you only write small amounts into your sockets (less than a
3832
+ megabyte seems safe, but this apparently depends on the amount of memory
3833
+ available).
3834
+ .PP
3835
+ Due to the many, low, and arbitrary limits on the win32 platform and
3836
+ the abysmal performance of winsockets, using a large number of sockets
3837
+ is not recommended (and not reasonable). If your program needs to use
3838
+ more than a hundred or so sockets, then likely it needs to use a totally
3839
+ different implementation for windows, as libev offers the \s-1POSIX\s0 readiness
3840
+ notification model, which cannot be implemented efficiently on windows
3841
+ (Microsoft monopoly games).
3842
+ .PP
3843
+ A typical way to use libev under windows is to embed it (see the embedding
3844
+ section for details) and use the following \fIevwrap.h\fR header file instead
3845
+ of \fIev.h\fR:
3846
+ .PP
3847
+ .Vb 2
3848
+ \& #define EV_STANDALONE /* keeps ev from requiring config.h */
3849
+ \& #define EV_SELECT_IS_WINSOCKET 1 /* configure libev for windows select */
3850
+ \&
3851
+ \& #include "ev.h"
3852
+ .Ve
3853
+ .PP
3854
+ And compile the following \fIevwrap.c\fR file into your project (make sure
3855
+ you do \fInot\fR compile the \fIev.c\fR or any other embedded source files!):
3856
+ .PP
3857
+ .Vb 2
3858
+ \& #include "evwrap.h"
3859
+ \& #include "ev.c"
3860
+ .Ve
3861
+ .IP "The winsocket select function" 4
3862
+ .IX Item "The winsocket select function"
3863
+ The winsocket \f(CW\*(C`select\*(C'\fR function doesn't follow \s-1POSIX\s0 in that it
3864
+ requires socket \fIhandles\fR and not socket \fIfile descriptors\fR (it is
3865
+ also extremely buggy). This makes select very inefficient, and also
3866
+ requires a mapping from file descriptors to socket handles (the Microsoft
3867
+ C runtime provides the function \f(CW\*(C`_open_osfhandle\*(C'\fR for this). See the
3868
+ discussion of the \f(CW\*(C`EV_SELECT_USE_FD_SET\*(C'\fR, \f(CW\*(C`EV_SELECT_IS_WINSOCKET\*(C'\fR and
3869
+ \&\f(CW\*(C`EV_FD_TO_WIN32_HANDLE\*(C'\fR preprocessor symbols for more info.
3870
+ .Sp
3871
+ The configuration for a \*(L"naked\*(R" win32 using the Microsoft runtime
3872
+ libraries and raw winsocket select is:
3873
+ .Sp
3874
+ .Vb 2
3875
+ \& #define EV_USE_SELECT 1
3876
+ \& #define EV_SELECT_IS_WINSOCKET 1 /* forces EV_SELECT_USE_FD_SET, too */
3877
+ .Ve
3878
+ .Sp
3879
+ Note that winsockets handling of fd sets is O(n), so you can easily get a
3880
+ complexity in the O(nA\*^X) range when using win32.
3881
+ .IP "Limited number of file descriptors" 4
3882
+ .IX Item "Limited number of file descriptors"
3883
+ Windows has numerous arbitrary (and low) limits on things.
3884
+ .Sp
3885
+ Early versions of winsocket's select only supported waiting for a maximum
3886
+ of \f(CW64\fR handles (probably owning to the fact that all windows kernels
3887
+ can only wait for \f(CW64\fR things at the same time internally; Microsoft
3888
+ recommends spawning a chain of threads and wait for 63 handles and the
3889
+ previous thread in each. Great).
3890
+ .Sp
3891
+ Newer versions support more handles, but you need to define \f(CW\*(C`FD_SETSIZE\*(C'\fR
3892
+ to some high number (e.g. \f(CW2048\fR) before compiling the winsocket select
3893
+ call (which might be in libev or elsewhere, for example, perl does its own
3894
+ select emulation on windows).
3895
+ .Sp
3896
+ Another limit is the number of file descriptors in the Microsoft runtime
3897
+ libraries, which by default is \f(CW64\fR (there must be a hidden \fI64\fR fetish
3898
+ or something like this inside Microsoft). You can increase this by calling
3899
+ \&\f(CW\*(C`_setmaxstdio\*(C'\fR, which can increase this limit to \f(CW2048\fR (another
3900
+ arbitrary limit), but is broken in many versions of the Microsoft runtime
3901
+ libraries.
3902
+ .Sp
3903
+ This might get you to about \f(CW512\fR or \f(CW2048\fR sockets (depending on
3904
+ windows version and/or the phase of the moon). To get more, you need to
3905
+ wrap all I/O functions and provide your own fd management, but the cost of
3906
+ calling select (O(nA\*^X)) will likely make this unworkable.
3907
+ .Sh "\s-1PORTABILITY\s0 \s-1REQUIREMENTS\s0"
3908
+ .IX Subsection "PORTABILITY REQUIREMENTS"
3909
+ In addition to a working ISO-C implementation and of course the
3910
+ backend-specific APIs, libev relies on a few additional extensions:
3911
+ .ie n .IP """void (*)(ev_watcher_type *, int revents)""\fR must have compatible calling conventions regardless of \f(CW""ev_watcher_type *""." 4
3912
+ .el .IP "\f(CWvoid (*)(ev_watcher_type *, int revents)\fR must have compatible calling conventions regardless of \f(CWev_watcher_type *\fR." 4
3913
+ .IX Item "void (*)(ev_watcher_type *, int revents) must have compatible calling conventions regardless of ev_watcher_type *."
3914
+ Libev assumes not only that all watcher pointers have the same internal
3915
+ structure (guaranteed by \s-1POSIX\s0 but not by \s-1ISO\s0 C for example), but it also
3916
+ assumes that the same (machine) code can be used to call any watcher
3917
+ callback: The watcher callbacks have different type signatures, but libev
3918
+ calls them using an \f(CW\*(C`ev_watcher *\*(C'\fR internally.
3919
+ .ie n .IP """sig_atomic_t volatile"" must be thread-atomic as well" 4
3920
+ .el .IP "\f(CWsig_atomic_t volatile\fR must be thread-atomic as well" 4
3921
+ .IX Item "sig_atomic_t volatile must be thread-atomic as well"
3922
+ The type \f(CW\*(C`sig_atomic_t volatile\*(C'\fR (or whatever is defined as
3923
+ \&\f(CW\*(C`EV_ATOMIC_T\*(C'\fR) must be atomic with respect to accesses from different
3924
+ threads. This is not part of the specification for \f(CW\*(C`sig_atomic_t\*(C'\fR, but is
3925
+ believed to be sufficiently portable.
3926
+ .ie n .IP """sigprocmask"" must work in a threaded environment" 4
3927
+ .el .IP "\f(CWsigprocmask\fR must work in a threaded environment" 4
3928
+ .IX Item "sigprocmask must work in a threaded environment"
3929
+ Libev uses \f(CW\*(C`sigprocmask\*(C'\fR to temporarily block signals. This is not
3930
+ allowed in a threaded program (\f(CW\*(C`pthread_sigmask\*(C'\fR has to be used). Typical
3931
+ pthread implementations will either allow \f(CW\*(C`sigprocmask\*(C'\fR in the \*(L"main
3932
+ thread\*(R" or will block signals process-wide, both behaviours would
3933
+ be compatible with libev. Interaction between \f(CW\*(C`sigprocmask\*(C'\fR and
3934
+ \&\f(CW\*(C`pthread_sigmask\*(C'\fR could complicate things, however.
3935
+ .Sp
3936
+ The most portable way to handle signals is to block signals in all threads
3937
+ except the initial one, and run the default loop in the initial thread as
3938
+ well.
3939
+ .ie n .IP """long"" must be large enough for common memory allocation sizes" 4
3940
+ .el .IP "\f(CWlong\fR must be large enough for common memory allocation sizes" 4
3941
+ .IX Item "long must be large enough for common memory allocation sizes"
3942
+ To improve portability and simplify its \s-1API\s0, libev uses \f(CW\*(C`long\*(C'\fR internally
3943
+ instead of \f(CW\*(C`size_t\*(C'\fR when allocating its data structures. On non-POSIX
3944
+ systems (Microsoft...) this might be unexpectedly low, but is still at
3945
+ least 31 bits everywhere, which is enough for hundreds of millions of
3946
+ watchers.
3947
+ .ie n .IP """double"" must hold a time value in seconds with enough accuracy" 4
3948
+ .el .IP "\f(CWdouble\fR must hold a time value in seconds with enough accuracy" 4
3949
+ .IX Item "double must hold a time value in seconds with enough accuracy"
3950
+ The type \f(CW\*(C`double\*(C'\fR is used to represent timestamps. It is required to
3951
+ have at least 51 bits of mantissa (and 9 bits of exponent), which is good
3952
+ enough for at least into the year 4000. This requirement is fulfilled by
3953
+ implementations implementing \s-1IEEE\s0 754 (basically all existing ones).
3954
+ .PP
3955
+ If you know of other additional requirements drop me a note.
3956
+ .SH "ALGORITHMIC COMPLEXITIES"
3957
+ .IX Header "ALGORITHMIC COMPLEXITIES"
3958
+ In this section the complexities of (many of) the algorithms used inside
3959
+ libev will be documented. For complexity discussions about backends see
3960
+ the documentation for \f(CW\*(C`ev_default_init\*(C'\fR.
3961
+ .PP
3962
+ All of the following are about amortised time: If an array needs to be
3963
+ extended, libev needs to realloc and move the whole array, but this
3964
+ happens asymptotically rarer with higher number of elements, so O(1) might
3965
+ mean that libev does a lengthy realloc operation in rare cases, but on
3966
+ average it is much faster and asymptotically approaches constant time.
3967
+ .IP "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 4
3968
+ .IX Item "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)"
3969
+ This means that, when you have a watcher that triggers in one hour and
3970
+ there are 100 watchers that would trigger before that, then inserting will
3971
+ have to skip roughly seven (\f(CW\*(C`ld 100\*(C'\fR) of these watchers.
3972
+ .IP "Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)" 4
3973
+ .IX Item "Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)"
3974
+ That means that changing a timer costs less than removing/adding them,
3975
+ as only the relative motion in the event queue has to be paid for.
3976
+ .IP "Starting io/check/prepare/idle/signal/child/fork/async watchers: O(1)" 4
3977
+ .IX Item "Starting io/check/prepare/idle/signal/child/fork/async watchers: O(1)"
3978
+ These just add the watcher into an array or at the head of a list.
3979
+ .IP "Stopping check/prepare/idle/fork/async watchers: O(1)" 4
3980
+ .IX Item "Stopping check/prepare/idle/fork/async watchers: O(1)"
3981
+ .PD 0
3982
+ .IP "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % \s-1EV_PID_HASHSIZE\s0))" 4
3983
+ .IX Item "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE))"
3984
+ .PD
3985
+ These watchers are stored in lists, so they need to be walked to find the
3986
+ correct watcher to remove. The lists are usually short (you don't usually
3987
+ have many watchers waiting for the same fd or signal: one is typical, two
3988
+ is rare).
3989
+ .IP "Finding the next timer in each loop iteration: O(1)" 4
3990
+ .IX Item "Finding the next timer in each loop iteration: O(1)"
3991
+ By virtue of using a binary or 4\-heap, the next timer is always found at a
3992
+ fixed position in the storage array.
3993
+ .IP "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 4
3994
+ .IX Item "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)"
3995
+ A change means an I/O watcher gets started or stopped, which requires
3996
+ libev to recalculate its status (and possibly tell the kernel, depending
3997
+ on backend and whether \f(CW\*(C`ev_io_set\*(C'\fR was used).
3998
+ .IP "Activating one watcher (putting it into the pending state): O(1)" 4
3999
+ .IX Item "Activating one watcher (putting it into the pending state): O(1)"
4000
+ .PD 0
4001
+ .IP "Priority handling: O(number_of_priorities)" 4
4002
+ .IX Item "Priority handling: O(number_of_priorities)"
4003
+ .PD
4004
+ Priorities are implemented by allocating some space for each
4005
+ priority. When doing priority-based operations, libev usually has to
4006
+ linearly search all the priorities, but starting/stopping and activating
4007
+ watchers becomes O(1) with respect to priority handling.
4008
+ .IP "Sending an ev_async: O(1)" 4
4009
+ .IX Item "Sending an ev_async: O(1)"
4010
+ .PD 0
4011
+ .IP "Processing ev_async_send: O(number_of_async_watchers)" 4
4012
+ .IX Item "Processing ev_async_send: O(number_of_async_watchers)"
4013
+ .IP "Processing signals: O(max_signal_number)" 4
4014
+ .IX Item "Processing signals: O(max_signal_number)"
4015
+ .PD
4016
+ Sending involves a system call \fIiff\fR there were no other \f(CW\*(C`ev_async_send\*(C'\fR
4017
+ calls in the current loop iteration. Checking for async and signal events
4018
+ involves iterating over all running async watchers or all signal numbers.
4019
+ .SH "AUTHOR"
4020
+ .IX Header "AUTHOR"
4021
+ Marc Lehmann <libev@schmorp.de>, with repeated corrections by Mikael Magnusson.