redcar 0.3.1dev → 0.3.2dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (316) hide show
  1. data/CHANGES +34 -1
  2. data/README.md +2 -1
  3. data/ROADMAP.md +13 -45
  4. data/Rakefile +15 -14
  5. data/bin/redcar +4 -1
  6. data/lib/plugin_manager/README.md +61 -0
  7. data/lib/plugin_manager/Rakefile +55 -0
  8. data/lib/plugin_manager/bin/plugin_manager +4 -0
  9. data/lib/plugin_manager/lib/plugin_manager.rb +107 -0
  10. data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +37 -0
  11. data/lib/plugin_manager/lib/plugin_manager/plugin.rb +9 -0
  12. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +50 -0
  13. data/lib/plugin_manager/plugin_manager.gemspec +33 -0
  14. data/lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb +2 -0
  15. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb +4 -0
  16. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb +7 -0
  17. data/lib/plugin_manager/spec/fixtures/example/core/core.rb +20 -0
  18. data/lib/plugin_manager/spec/fixtures/example/core/plugin.rb +7 -0
  19. data/lib/plugin_manager/spec/fixtures/example/debug/debug.rb +6 -0
  20. data/lib/plugin_manager/spec/fixtures/example/debug/plugin.rb +8 -0
  21. data/lib/plugin_manager/spec/fixtures/example/extras/extras.rb +6 -0
  22. data/lib/plugin_manager/spec/fixtures/example/extras/plugin.rb +8 -0
  23. data/lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb +20 -0
  24. data/lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb +7 -0
  25. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb +20 -0
  26. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb +7 -0
  27. data/lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb +20 -0
  28. data/lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb +7 -0
  29. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb +20 -0
  30. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb +8 -0
  31. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb +10 -0
  32. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb +7 -0
  33. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb +6 -0
  34. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb +8 -0
  35. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb +10 -0
  36. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb +7 -0
  37. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb +6 -0
  38. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb +8 -0
  39. data/lib/plugin_manager/spec/plugin_manager_spec.rb +208 -0
  40. data/lib/plugin_manager/spec/spec_helper.rb +3 -0
  41. data/lib/redcar.rb +8 -3
  42. data/lib/redcar/boot.rb +59 -56
  43. data/lib/redcar/installer.rb +1 -1
  44. data/lib/redcar/instance_exec.rb +25 -0
  45. data/lib/redcar/runner.rb +5 -1
  46. data/lib/redcar/usage.rb +5 -1
  47. data/plugins/application/icons/close.png +0 -0
  48. data/plugins/application/lib/application.rb +61 -28
  49. data/plugins/application/lib/application/clipboard.rb +71 -0
  50. data/plugins/application/lib/application/dialog.rb +63 -0
  51. data/plugins/application/lib/application/menu.rb +32 -1
  52. data/plugins/application/lib/application/menu/builder.rb +10 -4
  53. data/plugins/application/lib/application/menu/item.rb +16 -3
  54. data/plugins/application/lib/application/notebook.rb +5 -0
  55. data/plugins/application/lib/application/speedbar.rb +73 -0
  56. data/plugins/application/lib/application/window.rb +25 -0
  57. data/plugins/application/plugin.rb +8 -0
  58. data/plugins/application/spec/application/clipboard_spec.rb +36 -0
  59. data/plugins/application/spec/application/menu_spec.rb +73 -1
  60. data/plugins/application/spec/application/speedbar_spec.rb +46 -0
  61. data/plugins/application/spec/spec_helper.rb +1 -1
  62. data/plugins/application_swt/lib/application_swt.rb +18 -11
  63. data/plugins/application_swt/lib/application_swt/clipboard.rb +42 -0
  64. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +68 -0
  65. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
  66. data/plugins/application_swt/lib/application_swt/html_tab.rb +32 -0
  67. data/plugins/application_swt/lib/application_swt/menu.rb +57 -21
  68. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -2
  69. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -0
  70. data/plugins/application_swt/lib/application_swt/speedbar.rb +187 -0
  71. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +24 -1
  72. data/plugins/application_swt/lib/application_swt/window.rb +33 -3
  73. data/plugins/application_swt/plugin.rb +8 -0
  74. data/plugins/application_swt/spec/spec_helper.rb +1 -1
  75. data/plugins/auto_completer/features/auto_complete.feature +65 -0
  76. data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +4 -0
  77. data/plugins/auto_completer/features/support/env.rb +4 -0
  78. data/plugins/auto_completer/lib/auto_completer.rb +99 -0
  79. data/plugins/auto_completer/lib/auto_completer/document_controller.rb +52 -0
  80. data/plugins/auto_completer/lib/auto_completer/word_iterator.rb +48 -0
  81. data/plugins/auto_completer/lib/auto_completer/word_list.rb +40 -0
  82. data/plugins/auto_completer/plugin.rb +10 -0
  83. data/plugins/auto_indenter/lib/auto_indenter.rb +1 -1
  84. data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +1 -1
  85. data/plugins/auto_indenter/plugin.rb +8 -0
  86. data/plugins/core/lib/core.rb +6 -30
  87. data/plugins/core/lib/core/gui.rb +7 -2
  88. data/plugins/core/lib/core/logger.rb +7 -4
  89. data/plugins/core/lib/core/plugin/storage.rb +15 -5
  90. data/plugins/core/plugin.rb +7 -0
  91. data/plugins/core/spec/core/storage_spec.rb +0 -9
  92. data/plugins/edit_view/features/cut_and_paste.feature +45 -0
  93. data/plugins/edit_view/features/step_definitions/editing_steps.rb +22 -0
  94. data/plugins/edit_view/features/step_definitions/key_steps.rb +1 -1
  95. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
  96. data/plugins/edit_view/features/step_definitions/tab_steps.rb +2 -0
  97. data/plugins/edit_view/features/step_definitions/window_steps.rb +1 -1
  98. data/plugins/edit_view/features/support/env.rb +2 -2
  99. data/plugins/edit_view/lib/edit_view.rb +24 -13
  100. data/plugins/edit_view/lib/edit_view/document.rb +233 -15
  101. data/plugins/edit_view/lib/edit_view/edit_tab.rb +2 -2
  102. data/plugins/edit_view/plugin.rb +9 -0
  103. data/plugins/edit_view/spec/spec_helper.rb +1 -1
  104. data/plugins/edit_view_swt/lib/edit_view_swt.rb +37 -8
  105. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +59 -24
  106. data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +66 -0
  107. data/plugins/edit_view_swt/plugin.rb +9 -0
  108. data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +29 -0
  109. data/plugins/edit_view_swt/spec/spec_helper.rb +6 -0
  110. data/plugins/html_view/assets/blueprint/ie.css +35 -0
  111. data/plugins/html_view/assets/blueprint/print.css +29 -0
  112. data/plugins/html_view/assets/blueprint/screen.css +257 -0
  113. data/plugins/html_view/assets/blueprint/src/forms.css +65 -0
  114. data/plugins/html_view/assets/blueprint/src/grid.css +281 -0
  115. data/plugins/html_view/assets/blueprint/src/grid.png +0 -0
  116. data/plugins/html_view/assets/blueprint/src/ie.css +76 -0
  117. data/plugins/html_view/assets/blueprint/src/print.css +85 -0
  118. data/plugins/html_view/assets/blueprint/src/reset.css +38 -0
  119. data/plugins/html_view/assets/blueprint/src/typography.css +106 -0
  120. data/plugins/html_view/assets/jquery-1.4.min.js +151 -0
  121. data/plugins/html_view/assets/redcar.css +12 -0
  122. data/plugins/html_view/lib/html_controller.rb +5 -0
  123. data/plugins/html_view/lib/html_view.rb +47 -0
  124. data/plugins/html_view/lib/html_view/html_tab.rb +16 -0
  125. data/plugins/html_view/plugin.rb +12 -0
  126. data/plugins/my_plugin/lib/my_plugin.rb +55 -0
  127. data/plugins/my_plugin/plugin.rb +8 -0
  128. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +62 -0
  129. data/plugins/plugin_manager_ui/plugin.rb +12 -0
  130. data/plugins/plugin_manager_ui/views/index.html.erb +31 -0
  131. data/plugins/project/lib/project.rb +27 -13
  132. data/plugins/project/lib/project/find_file_dialog.rb +25 -19
  133. data/plugins/project/plugin.rb +8 -0
  134. data/plugins/project/spec/spec_helper.rb +1 -1
  135. data/plugins/redcar/plugin.rb +13 -0
  136. data/plugins/redcar/redcar.rb +249 -8
  137. data/plugins/repl/lib/repl.rb +22 -14
  138. data/plugins/repl/plugin.rb +8 -0
  139. data/plugins/repl/spec/spec_helper.rb +1 -1
  140. data/plugins/tree/plugin.rb +9 -0
  141. data/plugins/tree/spec/spec_helper.rb +1 -1
  142. data/plugins/tree_view_swt/plugin.rb +9 -0
  143. data/textmate/Bundles/Apache.tmbundle/Syntaxes/Apache.plist +544 -0
  144. data/textmate/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage +120 -0
  145. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist +88 -0
  146. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Markdown__.plist +89 -0
  147. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Text__.plist +74 -0
  148. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Textile__.plist +74 -0
  149. data/textmate/Bundles/Bundle Development.tmbundle/Syntaxes/LanguageGrammar.tmLanguage +1829 -0
  150. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/Build.tmLanguage +142 -0
  151. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/C__.tmLanguage +524 -0
  152. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/Qt_C____.tmLanguage +62 -0
  153. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/qmake_Project.tmLanguage +308 -0
  154. data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +90 -48
  155. data/textmate/Bundles/Clojure.tmbundle/Syntaxes/Clojure.tmLanguage +427 -0
  156. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage +106 -13
  157. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage +177 -2
  158. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +109 -17
  159. data/textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage +908 -0
  160. data/textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist +229 -0
  161. data/textmate/Bundles/DokuWiki.tmbundle/Syntaxes/DokuWiki.tmLanguage +649 -0
  162. data/textmate/Bundles/F-Script.tmbundle/Syntaxes/F__Script.plist +219 -0
  163. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Haskell.plist +646 -0
  164. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Literate_Haskell.plist +90 -0
  165. data/textmate/Bundles/Io.tmbundle/Syntaxes/Io.plist +225 -0
  166. data/textmate/Bundles/JSON.tmbundle/Syntaxes/JSON.tmLanguage +285 -0
  167. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype.tmLanguage +193 -0
  168. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype_Bracketed.tmLanguage +394 -0
  169. data/textmate/Bundles/JavaScript jQuery.tmbundle/Syntaxes/jQuery___JavaScript__.tmLanguage +440 -0
  170. data/textmate/Bundles/JavaScript.tmbundle/Syntaxes/JavaScript.plist +712 -0
  171. data/textmate/Bundles/Latex.tmbundle/Syntaxes/Bibtex.plist +406 -0
  172. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX.plist +1601 -0
  173. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Beamer.plist +106 -0
  174. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Log.plist +141 -0
  175. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Memoir.tmLanguage +165 -0
  176. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX.plist +246 -0
  177. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX_Math.plist +132 -0
  178. data/textmate/Bundles/Lisp.tmbundle/Syntaxes/Lisp.plist +160 -0
  179. data/textmate/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist +103 -0
  180. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist +1192 -0
  181. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage +80 -0
  182. data/textmate/Bundles/PHP.tmbundle/Syntaxes/PHP.plist +3481 -0
  183. data/textmate/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage +217 -0
  184. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage +339 -0
  185. data/textmate/Bundles/Postscript.tmbundle/Syntaxes/Postscript.tmLanguage +321 -0
  186. data/textmate/Bundles/Processing.tmbundle/Syntaxes/Processing.plist +296 -0
  187. data/textmate/Bundles/Property List.tmbundle/Syntaxes/Property_List.tmLanguage +1650 -0
  188. data/textmate/Bundles/Python Django Templates.tmbundle/Syntaxes/HTML___Django__.tmLanguage +104 -0
  189. data/textmate/Bundles/Python Django.tmbundle/Syntaxes/Python_Django.tmLanguage +57 -0
  190. data/textmate/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage +3016 -0
  191. data/textmate/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage +299 -0
  192. data/textmate/Bundles/Rez.tmbundle/Syntaxes/Rez.plist +219 -0
  193. data/textmate/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +403 -0
  194. data/textmate/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage +142 -0
  195. data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +139 -49
  196. data/textmate/Bundles/SQL.tmbundle/Syntaxes/SQL.plist +705 -0
  197. data/textmate/Bundles/SSH-Config.tmbundle/Syntaxes/SSH__Config.tmLanguage +88 -0
  198. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage +609 -0
  199. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage +54 -0
  200. data/textmate/Bundles/ShellScript.tmbundle/Syntaxes/Shell__Unix__Generic.plist +1855 -0
  201. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/CSV.tmLanguage +178 -0
  202. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/TSV.tmLanguage +135 -0
  203. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Regular_Expressions___Oniguruma__.tmLanguage +295 -0
  204. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Release_Notes.tmLanguage +126 -0
  205. data/textmate/Bundles/Textile.tmbundle/Syntaxes/Textile.plist +490 -0
  206. data/textmate/Bundles/Thrift.tmbundle/Syntaxes/Thrift.tmLanguage +1024 -0
  207. data/textmate/Bundles/XML.tmbundle/Syntaxes/XML.plist +576 -0
  208. data/textmate/Bundles/XML.tmbundle/Syntaxes/XSL.plist +157 -0
  209. data/textmate/Bundles/YAML.tmbundle/Syntaxes/YAML.plist +466 -0
  210. data/textmate/Themes/Django.tmTheme +436 -0
  211. metadata +371 -325
  212. data/config/default.yaml +0 -15
  213. data/lib/freebase2/README.txt +0 -47
  214. data/lib/freebase2/bin/default.yaml +0 -15
  215. data/lib/freebase2/bin/install.rb +0 -42
  216. data/lib/freebase2/bin/run.rb +0 -48
  217. data/lib/freebase2/lib/freebase/configuration.rb +0 -535
  218. data/lib/freebase2/lib/freebase/core.rb +0 -197
  219. data/lib/freebase2/lib/freebase/databus.rb +0 -1128
  220. data/lib/freebase2/lib/freebase/freebase.rb +0 -60
  221. data/lib/freebase2/lib/freebase/logger.rb +0 -117
  222. data/lib/freebase2/lib/freebase/plugin.rb +0 -384
  223. data/lib/freebase2/lib/freebase/properties.rb +0 -130
  224. data/lib/freebase2/lib/freebase/readers.rb +0 -328
  225. data/lib/freebase2/notes +0 -61
  226. data/lib/freebase2/plugins/raa_webrick/httpd.rb +0 -125
  227. data/lib/freebase2/plugins/raa_webrick/plugin.yaml +0 -7
  228. data/lib/freebase2/plugins/raa_webrick/web_root/test.html +0 -5
  229. data/lib/freebase2/plugins/raa_webrick/webserver.yaml +0 -6
  230. data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +0 -8
  231. data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +0 -54
  232. data/lib/freebase2/regress/README +0 -1
  233. data/lib/little_plugger/History.txt +0 -20
  234. data/lib/little_plugger/Rakefile +0 -34
  235. data/lib/little_plugger/lib/little-plugger.rb +0 -323
  236. data/lib/little_plugger/spec/little-plugger_spec.rb +0 -26
  237. data/lib/little_plugger/spec/spec_helper.rb +0 -16
  238. data/lib/logging/History.txt +0 -240
  239. data/lib/logging/Rakefile +0 -37
  240. data/lib/logging/data/bad_logging_1.rb +0 -13
  241. data/lib/logging/data/bad_logging_2.rb +0 -21
  242. data/lib/logging/data/logging.rb +0 -42
  243. data/lib/logging/data/logging.yaml +0 -63
  244. data/lib/logging/data/simple_logging.rb +0 -13
  245. data/lib/logging/examples/appenders.rb +0 -47
  246. data/lib/logging/examples/classes.rb +0 -41
  247. data/lib/logging/examples/consolidation.rb +0 -83
  248. data/lib/logging/examples/formatting.rb +0 -51
  249. data/lib/logging/examples/hierarchies.rb +0 -73
  250. data/lib/logging/examples/layouts.rb +0 -48
  251. data/lib/logging/examples/loggers.rb +0 -29
  252. data/lib/logging/examples/names.rb +0 -43
  253. data/lib/logging/examples/simple.rb +0 -17
  254. data/lib/logging/lib/logging.rb +0 -501
  255. data/lib/logging/lib/logging/appender.rb +0 -251
  256. data/lib/logging/lib/logging/appenders.rb +0 -131
  257. data/lib/logging/lib/logging/appenders/buffering.rb +0 -168
  258. data/lib/logging/lib/logging/appenders/console.rb +0 -60
  259. data/lib/logging/lib/logging/appenders/email.rb +0 -75
  260. data/lib/logging/lib/logging/appenders/file.rb +0 -58
  261. data/lib/logging/lib/logging/appenders/growl.rb +0 -197
  262. data/lib/logging/lib/logging/appenders/io.rb +0 -69
  263. data/lib/logging/lib/logging/appenders/rolling_file.rb +0 -293
  264. data/lib/logging/lib/logging/appenders/string_io.rb +0 -68
  265. data/lib/logging/lib/logging/appenders/syslog.rb +0 -194
  266. data/lib/logging/lib/logging/config/configurator.rb +0 -188
  267. data/lib/logging/lib/logging/config/yaml_configurator.rb +0 -191
  268. data/lib/logging/lib/logging/layout.rb +0 -117
  269. data/lib/logging/lib/logging/layouts.rb +0 -47
  270. data/lib/logging/lib/logging/layouts/basic.rb +0 -32
  271. data/lib/logging/lib/logging/layouts/parseable.rb +0 -211
  272. data/lib/logging/lib/logging/layouts/pattern.rb +0 -311
  273. data/lib/logging/lib/logging/log_event.rb +0 -45
  274. data/lib/logging/lib/logging/logger.rb +0 -503
  275. data/lib/logging/lib/logging/repository.rb +0 -232
  276. data/lib/logging/lib/logging/root_logger.rb +0 -61
  277. data/lib/logging/lib/logging/stats.rb +0 -278
  278. data/lib/logging/lib/logging/utils.rb +0 -153
  279. data/lib/logging/lib/spec/logging_helper.rb +0 -34
  280. data/lib/logging/test/appenders/test_buffered_io.rb +0 -176
  281. data/lib/logging/test/appenders/test_console.rb +0 -66
  282. data/lib/logging/test/appenders/test_email.rb +0 -170
  283. data/lib/logging/test/appenders/test_file.rb +0 -95
  284. data/lib/logging/test/appenders/test_growl.rb +0 -127
  285. data/lib/logging/test/appenders/test_io.rb +0 -129
  286. data/lib/logging/test/appenders/test_rolling_file.rb +0 -200
  287. data/lib/logging/test/appenders/test_syslog.rb +0 -194
  288. data/lib/logging/test/benchmark.rb +0 -86
  289. data/lib/logging/test/config/test_configurator.rb +0 -70
  290. data/lib/logging/test/config/test_yaml_configurator.rb +0 -40
  291. data/lib/logging/test/layouts/test_basic.rb +0 -42
  292. data/lib/logging/test/layouts/test_json.rb +0 -112
  293. data/lib/logging/test/layouts/test_pattern.rb +0 -198
  294. data/lib/logging/test/layouts/test_yaml.rb +0 -121
  295. data/lib/logging/test/setup.rb +0 -44
  296. data/lib/logging/test/test_appender.rb +0 -152
  297. data/lib/logging/test/test_consolidate.rb +0 -46
  298. data/lib/logging/test/test_layout.rb +0 -110
  299. data/lib/logging/test/test_log_event.rb +0 -80
  300. data/lib/logging/test/test_logger.rb +0 -699
  301. data/lib/logging/test/test_logging.rb +0 -267
  302. data/lib/logging/test/test_repository.rb +0 -158
  303. data/lib/logging/test/test_root_logger.rb +0 -81
  304. data/lib/logging/test/test_stats.rb +0 -274
  305. data/lib/logging/test/test_utils.rb +0 -116
  306. data/plugins/application/plugin.yaml +0 -11
  307. data/plugins/application_swt/plugin.yaml +0 -11
  308. data/plugins/auto_indenter/plugin.yaml +0 -12
  309. data/plugins/core/plugin.yaml +0 -7
  310. data/plugins/edit_view/plugin.yaml +0 -14
  311. data/plugins/edit_view_swt/plugin.yaml +0 -14
  312. data/plugins/project/plugin.yaml +0 -12
  313. data/plugins/redcar/plugin.yaml +0 -18
  314. data/plugins/repl/plugin.yaml +0 -12
  315. data/plugins/tree/plugin.yaml +0 -14
  316. data/plugins/tree_view_swt/plugin.yaml +0 -14
