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,293 +0,0 @@
1
-
2
- module Logging::Appenders
3
-
4
- # An appender that writes to a file and ensures that the file size or age
5
- # never exceeds some user specified level.
6
- #
7
- # The goal of this class is to write log messages to a file. When the file
8
- # age or size exceeds a given limit then the log file is closed, the name
9
- # is changed to indicate it is an older log file, and a new log file is
10
- # created.
11
- #
12
- # The name of the log file is changed by inserting the age of the log file
13
- # (as a single number) between the log file name and the extension. If the
14
- # file has no extension then the number is appended to the filename. Here
15
- # is a simple example:
16
- #
17
- # /var/log/ruby.log => /var/log/ruby.1.log
18
- #
19
- # New log messages will be appended to a newly opened log file of the same
20
- # name (<tt>/var/log/ruby.log</tt> in our example above). The age number
21
- # for all older log files is incremented when the log file is rolled. The
22
- # number of older log files to keep can be given, otherwise all the log
23
- # files are kept.
24
- #
25
- # The actual process of rolling all the log file names can be expensive if
26
- # there are many, many older log files to process.
27
- #
28
- class RollingFile < ::Logging::Appenders::IO
29
-
30
- # call-seq:
31
- # RollingFile.new( name, opts )
32
- #
33
- # Creates a new Rolling File Appender. The _name_ is the unique Appender
34
- # name used to retrieve this appender from the Appender hash. The only
35
- # required option is the filename to use for creating log files.
36
- #
37
- # [:filename] The base filename to use when constructing new log
38
- # filenames.
39
- #
40
- # The following options are optional:
41
- #
42
- # [:layout] The Layout that will be used by this appender. The Basic
43
- # layout will be used if none is given.
44
- # [:truncate] When set to true any existing log files will be rolled
45
- # immediately and a new, empty log file will be created.
46
- # [:size] The maximum allowed size (in bytes) of a log file before
47
- # it is rolled.
48
- # [:age] The maximum age (in seconds) of a log file before it is
49
- # rolled. The age can also be given as 'daily', 'weekly',
50
- # or 'monthly'.
51
- # [:keep] The number of rolled log files to keep.
52
- # [:safe] When set to true, extra checks are made to ensure that
53
- # only once process can roll the log files; this option
54
- # should only be used when multiple processes will be
55
- # logging to the same log file (does not work on Windows)
56
- #
57
- def initialize( name, opts = {} )
58
- # raise an error if a filename was not given
59
- @fn = opts.getopt(:filename, name)
60
- raise ArgumentError, 'no filename was given' if @fn.nil?
61
- ::Logging::Appenders::File.assert_valid_logfile(@fn)
62
-
63
- # grab the information we need to properly roll files
64
- ext = ::File.extname(@fn)
65
- bn = ::File.join(::File.dirname(@fn), ::File.basename(@fn, ext))
66
- @rgxp = %r/\.(\d+)#{Regexp.escape(ext)}\z/
67
- @glob = "#{bn}.*#{ext}"
68
- @logname_fmt = "#{bn}.%d#{ext}"
69
-
70
- # grab our options
71
- @keep = opts.getopt(:keep, :as => Integer)
72
- @size = opts.getopt(:size, :as => Integer)
73
-
74
- @lockfile = if HAVE_LOCKFILE and opts.getopt(:safe, false)
75
- ::Lockfile.new(
76
- @fn + '.lck',
77
- :retries => 1,
78
- :timeout => 2
79
- )
80
- end
81
-
82
- code = 'def sufficiently_aged?() false end'
83
- @age_fn = @fn + '.age'
84
-
85
- case @age = opts.getopt(:age)
86
- when 'daily'
87
- FileUtils.touch(@age_fn) unless test(?f, @age_fn)
88
- code = <<-CODE
89
- def sufficiently_aged?
90
- now = Time.now
91
- start = ::File.mtime(@age_fn)
92
- if (now.day != start.day) or (now - start) > 86400
93
- return true
94
- end
95
- false
96
- end
97
- CODE
98
- when 'weekly'
99
- FileUtils.touch(@age_fn) unless test(?f, @age_fn)
100
- code = <<-CODE
101
- def sufficiently_aged?
102
- if (Time.now - ::File.mtime(@age_fn)) > 604800
103
- return true
104
- end
105
- false
106
- end
107
- CODE
108
- when 'monthly'
109
- FileUtils.touch(@age_fn) unless test(?f, @age_fn)
110
- code = <<-CODE
111
- def sufficiently_aged?
112
- now = Time.now
113
- start = ::File.mtime(@age_fn)
114
- if (now.month != start.month) or (now - start) > 2678400
115
- return true
116
- end
117
- false
118
- end
119
- CODE
120
- when Integer, String
121
- @age = Integer(@age)
122
- FileUtils.touch(@age_fn) unless test(?f, @age_fn)
123
- code = <<-CODE
124
- def sufficiently_aged?
125
- if (Time.now - ::File.mtime(@age_fn)) > @age
126
- return true
127
- end
128
- false
129
- end
130
- CODE
131
- end
132
- meta = class << self; self end
133
- meta.class_eval code, __FILE__, __LINE__
134
-
135
- # if the truncate flag was set to true, then roll
136
- roll_now = opts.getopt(:truncate, false)
137
- roll_files if roll_now
138
-
139
- super(name, open_logfile, opts)
140
- end
141
-
142
- # Returns the path to the logfile.
143
- #
144
- def filename() @fn.dup end
145
-
146
-
147
- private
148
-
149
- # call-seq:
150
- # write( event )
151
- #
152
- # Write the given _event_ to the log file. The log file will be rolled
153
- # if the maximum file size is exceeded or if the file is older than the
154
- # maximum age.
155
- #
156
- def write( event )
157
- str = event.instance_of?(::Logging::LogEvent) ?
158
- @layout.format(event) : event.to_s
159
- return if str.empty?
160
-
161
- check_logfile
162
- super(str)
163
-
164
- if roll_required?(str)
165
- return roll unless @lockfile
166
-
167
- @lockfile.lock {
168
- check_logfile
169
- roll if roll_required?
170
- }
171
- end
172
- end
173
-
174
- # call-seq:
175
- # roll
176
- #
177
- # Close the currently open log file, roll all the log files, and open a
178
- # new log file.
179
- #
180
- def roll
181
- @io.close rescue nil
182
- roll_files
183
- open_logfile
184
- end
185
-
186
- # call-seq:
187
- # roll_required?( str ) => true or false
188
- #
189
- # Returns +true+ if the log file needs to be rolled.
190
- #
191
- def roll_required?( str = nil )
192
- # check if max size has been exceeded
193
- s = if @size
194
- @file_size = @stat.size if @stat.size > @file_size
195
- @file_size += str.size if str
196
- @file_size > @size
197
- end
198
-
199
- # check if max age has been exceeded
200
- a = sufficiently_aged?
201
-
202
- return (s || a)
203
- end
204
-
205
- # call-seq:
206
- # roll_files
207
- #
208
- # Roll the log files. This is accomplished by renaming the log files
209
- # starting with the oldest and working towards the youngest.
210
- #
211
- # test.10.log => deleted (we are only keeping 10)
212
- # test.9.log => test.10.log
213
- # test.8.log => test.9.log
214
- # ...
215
- # test.1.log => test.2.log
216
- #
217
- # Lastly the current log file is rolled to a numbered log file.
218
- #
219
- # test.log => test.1.log
220
- #
221
- # This method leaves no <tt>test.log</tt> file when it is done. This
222
- # file will be created elsewhere.
223
- #
224
- def roll_files
225
- return unless ::File.exist?(@fn)
226
-
227
- files = Dir.glob(@glob).find_all {|fn| @rgxp =~ fn}
228
- unless files.empty?
229
- # sort the files in revese order based on their count number
230
- files = files.sort do |a,b|
231
- a = Integer(@rgxp.match(a)[1])
232
- b = Integer(@rgxp.match(b)[1])
233
- b <=> a
234
- end
235
-
236
- # for each file, roll its count number one higher
237
- files.each do |fn|
238
- cnt = Integer(@rgxp.match(fn)[1])
239
- if @keep and cnt >= @keep
240
- ::File.delete fn
241
- next
242
- end
243
- ::File.rename fn, sprintf(@logname_fmt, cnt+1)
244
- end
245
- end
246
-
247
- # finally reanme the base log file
248
- ::File.rename(@fn, sprintf(@logname_fmt, 1))
249
-
250
- # touch the age file if needed
251
- FileUtils.touch(@age_fn) if @age
252
- end
253
-
254
- # call-seq:
255
- # open_logfile => io
256
- #
257
- # Opens the logfile and stores the current file szie and inode.
258
- #
259
- def open_logfile
260
- @io = ::File.new(@fn, 'a')
261
- @io.sync = true
262
-
263
- @stat = ::File.stat(@fn)
264
- @file_size = @stat.size
265
- @inode = @stat.ino
266
-
267
- return @io
268
- end
269
-
270
- #
271
- #
272
- def check_logfile
273
- retry_cnt ||= 0
274
-
275
- if ::File.exist?(@fn) then
276
- @stat = ::File.stat(@fn)
277
- return unless @lockfile
278
- return if @inode == @stat.ino
279
-
280
- @io.close rescue nil
281
- end
282
- open_logfile
283
- rescue SystemCallError
284
- raise if retry_cnt > 3
285
- retry_cnt += 1
286
- sleep 0.08
287
- retry
288
- end
289
-
290
- end # class RollingFile
291
- end # module Logging::Appenders
292
-
293
- # EOF
@@ -1,68 +0,0 @@
1
-
2
- module Logging::Appenders
3
-
4
- # This class provides an Appender that can write to a StringIO instance.
5
- # This is very useful for testing log message output.
6
- #
7
- class StringIo < ::Logging::Appenders::IO
8
-
9
- # The StringIO instance the appender is writing to.
10
- attr_reader :sio
11
-
12
- # call-seq:
13
- # StringIo.new( name, opts = {} )
14
- #
15
- # Creates a new StrinIo appender that will append log messages to a
16
- # StringIO instance.
17
- #
18
- def initialize( name, opts = {} )
19
- @sio = StringIO.new
20
- @sio.extend IoToS
21
- @pos = 0
22
- super(name, @sio, opts)
23
- end
24
-
25
- # Clears the internal StringIO instance. All log messages are removed
26
- # from the buffer.
27
- #
28
- def clear
29
- sync {
30
- @pos = 0
31
- @sio.seek 0
32
- @sio.truncate 0
33
- }
34
- end
35
- alias :reset :clear
36
-
37
- %w[read readline readlines].each do|m|
38
- class_eval <<-CODE
39
- def #{m}( *args )
40
- sync {
41
- begin
42
- @sio.seek @pos
43
- rv = @sio.#{m}(*args)
44
- @pos = @sio.tell
45
- rv
46
- rescue EOFError
47
- nil
48
- end
49
- }
50
- end
51
- CODE
52
- end
53
-
54
- # :stopdoc:
55
- module IoToS
56
- def to_s
57
- seek 0
58
- str = read
59
- seek 0
60
- return str
61
- end
62
- end
63
- # :startdoc:
64
-
65
- end # class StringIo
66
- end # module Logging::Appenders
67
-
68
- # EOF
@@ -1,194 +0,0 @@
1
-
2
- # only load this class if we have the syslog library
3
- # Windows does not have syslog
4
- #
5
- if HAVE_SYSLOG
6
-
7
- module Logging::Appenders
8
-
9
- # This class provides an Appender that can write to the UNIX syslog
10
- # daemon.
11
- #
12
- class Syslog < ::Logging::Appender
13
- include ::Syslog::Constants
14
-
15
- # call-seq:
16
- # Syslog.new( name, opts = {} )
17
- #
18
- # Create an appender that will log messages to the system message
19
- # logger. The message is then written to the system console, log files,
20
- # logged-in users, or forwarded to other machines as appropriate. The
21
- # options that can be used to configure the appender are as follows:
22
- #
23
- # :ident => identifier string (name is used by default)
24
- # :logopt => options used when opening the connection
25
- # :facility => the syslog facility to use
26
- #
27
- # The parameter :ident is a string that will be prepended to every
28
- # message. The :logopt argument is a bit field specifying logging
29
- # options, which is formed by OR'ing one or more of the following
30
- # values:
31
- #
32
- # LOG_CONS If syslog() cannot pass the message to syslogd(8) it
33
- # wil attempt to write the message to the console
34
- # ('/dev/console').
35
- #
36
- # LOG_NDELAY Open the connection to syslogd(8) immediately. Normally
37
- # the open is delayed until the first message is logged.
38
- # Useful for programs that need to manage the order in
39
- # which file descriptors are allocated.
40
- #
41
- # LOG_PERROR Write the message to standard error output as well to
42
- # the system log.
43
- #
44
- # LOG_PID Log the process id with each message: useful for
45
- # identifying instantiations of daemons.
46
- #
47
- # The :facility parameter encodes a default facility to be assigned to
48
- # all messages that do not have an explicit facility encoded:
49
- #
50
- # LOG_AUTH The authorization system: login(1), su(1), getty(8),
51
- # etc.
52
- #
53
- # LOG_AUTHPRIV The same as LOG_AUTH, but logged to a file readable
54
- # only by selected individuals.
55
- #
56
- # LOG_CONSOLE Messages written to /dev/console by the kernel console
57
- # output driver.
58
- #
59
- # LOG_CRON The cron daemon: cron(8).
60
- #
61
- # LOG_DAEMON System daemons, such as routed(8), that are not
62
- # provided for explicitly by other facilities.
63
- #
64
- # LOG_FTP The file transfer protocol daemons: ftpd(8), tftpd(8).
65
- #
66
- # LOG_KERN Messages generated by the kernel. These cannot be
67
- # generated by any user processes.
68
- #
69
- # LOG_LPR The line printer spooling system: lpr(1), lpc(8),
70
- # lpd(8), etc.
71
- #
72
- # LOG_MAIL The mail system.
73
- #
74
- # LOG_NEWS The network news system.
75
- #
76
- # LOG_SECURITY Security subsystems, such as ipfw(4).
77
- #
78
- # LOG_SYSLOG Messages generated internally by syslogd(8).
79
- #
80
- # LOG_USER Messages generated by random user processes. This is
81
- # the default facility identifier if none is specified.
82
- #
83
- # LOG_UUCP The uucp system.
84
- #
85
- # LOG_LOCAL0 Reserved for local use. Similarly for LOG_LOCAL1
86
- # through LOG_LOCAL7.
87
- #
88
- def initialize( name, opts = {} )
89
- ident = opts.getopt(:ident, name)
90
- logopt = opts.getopt(:logopt, (LOG_PID | LOG_CONS), :as => Integer)
91
- facility = opts.getopt(:facility, LOG_USER, :as => Integer)
92
- @syslog = ::Syslog.open(ident, logopt, facility)
93
-
94
- # provides a mapping from the default Logging levels
95
- # to the syslog levels
96
- @map = [LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERR, LOG_CRIT]
97
-
98
- map = opts.getopt(:map)
99
- self.map = map unless map.nil?
100
-
101
- super
102
- end
103
-
104
- # call-seq:
105
- # map = { logging_levels => syslog_levels }
106
- #
107
- # Configure the mapping from the Logging levels to the syslog levels.
108
- # This is needed in order to log events at the proper syslog level.
109
- #
110
- # Without any configuration, the following maping will be used:
111
- #
112
- # :debug => LOG_DEBUG
113
- # :info => LOG_INFO
114
- # :warn => LOG_WARNING
115
- # :error => LOG_ERR
116
- # :fatal => LOG_CRIT
117
- #
118
- def map=( levels )
119
- map = []
120
- levels.keys.each do |lvl|
121
- num = ::Logging.level_num(lvl)
122
- map[num] = syslog_level_num(levels[lvl])
123
- end
124
- @map = map
125
- end
126
-
127
- # call-seq:
128
- # close
129
- #
130
- # Closes the connetion to the syslog facility.
131
- #
132
- def close( footer = true )
133
- super
134
- @syslog.close
135
- self
136
- end
137
-
138
- # call-seq:
139
- # closed? => true or false
140
- #
141
- # Queries the connection to the syslog facility and returns +true+ if
142
- # the connection is closed.
143
- #
144
- def closed?
145
- !@syslog.opened?
146
- end
147
-
148
-
149
- private
150
-
151
- # call-seq:
152
- # write( event )
153
- #
154
- # Write the given _event_ to the syslog facility. The log event will be
155
- # processed through the Layout assciated with this appender. The message
156
- # will be logged at the level specified by the event.
157
- #
158
- def write( event )
159
- pri = LOG_DEBUG
160
- message = if event.instance_of?(::Logging::LogEvent)
161
- pri = @map[event.level]
162
- @layout.format(event)
163
- else
164
- event.to_s
165
- end
166
- return if message.empty?
167
-
168
- @syslog.log(pri, '%s', message)
169
- self
170
- end
171
-
172
- # call-seq:
173
- # syslog_level_num( level ) => integer
174
- #
175
- # Takes the given _level_ as a string, symbol, or integer and returns
176
- # the corresponding syslog level number.
177
- #
178
- def syslog_level_num( level )
179
- case level
180
- when Integer; level
181
- when String, Symbol
182
- level = level.to_s.upcase
183
- self.class.const_get level
184
- else
185
- raise ArgumentError, "unkonwn level '#{level}'"
186
- end
187
- end
188
-
189
- end # class Syslog
190
-
191
- end # module Logging::Appenders
192
- end # HAVE_SYSLOG
193
-
194
- # EOF