@@ -1,232 +0,0 @@
1
-
2
- require 'singleton'
3
-
4
- module Logging
5
-
6
- # The Repository is a hash that stores references to all Loggers
7
- # that have been created. It provides methods to determine parent/child
8
- # relationships between Loggers and to retrieve Loggers from the hash.
9
- #
10
- class Repository
11
- include Singleton
12
-
13
- PATH_DELIMITER = '::' # :nodoc:
14
-
15
- # nodoc:
16
- #
17
- # This is a singleton class -- use the +instance+ method to obtain the
18
- # +Repository+ instance.
19
- #
20
- def initialize
21
- @masters = []
22
- @h = {:root => ::Logging::RootLogger.new}
23
-
24
- # configures the internal logger which is disabled by default
25
- logger = ::Logging::Logger.allocate
26
- logger._setup(
27
- to_key(::Logging),
28
- :parent => @h[:root],
29
- :additive => false,
30
- :level => ::Logging::LEVELS.length # turns this logger off
31
- )
32
- @h[logger.name] = logger
33
- end
34
-
35
- # call-seq:
36
- # instance[name]
37
- #
38
- # Returns the +Logger+ named _name_.
39
- #
40
- # When _name_ is a +String+ or a +Symbol+ it will be used "as is" to
41
- # retrieve the logger. When _name_ is a +Class+ the class name will be
42
- # used to retrieve the logger. When _name_ is an object the name of the
43
- # object's class will be used to retrieve the logger.
44
- #
45
- # Example:
46
- #
47
- # repo = Repository.instance
48
- # obj = MyClass.new
49
- #
50
- # log1 = repo[obj]
51
- # log2 = repo[MyClass]
52
- # log3 = repo['MyClass']
53
- #
54
- # log1.object_id == log2.object_id # => true
55
- # log2.object_id == log3.object_id # => true
56
- #
57
- def []( key ) @h[to_key(key)] end
58
-
59
- # call-seq:
60
- # instance[name] = logger
61
- #
62
- # Stores the _logger_ under the given _name_.
63
- #
64
- # When _name_ is a +String+ or a +Symbol+ it will be used "as is" to
65
- # store the logger. When _name_ is a +Class+ the class name will be
66
- # used to store the logger. When _name_ is an object the name of the
67
- # object's class will be used to store the logger.
68
- #
69
- def []=( key, val ) @h[to_key(key)] = val end
70
-
71
- # call-seq:
72
- # fetch( name )
73
- #
74
- # Returns the +Logger+ named _name_. An +IndexError+ will be raised if
75
- # the logger does not exist.
76
- #
77
- # When _name_ is a +String+ or a +Symbol+ it will be used "as is" to
78
- # retrieve the logger. When _name_ is a +Class+ the class name will be
79
- # used to retrieve the logger. When _name_ is an object the name of the
80
- # object's class will be used to retrieve the logger.
81
- #
82
- def fetch( key ) @h.fetch(to_key(key)) end
83
-
84
- # call-seq:
85
- # has_logger?( name )
86
- #
87
- # Returns +true+ if the given logger exists in the repository. Returns
88
- # +false+ if this is not the case.
89
- #
90
- # When _name_ is a +String+ or a +Symbol+ it will be used "as is" to
91
- # retrieve the logger. When _name_ is a +Class+ the class name will be
92
- # used to retrieve the logger. When _name_ is an object the name of the
93
- # object's class will be used to retrieve the logger.
94
- #
95
- def has_logger?( key ) @h.has_key?(to_key(key)) end
96
-
97
- # call-seq:
98
- # parent( key )
99
- #
100
- # Returns the parent logger for the logger identified by _key_ where
101
- # _key_ follows the same identification rules described in
102
- # <tt>Repository#[]</tt>. A parent is returned regardless of the
103
- # existence of the logger referenced by _key_.
104
- #
105
- # A note about parents -
106
- #
107
- # If you have a class A::B::C, then the parent of C is B, and the parent
108
- # of B is A. Parents are determined by namespace.
109
- #
110
- def parent( key )
111
- name = parent_name(to_key(key))
112
- return if name.nil?
113
- @h[name]
114
- end
115
-
116
- # call-seq:
117
- # children( key )
118
- #
119
- # Returns an array of the children loggers for the logger identified by
120
- # _key_ where _key_ follows the same identification rules described in
121
- # +Repository#[]+. Children are returned regardless of the
122
- # existence of the logger referenced by _key_.
123
- #
124
- def children( parent )
125
- ary = []
126
- parent = to_key(parent)
127
-
128
- @h.each_pair do |child,logger|
129
- next if :root == child
130
- ary << logger if parent == parent_name(child)
131
- end
132
- return ary.sort
133
- end
134
-
135
- # call-seq:
136
- # to_key( key )
137
- #
138
- # Takes the given _key_ and converts it into a form that can be used to
139
- # retrieve a logger from the +Repository+ hash.
140
- #
141
- # When _key_ is a +String+ or a +Symbol+ it will be returned "as is".
142
- # When _key_ is a +Class+ the class name will be returned. When _key_ is
143
- # an object the name of the object's class will be returned.
144
- #
145
- def to_key( key )
146
- case key
147
- when :root, 'root'; :root
148
- when String; key
149
- when Symbol; key.to_s
150
- when Module; key.logger_name
151
- when Object; key.class.logger_name
152
- end
153
- end
154
-
155
- # Returns the name of the parent for the logger identified by the given
156
- # _key_. If the _key_ is for the root logger, then +nil+ is returned.
157
- #
158
- def parent_name( key )
159
- return if :root == key
160
-
161
- a = key.split PATH_DELIMITER
162
- p = :root
163
- while a.slice!(-1) and !a.empty?
164
- k = a.join PATH_DELIMITER
165
- if @h.has_key? k then p = k; break end
166
- end
167
- p
168
- end
169
-
170
- # call-seq:
171
- # add_master( 'First::Name', 'Second::Name', ... )
172
- #
173
- # Add the given logger names to the list of consolidation masters. All
174
- # classes in the given namespace(s) will use these loggers instead of
175
- # creating their own individual loggers.
176
- #
177
- def add_master( *args )
178
- args.map do |key|
179
- key = to_key(key)
180
- @masters << key unless @masters.include? key
181
- key
182
- end
183
- end
184
-
185
- # call-seq:
186
- # master_for( key )
187
- #
188
- # Retruns the consolidation master name for the given _key_. If there is
189
- # no consolidation master, then +nil+ is returned.
190
- #
191
- def master_for( key )
192
- return if @masters.empty?
193
- key = to_key(key)
194
-
195
- loop do
196
- break key if @masters.include? key
197
- break nil if :root == key
198
-
199
- if index = key.rindex(PATH_DELIMITER)
200
- key = key.slice(0, index)
201
- else
202
- key = :root
203
- end
204
- end
205
- end
206
-
207
- # :stopdoc:
208
- def self.reset
209
- if defined?(@singleton__instance__)
210
- @singleton__mutex__.synchronize {
211
- @singleton__instance__ = nil
212
- }
213
- else
214
- @__instance__ = nil
215
- class << self
216
- nonce = class << Singleton; self; end
217
- if defined?(nonce::FirstInstanceCall)
218
- define_method(:instance, nonce::FirstInstanceCall)
219
- else
220
- remove_method(:instance)
221
- Singleton.__init__(::Logging::Repository)
222
- end
223
- end
224
- end
225
- return nil
226
- end
227
- # :startdoc:
228
-
229
- end # class Repository
230
- end # module Logging
231
-
232
- # EOF
@@ -1,61 +0,0 @@
1
-
2
- module Logging
3
-
4
- # The root logger exists to ensure that all loggers have a parent and a
5
- # defined logging level. If a logger is additive, eventually its log
6
- # events will propogate up to the root logger.
7
- #
8
- class RootLogger < Logger
9
-
10
- # undefine the methods that the root logger does not need
11
- %w(additive additive= parent parent=).each do |m|
12
- undef_method m.intern
13
- end
14
-
15
- attr_reader :level
16
-
17
- # call-seq:
18
- # RootLogger.new
19
- #
20
- # Returns a new root logger instance. This method will be called only
21
- # once when the +Repository+ singleton instance is created.
22
- #
23
- def initialize( )
24
- ::Logging.init unless ::Logging.const_defined? 'MAX_LEVEL_LENGTH'
25
-
26
- @name = 'root'
27
- @appenders = []
28
- @additive = false
29
- @trace = false
30
- @level = 0
31
- ::Logging::Logger.define_log_methods(self)
32
- end
33
-
34
- # call-seq:
35
- # log <=> other
36
- #
37
- # Compares this logger by name to another logger. The normal return codes
38
- # for +String+ objects apply.
39
- #
40
- def <=>( other )
41
- case other
42
- when self; 0
43
- when ::Logging::Logger; -1
44
- else raise ArgumentError, 'expecting a Logger instance' end
45
- end
46
-
47
- # call-seq:
48
- # level = :all
49
- #
50
- # Set the level for the root logger. The functionality of this method is
51
- # the same as +Logger#level=+, but setting the level to +nil+ for the
52
- # root logger is not allowed. The level is silently set to :all.
53
- #
54
- def level=( level )
55
- super(level || 0)
56
- end
57
-
58
- end # class RootLogger
59
- end # module Logging
60
-
61
- # EOF
@@ -1,278 +0,0 @@
1
- # Simple statistics collection and logging module.
2
- #
3
- module Logging::Stats
4
-
5
- # A very simple little class for doing some basic fast statistics
6
- # sampling. You feed it either samples of numeric data you want measured
7
- # or you call Sampler#tick to get it to add a time delta between the last
8
- # time you called it. When you're done either call sum, sumsq, num, min,
9
- # max, mean or sd to get the information. The other option is to just
10
- # call to_s and see everything.
11
- #
12
- # It does all of this very fast and doesn't take up any memory since the
13
- # samples are not stored but instead all the values are calculated on the
14
- # fly.
15
- #
16
- class Sampler
17
-
18
- attr_reader :name, :sum, :sumsq, :num, :min, :max, :last
19
-
20
- # Create a new sampler.
21
- #
22
- def initialize( name )
23
- @name = name
24
- reset
25
- end
26
-
27
- # Resets the internal counters so you can start sampling again.
28
- #
29
- def reset
30
- @sum = 0.0
31
- @sumsq = 0.0
32
- @num = 0
33
- @min = 0.0
34
- @max = 0.0
35
- @last = nil
36
- @last_time = Time.now.to_f
37
- self
38
- end
39
-
40
- # Coalesce the statistics from the _other_ sampler into this one. The
41
- # _other_ sampler is not modified by this method.
42
- #
43
- # Coalescing the same two samplers mutliple times should only be done if
44
- # one of the samplers is reset between calls to this method. Otherwise
45
- # statistics will be counted multiple times.
46
- #
47
- def coalesce( other )
48
- @sum += other.sum
49
- @sumsq += other.sumsq
50
- if other.num > 0
51
- @min = other.min if @min > other.min
52
- @max = other.max if @max < other.max
53
- @last = other.last
54
- end
55
- @num += other.num
56
- end
57
-
58
- # Adds a sampling to the calculations.
59
- #
60
- def sample( s )
61
- @sum += s
62
- @sumsq += s * s
63
- if @num == 0
64
- @min = @max = s
65
- else
66
- @min = s if @min > s
67
- @max = s if @max < s
68
- end
69
- @num += 1
70
- @last = s
71
- end
72
-
73
- # Returns statistics in a common format.
74
- #
75
- def to_s
76
- "[%s]: SUM=%0.6f, SUMSQ=%0.6f, NUM=%d, MEAN=%0.6f, SD=%0.6f, MIN=%0.6f, MAX=%0.6f" % to_a
77
- end
78
-
79
- # An array of the values: [name,sum,sumsq,num,mean,sd,min,max]
80
- #
81
- def to_a
82
- [name, sum, sumsq, num, mean, sd, min, max]
83
- end
84
-
85
- # Class method that returns the headers that a CSV file would have for the
86
- # values that this stats object is using.
87
- #
88
- def self.keys
89
- %w[name sum sumsq num mean sd min max]
90
- end
91
-
92
- def to_hash
93
- {:name => name, :sum => sum, :sumsq => sumsq, :num => num,
94
- :mean => mean, :sd => sd, :min => min, :max => max}
95
- end
96
-
97
- # Calculates and returns the mean for the data passed so far.
98
- #
99
- def mean
100
- return 0.0 if num < 1
101
- sum / num
102
- end
103
-
104
- # Calculates the standard deviation of the data so far.
105
- #
106
- def sd
107
- return 0.0 if num < 2
108
-
109
- # (sqrt( ((s).sumsq - ( (s).sum * (s).sum / (s).num)) / ((s).num-1) ))
110
- begin
111
- return Math.sqrt( (sumsq - ( sum * sum / num)) / (num-1) )
112
- rescue Errno::EDOM
113
- return 0.0
114
- end
115
- end
116
-
117
- # You can just call tick repeatedly if you need the delta times
118
- # between a set of sample periods, but many times you actually want
119
- # to sample how long something takes between a start/end period.
120
- # Call mark at the beginning and then tick at the end you'll get this
121
- # kind of measurement. Don't mix mark/tick and tick sampling together
122
- # or the measurement will be meaningless.
123
- #
124
- def mark
125
- @last_time = Time.now.to_f
126
- end
127
-
128
- # Adds a time delta between now and the last time you called this. This
129
- # will give you the average time between two activities.
130
- #
131
- # An example is:
132
- #
133
- # t = Sampler.new("do_stuff")
134
- # 10000.times { do_stuff(); t.tick }
135
- # t.dump("time")
136
- #
137
- def tick
138
- now = Time.now.to_f
139
- sample(now - @last_time)
140
- @last_time = now
141
- end
142
- end # class Sampler
143
-
144
- # The Tracker class provides synchronized access to a collection of
145
- # related samplers.
146
- #
147
- class Tracker
148
-
149
- attr_reader :stats
150
-
151
- # Create a new Tracker instance. An optional boolean can be bassed in to
152
- # change the "threadsafe" value of the tracker. By default all trackers
153
- # are created to be threadsafe.
154
- #
155
- def initialize( threadsafe = true )
156
- @stats = Hash.new do |h,name|
157
- h[name] = ::Logging::Stats::Sampler.new(name)
158
- end
159
- @mutex = threadsafe ? ReentrantMutex.new : nil
160
- @runner = nil
161
- end
162
-
163
- # Coalesce the samplers from the _other_ tracker into this one. The
164
- # _other_ tracker is not modified by this method.
165
- #
166
- # Coalescing the same two trackers mutliple times should only be done if
167
- # one of the trackers is reset between calls to this method. Otherwise
168
- # statistics will be counted multiple times.
169
- #
170
- # Only this tracker is locked when the coalescing is happening. It is
171
- # left to the user to lock the other tracker if that is the desired
172
- # behavior. This is a deliberate choice in order to prevent deadlock
173
- # situations where two threads are contending on the same mutex.
174
- #
175
- def coalesce( other )
176
- sync {
177
- other.stats.each do |name,sampler|
178
- stats[name].coalesce(sampler)
179
- end
180
- }
181
- end
182
-
183
- # Add the given _value_ to the named _event_ sampler. The sampler will
184
- # be created if it does not exist.
185
- #
186
- def sample( event, value )
187
- sync {stats[event].sample(value)}
188
- end
189
-
190
- # Mark the named _event_ sampler. The sampler will be created if it does
191
- # not exist.
192
- #
193
- def mark( event )
194
- sync {stats[event].mark}
195
- end
196
-
197
- # Tick the named _event_ sampler. The sampler will be created if it does
198
- # not exist.
199
- #
200
- def tick( event )
201
- sync {stats[event].tick}
202
- end
203
-
204
- # Time the execution of the given block and store the results in the
205
- # named _event_ sampler. The sampler will be created if it does not
206
- # exist.
207
- #
208
- def time( event )
209
- sync {stats[event].mark}
210
- yield
211
- ensure
212
- sync {stats[event].tick}
213
- end
214
-
215
- # Reset all the samplers managed by this tracker.
216
- #
217
- def reset
218
- sync {stats.each_value {|sampler| sampler.reset}}
219
- self
220
- end
221
-
222
- # Periodically execute the given _block_ at the given _period_. The
223
- # tracker will be locked while the block is executing.
224
- #
225
- # This method is useful for logging statistics at given interval.
226
- #
227
- # Example
228
- #
229
- # periodically_run( 300 ) {
230
- # logger = Logging::Logger['stats']
231
- # tracker.each {|sampler| logger << sampler.to_s}
232
- # tracker.reset
233
- # }
234
- #
235
- def periodically_run( period, &block )
236
- raise ArgumentError, 'a runner already exists' unless @runner.nil?
237
-
238
- @runner = Thread.new do
239
- start = stop = Time.now.to_f
240
- loop do
241
- seconds = period - (stop-start)
242
- seconds = period if seconds <= 0
243
- sleep seconds
244
-
245
- start = Time.now.to_f
246
- break if Thread.current[:stop] == true
247
- if @mutex then @mutex.synchronize(&block)
248
- else block.call end
249
- stop = Time.now.to_f
250
- end
251
- end
252
- end
253
-
254
- # Stop the current periodic runner if present.
255
- #
256
- def stop
257
- return if @runner.nil?
258
- @runner[:stop] = true
259
- @runner.wakeup if @runner.status
260
- @runner = nil
261
- end
262
-
263
- # call-seq:
264
- # sync { block }
265
- #
266
- # Obtains an exclusive lock, runs the block, and releases the lock when
267
- # the block completes. This method is re-entrant so that a single thread
268
- # can call +sync+ multiple times without hanging the thread.
269
- #
270
- def sync
271
- return yield if @mutex.nil?
272
- @mutex.synchronize {yield}
273
- end
274
- end # class Tracker
275
-
276
- end # module Logging::Stats
277
-
278
- # EOF