coffeecake 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1336) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +4 -0
  3. data/README.markdown +28 -0
  4. data/Rakefile +2 -0
  5. data/bin/ck +16 -0
  6. data/coffeecake.gemspec +21 -0
  7. data/lib/coffeecake.rb +4 -0
  8. data/lib/coffeecake/generators.rb +12 -0
  9. data/lib/coffeecake/generators/new_generator.rb +55 -0
  10. data/lib/coffeecake/templates/.gitkeep +0 -0
  11. data/lib/coffeecake/templates/README.markdown +56 -0
  12. data/lib/coffeecake/templates/SpecHelper.tt +0 -0
  13. data/lib/coffeecake/templates/docs_readme +5 -0
  14. data/lib/coffeecake/templates/jasmine.tt +18 -0
  15. data/lib/coffeecake/templates/lib.tt +3 -0
  16. data/lib/coffeecake/templates/spec.tt +3 -0
  17. data/lib/coffeecake/version.rb +3 -0
  18. data/lib/thor_register_patch.rb +16 -0
  19. data/node_modules/.bin/cake +7 -0
  20. data/node_modules/.bin/coffee +7 -0
  21. data/node_modules/.bin/docco +8 -0
  22. data/node_modules/.bin/jasmine +26 -0
  23. data/node_modules/.bin/jasmine-node +7 -0
  24. data/node_modules/.bin/uglifycss +127 -0
  25. data/node_modules/.bin/uglifyjs +317 -0
  26. data/node_modules/coffee-script/.npmignore +11 -0
  27. data/node_modules/coffee-script/LICENSE +22 -0
  28. data/node_modules/coffee-script/README +51 -0
  29. data/node_modules/coffee-script/Rakefile +78 -0
  30. data/node_modules/coffee-script/bin/cake +7 -0
  31. data/node_modules/coffee-script/bin/coffee +7 -0
  32. data/node_modules/coffee-script/extras/jsl.conf +44 -0
  33. data/node_modules/coffee-script/lib/coffee-script/browser.js +74 -0
  34. data/node_modules/coffee-script/lib/coffee-script/cake.js +89 -0
  35. data/node_modules/coffee-script/lib/coffee-script/coffee-script.js +148 -0
  36. data/node_modules/coffee-script/lib/coffee-script/command.js +310 -0
  37. data/node_modules/coffee-script/lib/coffee-script/grammar.js +588 -0
  38. data/node_modules/coffee-script/lib/coffee-script/helpers.js +72 -0
  39. data/node_modules/coffee-script/lib/coffee-script/index.js +10 -0
  40. data/node_modules/coffee-script/lib/coffee-script/lexer.js +687 -0
  41. data/node_modules/coffee-script/lib/coffee-script/nodes.js +2481 -0
  42. data/node_modules/coffee-script/lib/coffee-script/optparse.js +122 -0
  43. data/node_modules/coffee-script/lib/coffee-script/parser.js +670 -0
  44. data/node_modules/coffee-script/lib/coffee-script/repl.js +149 -0
  45. data/node_modules/coffee-script/lib/coffee-script/rewriter.js +288 -0
  46. data/node_modules/coffee-script/lib/coffee-script/scope.js +124 -0
  47. data/node_modules/coffee-script/npm-install-45965.sh +282 -0
  48. data/node_modules/coffee-script/package.json +31 -0
  49. data/node_modules/docco/.gitignore +3 -0
  50. data/node_modules/docco/Cakefile +27 -0
  51. data/node_modules/docco/README +13 -0
  52. data/node_modules/docco/bin/docco +8 -0
  53. data/node_modules/docco/index.html +143 -0
  54. data/node_modules/docco/lib/docco.js +155 -0
  55. data/node_modules/docco/package.json +21 -0
  56. data/node_modules/docco/resources/docco.css +186 -0
  57. data/node_modules/docco/resources/docco.jst +58 -0
  58. data/node_modules/docco/src/docco.coffee +204 -0
  59. data/node_modules/docco/vendor/showdown.js +1298 -0
  60. data/node_modules/jasmine-jquery/.gitignore +3 -0
  61. data/node_modules/jasmine-jquery/MIT.LICENSE +20 -0
  62. data/node_modules/jasmine-jquery/README.markdown +174 -0
  63. data/node_modules/jasmine-jquery/SpecRunner.html +24 -0
  64. data/node_modules/jasmine-jquery/index.js +15 -0
  65. data/node_modules/jasmine-jquery/lib/jasmine-jquery.js +288 -0
  66. data/node_modules/jasmine-jquery/package.json +19 -0
  67. data/node_modules/jasmine-jquery/spec/fixtures/real_non_mocked_fixture.html +1 -0
  68. data/node_modules/jasmine-jquery/spec/suites/jasmine-jquery-spec.js +691 -0
  69. data/node_modules/jasmine-node/.gitignore +10 -0
  70. data/node_modules/jasmine-node/LICENSE +22 -0
  71. data/node_modules/jasmine-node/README.md +35 -0
  72. data/node_modules/jasmine-node/bin/jasmine-node +7 -0
  73. data/node_modules/jasmine-node/lib/jasmine-node/cli.js +110 -0
  74. data/node_modules/jasmine-node/lib/jasmine-node/index.js +171 -0
  75. data/node_modules/jasmine-node/lib/jasmine-node/jasmine-2.0.0.rc1.js +2479 -0
  76. data/node_modules/jasmine-node/lib/jasmine-node/reporter.js +177 -0
  77. data/node_modules/jasmine-node/package.json +22 -0
  78. data/node_modules/jasmine-node/spec/CoffeeSpec.coffee +4 -0
  79. data/node_modules/jasmine-node/spec/SampleSpecs.js +15 -0
  80. data/node_modules/jasmine-node/spec/TestSpec.js +5 -0
  81. data/node_modules/jasmine-node/spec/helper_spec.js +7 -0
  82. data/node_modules/jasmine-node/spec/include/include_spec.js +7 -0
  83. data/node_modules/jasmine-node/spec/include/lib/test.js +3 -0
  84. data/node_modules/jasmine-node/spec/nested.js/NestedSpec.js +5 -0
  85. data/node_modules/jasmine-node/spec/nested/NestedSpec.js +5 -0
  86. data/node_modules/jasmine-node/spec/nested/uber-nested/UberNestedSpec.js +11 -0
  87. data/node_modules/jasmine-node/spec/sample_helper.js +19 -0
  88. data/node_modules/jasmine-node/specs.sh +2 -0
  89. data/node_modules/jasmine-reporters/.gitignore +1 -0
  90. data/node_modules/jasmine-reporters/.gitmodules +3 -0
  91. data/node_modules/jasmine-reporters/LICENSE +21 -0
  92. data/node_modules/jasmine-reporters/README.markdown +52 -0
  93. data/node_modules/jasmine-reporters/ext/env.rhino.1.2.js +13989 -0
  94. data/node_modules/jasmine-reporters/ext/jasmine-html.js +182 -0
  95. data/node_modules/jasmine-reporters/ext/jasmine.css +166 -0
  96. data/node_modules/jasmine-reporters/ext/jasmine.js +2421 -0
  97. data/node_modules/jasmine-reporters/ext/jline.jar +0 -0
  98. data/node_modules/jasmine-reporters/ext/js.jar +0 -0
  99. data/node_modules/jasmine-reporters/ext/phantomjs/.gitignore +10 -0
  100. data/node_modules/jasmine-reporters/ext/phantomjs/ChangeLog +57 -0
  101. data/node_modules/jasmine-reporters/ext/phantomjs/LICENSE.BSD +22 -0
  102. data/node_modules/jasmine-reporters/ext/phantomjs/README.md +28 -0
  103. data/node_modules/jasmine-reporters/ext/phantomjs/examples/arguments.coffee +6 -0
  104. data/node_modules/jasmine-reporters/ext/phantomjs/examples/arguments.js +8 -0
  105. data/node_modules/jasmine-reporters/ext/phantomjs/examples/colorwheel.coffee +45 -0
  106. data/node_modules/jasmine-reporters/ext/phantomjs/examples/colorwheel.js +52 -0
  107. data/node_modules/jasmine-reporters/ext/phantomjs/examples/countdown.coffee +8 -0
  108. data/node_modules/jasmine-reporters/ext/phantomjs/examples/countdown.js +8 -0
  109. data/node_modules/jasmine-reporters/ext/phantomjs/examples/cycle_multiple_urls.js +64 -0
  110. data/node_modules/jasmine-reporters/ext/phantomjs/examples/direction.coffee +28 -0
  111. data/node_modules/jasmine-reporters/ext/phantomjs/examples/direction.js +34 -0
  112. data/node_modules/jasmine-reporters/ext/phantomjs/examples/extract-text.coffee +81 -0
  113. data/node_modules/jasmine-reporters/ext/phantomjs/examples/extract-text.js +121 -0
  114. data/node_modules/jasmine-reporters/ext/phantomjs/examples/fibo.coffee +8 -0
  115. data/node_modules/jasmine-reporters/ext/phantomjs/examples/fibo.js +9 -0
  116. data/node_modules/jasmine-reporters/ext/phantomjs/examples/follow.coffee +36 -0
  117. data/node_modules/jasmine-reporters/ext/phantomjs/examples/follow.js +37 -0
  118. data/node_modules/jasmine-reporters/ext/phantomjs/examples/hello.coffee +2 -0
  119. data/node_modules/jasmine-reporters/ext/phantomjs/examples/hello.js +2 -0
  120. data/node_modules/jasmine-reporters/ext/phantomjs/examples/ipgeocode.coffee +13 -0
  121. data/node_modules/jasmine-reporters/ext/phantomjs/examples/ipgeocode.js +14 -0
  122. data/node_modules/jasmine-reporters/ext/phantomjs/examples/loadspeed.coffee +17 -0
  123. data/node_modules/jasmine-reporters/ext/phantomjs/examples/loadspeed.js +20 -0
  124. data/node_modules/jasmine-reporters/ext/phantomjs/examples/movies.coffee +13 -0
  125. data/node_modules/jasmine-reporters/ext/phantomjs/examples/movies.js +14 -0
  126. data/node_modules/jasmine-reporters/ext/phantomjs/examples/pizza.coffee +10 -0
  127. data/node_modules/jasmine-reporters/ext/phantomjs/examples/pizza.js +12 -0
  128. data/node_modules/jasmine-reporters/ext/phantomjs/examples/rasterize.coffee +21 -0
  129. data/node_modules/jasmine-reporters/ext/phantomjs/examples/rasterize.js +22 -0
  130. data/node_modules/jasmine-reporters/ext/phantomjs/examples/run-jasmine.js +26 -0
  131. data/node_modules/jasmine-reporters/ext/phantomjs/examples/run-qunit.js +24 -0
  132. data/node_modules/jasmine-reporters/ext/phantomjs/examples/seasonfood.coffee +17 -0
  133. data/node_modules/jasmine-reporters/ext/phantomjs/examples/seasonfood.js +19 -0
  134. data/node_modules/jasmine-reporters/ext/phantomjs/examples/technews.coffee +13 -0
  135. data/node_modules/jasmine-reporters/ext/phantomjs/examples/technews.js +14 -0
  136. data/node_modules/jasmine-reporters/ext/phantomjs/examples/tweets.coffee +8 -0
  137. data/node_modules/jasmine-reporters/ext/phantomjs/examples/tweets.js +12 -0
  138. data/node_modules/jasmine-reporters/ext/phantomjs/examples/useragent.coffee +7 -0
  139. data/node_modules/jasmine-reporters/ext/phantomjs/examples/useragent.js +8 -0
  140. data/node_modules/jasmine-reporters/ext/phantomjs/examples/version.coffee +5 -0
  141. data/node_modules/jasmine-reporters/ext/phantomjs/examples/version.js +5 -0
  142. data/node_modules/jasmine-reporters/ext/phantomjs/examples/waitfor.coffee +40 -0
  143. data/node_modules/jasmine-reporters/ext/phantomjs/examples/waitfor.js +43 -0
  144. data/node_modules/jasmine-reporters/ext/phantomjs/examples/weather.coffee +35 -0
  145. data/node_modules/jasmine-reporters/ext/phantomjs/examples/weather.js +42 -0
  146. data/node_modules/jasmine-reporters/ext/phantomjs/phantomjs.pro +3 -0
  147. data/node_modules/jasmine-reporters/ext/phantomjs/python/INSTALL +20 -0
  148. data/node_modules/jasmine-reporters/ext/phantomjs/python/LICENSE +674 -0
  149. data/node_modules/jasmine-reporters/ext/phantomjs/python/README +56 -0
  150. data/node_modules/jasmine-reporters/ext/phantomjs/python/csconverter.py +41 -0
  151. data/node_modules/jasmine-reporters/ext/phantomjs/python/networkaccessmanager.py +84 -0
  152. data/node_modules/jasmine-reporters/ext/phantomjs/python/phantom.py +384 -0
  153. data/node_modules/jasmine-reporters/ext/phantomjs/python/plugincontroller.py +98 -0
  154. data/node_modules/jasmine-reporters/ext/phantomjs/python/plugins/__init__.py +1 -0
  155. data/node_modules/jasmine-reporters/ext/phantomjs/python/pyphantomjs.py +154 -0
  156. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources.py +4160 -0
  157. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources.qrc +6 -0
  158. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources/coffee-script.js +8 -0
  159. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources/pyphantomjs-icon.ico +0 -0
  160. data/node_modules/jasmine-reporters/ext/phantomjs/python/resources/pyphantomjs-icon.png +0 -0
  161. data/node_modules/jasmine-reporters/ext/phantomjs/python/tools/build_resources.sh +14 -0
  162. data/node_modules/jasmine-reporters/ext/phantomjs/python/tools/setup.py +52 -0
  163. data/node_modules/jasmine-reporters/ext/phantomjs/python/utils.py +126 -0
  164. data/node_modules/jasmine-reporters/ext/phantomjs/python/webpage.py +67 -0
  165. data/node_modules/jasmine-reporters/ext/phantomjs/src/coffee-script.js +8 -0
  166. data/node_modules/jasmine-reporters/ext/phantomjs/src/consts.h +39 -0
  167. data/node_modules/jasmine-reporters/ext/phantomjs/src/csconverter.cpp +61 -0
  168. data/node_modules/jasmine-reporters/ext/phantomjs/src/csconverter.h +47 -0
  169. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/config.h +1 -0
  170. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/egif_lib.c +1111 -0
  171. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif.pri +20 -0
  172. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_err.c +120 -0
  173. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_hash.c +160 -0
  174. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_hash.h +59 -0
  175. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_lib.h +336 -0
  176. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gif_lib_private.h +59 -0
  177. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gifalloc.c +443 -0
  178. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gifwriter.cpp +126 -0
  179. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/gifwriter.h +38 -0
  180. data/node_modules/jasmine-reporters/ext/phantomjs/src/gif/quantize.c +330 -0
  181. data/node_modules/jasmine-reporters/ext/phantomjs/src/main.cpp +64 -0
  182. data/node_modules/jasmine-reporters/ext/phantomjs/src/networkaccessmanager.cpp +119 -0
  183. data/node_modules/jasmine-reporters/ext/phantomjs/src/networkaccessmanager.h +53 -0
  184. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantom.cpp +494 -0
  185. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantom.h +117 -0
  186. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs-icon.png +0 -0
  187. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs.pro +32 -0
  188. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs.qrc +7 -0
  189. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_os2.ico +0 -0
  190. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_os2.rc +1 -0
  191. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_win.ico +0 -0
  192. data/node_modules/jasmine-reporters/ext/phantomjs/src/phantomjs_win.rc +1 -0
  193. data/node_modules/jasmine-reporters/ext/phantomjs/src/usage.txt +11 -0
  194. data/node_modules/jasmine-reporters/ext/phantomjs/src/utils.cpp +74 -0
  195. data/node_modules/jasmine-reporters/ext/phantomjs/src/utils.h +50 -0
  196. data/node_modules/jasmine-reporters/ext/phantomjs/src/webpage.cpp +87 -0
  197. data/node_modules/jasmine-reporters/ext/phantomjs/src/webpage.h +61 -0
  198. data/node_modules/jasmine-reporters/package.json +15 -0
  199. data/node_modules/jasmine-reporters/src/jasmine.console_reporter.js +132 -0
  200. data/node_modules/jasmine-reporters/src/jasmine.junit_reporter.js +199 -0
  201. data/node_modules/jasmine-reporters/src/load_reporters.js +2 -0
  202. data/node_modules/jasmine-reporters/test/JUnitXmlReporterSpec.js +214 -0
  203. data/node_modules/jasmine-reporters/test/console_reporter.html +36 -0
  204. data/node_modules/jasmine-reporters/test/envjs.bootstrap.js +14 -0
  205. data/node_modules/jasmine-reporters/test/envjs.runner.sh +7 -0
  206. data/node_modules/jasmine-reporters/test/junit_xml_reporter.html +23 -0
  207. data/node_modules/jasmine-reporters/test/phantomjs-testrunner.js +39 -0
  208. data/node_modules/jasmine-reporters/test/phantomjs.runner.sh +30 -0
  209. data/node_modules/jasmine-reporters/test/pyphantomjs-plugins/saveToFile/__init__.py +1 -0
  210. data/node_modules/jasmine-reporters/test/pyphantomjs-plugins/saveToFile/saveToFile.py +46 -0
  211. data/node_modules/jasmine-runner/README.md +42 -0
  212. data/node_modules/jasmine-runner/TODO.md +16 -0
  213. data/node_modules/jasmine-runner/bin/jasmine +26 -0
  214. data/node_modules/jasmine-runner/lib/ServerRoutes.js +70 -0
  215. data/node_modules/jasmine-runner/lib/TestRunner.js +29 -0
  216. data/node_modules/jasmine-runner/lib/browser.js +14 -0
  217. data/node_modules/jasmine-runner/lib/config.js +21 -0
  218. data/node_modules/jasmine-runner/lib/jasmine-runner.js +83 -0
  219. data/node_modules/jasmine-runner/lib/monitor.js +34 -0
  220. data/node_modules/jasmine-runner/lib/notify.js +48 -0
  221. data/node_modules/jasmine-runner/lib/public/control-frame.js +57 -0
  222. data/node_modules/jasmine-runner/lib/public/jasmine-html.js +188 -0
  223. data/node_modules/jasmine-runner/lib/public/jasmine.css +166 -0
  224. data/node_modules/jasmine-runner/lib/public/jasmine.js +2421 -0
  225. data/node_modules/jasmine-runner/lib/public/jquery-1.4.3.js +166 -0
  226. data/node_modules/jasmine-runner/lib/public/json2.js +482 -0
  227. data/node_modules/jasmine-runner/lib/public/run.js +6 -0
  228. data/node_modules/jasmine-runner/lib/reporters.js +31 -0
  229. data/node_modules/jasmine-runner/lib/server-worker.js +18 -0
  230. data/node_modules/jasmine-runner/lib/server.js +27 -0
  231. data/node_modules/jasmine-runner/lib/template/jasmine.json +18 -0
  232. data/node_modules/jasmine-runner/lib/template/public/javascript/Player.js +22 -0
  233. data/node_modules/jasmine-runner/lib/template/public/javascript/Song.js +7 -0
  234. data/node_modules/jasmine-runner/lib/template/spec/PlayerSpec.coffee +45 -0
  235. data/node_modules/jasmine-runner/lib/template/spec/PlayerSpec.js +58 -0
  236. data/node_modules/jasmine-runner/lib/template/spec/SpecHelper.js +9 -0
  237. data/node_modules/jasmine-runner/lib/testserver.js +26 -0
  238. data/node_modules/jasmine-runner/lib/views/control-frame.jade +7 -0
  239. data/node_modules/jasmine-runner/lib/views/index.jade +18 -0
  240. data/node_modules/jasmine-runner/node_modules/.bin/cake +7 -0
  241. data/node_modules/jasmine-runner/node_modules/.bin/coffee +7 -0
  242. data/node_modules/jasmine-runner/node_modules/.bin/express +451 -0
  243. data/node_modules/jasmine-runner/node_modules/.bin/jade +92 -0
  244. data/node_modules/jasmine-runner/node_modules/.bin/vows +421 -0
  245. data/node_modules/jasmine-runner/node_modules/coffee-script/.npmignore +11 -0
  246. data/node_modules/jasmine-runner/node_modules/coffee-script/LICENSE +22 -0
  247. data/node_modules/jasmine-runner/node_modules/coffee-script/README +47 -0
  248. data/node_modules/jasmine-runner/node_modules/coffee-script/Rakefile +78 -0
  249. data/node_modules/jasmine-runner/node_modules/coffee-script/bin/cake +7 -0
  250. data/node_modules/jasmine-runner/node_modules/coffee-script/bin/coffee +7 -0
  251. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/browser.js +52 -0
  252. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/cake.js +76 -0
  253. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/coffee-script.js +82 -0
  254. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/command.js +269 -0
  255. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/grammar.js +586 -0
  256. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/helpers.js +66 -0
  257. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/index.js +8 -0
  258. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/lexer.js +638 -0
  259. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/nodes.js +2181 -0
  260. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/optparse.js +111 -0
  261. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/parser.js +656 -0
  262. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/repl.js +47 -0
  263. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/rewriter.js +353 -0
  264. data/node_modules/jasmine-runner/node_modules/coffee-script/lib/scope.js +120 -0
  265. data/node_modules/jasmine-runner/node_modules/coffee-script/package.json +22 -0
  266. data/node_modules/jasmine-runner/node_modules/colors/MIT-LICENSE.txt +20 -0
  267. data/node_modules/jasmine-runner/node_modules/colors/ReadMe.md +30 -0
  268. data/node_modules/jasmine-runner/node_modules/colors/colors.js +75 -0
  269. data/node_modules/jasmine-runner/node_modules/colors/example.js +6 -0
  270. data/node_modules/jasmine-runner/node_modules/colors/package.json +14 -0
  271. data/node_modules/jasmine-runner/node_modules/express/.npmignore +7 -0
  272. data/node_modules/jasmine-runner/node_modules/express/History.md +630 -0
  273. data/node_modules/jasmine-runner/node_modules/express/LICENSE +22 -0
  274. data/node_modules/jasmine-runner/node_modules/express/Makefile +39 -0
  275. data/node_modules/jasmine-runner/node_modules/express/Readme.md +102 -0
  276. data/node_modules/jasmine-runner/node_modules/express/bin/express +451 -0
  277. data/node_modules/jasmine-runner/node_modules/express/index.js +2 -0
  278. data/node_modules/jasmine-runner/node_modules/express/lib/express.js +78 -0
  279. data/node_modules/jasmine-runner/node_modules/express/lib/http.js +503 -0
  280. data/node_modules/jasmine-runner/node_modules/express/lib/https.js +52 -0
  281. data/node_modules/jasmine-runner/node_modules/express/lib/request.js +289 -0
  282. data/node_modules/jasmine-runner/node_modules/express/lib/response.js +423 -0
  283. data/node_modules/jasmine-runner/node_modules/express/lib/router/index.js +329 -0
  284. data/node_modules/jasmine-runner/node_modules/express/lib/router/methods.js +70 -0
  285. data/node_modules/jasmine-runner/node_modules/express/lib/router/route.js +71 -0
  286. data/node_modules/jasmine-runner/node_modules/express/lib/utils.js +122 -0
  287. data/node_modules/jasmine-runner/node_modules/express/lib/view.js +413 -0
  288. data/node_modules/jasmine-runner/node_modules/express/lib/view/partial.js +40 -0
  289. data/node_modules/jasmine-runner/node_modules/express/lib/view/view.js +206 -0
  290. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/.npmignore +11 -0
  291. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/LICENSE +24 -0
  292. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/index.js +2 -0
  293. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/cache.js +81 -0
  294. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/connect.js +106 -0
  295. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/http.js +215 -0
  296. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/https.js +47 -0
  297. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/index.js +46 -0
  298. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/basicAuth.js +93 -0
  299. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/bodyParser.js +92 -0
  300. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/compiler.js +163 -0
  301. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/cookieParser.js +46 -0
  302. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/csrf.js +105 -0
  303. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/directory.js +222 -0
  304. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/errorHandler.js +100 -0
  305. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/favicon.js +76 -0
  306. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/limit.js +82 -0
  307. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/logger.js +299 -0
  308. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js +38 -0
  309. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/profiler.js +100 -0
  310. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/query.js +40 -0
  311. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/responseTime.js +34 -0
  312. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/router.js +379 -0
  313. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session.js +346 -0
  314. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/cookie.js +126 -0
  315. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/memory.js +131 -0
  316. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/session.js +137 -0
  317. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/session/store.js +87 -0
  318. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/static.js +225 -0
  319. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/staticCache.js +175 -0
  320. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/middleware/vhost.js +44 -0
  321. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/patch.js +79 -0
  322. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/directory.html +75 -0
  323. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/error.html +13 -0
  324. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/favicon.ico +0 -0
  325. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page.png +0 -0
  326. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_add.png +0 -0
  327. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_attach.png +0 -0
  328. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_code.png +0 -0
  329. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_copy.png +0 -0
  330. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_delete.png +0 -0
  331. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_edit.png +0 -0
  332. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_error.png +0 -0
  333. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_excel.png +0 -0
  334. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_find.png +0 -0
  335. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_gear.png +0 -0
  336. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_go.png +0 -0
  337. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_green.png +0 -0
  338. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_key.png +0 -0
  339. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png +0 -0
  340. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_link.png +0 -0
  341. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png +0 -0
  342. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_paste.png +0 -0
  343. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_red.png +0 -0
  344. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png +0 -0
  345. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_save.png +0 -0
  346. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white.png +0 -0
  347. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png +0 -0
  348. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_actionscript.png +0 -0
  349. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png +0 -0
  350. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png +0 -0
  351. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png +0 -0
  352. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png +0 -0
  353. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png +0 -0
  354. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png +0 -0
  355. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png +0 -0
  356. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_compressed.png +0 -0
  357. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png +0 -0
  358. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png +0 -0
  359. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png +0 -0
  360. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png +0 -0
  361. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_database.png +0 -0
  362. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png +0 -0
  363. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png +0 -0
  364. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png +0 -0
  365. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png +0 -0
  366. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png +0 -0
  367. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png +0 -0
  368. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png +0 -0
  369. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_freehand.png +0 -0
  370. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png +0 -0
  371. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png +0 -0
  372. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png +0 -0
  373. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png +0 -0
  374. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_horizontal.png +0 -0
  375. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png +0 -0
  376. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_lightning.png +0 -0
  377. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png +0 -0
  378. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_magnify.png +0 -0
  379. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png +0 -0
  380. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png +0 -0
  381. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png +0 -0
  382. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png +0 -0
  383. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png +0 -0
  384. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png +0 -0
  385. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_picture.png +0 -0
  386. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png +0 -0
  387. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png +0 -0
  388. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png +0 -0
  389. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png +0 -0
  390. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png +0 -0
  391. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png +0 -0
  392. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png +0 -0
  393. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_text_width.png +0 -0
  394. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png +0 -0
  395. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png +0 -0
  396. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png +0 -0
  397. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png +0 -0
  398. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png +0 -0
  399. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png +0 -0
  400. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png +0 -0
  401. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png +0 -0
  402. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_word.png +0 -0
  403. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/icons/page_world.png +0 -0
  404. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/public/style.css +141 -0
  405. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/lib/utils.js +451 -0
  406. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/package.json +24 -0
  407. data/node_modules/jasmine-runner/node_modules/express/node_modules/connect/test.js +11 -0
  408. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/LICENSE +19 -0
  409. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/README.md +50 -0
  410. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/mime.js +92 -0
  411. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/package.json +22 -0
  412. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/test.js +79 -0
  413. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/types/mime.types +1479 -0
  414. data/node_modules/jasmine-runner/node_modules/express/node_modules/mime/types/node.types +43 -0
  415. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/.gitignore +1 -0
  416. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/.gitmodules +6 -0
  417. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/History.md +57 -0
  418. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/Makefile +7 -0
  419. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/Readme.md +49 -0
  420. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/benchmark.js +17 -0
  421. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/examples.js +48 -0
  422. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/index.js +2 -0
  423. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/lib/querystring.js +236 -0
  424. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/package.json +16 -0
  425. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/test/parse.test.js +156 -0
  426. data/node_modules/jasmine-runner/node_modules/express/node_modules/qs/test/stringify.test.js +95 -0
  427. data/node_modules/jasmine-runner/node_modules/express/package.json +22 -0
  428. data/node_modules/jasmine-runner/node_modules/growl/History.md +10 -0
  429. data/node_modules/jasmine-runner/node_modules/growl/Readme.md +74 -0
  430. data/node_modules/jasmine-runner/node_modules/growl/lib/growl.js +80 -0
  431. data/node_modules/jasmine-runner/node_modules/growl/package.json +6 -0
  432. data/node_modules/jasmine-runner/node_modules/growl/seed.yml +4 -0
  433. data/node_modules/jasmine-runner/node_modules/growl/test.js +17 -0
  434. data/node_modules/jasmine-runner/node_modules/jade/.gitignore +3 -0
  435. data/node_modules/jasmine-runner/node_modules/jade/.gitmodules +21 -0
  436. data/node_modules/jasmine-runner/node_modules/jade/.npmignore +4 -0
  437. data/node_modules/jasmine-runner/node_modules/jade/CNAME +1 -0
  438. data/node_modules/jasmine-runner/node_modules/jade/History.md +163 -0
  439. data/node_modules/jasmine-runner/node_modules/jade/LICENSE +22 -0
  440. data/node_modules/jasmine-runner/node_modules/jade/Makefile +25 -0
  441. data/node_modules/jasmine-runner/node_modules/jade/Readme.md +408 -0
  442. data/node_modules/jasmine-runner/node_modules/jade/api.html +850 -0
  443. data/node_modules/jasmine-runner/node_modules/jade/bin/jade +92 -0
  444. data/node_modules/jasmine-runner/node_modules/jade/index.js +2 -0
  445. data/node_modules/jasmine-runner/node_modules/jade/lib/compiler.js +273 -0
  446. data/node_modules/jasmine-runner/node_modules/jade/lib/doctypes.js +18 -0
  447. data/node_modules/jasmine-runner/node_modules/jade/lib/filters.js +70 -0
  448. data/node_modules/jasmine-runner/node_modules/jade/lib/index.js +314 -0
  449. data/node_modules/jasmine-runner/node_modules/jade/lib/jade.js +314 -0
  450. data/node_modules/jasmine-runner/node_modules/jade/lib/lexer.js +359 -0
  451. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/block.js +29 -0
  452. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/code.js +35 -0
  453. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/comment.js +32 -0
  454. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/doctype.js +29 -0
  455. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/each.js +35 -0
  456. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/filter.js +33 -0
  457. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/index.js +16 -0
  458. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/node.js +20 -0
  459. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/tag.js +80 -0
  460. data/node_modules/jasmine-runner/node_modules/jade/lib/nodes/text.js +29 -0
  461. data/node_modules/jasmine-runner/node_modules/jade/lib/parser.js +358 -0
  462. data/node_modules/jasmine-runner/node_modules/jade/lib/self-closing.js +17 -0
  463. data/node_modules/jasmine-runner/node_modules/jade/lib/utils.js +49 -0
  464. data/node_modules/jasmine-runner/node_modules/jade/package.json +9 -0
  465. data/node_modules/jasmine-runner/node_modules/libnotify/.gitignore +2 -0
  466. data/node_modules/jasmine-runner/node_modules/libnotify/README.md +59 -0
  467. data/node_modules/jasmine-runner/node_modules/libnotify/lib/libnotify.js +72 -0
  468. data/node_modules/jasmine-runner/node_modules/libnotify/package.json +11 -0
  469. data/node_modules/jasmine-runner/node_modules/libnotify/seed.yml +5 -0
  470. data/node_modules/jasmine-runner/node_modules/libnotify/test.js +5 -0
  471. data/node_modules/jasmine-runner/node_modules/socket.io/.gitignore +8 -0
  472. data/node_modules/jasmine-runner/node_modules/socket.io/Makefile +10 -0
  473. data/node_modules/jasmine-runner/node_modules/socket.io/README.md +218 -0
  474. data/node_modules/jasmine-runner/node_modules/socket.io/example/chat.html +61 -0
  475. data/node_modules/jasmine-runner/node_modules/socket.io/example/json.js +18 -0
  476. data/node_modules/jasmine-runner/node_modules/socket.io/example/server.js +58 -0
  477. data/node_modules/jasmine-runner/node_modules/socket.io/index.js +1 -0
  478. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/client.js +191 -0
  479. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/index.js +4 -0
  480. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/listener.js +166 -0
  481. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/flashsocket.js +44 -0
  482. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/htmlfile.js +45 -0
  483. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/jsonp-polling.js +32 -0
  484. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/websocket.js +137 -0
  485. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/xhr-multipart.js +63 -0
  486. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/transports/xhr-polling.js +75 -0
  487. data/node_modules/jasmine-runner/node_modules/socket.io/lib/socket.io/utils.js +52 -0
  488. data/node_modules/jasmine-runner/node_modules/socket.io/package.json +17 -0
  489. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/.gitignore +3 -0
  490. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/.gitmodules +3 -0
  491. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/History.md +97 -0
  492. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/Makefile +53 -0
  493. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/Readme.md +39 -0
  494. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/bin/expresso +837 -0
  495. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/COPYING +339 -0
  496. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/Makefile.am +81 -0
  497. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/Makefile.in +884 -0
  498. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/Readme.md +8 -0
  499. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/aclocal.m4 +872 -0
  500. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.guess +1526 -0
  501. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.h.in +92 -0
  502. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.rpath +666 -0
  503. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/config.sub +1658 -0
  504. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/configure +7971 -0
  505. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/configure.ac +88 -0
  506. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/depcomp +589 -0
  507. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/encoding.c +315 -0
  508. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/encoding.h +33 -0
  509. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/generate-resources.c +58 -0
  510. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/global.h +29 -0
  511. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/highlight.c +478 -0
  512. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/highlight.h +37 -0
  513. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-connection.c +192 -0
  514. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-exchange.c +494 -0
  515. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-host.c +95 -0
  516. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-message.c +900 -0
  517. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-server.c +236 -0
  518. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-server.h +208 -0
  519. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/http-url.c +156 -0
  520. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/install-sh +519 -0
  521. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument-js.cpp +1873 -0
  522. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument-js.h +81 -0
  523. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument.c +226 -0
  524. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/instrument.h +31 -0
  525. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/GNUmakefile +15 -0
  526. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/Makefile.ref +483 -0
  527. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/README.html +54 -0
  528. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/SpiderMonkey.rsp +11 -0
  529. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/aclocal.m4 +9 -0
  530. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/bench.sh +5 -0
  531. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/builtins.tbl +98 -0
  532. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config.mk +206 -0
  533. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/Makefile.in +106 -0
  534. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/Moz/Milestone.pm +232 -0
  535. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/autoconf.mk.in +349 -0
  536. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/check-sync-dirs.py +108 -0
  537. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/check-sync-exceptions +6 -0
  538. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/config.mk +884 -0
  539. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/fastcwd.pl +66 -0
  540. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/gcc_hidden.h +2 -0
  541. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/insure.mk +53 -0
  542. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/make-system-wrappers.pl +59 -0
  543. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/milestone.pl +112 -0
  544. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/milestone.txt +13 -0
  545. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/Makefile.in +84 -0
  546. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/cppsetup.c +233 -0
  547. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/def.h +184 -0
  548. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/ifparser.c +549 -0
  549. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/ifparser.h +83 -0
  550. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/imakemdep.h +733 -0
  551. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/include.c +337 -0
  552. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/main.c +860 -0
  553. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/mkdepend.man +382 -0
  554. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/parse.c +686 -0
  555. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/mkdepend/pr.c +124 -0
  556. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/nfspwd.pl +50 -0
  557. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/nsinstall.c +481 -0
  558. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/nsinstall.py +139 -0
  559. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/pathsub.c +247 -0
  560. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/pathsub.h +74 -0
  561. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/preprocessor.pl +671 -0
  562. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/revdepth-nt.pl +48 -0
  563. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/revdepth.pl +51 -0
  564. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/rules.mk +2269 -0
  565. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/system-headers +1038 -0
  566. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/version.mk +85 -0
  567. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/config/version_win.pl +423 -0
  568. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/dtoa.c +3321 -0
  569. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/Makefile.ref +143 -0
  570. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/README +83 -0
  571. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/editline.3 +175 -0
  572. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/editline.c +1368 -0
  573. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/editline.h +135 -0
  574. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/sysunix.c +182 -0
  575. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/editline/unix.h +82 -0
  576. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/javascript-trace.d +73 -0
  577. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jitstats.tbl +52 -0
  578. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js-config.h.in +55 -0
  579. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js-config.in +111 -0
  580. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js.cpp +4050 -0
  581. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js.mdp +0 -0
  582. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js.msg +309 -0
  583. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/js3240.rc +79 -0
  584. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsOS240.def +654 -0
  585. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsapi.cpp +6060 -0
  586. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsapi.h +2699 -0
  587. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarena.cpp +450 -0
  588. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarena.h +318 -0
  589. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarray.cpp +3426 -0
  590. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsarray.h +191 -0
  591. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsatom.cpp +1064 -0
  592. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsatom.h +458 -0
  593. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbit.h +253 -0
  594. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbool.cpp +182 -0
  595. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbool.h +75 -0
  596. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbuiltins.cpp +497 -0
  597. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsbuiltins.h +374 -0
  598. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsclist.h +139 -0
  599. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscntxt.cpp +1394 -0
  600. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscntxt.h +1247 -0
  601. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscompat.h +57 -0
  602. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsconfig.mk +181 -0
  603. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscpucfg.cpp +388 -0
  604. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jscpucfg.h +212 -0
  605. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdate.cpp +2475 -0
  606. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdate.h +124 -0
  607. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdbgapi.cpp +1954 -0
  608. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdbgapi.h +500 -0
  609. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdhash.cpp +876 -0
  610. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdhash.h +588 -0
  611. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtoa.cpp +572 -0
  612. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtoa.h +131 -0
  613. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtracef.c +318 -0
  614. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsdtracef.h +81 -0
  615. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsemit.cpp +6857 -0
  616. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsemit.h +777 -0
  617. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsexn.cpp +1376 -0
  618. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsexn.h +96 -0
  619. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfile.cpp +2736 -0
  620. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfile.h +56 -0
  621. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfile.msg +90 -0
  622. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfun.cpp +2706 -0
  623. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsfun.h +296 -0
  624. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsgc.cpp +3763 -0
  625. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsgc.h +427 -0
  626. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jshash.cpp +476 -0
  627. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jshash.h +151 -0
  628. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsify.pl +483 -0
  629. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsinterp.cpp +7225 -0
  630. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsinterp.h +591 -0
  631. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsinvoke.cpp +42 -0
  632. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsiter.cpp +1050 -0
  633. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsiter.h +140 -0
  634. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jskeyword.tbl +124 -0
  635. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jskwgen.cpp +460 -0
  636. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslibmath.h +69 -0
  637. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslock.cpp +1417 -0
  638. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslock.h +311 -0
  639. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslocko.asm +60 -0
  640. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslog2.cpp +94 -0
  641. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslong.cpp +264 -0
  642. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jslong.h +412 -0
  643. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsmath.cpp +721 -0
  644. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsmath.h +63 -0
  645. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsnum.cpp +1338 -0
  646. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsnum.h +287 -0
  647. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsobj.cpp +5563 -0
  648. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsobj.h +735 -0
  649. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/json.cpp +954 -0
  650. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/json.h +107 -0
  651. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsopcode.cpp +5304 -0
  652. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsopcode.h +404 -0
  653. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsopcode.tbl +557 -0
  654. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsoplengen.cpp +121 -0
  655. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsotypes.h +202 -0
  656. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsparse.cpp +6822 -0
  657. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsparse.h +508 -0
  658. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsprf.cpp +1262 -0
  659. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsprf.h +150 -0
  660. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsproto.tbl +129 -0
  661. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsprvtd.h +263 -0
  662. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jspubtd.h +727 -0
  663. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsregexp.cpp +4772 -0
  664. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsregexp.h +192 -0
  665. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsreops.tbl +145 -0
  666. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscan.cpp +2017 -0
  667. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscan.h +389 -0
  668. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscope.cpp +1955 -0
  669. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscope.h +419 -0
  670. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscript.cpp +1891 -0
  671. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsscript.h +330 -0
  672. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsshell.msg +51 -0
  673. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstaticcheck.h +57 -0
  674. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstddef.h +87 -0
  675. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstr.cpp +5347 -0
  676. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsstr.h +662 -0
  677. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jstracer.cpp +8276 -0
  678. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jstracer.h +552 -0
  679. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jstypes.h +490 -0
  680. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsutil.cpp +345 -0
  681. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsutil.h +168 -0
  682. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsversion.h +243 -0
  683. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxdrapi.cpp +800 -0
  684. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxdrapi.h +220 -0
  685. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxml.cpp +8343 -0
  686. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/jsxml.h +298 -0
  687. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/lock_SunOS.s +119 -0
  688. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/plify_jsdhash.sed +35 -0
  689. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/prmjtime.cpp +846 -0
  690. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/prmjtime.h +103 -0
  691. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/AIX4.1.mk +65 -0
  692. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/AIX4.2.mk +64 -0
  693. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/AIX4.3.mk +65 -0
  694. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Cygwin.mk +14 -0
  695. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin.mk +85 -0
  696. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin1.3.mk +81 -0
  697. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin1.4.mk +41 -0
  698. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin5.2.mk +81 -0
  699. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin5.3.mk +81 -0
  700. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Darwin64.mk +72 -0
  701. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/HP-UXB.10.10.mk +77 -0
  702. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/HP-UXB.10.20.mk +77 -0
  703. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/HP-UXB.11.00.mk +80 -0
  704. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX.mk +87 -0
  705. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX5.3.mk +44 -0
  706. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.1.mk +44 -0
  707. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.2.mk +44 -0
  708. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.3.mk +44 -0
  709. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/IRIX6.5.mk +44 -0
  710. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Linux_All.mk +105 -0
  711. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/MSYS.mk +7 -0
  712. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/Mac_OS10.0.mk +82 -0
  713. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/OSF1V4.0.mk +72 -0
  714. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/OSF1V5.0.mk +69 -0
  715. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS4.1.4.mk +101 -0
  716. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.10.mk +50 -0
  717. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.3.mk +91 -0
  718. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.4.mk +92 -0
  719. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.5.1.mk +44 -0
  720. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.5.mk +87 -0
  721. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.6.mk +89 -0
  722. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.7.mk +44 -0
  723. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.8.mk +44 -0
  724. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/SunOS5.9.mk +44 -0
  725. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT4.0.mk +118 -0
  726. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT5.0.mk +118 -0
  727. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT5.1.mk +118 -0
  728. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT5.2.mk +118 -0
  729. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/WINNT6.0.mk +118 -0
  730. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/ref-config/dgux.mk +64 -0
  731. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/resource.h +15 -0
  732. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/rules.mk +206 -0
  733. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/time.sh +13 -0
  734. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/js/win32.order +384 -0
  735. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-help.txt +12 -0
  736. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-highlight.css +38 -0
  737. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-ie.css +89 -0
  738. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-overlay.js +211 -0
  739. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-server-help.txt +17 -0
  740. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-server.1 +79 -0
  741. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-server.c +1307 -0
  742. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage-throbber.gif +0 -0
  743. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.1 +52 -0
  744. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.c +142 -0
  745. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.css +328 -0
  746. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.html +125 -0
  747. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.js +1024 -0
  748. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.jsm +22 -0
  749. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.manifest +2 -0
  750. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/jscoverage.xul +36 -0
  751. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/iconv.m4 +180 -0
  752. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/lib-ld.m4 +110 -0
  753. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/lib-link.m4 +709 -0
  754. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/m4/lib-prefix.m4 +185 -0
  755. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/make-bin-dist.sh.in +24 -0
  756. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/make-dist.sh.in +43 -0
  757. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/missing +367 -0
  758. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/report.js +76 -0
  759. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/resource-manager.c +59 -0
  760. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/resource-manager.h +46 -0
  761. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/stream.c +129 -0
  762. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/stream.h +57 -0
  763. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/Makefile.am +130 -0
  764. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/Makefile.in +846 -0
  765. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/asprintf.c +42 -0
  766. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/asprintf.sh +19 -0
  767. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/charset.sh +110 -0
  768. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/chunked.sh +74 -0
  769. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/common.sh +7 -0
  770. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/destination-is-existing-directory.expected.err +2 -0
  771. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/destination-is-file.expected.err +2 -0
  772. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/encoding-requires-argument.expected.err +2 -0
  773. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/encodings.c +223 -0
  774. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/encodings.sh +19 -0
  775. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/exclude-requires-argument.expected.err +2 -0
  776. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/fatal.sh +110 -0
  777. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/gethostbyname.c +53 -0
  778. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/gethostbyname.sh +25 -0
  779. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/help.sh +35 -0
  780. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-client-bad-body.c +98 -0
  781. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-client-bad-url.c +77 -0
  782. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-client-close-after-request.c +57 -0
  783. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-bad-body.c +97 -0
  784. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-bad-headers.c +97 -0
  785. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-charset.c +144 -0
  786. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-chunked.c +196 -0
  787. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/http-server-close-immediately.c +60 -0
  788. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/invalid-option.expected.err +2 -0
  789. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/invalid-option.sh +29 -0
  790. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-ignore.expected/ignore.js +106 -0
  791. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-ignore.sh +28 -0
  792. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-ignore/ignore.js +44 -0
  793. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-invalid.expected.err +2 -0
  794. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-invalid/javascript-invalid.js +1 -0
  795. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-setter.expected.err +1 -0
  796. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-setter/javascript-setter.js +3 -0
  797. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-utf-8.expected/javascript-utf-8.js +15 -0
  798. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-utf-8.sh +43 -0
  799. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-utf-8/javascript-utf-8.js +2 -0
  800. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-xml.expected.err +1 -0
  801. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript-xml/javascript-xml.js +8 -0
  802. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-array-comprehension.js +32 -0
  803. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-assign.js +51 -0
  804. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-colon.js +24 -0
  805. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-comma.js +12 -0
  806. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-cr.js +12 -0
  807. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-crlf.js +12 -0
  808. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-debugger.js +21 -0
  809. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-dec.js +15 -0
  810. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-delete.js +12 -0
  811. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-destructuring.js +96 -0
  812. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-do.js +28 -0
  813. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-dot.js +30 -0
  814. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-empty.js +9 -0
  815. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-for.js +51 -0
  816. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-foreach.js +16 -0
  817. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-function.js +79 -0
  818. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-generator-expression.js +45 -0
  819. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-generator.js +32 -0
  820. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-getter-setter.js +31 -0
  821. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-hook.js +15 -0
  822. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-if.js +71 -0
  823. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-in.js +19 -0
  824. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-inc.js +15 -0
  825. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-iso-8859-1.js +15 -0
  826. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-lambda.js +14 -0
  827. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-let.js +148 -0
  828. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-lf.js +12 -0
  829. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-new.js +22 -0
  830. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-number.js +57 -0
  831. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-object.js +15 -0
  832. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-op.js +108 -0
  833. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-primary.js +21 -0
  834. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-rb.js +24 -0
  835. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-rc.js +15 -0
  836. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-rp.js +12 -0
  837. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-special-characters.js +30 -0
  838. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-string.js +36 -0
  839. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-switch.js +55 -0
  840. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-throw.js +21 -0
  841. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-try.js +66 -0
  842. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-unaryop.js +27 -0
  843. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-var.js +15 -0
  844. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-while.js +79 -0
  845. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.expected/javascript-with.js +30 -0
  846. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript.sh +53 -0
  847. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-array-comprehension.js +14 -0
  848. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-assign.js +14 -0
  849. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-colon.js +7 -0
  850. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-comma.js +1 -0
  851. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-cr.js +1 -0
  852. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-crlf.js +4 -0
  853. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-debugger.js +6 -0
  854. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-dec.js +2 -0
  855. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-delete.js +1 -0
  856. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-destructuring.js +42 -0
  857. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-do.js +10 -0
  858. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-dot.js +8 -0
  859. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-empty.js +0 -0
  860. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-for.js +22 -0
  861. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-foreach.js +8 -0
  862. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-function.js +38 -0
  863. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-generator-expression.js +18 -0
  864. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-generator.js +11 -0
  865. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-getter-setter.js +19 -0
  866. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-hook.js +2 -0
  867. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-if.js +30 -0
  868. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-in.js +4 -0
  869. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-inc.js +2 -0
  870. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-iso-8859-1.js +2 -0
  871. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-lambda.js +3 -0
  872. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-let.js +79 -0
  873. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-lf.js +4 -0
  874. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-new.js +4 -0
  875. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-number.js +19 -0
  876. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-object.js +2 -0
  877. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-op.js +55 -0
  878. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-primary.js +4 -0
  879. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-rb.js +5 -0
  880. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-rc.js +7 -0
  881. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-rp.js +1 -0
  882. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-special-characters.js +11 -0
  883. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-string.js +11 -0
  884. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-switch.js +21 -0
  885. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-throw.js +6 -0
  886. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-try.js +32 -0
  887. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-unaryop.js +6 -0
  888. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-var.js +2 -0
  889. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-while.js +35 -0
  890. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/javascript/javascript-with.js +9 -0
  891. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/json-cmp.js +65 -0
  892. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/json.c +48 -0
  893. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/json.sh +19 -0
  894. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/mkdirs.c +42 -0
  895. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/mkdirs.sh +19 -0
  896. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/netcat.pl +35 -0
  897. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/no-arguments.expected.err +2 -0
  898. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/no-arguments.sh +29 -0
  899. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/no-instrument-requires-argument.expected.err +2 -0
  900. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-request-body.sh +58 -0
  901. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-body-javascript.sh +53 -0
  902. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-body.expected.err +1 -0
  903. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-body.sh +54 -0
  904. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-bad-response-headers.sh +53 -0
  905. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-no-server.sh +49 -0
  906. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy-url.sh +67 -0
  907. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/proxy.sh +143 -0
  908. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-crlf.sh +59 -0
  909. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-dir-list.c +93 -0
  910. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-dir-list.sh +19 -0
  911. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-exclude.sh +41 -0
  912. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-fatal.sh +40 -0
  913. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive-no-instrument.sh +41 -0
  914. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/1.css +3 -0
  915. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/1.html +12 -0
  916. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/1.js +12 -0
  917. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/2/2.css +3 -0
  918. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/2/2.html +11 -0
  919. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/1/2/2.js +12 -0
  920. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/image.png +0 -0
  921. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/index.html +12 -0
  922. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/script.js +19 -0
  923. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/style.css +3 -0
  924. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/unix.txt +3 -0
  925. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/windows.txt +3 -0
  926. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.expected/x +1 -0
  927. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive.sh +55 -0
  928. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/1.css +3 -0
  929. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/1.html +12 -0
  930. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/1.js +1 -0
  931. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/2/2.css +3 -0
  932. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/2/2.html +11 -0
  933. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/1/2/2.js +1 -0
  934. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/image.png +0 -0
  935. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/index.html +12 -0
  936. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/script.js +6 -0
  937. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/style.css +3 -0
  938. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/unix.txt +3 -0
  939. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/windows.txt +3 -0
  940. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/recursive/x +1 -0
  941. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/same-directory.expected.err +1 -0
  942. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/same-directory.sh +30 -0
  943. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-bad-requests.sh +104 -0
  944. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-close-after-request.sh +47 -0
  945. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-content-types.sh +68 -0
  946. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-directory-listing.expected +4 -0
  947. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-directory-listing.sh +57 -0
  948. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-directory-redirect.sh +50 -0
  949. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-encoded-url.sh +57 -0
  950. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-error.sh +61 -0
  951. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-help.sh +26 -0
  952. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-ip-address.sh +68 -0
  953. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-shutdown-bad-method.sh +49 -0
  954. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-shutdown.expected.err +1 -0
  955. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-shutdown.sh +42 -0
  956. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-special-file.sh +62 -0
  957. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-unreadable-directory.sh +61 -0
  958. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-unreadable-file.sh +62 -0
  959. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-verbose.expected.err +4 -0
  960. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-verbose.sh +54 -0
  961. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server-version.sh +25 -0
  962. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server.pl +61 -0
  963. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/server.sh +216 -0
  964. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/source-does-not-exist.expected.err +2 -0
  965. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/source-is-file.expected.err +2 -0
  966. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-json.sh +50 -0
  967. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-request-body.sh +48 -0
  968. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-response-headers.sh +56 -0
  969. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-source-urls.expected.err +3 -0
  970. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-bad-source-urls.expected.json +14 -0
  971. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.expected.json +6 -0
  972. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.js +11 -0
  973. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.json +3 -0
  974. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-escaped-characters.sh +52 -0
  975. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-server-bad-body.sh +59 -0
  976. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-server-closes-immediately.sh +58 -0
  977. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.expected.err +1 -0
  978. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.expected.json +6 -0
  979. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.json +3 -0
  980. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-not-found.sh +50 -0
  981. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-urls.expected.err +3 -0
  982. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-source-urls.expected.json +14 -0
  983. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unreachable-source-urls.expected.err +3 -0
  984. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unreachable-source-urls.expected.json +14 -0
  985. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unreadable-json.sh +66 -0
  986. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store-unwritable-json.sh +58 -0
  987. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store.expected.json +14 -0
  988. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store.json +5 -0
  989. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/store.sh +137 -0
  990. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/streams.c +107 -0
  991. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/streams.sh +19 -0
  992. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/too-many-arguments.expected.err +2 -0
  993. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/valgrind.sh +7 -0
  994. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/tests/version.sh +29 -0
  995. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/util.c +570 -0
  996. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/deps/jscoverage/util.h +133 -0
  997. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/api.html +1048 -0
  998. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/index.html +373 -0
  999. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/index.md +290 -0
  1000. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/layout/foot.html +3 -0
  1001. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/docs/layout/head.html +42 -0
  1002. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/lib/bar.js +4 -0
  1003. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/lib/foo.js +16 -0
  1004. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/package.json +12 -0
  1005. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/assert.test.js +84 -0
  1006. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/async.test.js +6 -0
  1007. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/bar.test.js +12 -0
  1008. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/foo.test.js +13 -0
  1009. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/http.test.js +82 -0
  1010. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/serial/async.test.js +38 -0
  1011. data/node_modules/jasmine-runner/node_modules/socket.io/support/expresso/test/serial/http.test.js +47 -0
  1012. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/LICENSE +27 -0
  1013. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/Makefile +8 -0
  1014. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/README.md +41 -0
  1015. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/examples/client-unix.js +12 -0
  1016. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/examples/client.js +10 -0
  1017. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/examples/server-unix.js +13 -0
  1018. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/lib/websocket.js +562 -0
  1019. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/package.json +22 -0
  1020. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-basic.js +63 -0
  1021. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-readonly-attrs.js +44 -0
  1022. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-ready-state.js +23 -0
  1023. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-unix-send-fd.js +63 -0
  1024. data/node_modules/jasmine-runner/node_modules/socket.io/support/node-websocket-client/test/test-unix-sockets.js +46 -0
  1025. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/.gitignore +1 -0
  1026. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/.gitmodules +3 -0
  1027. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/Makefile +2 -0
  1028. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/README.md +213 -0
  1029. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/io.js +24 -0
  1030. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/socket.js +157 -0
  1031. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transport.js +141 -0
  1032. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/flashsocket.js +53 -0
  1033. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/htmlfile.js +73 -0
  1034. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/jsonp-polling.js +116 -0
  1035. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/websocket.js +60 -0
  1036. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/xhr-multipart.js +36 -0
  1037. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/xhr-polling.js +68 -0
  1038. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/transports/xhr.js +131 -0
  1039. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/util.js +60 -0
  1040. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/.gitignore +1 -0
  1041. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/FABridge.js +604 -0
  1042. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/README.txt +109 -0
  1043. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf +0 -0
  1044. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip +0 -0
  1045. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocket.as +461 -0
  1046. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMain.as +94 -0
  1047. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as +19 -0
  1048. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketStateEvent.as +32 -0
  1049. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/bridge/FABridge.as +943 -0
  1050. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/build.sh +10 -0
  1051. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/adobe/net/proxies/RFC2817Socket.as +204 -0
  1052. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/gsolo/encryption/MD5.as +375 -0
  1053. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/Crypto.as +287 -0
  1054. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/MozillaRootCertificates.as +3235 -0
  1055. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509Certificate.as +218 -0
  1056. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509CertificateCollection.as +57 -0
  1057. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/HMAC.as +82 -0
  1058. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHMAC.as +27 -0
  1059. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHash.as +21 -0
  1060. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MAC.as +137 -0
  1061. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD2.as +124 -0
  1062. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD5.as +204 -0
  1063. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA1.as +106 -0
  1064. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA224.as +28 -0
  1065. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA256.as +115 -0
  1066. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHABase.as +71 -0
  1067. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/ARC4.as +90 -0
  1068. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/IPRNG.as +20 -0
  1069. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/Random.as +119 -0
  1070. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/TLSPRF.as +142 -0
  1071. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/rsa/RSAKey.as +339 -0
  1072. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/AESKey.as +2797 -0
  1073. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/BlowFishKey.as +375 -0
  1074. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CBCMode.as +55 -0
  1075. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFB8Mode.as +61 -0
  1076. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFBMode.as +64 -0
  1077. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CTRMode.as +58 -0
  1078. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/DESKey.as +365 -0
  1079. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ECBMode.as +86 -0
  1080. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ICipher.as +21 -0
  1081. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IMode.as +15 -0
  1082. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IPad.as +32 -0
  1083. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as +21 -0
  1084. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ISymmetricKey.as +35 -0
  1085. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IVMode.as +110 -0
  1086. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/NullPad.as +34 -0
  1087. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/OFBMode.as +52 -0
  1088. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/PKCS5.as +44 -0
  1089. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SSLPad.as +44 -0
  1090. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SimpleIVMode.as +60 -0
  1091. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TLSPad.as +42 -0
  1092. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TripleDESKey.as +88 -0
  1093. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/XTeaKey.as +94 -0
  1094. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/aeskey.pl +29 -0
  1095. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/dump.txt +2304 -0
  1096. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/AESKeyTest.as +1220 -0
  1097. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ARC4Test.as +58 -0
  1098. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BigIntegerTest.as +39 -0
  1099. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BlowFishKeyTest.as +148 -0
  1100. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CBCModeTest.as +160 -0
  1101. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFB8ModeTest.as +71 -0
  1102. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFBModeTest.as +98 -0
  1103. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CTRModeTest.as +109 -0
  1104. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/DESKeyTest.as +112 -0
  1105. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ECBModeTest.as +151 -0
  1106. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/HMACTest.as +184 -0
  1107. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ITestHarness.as +20 -0
  1108. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD2Test.as +56 -0
  1109. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD5Test.as +58 -0
  1110. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/OFBModeTest.as +101 -0
  1111. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/RSAKeyTest.as +92 -0
  1112. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA1Test.as +198 -0
  1113. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA224Test.as +58 -0
  1114. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA256Test.as +60 -0
  1115. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TLSPRFTest.as +51 -0
  1116. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TestCase.as +42 -0
  1117. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TripleDESKeyTest.as +59 -0
  1118. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/XTeaKeyTest.as +66 -0
  1119. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/BulkCiphers.as +102 -0
  1120. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/CipherSuites.as +117 -0
  1121. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as +14 -0
  1122. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/ISecurityParameters.as +29 -0
  1123. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as +24 -0
  1124. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/MACs.as +38 -0
  1125. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLConnectionState.as +171 -0
  1126. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLEvent.as +26 -0
  1127. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLSecurityParameters.as +340 -0
  1128. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConfig.as +70 -0
  1129. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConnectionState.as +151 -0
  1130. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEngine.as +895 -0
  1131. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSError.as +39 -0
  1132. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEvent.as +27 -0
  1133. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSecurityParameters.as +197 -0
  1134. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocket.as +370 -0
  1135. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocketEvent.as +26 -0
  1136. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSTest.as +180 -0
  1137. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BarrettReduction.as +90 -0
  1138. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BigInteger.as +1543 -0
  1139. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/ClassicReduction.as +35 -0
  1140. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as +11 -0
  1141. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/MontgomeryReduction.as +85 -0
  1142. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as +34 -0
  1143. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/bi_internal.as +11 -0
  1144. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/ArrayUtil.as +25 -0
  1145. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Base64.as +189 -0
  1146. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Hex.as +66 -0
  1147. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as +28 -0
  1148. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ByteString.as +43 -0
  1149. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/DER.as +210 -0
  1150. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as +21 -0
  1151. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as +44 -0
  1152. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/OID.as +35 -0
  1153. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ObjectIdentifier.as +112 -0
  1154. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PEM.as +118 -0
  1155. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PrintableString.as +49 -0
  1156. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Sequence.as +90 -0
  1157. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as +27 -0
  1158. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Type.as +94 -0
  1159. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/UTCTime.as +60 -0
  1160. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/sample.html +76 -0
  1161. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/swfobject.js +4 -0
  1162. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/lib/vendor/web-socket-js/web_socket.js +388 -0
  1163. data/node_modules/jasmine-runner/node_modules/socket.io/support/socket.io-client/socket.io.js +1918 -0
  1164. data/node_modules/jasmine-runner/node_modules/socket.io/tests/index.js +17 -0
  1165. data/node_modules/jasmine-runner/node_modules/socket.io/tests/listener.js +152 -0
  1166. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.flashsocket.js +48 -0
  1167. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.htmlfile.js +214 -0
  1168. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.jsonp-polling.js +148 -0
  1169. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.websocket.js +245 -0
  1170. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.xhr-multipart.js +215 -0
  1171. data/node_modules/jasmine-runner/node_modules/socket.io/tests/transports.xhr-polling.js +138 -0
  1172. data/node_modules/jasmine-runner/node_modules/socket.io/tests/utils.js +25 -0
  1173. data/node_modules/jasmine-runner/node_modules/vows/LICENSE +20 -0
  1174. data/node_modules/jasmine-runner/node_modules/vows/Makefile +7 -0
  1175. data/node_modules/jasmine-runner/node_modules/vows/README.md +39 -0
  1176. data/node_modules/jasmine-runner/node_modules/vows/bin/vows +421 -0
  1177. data/node_modules/jasmine-runner/node_modules/vows/lib/assert/error.js +27 -0
  1178. data/node_modules/jasmine-runner/node_modules/vows/lib/assert/macros.js +180 -0
  1179. data/node_modules/jasmine-runner/node_modules/vows/lib/vows.js +195 -0
  1180. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/console.js +93 -0
  1181. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/context.js +55 -0
  1182. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/extras.js +28 -0
  1183. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/dot-matrix.js +69 -0
  1184. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/json.js +10 -0
  1185. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/silent.js +8 -0
  1186. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/spec.js +74 -0
  1187. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/watch.js +38 -0
  1188. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/reporters/xunit.js +90 -0
  1189. data/node_modules/jasmine-runner/node_modules/vows/lib/vows/suite.js +321 -0
  1190. data/node_modules/jasmine-runner/node_modules/vows/package.json +14 -0
  1191. data/node_modules/jasmine-runner/node_modules/vows/test/assert-test.js +101 -0
  1192. data/node_modules/jasmine-runner/node_modules/vows/test/vows-test.js +373 -0
  1193. data/node_modules/jasmine-runner/node_modules/webworker/.gitignore +2 -0
  1194. data/node_modules/jasmine-runner/node_modules/webworker/LICENSE +27 -0
  1195. data/node_modules/jasmine-runner/node_modules/webworker/Makefile +15 -0
  1196. data/node_modules/jasmine-runner/node_modules/webworker/README.md +74 -0
  1197. data/node_modules/jasmine-runner/node_modules/webworker/docs/design.md +103 -0
  1198. data/node_modules/jasmine-runner/node_modules/webworker/examples/prefork/README.md +1 -0
  1199. data/node_modules/jasmine-runner/node_modules/webworker/examples/prefork/master.js +12 -0
  1200. data/node_modules/jasmine-runner/node_modules/webworker/examples/prefork/worker.js +20 -0
  1201. data/node_modules/jasmine-runner/node_modules/webworker/lib/webworker-child.js +173 -0
  1202. data/node_modules/jasmine-runner/node_modules/webworker/lib/webworker-util.js +185 -0
  1203. data/node_modules/jasmine-runner/node_modules/webworker/lib/webworker.js +304 -0
  1204. data/node_modules/jasmine-runner/node_modules/webworker/lib/ws.js +118 -0
  1205. data/node_modules/jasmine-runner/node_modules/webworker/lib/ws/connection.js +408 -0
  1206. data/node_modules/jasmine-runner/node_modules/webworker/lib/ws/manager.js +98 -0
  1207. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/LICENSE +27 -0
  1208. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/Makefile +8 -0
  1209. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/README.md +41 -0
  1210. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/examples/client-unix.js +12 -0
  1211. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/examples/client.js +10 -0
  1212. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/examples/server-unix.js +13 -0
  1213. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/lib/websocket.js +516 -0
  1214. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/package.json +22 -0
  1215. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-basic.js +63 -0
  1216. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-readonly-attrs.js +44 -0
  1217. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-ready-state.js +23 -0
  1218. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-unix-send-fd.js +63 -0
  1219. data/node_modules/jasmine-runner/node_modules/webworker/node_modules/websocket-client/test/test-unix-sockets.js +46 -0
  1220. data/node_modules/jasmine-runner/node_modules/webworker/package.json +25 -0
  1221. data/node_modules/jasmine-runner/node_modules/webworker/test/test-error.js +24 -0
  1222. data/node_modules/jasmine-runner/node_modules/webworker/test/test-fd.js +32 -0
  1223. data/node_modules/jasmine-runner/node_modules/webworker/test/test-simple.js +36 -0
  1224. data/node_modules/jasmine-runner/node_modules/webworker/test/workers/error.js +6 -0
  1225. data/node_modules/jasmine-runner/node_modules/webworker/test/workers/fd.js +17 -0
  1226. data/node_modules/jasmine-runner/node_modules/webworker/test/workers/simple.js +15 -0
  1227. data/node_modules/jasmine-runner/package.json +22 -0
  1228. data/node_modules/jasmine-runner/spec/ConsoleLoggerSpec.js +1 -0
  1229. data/node_modules/jasmine-runner/spec/ServerSpec.js +42 -0
  1230. data/node_modules/jasmine-runner/spec/TestRunner.js +72 -0
  1231. data/node_modules/jasmine-runner/spec/file.worker +8 -0
  1232. data/node_modules/jasmine-runner/spec/temp/spec/foo.spec.js +0 -0
  1233. data/node_modules/jasmine-runner/spec/temp/src/foo.hs +1 -0
  1234. data/node_modules/uglify-js/.gitignore +4 -0
  1235. data/node_modules/uglify-js/README.html +1026 -0
  1236. data/node_modules/uglify-js/README.org +571 -0
  1237. data/node_modules/uglify-js/bin/uglifyjs +317 -0
  1238. data/node_modules/uglify-js/docstyle.css +75 -0
  1239. data/node_modules/uglify-js/lib/object-ast.js +75 -0
  1240. data/node_modules/uglify-js/lib/parse-js.js +1339 -0
  1241. data/node_modules/uglify-js/lib/process.js +2001 -0
  1242. data/node_modules/uglify-js/lib/squeeze-more.js +51 -0
  1243. data/node_modules/uglify-js/package.json +24 -0
  1244. data/node_modules/uglify-js/package.json~ +24 -0
  1245. data/node_modules/uglify-js/test/beautify.js +28 -0
  1246. data/node_modules/uglify-js/test/testparser.js +403 -0
  1247. data/node_modules/uglify-js/test/unit/compress/expected/array1.js +1 -0
  1248. data/node_modules/uglify-js/test/unit/compress/expected/array2.js +1 -0
  1249. data/node_modules/uglify-js/test/unit/compress/expected/array3.js +1 -0
  1250. data/node_modules/uglify-js/test/unit/compress/expected/array4.js +1 -0
  1251. data/node_modules/uglify-js/test/unit/compress/expected/assignment.js +1 -0
  1252. data/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +1 -0
  1253. data/node_modules/uglify-js/test/unit/compress/expected/const.js +1 -0
  1254. data/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +1 -0
  1255. data/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +1 -0
  1256. data/node_modules/uglify-js/test/unit/compress/expected/if.js +1 -0
  1257. data/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +1 -0
  1258. data/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +1 -0
  1259. data/node_modules/uglify-js/test/unit/compress/expected/issue10.js +1 -0
  1260. data/node_modules/uglify-js/test/unit/compress/expected/issue11.js +1 -0
  1261. data/node_modules/uglify-js/test/unit/compress/expected/issue13.js +1 -0
  1262. data/node_modules/uglify-js/test/unit/compress/expected/issue14.js +1 -0
  1263. data/node_modules/uglify-js/test/unit/compress/expected/issue16.js +1 -0
  1264. data/node_modules/uglify-js/test/unit/compress/expected/issue17.js +1 -0
  1265. data/node_modules/uglify-js/test/unit/compress/expected/issue20.js +1 -0
  1266. data/node_modules/uglify-js/test/unit/compress/expected/issue21.js +1 -0
  1267. data/node_modules/uglify-js/test/unit/compress/expected/issue25.js +1 -0
  1268. data/node_modules/uglify-js/test/unit/compress/expected/issue27.js +1 -0
  1269. data/node_modules/uglify-js/test/unit/compress/expected/issue28.js +1 -0
  1270. data/node_modules/uglify-js/test/unit/compress/expected/issue29.js +1 -0
  1271. data/node_modules/uglify-js/test/unit/compress/expected/issue30.js +1 -0
  1272. data/node_modules/uglify-js/test/unit/compress/expected/issue34.js +1 -0
  1273. data/node_modules/uglify-js/test/unit/compress/expected/issue4.js +1 -0
  1274. data/node_modules/uglify-js/test/unit/compress/expected/issue48.js +1 -0
  1275. data/node_modules/uglify-js/test/unit/compress/expected/issue50.js +1 -0
  1276. data/node_modules/uglify-js/test/unit/compress/expected/issue53.js +1 -0
  1277. data/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +1 -0
  1278. data/node_modules/uglify-js/test/unit/compress/expected/issue68.js +1 -0
  1279. data/node_modules/uglify-js/test/unit/compress/expected/issue69.js +1 -0
  1280. data/node_modules/uglify-js/test/unit/compress/expected/issue9.js +1 -0
  1281. data/node_modules/uglify-js/test/unit/compress/expected/mangle.js +1 -0
  1282. data/node_modules/uglify-js/test/unit/compress/expected/null_string.js +1 -0
  1283. data/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +1 -0
  1284. data/node_modules/uglify-js/test/unit/compress/expected/var.js +1 -0
  1285. data/node_modules/uglify-js/test/unit/compress/expected/whitespace.js +1 -0
  1286. data/node_modules/uglify-js/test/unit/compress/expected/with.js +1 -0
  1287. data/node_modules/uglify-js/test/unit/compress/test/array1.js +3 -0
  1288. data/node_modules/uglify-js/test/unit/compress/test/array2.js +4 -0
  1289. data/node_modules/uglify-js/test/unit/compress/test/array3.js +4 -0
  1290. data/node_modules/uglify-js/test/unit/compress/test/array4.js +6 -0
  1291. data/node_modules/uglify-js/test/unit/compress/test/assignment.js +20 -0
  1292. data/node_modules/uglify-js/test/unit/compress/test/concatstring.js +3 -0
  1293. data/node_modules/uglify-js/test/unit/compress/test/const.js +5 -0
  1294. data/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +4 -0
  1295. data/node_modules/uglify-js/test/unit/compress/test/forstatement.js +10 -0
  1296. data/node_modules/uglify-js/test/unit/compress/test/if.js +6 -0
  1297. data/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +9 -0
  1298. data/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +16 -0
  1299. data/node_modules/uglify-js/test/unit/compress/test/issue10.js +1 -0
  1300. data/node_modules/uglify-js/test/unit/compress/test/issue11.js +3 -0
  1301. data/node_modules/uglify-js/test/unit/compress/test/issue13.js +1 -0
  1302. data/node_modules/uglify-js/test/unit/compress/test/issue14.js +1 -0
  1303. data/node_modules/uglify-js/test/unit/compress/test/issue16.js +1 -0
  1304. data/node_modules/uglify-js/test/unit/compress/test/issue17.js +4 -0
  1305. data/node_modules/uglify-js/test/unit/compress/test/issue20.js +1 -0
  1306. data/node_modules/uglify-js/test/unit/compress/test/issue21.js +6 -0
  1307. data/node_modules/uglify-js/test/unit/compress/test/issue25.js +7 -0
  1308. data/node_modules/uglify-js/test/unit/compress/test/issue27.js +1 -0
  1309. data/node_modules/uglify-js/test/unit/compress/test/issue28.js +3 -0
  1310. data/node_modules/uglify-js/test/unit/compress/test/issue29.js +1 -0
  1311. data/node_modules/uglify-js/test/unit/compress/test/issue30.js +3 -0
  1312. data/node_modules/uglify-js/test/unit/compress/test/issue34.js +3 -0
  1313. data/node_modules/uglify-js/test/unit/compress/test/issue4.js +3 -0
  1314. data/node_modules/uglify-js/test/unit/compress/test/issue48.js +1 -0
  1315. data/node_modules/uglify-js/test/unit/compress/test/issue50.js +9 -0
  1316. data/node_modules/uglify-js/test/unit/compress/test/issue53.js +1 -0
  1317. data/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +3 -0
  1318. data/node_modules/uglify-js/test/unit/compress/test/issue68.js +5 -0
  1319. data/node_modules/uglify-js/test/unit/compress/test/issue69.js +1 -0
  1320. data/node_modules/uglify-js/test/unit/compress/test/issue9.js +4 -0
  1321. data/node_modules/uglify-js/test/unit/compress/test/mangle.js +5 -0
  1322. data/node_modules/uglify-js/test/unit/compress/test/null_string.js +1 -0
  1323. data/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +3 -0
  1324. data/node_modules/uglify-js/test/unit/compress/test/var.js +3 -0
  1325. data/node_modules/uglify-js/test/unit/compress/test/whitespace.js +21 -0
  1326. data/node_modules/uglify-js/test/unit/compress/test/with.js +2 -0
  1327. data/node_modules/uglify-js/test/unit/scripts.js +55 -0
  1328. data/node_modules/uglify-js/uglify-js.js +17 -0
  1329. data/node_modules/uglifycss/README.md +21 -0
  1330. data/node_modules/uglifycss/index.js +26 -0
  1331. data/node_modules/uglifycss/package.json +15 -0
  1332. data/node_modules/uglifycss/test.js +43 -0
  1333. data/node_modules/uglifycss/tests.yui.js +42 -0
  1334. data/node_modules/uglifycss/uglifycss +127 -0
  1335. data/node_modules/uglifycss/uglifycss-lib.js +461 -0
  1336. metadata +1383 -0
@@ -0,0 +1,96 @@
1
+ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2
+ *
3
+ * ***** BEGIN LICENSE BLOCK *****
4
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5
+ *
6
+ * The contents of this file are subject to the Mozilla Public License Version
7
+ * 1.1 (the "License"); you may not use this file except in compliance with
8
+ * the License. You may obtain a copy of the License at
9
+ * http://www.mozilla.org/MPL/
10
+ *
11
+ * Software distributed under the License is distributed on an "AS IS" basis,
12
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13
+ * for the specific language governing rights and limitations under the
14
+ * License.
15
+ *
16
+ * The Original Code is Mozilla Communicator client code, released
17
+ * March 31, 1998.
18
+ *
19
+ * The Initial Developer of the Original Code is
20
+ * Netscape Communications Corporation.
21
+ * Portions created by the Initial Developer are Copyright (C) 1998
22
+ * the Initial Developer. All Rights Reserved.
23
+ *
24
+ * Contributor(s):
25
+ *
26
+ * Alternatively, the contents of this file may be used under the terms of
27
+ * either of the GNU General Public License Version 2 or later (the "GPL"),
28
+ * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29
+ * in which case the provisions of the GPL or the LGPL are applicable instead
30
+ * of those above. If you wish to allow use of your version of this file only
31
+ * under the terms of either the GPL or the LGPL, and not to allow others to
32
+ * use your version of this file under the terms of the MPL, indicate your
33
+ * decision by deleting the provisions above and replace them with the notice
34
+ * and other provisions required by the GPL or the LGPL. If you do not delete
35
+ * the provisions above, a recipient may use your version of this file under
36
+ * the terms of any one of the MPL, the GPL or the LGPL.
37
+ *
38
+ * ***** END LICENSE BLOCK ***** */
39
+
40
+ /*
41
+ * JS runtime exception classes.
42
+ */
43
+
44
+ #ifndef jsexn_h___
45
+ #define jsexn_h___
46
+
47
+ JS_BEGIN_EXTERN_C
48
+
49
+ extern JSClass js_ErrorClass;
50
+
51
+ /*
52
+ * Initialize the exception constructor/prototype hierarchy.
53
+ */
54
+ extern JSObject *
55
+ js_InitExceptionClasses(JSContext *cx, JSObject *obj);
56
+
57
+ /*
58
+ * Given a JSErrorReport, check to see if there is an exception associated with
59
+ * the error number. If there is, then create an appropriate exception object,
60
+ * set it as the pending exception, and set the JSREPORT_EXCEPTION flag on the
61
+ * error report. Exception-aware host error reporters should probably ignore
62
+ * error reports so flagged. Returns JS_TRUE if an associated exception is
63
+ * found and set, JS_FALSE otherwise.
64
+ */
65
+ extern JSBool
66
+ js_ErrorToException(JSContext *cx, const char *message, JSErrorReport *reportp);
67
+
68
+ /*
69
+ * Called if a JS API call to js_Execute or js_InternalCall fails; calls the
70
+ * error reporter with the error report associated with any uncaught exception
71
+ * that has been raised. Returns true if there was an exception pending, and
72
+ * the error reporter was actually called.
73
+ *
74
+ * The JSErrorReport * that the error reporter is called with is currently
75
+ * associated with a JavaScript object, and is not guaranteed to persist after
76
+ * the object is collected. Any persistent uses of the JSErrorReport contents
77
+ * should make their own copy.
78
+ *
79
+ * The flags field of the JSErrorReport will have the JSREPORT_EXCEPTION flag
80
+ * set; embeddings that want to silently propagate JavaScript exceptions to
81
+ * other contexts may want to use an error reporter that ignores errors with
82
+ * this flag.
83
+ */
84
+ extern JSBool
85
+ js_ReportUncaughtException(JSContext *cx);
86
+
87
+ extern JSErrorReport *
88
+ js_ErrorFromException(JSContext *cx, jsval exn);
89
+
90
+ extern const JSErrorFormatString *
91
+ js_GetLocalizedErrorMessage(JSContext* cx, void *userRef, const char *locale,
92
+ const uintN errorNumber);
93
+
94
+ JS_END_EXTERN_C
95
+
96
+ #endif /* jsexn_h___ */
@@ -0,0 +1,2736 @@
1
+ /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2
+ * vim: set ts=8 sw=4 et tw=78:
3
+ *
4
+ * ***** BEGIN LICENSE BLOCK *****
5
+ * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6
+ *
7
+ * The contents of this file are subject to the Mozilla Public License Version
8
+ * 1.1 (the "License"); you may not use this file except in compliance with
9
+ * the License. You may obtain a copy of the License at
10
+ * http://www.mozilla.org/MPL/
11
+ *
12
+ * Software distributed under the License is distributed on an "AS IS" basis,
13
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14
+ * for the specific language governing rights and limitations under the
15
+ * License.
16
+ *
17
+ * The Original Code is Mozilla Communicator client code, released
18
+ * March 31, 1998.
19
+ *
20
+ * The Initial Developer of the Original Code is
21
+ * Netscape Communications Corporation.
22
+ * Portions created by the Initial Developer are Copyright (C) 1998
23
+ * the Initial Developer. All Rights Reserved.
24
+ *
25
+ * Contributor(s):
26
+ *
27
+ * Alternatively, the contents of this file may be used under the terms of
28
+ * either of the GNU General Public License Version 2 or later (the "GPL"),
29
+ * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30
+ * in which case the provisions of the GPL or the LGPL are applicable instead
31
+ * of those above. If you wish to allow use of your version of this file only
32
+ * under the terms of either the GPL or the LGPL, and not to allow others to
33
+ * use your version of this file under the terms of the MPL, indicate your
34
+ * decision by deleting the provisions above and replace them with the notice
35
+ * and other provisions required by the GPL or the LGPL. If you do not delete
36
+ * the provisions above, a recipient may use your version of this file under
37
+ * the terms of any one of the MPL, the GPL or the LGPL.
38
+ *
39
+ * ***** END LICENSE BLOCK ***** */
40
+
41
+ /*
42
+ * JS File object
43
+ */
44
+ #if JS_HAS_FILE_OBJECT
45
+
46
+ #include "jsstddef.h"
47
+ #include "jsfile.h"
48
+
49
+ /* ----------------- Platform-specific includes and defines ----------------- */
50
+ #if defined(XP_WIN) || defined(XP_OS2)
51
+ # include <direct.h>
52
+ # include <io.h>
53
+ # include <sys/types.h>
54
+ # include <sys/stat.h>
55
+ # define FILESEPARATOR '\\'
56
+ # define FILESEPARATOR2 '/'
57
+ # define CURRENT_DIR "c:\\"
58
+ # define POPEN _popen
59
+ # define PCLOSE _pclose
60
+ #elif defined(XP_UNIX) || defined(XP_BEOS)
61
+ # include <strings.h>
62
+ # include <stdio.h>
63
+ # include <stdlib.h>
64
+ # include <unistd.h>
65
+ # define FILESEPARATOR '/'
66
+ # define FILESEPARATOR2 '\0'
67
+ # define CURRENT_DIR "/"
68
+ # define POPEN popen
69
+ # define PCLOSE pclose
70
+ #endif
71
+
72
+ /* --------------- Platform-independent includes and defines ---------------- */
73
+ #include "jsapi.h"
74
+ #include "jsatom.h"
75
+ #include "jscntxt.h"
76
+ #include "jsdate.h"
77
+ #include "jsdbgapi.h"
78
+ #include "jsemit.h"
79
+ #include "jsfun.h"
80
+ #include "jslock.h"
81
+ #include "jsobj.h"
82
+ #include "jsparse.h"
83
+ #include "jsscan.h"
84
+ #include "jsscope.h"
85
+ #include "jsscript.h"
86
+ #include "jsstr.h"
87
+ #include "jsutil.h" /* Added by JSIFY */
88
+ #include <string.h>
89
+
90
+ /* NSPR dependencies */
91
+ #include "prio.h"
92
+ #include "prerror.h"
93
+
94
+ #define SPECIAL_FILE_STRING "Special File"
95
+ #define CURRENTDIR_PROPERTY "currentDir"
96
+ #define SEPARATOR_PROPERTY "separator"
97
+ #define FILE_CONSTRUCTOR "File"
98
+ #define PIPE_SYMBOL '|'
99
+
100
+ #define ASCII 0
101
+ #define UTF8 1
102
+ #define UCS2 2
103
+
104
+ #define asciistring "text"
105
+ #define utfstring "binary"
106
+ #define unicodestring "unicode"
107
+
108
+ #define MAX_PATH_LENGTH 1024
109
+ #define MODE_SIZE 256
110
+ #define NUMBER_SIZE 32
111
+ #define MAX_LINE_LENGTH 256
112
+ #define URL_PREFIX "file://"
113
+
114
+ #define STDINPUT_NAME "Standard input stream"
115
+ #define STDOUTPUT_NAME "Standard output stream"
116
+ #define STDERROR_NAME "Standard error stream"
117
+
118
+ #define RESOLVE_PATH js_canonicalPath /* js_absolutePath */
119
+
120
+ /* Error handling */
121
+ typedef enum JSFileErrNum {
122
+ #define MSG_DEF(name, number, count, exception, format) \
123
+ name = number,
124
+ #include "jsfile.msg"
125
+ #undef MSG_DEF
126
+ JSFileErr_Limit
127
+ #undef MSGDEF
128
+ } JSFileErrNum;
129
+
130
+ #define JSFILE_HAS_DFLT_MSG_STRINGS 1
131
+
132
+ JSErrorFormatString JSFile_ErrorFormatString[JSFileErr_Limit] = {
133
+ #if JSFILE_HAS_DFLT_MSG_STRINGS
134
+ #define MSG_DEF(name, number, count, exception, format) \
135
+ { format, count },
136
+ #else
137
+ #define MSG_DEF(name, number, count, exception, format) \
138
+ { NULL, count },
139
+ #endif
140
+ #include "jsfile.msg"
141
+ #undef MSG_DEF
142
+ };
143
+
144
+ const JSErrorFormatString *
145
+ JSFile_GetErrorMessage(void *userRef, const char *locale,
146
+ const uintN errorNumber)
147
+ {
148
+ if ((errorNumber > 0) && (errorNumber < JSFileErr_Limit))
149
+ return &JSFile_ErrorFormatString[errorNumber];
150
+ else
151
+ return NULL;
152
+ }
153
+
154
+ #define JSFILE_CHECK_NATIVE(op) \
155
+ if (file->isNative) { \
156
+ JS_ReportWarning(cx, "Cannot call or access \"%s\" on native file %s",\
157
+ op, file->path); \
158
+ goto out; \
159
+ }
160
+
161
+ #define JSFILE_CHECK_WRITE \
162
+ if (!file->isOpen) { \
163
+ JS_ReportWarning(cx, \
164
+ "File %s is closed, will open it for writing, proceeding", \
165
+ file->path); \
166
+ js_FileOpen(cx, obj, file, "write,append,create"); \
167
+ } \
168
+ if (!js_canWrite(cx, file)) { \
169
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL, \
170
+ JSFILEMSG_CANNOT_WRITE, file->path); \
171
+ goto out; \
172
+ }
173
+
174
+ #define JSFILE_CHECK_READ \
175
+ if (!file->isOpen) { \
176
+ JS_ReportWarning(cx, \
177
+ "File %s is closed, will open it for reading, proceeding", \
178
+ file->path); \
179
+ js_FileOpen(cx, obj, file, "read"); \
180
+ } \
181
+ if (!js_canRead(cx, file)) { \
182
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL, \
183
+ JSFILEMSG_CANNOT_READ, file->path); \
184
+ goto out; \
185
+ }
186
+
187
+ #define JSFILE_CHECK_OPEN(op) \
188
+ if (!file->isOpen) { \
189
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL, \
190
+ JSFILEMSG_FILE_MUST_BE_OPEN, op); \
191
+ goto out; \
192
+ }
193
+
194
+ #define JSFILE_CHECK_CLOSED(op) \
195
+ if (file->isOpen) { \
196
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL, \
197
+ JSFILEMSG_FILE_MUST_BE_CLOSED, op); \
198
+ goto out; \
199
+ }
200
+
201
+ #define JSFILE_CHECK_ONE_ARG(op) \
202
+ if (argc != 1) { \
203
+ char str[NUMBER_SIZE]; \
204
+ sprintf(str, "%d", argc); \
205
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL, \
206
+ JSFILEMSG_EXPECTS_ONE_ARG_ERROR, op, str); \
207
+ goto out; \
208
+ }
209
+
210
+
211
+ /*
212
+ Security mechanism, should define a callback for this.
213
+ The parameters are as follows:
214
+ SECURITY_CHECK(JSContext *cx, JSPrincipals *ps, char *op_name, JSFile *file)
215
+ XXX Should this be a real function returning a JSBool result (and getting
216
+ some typesafety help from the compiler?).
217
+ */
218
+ #define SECURITY_CHECK(cx, ps, op, file) \
219
+ /* Define a callback here... */
220
+
221
+
222
+ /* Structure representing the file internally */
223
+ typedef struct JSFile {
224
+ char *path; /* the path to the file. */
225
+ JSBool isOpen;
226
+ int32 mode; /* mode used to open the file: read, write, append, create, etc.. */
227
+ int32 type; /* Asciiz, utf, unicode */
228
+ char byteBuffer[3]; /* bytes read in advance by js_FileRead ( UTF8 encoding ) */
229
+ jsint nbBytesInBuf; /* number of bytes stored in the buffer above */
230
+ jschar charBuffer; /* character read in advance by readln ( mac files only ) */
231
+ JSBool charBufferUsed; /* flag indicating if the buffer above is being used */
232
+ JSBool hasRandomAccess;/* can the file be randomly accessed? false for stdin, and
233
+ UTF-encoded files. */
234
+ JSBool hasAutoflush; /* should we force a flush for each line break? */
235
+ JSBool isNative; /* if the file is using OS-specific file FILE type */
236
+ /* We can actually put the following two in a union since they should never be used at the same time */
237
+ PRFileDesc *handle; /* the handle for the file, if open. */
238
+ FILE *nativehandle; /* native handle, for stuff NSPR doesn't do. */
239
+ JSBool isPipe; /* if the file is really an OS pipe */
240
+ } JSFile;
241
+
242
+ /* a few forward declarations... */
243
+ JS_PUBLIC_API(JSObject*) js_NewFileObject(JSContext *cx, char *filename);
244
+ static JSBool file_open(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
245
+ static JSBool file_close(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
246
+
247
+ /* New filename manipulation procesures */
248
+ /* assumes we don't have leading/trailing spaces */
249
+ static JSBool
250
+ js_filenameHasAPipe(const char *filename)
251
+ {
252
+ if (!filename)
253
+ return JS_FALSE;
254
+
255
+ return filename[0] == PIPE_SYMBOL ||
256
+ filename[strlen(filename) - 1] == PIPE_SYMBOL;
257
+ }
258
+
259
+ static JSBool
260
+ js_isAbsolute(const char *name)
261
+ {
262
+ #if defined(XP_WIN) || defined(XP_OS2)
263
+ return *name && name[1] == ':';
264
+ #else
265
+ return (name[0]
266
+ # if defined(XP_UNIX) || defined(XP_BEOS)
267
+ ==
268
+ # else
269
+ !=
270
+ # endif
271
+ FILESEPARATOR);
272
+ #endif
273
+ }
274
+
275
+ /*
276
+ * Concatenates base and name to produce a valid filename.
277
+ * Returned string must be freed.
278
+ */
279
+ static char*
280
+ js_combinePath(JSContext *cx, const char *base, const char *name)
281
+ {
282
+ int len = strlen(base);
283
+ char* result = JS_malloc(cx, len + strlen(name) + 2);
284
+
285
+ if (!result)
286
+ return NULL;
287
+
288
+ strcpy(result, base);
289
+
290
+ if (base[len - 1] != FILESEPARATOR && base[len - 1] != FILESEPARATOR2) {
291
+ result[len] = FILESEPARATOR;
292
+ result[len + 1] = '\0';
293
+ }
294
+ strcat(result, name);
295
+ return result;
296
+ }
297
+
298
+ /* Extract the last component from a path name. Returned string must be freed */
299
+ static char *
300
+ js_fileBaseName(JSContext *cx, const char *pathname)
301
+ {
302
+ jsint index, aux;
303
+ char *result;
304
+
305
+ index = strlen(pathname)-1;
306
+
307
+ /* Chop off trailing seperators. */
308
+ while (index > 0 && (pathname[index]==FILESEPARATOR ||
309
+ pathname[index]==FILESEPARATOR2)) {
310
+ --index;
311
+ }
312
+
313
+ aux = index;
314
+
315
+ /* Now find the next separator. */
316
+ while (index >= 0 && pathname[index] != FILESEPARATOR &&
317
+ pathname[index] != FILESEPARATOR2) {
318
+ --index;
319
+ }
320
+
321
+ /* Allocate and copy. */
322
+ result = JS_malloc(cx, aux - index + 1);
323
+ if (!result)
324
+ return NULL;
325
+ strncpy(result, pathname + index + 1, aux - index);
326
+ result[aux - index] = '\0';
327
+ return result;
328
+ }
329
+
330
+ /*
331
+ * Returns everything but the last component from a path name.
332
+ * Returned string must be freed.
333
+ */
334
+ static char *
335
+ js_fileDirectoryName(JSContext *cx, const char *pathname)
336
+ {
337
+ char *result;
338
+ const char *cp, *end;
339
+ size_t pathsize;
340
+
341
+ end = pathname + strlen(pathname);
342
+ cp = end - 1;
343
+
344
+ /* If this is already a directory, chop off the trailing /s. */
345
+ while (cp >= pathname) {
346
+ if (*cp != FILESEPARATOR && *cp != FILESEPARATOR2)
347
+ break;
348
+ --cp;
349
+ }
350
+
351
+ if (cp < pathname && end != pathname) {
352
+ /* There were just /s, return the root. */
353
+ result = JS_malloc(cx, 1 + 1); /* The separator + trailing NUL. */
354
+ result[0] = FILESEPARATOR;
355
+ result[1] = '\0';
356
+ return result;
357
+ }
358
+
359
+ /* Now chop off the last portion. */
360
+ while (cp >= pathname) {
361
+ if (*cp == FILESEPARATOR || *cp == FILESEPARATOR2)
362
+ break;
363
+ --cp;
364
+ }
365
+
366
+ /* Check if this is a leaf. */
367
+ if (cp < pathname) {
368
+ /* It is, return "pathname/". */
369
+ if (end[-1] == FILESEPARATOR || end[-1] == FILESEPARATOR2) {
370
+ /* Already has its terminating /. */
371
+ return JS_strdup(cx, pathname);
372
+ }
373
+
374
+ pathsize = end - pathname + 1;
375
+ result = JS_malloc(cx, pathsize + 1);
376
+ if (!result)
377
+ return NULL;
378
+
379
+ strcpy(result, pathname);
380
+ result[pathsize - 1] = FILESEPARATOR;
381
+ result[pathsize] = '\0';
382
+
383
+ return result;
384
+ }
385
+
386
+ /* Return everything up to and including the seperator. */
387
+ pathsize = cp - pathname + 1;
388
+ result = JS_malloc(cx, pathsize + 1);
389
+ if (!result)
390
+ return NULL;
391
+
392
+ strncpy(result, pathname, pathsize);
393
+ result[pathsize] = '\0';
394
+
395
+ return result;
396
+ }
397
+
398
+ static char *
399
+ js_absolutePath(JSContext *cx, const char * path)
400
+ {
401
+ JSObject *obj;
402
+ JSString *str;
403
+ jsval prop;
404
+
405
+ if (js_isAbsolute(path)) {
406
+ return JS_strdup(cx, path);
407
+ } else {
408
+ obj = JS_GetGlobalObject(cx);
409
+ if (!JS_GetProperty(cx, obj, FILE_CONSTRUCTOR, &prop)) {
410
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
411
+ JSFILEMSG_FILE_CONSTRUCTOR_UNDEFINED_ERROR);
412
+ return JS_strdup(cx, path);
413
+ }
414
+
415
+ obj = JSVAL_TO_OBJECT(prop);
416
+ if (!JS_GetProperty(cx, obj, CURRENTDIR_PROPERTY, &prop)) {
417
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
418
+ JSFILEMSG_FILE_CURRENTDIR_UNDEFINED_ERROR);
419
+ return JS_strdup(cx, path);
420
+ }
421
+
422
+ str = JS_ValueToString(cx, prop);
423
+ if (!str)
424
+ return JS_strdup(cx, path);
425
+
426
+ /* should we have an array of curr dirs indexed by drive for windows? */
427
+ return js_combinePath(cx, JS_GetStringBytes(str), path);
428
+ }
429
+ }
430
+
431
+ /* Side effect: will remove spaces in the beginning/end of the filename */
432
+ static char *
433
+ js_canonicalPath(JSContext *cx, char *oldpath)
434
+ {
435
+ char *tmp;
436
+ char *path = oldpath;
437
+ char *base, *dir, *current, *result;
438
+ jsint c;
439
+ jsint back = 0;
440
+ unsigned int i = 0, j = strlen(path)-1;
441
+
442
+ /* This is probably optional */
443
+ /* Remove possible spaces in the beginning and end */
444
+ while (i < j && path[i] == ' ')
445
+ i++;
446
+ while (j >= 0 && path[j] == ' ')
447
+ j--;
448
+
449
+ tmp = JS_malloc(cx, j-i+2);
450
+ if (!tmp)
451
+ return NULL;
452
+
453
+ strncpy(tmp, path + i, j - i + 1);
454
+ tmp[j - i + 1] = '\0';
455
+
456
+ path = tmp;
457
+
458
+ /* Pipe support. */
459
+ if (js_filenameHasAPipe(path))
460
+ return path;
461
+
462
+ /* file:// support. */
463
+ if (!strncmp(path, URL_PREFIX, strlen(URL_PREFIX))) {
464
+ tmp = js_canonicalPath(cx, path + strlen(URL_PREFIX));
465
+ JS_free(cx, path);
466
+ return tmp;
467
+ }
468
+
469
+ if (!js_isAbsolute(path)) {
470
+ tmp = js_absolutePath(cx, path);
471
+ if (!tmp)
472
+ return NULL;
473
+ JS_free(cx, path);
474
+ path = tmp;
475
+ }
476
+
477
+ result = JS_strdup(cx, "");
478
+
479
+ current = path;
480
+
481
+ base = js_fileBaseName(cx, current);
482
+ dir = js_fileDirectoryName(cx, current);
483
+
484
+ while (strcmp(dir, current)) {
485
+ if (!strcmp(base, "..")) {
486
+ back++;
487
+ } else {
488
+ if (back > 0) {
489
+ back--;
490
+ } else {
491
+ tmp = result;
492
+ result = JS_malloc(cx, strlen(base) + 1 + strlen(tmp) + 1);
493
+ if (!result)
494
+ goto out;
495
+
496
+ strcpy(result, base);
497
+ c = strlen(result);
498
+ if (*tmp) {
499
+ result[c] = FILESEPARATOR;
500
+ result[c + 1] = '\0';
501
+ strcat(result, tmp);
502
+ }
503
+ JS_free(cx, tmp);
504
+ }
505
+ }
506
+ JS_free(cx, current);
507
+ JS_free(cx, base);
508
+ current = dir;
509
+ base = js_fileBaseName(cx, current);
510
+ dir = js_fileDirectoryName(cx, current);
511
+ }
512
+
513
+ tmp = result;
514
+ result = JS_malloc(cx, strlen(dir)+1+strlen(tmp)+1);
515
+ if (!result)
516
+ goto out;
517
+
518
+ strcpy(result, dir);
519
+ c = strlen(result);
520
+ if (tmp[0]!='\0') {
521
+ if ((result[c-1]!=FILESEPARATOR)&&(result[c-1]!=FILESEPARATOR2)) {
522
+ result[c] = FILESEPARATOR;
523
+ result[c+1] = '\0';
524
+ }
525
+ strcat(result, tmp);
526
+ }
527
+
528
+ out:
529
+ if (tmp)
530
+ JS_free(cx, tmp);
531
+ if (dir)
532
+ JS_free(cx, dir);
533
+ if (base)
534
+ JS_free(cx, base);
535
+ if (current)
536
+ JS_free(cx, current);
537
+
538
+ return result;
539
+ }
540
+
541
+ /* -------------------------- Text conversion ------------------------------- */
542
+ /* The following is ripped from libi18n/unicvt.c and include files.. */
543
+
544
+ /*
545
+ * UTF8 defines and macros
546
+ */
547
+ #define ONE_OCTET_BASE 0x00 /* 0xxxxxxx */
548
+ #define ONE_OCTET_MASK 0x7F /* x1111111 */
549
+ #define CONTINUING_OCTET_BASE 0x80 /* 10xxxxxx */
550
+ #define CONTINUING_OCTET_MASK 0x3F /* 00111111 */
551
+ #define TWO_OCTET_BASE 0xC0 /* 110xxxxx */
552
+ #define TWO_OCTET_MASK 0x1F /* 00011111 */
553
+ #define THREE_OCTET_BASE 0xE0 /* 1110xxxx */
554
+ #define THREE_OCTET_MASK 0x0F /* 00001111 */
555
+ #define FOUR_OCTET_BASE 0xF0 /* 11110xxx */
556
+ #define FOUR_OCTET_MASK 0x07 /* 00000111 */
557
+ #define FIVE_OCTET_BASE 0xF8 /* 111110xx */
558
+ #define FIVE_OCTET_MASK 0x03 /* 00000011 */
559
+ #define SIX_OCTET_BASE 0xFC /* 1111110x */
560
+ #define SIX_OCTET_MASK 0x01 /* 00000001 */
561
+
562
+ #define IS_UTF8_1ST_OF_1(x) (( (x)&~ONE_OCTET_MASK ) == ONE_OCTET_BASE)
563
+ #define IS_UTF8_1ST_OF_2(x) (( (x)&~TWO_OCTET_MASK ) == TWO_OCTET_BASE)
564
+ #define IS_UTF8_1ST_OF_3(x) (( (x)&~THREE_OCTET_MASK) == THREE_OCTET_BASE)
565
+ #define IS_UTF8_1ST_OF_4(x) (( (x)&~FOUR_OCTET_MASK ) == FOUR_OCTET_BASE)
566
+ #define IS_UTF8_1ST_OF_5(x) (( (x)&~FIVE_OCTET_MASK ) == FIVE_OCTET_BASE)
567
+ #define IS_UTF8_1ST_OF_6(x) (( (x)&~SIX_OCTET_MASK ) == SIX_OCTET_BASE)
568
+ #define IS_UTF8_2ND_THRU_6TH(x) \
569
+ (( (x)&~CONTINUING_OCTET_MASK ) == CONTINUING_OCTET_BASE)
570
+ #define IS_UTF8_1ST_OF_UCS2(x) \
571
+ IS_UTF8_1ST_OF_1(x) \
572
+ || IS_UTF8_1ST_OF_2(x) \
573
+ || IS_UTF8_1ST_OF_3(x)
574
+
575
+
576
+ #define MAX_UCS2 0xFFFF
577
+ #define DEFAULT_CHAR 0x003F /* Default char is "?" */
578
+ #define BYTE_MASK 0xBF
579
+ #define BYTE_MARK 0x80
580
+
581
+
582
+ /* Function: one_ucs2_to_utf8_char
583
+ *
584
+ * Function takes one UCS-2 char and writes it to a UTF-8 buffer.
585
+ * We need a UTF-8 buffer because we don't know before this
586
+ * function how many bytes of utf-8 data will be written. It also
587
+ * takes a pointer to the end of the UTF-8 buffer so that we don't
588
+ * overwrite data. This function returns the number of UTF-8 bytes
589
+ * of data written, or -1 if the buffer would have been overrun.
590
+ */
591
+
592
+ #define LINE_SEPARATOR 0x2028
593
+ #define PARAGRAPH_SEPARATOR 0x2029
594
+ static int16 one_ucs2_to_utf8_char(unsigned char *tobufp,
595
+ unsigned char *tobufendp,
596
+ uint16 onechar)
597
+ {
598
+ int16 numUTF8bytes = 0;
599
+
600
+ if (onechar == LINE_SEPARATOR || onechar == PARAGRAPH_SEPARATOR) {
601
+ strcpy((char*)tobufp, "\n");
602
+ return strlen((char*)tobufp);
603
+ }
604
+
605
+ if (onechar < 0x80) {
606
+ numUTF8bytes = 1;
607
+ } else if (onechar < 0x800) {
608
+ numUTF8bytes = 2;
609
+ } else {
610
+ /* 0x800 >= onechar <= MAX_UCS2 */
611
+ numUTF8bytes = 3;
612
+ }
613
+
614
+ tobufp += numUTF8bytes;
615
+
616
+ /* return error if we don't have space for the whole character */
617
+ if (tobufp > tobufendp) {
618
+ return(-1);
619
+ }
620
+
621
+ switch(numUTF8bytes) {
622
+ case 3: *--tobufp = (onechar | BYTE_MARK) & BYTE_MASK; onechar >>=6;
623
+ *--tobufp = (onechar | BYTE_MARK) & BYTE_MASK; onechar >>=6;
624
+ *--tobufp = onechar | THREE_OCTET_BASE;
625
+ break;
626
+
627
+ case 2: *--tobufp = (onechar | BYTE_MARK) & BYTE_MASK; onechar >>=6;
628
+ *--tobufp = onechar | TWO_OCTET_BASE;
629
+ break;
630
+
631
+ case 1: *--tobufp = (unsigned char)onechar;
632
+ break;
633
+ }
634
+
635
+ return numUTF8bytes;
636
+ }
637
+
638
+ /*
639
+ * utf8_to_ucs2_char
640
+ *
641
+ * Convert a utf8 multibyte character to ucs2
642
+ *
643
+ * inputs: pointer to utf8 character(s)
644
+ * length of utf8 buffer ("read" length limit)
645
+ * pointer to return ucs2 character
646
+ *
647
+ * outputs: number of bytes in the utf8 character
648
+ * -1 if not a valid utf8 character sequence
649
+ * -2 if the buffer is too short
650
+ */
651
+ static int16
652
+ utf8_to_ucs2_char(const unsigned char *utf8p, int16 buflen, uint16 *ucs2p)
653
+ {
654
+ uint16 lead, cont1, cont2;
655
+
656
+ /*
657
+ * Check for minimum buffer length
658
+ */
659
+ if ((buflen < 1) || (utf8p == NULL)) {
660
+ return -2;
661
+ }
662
+ lead = (uint16) (*utf8p);
663
+
664
+ /*
665
+ * Check for a one octet sequence
666
+ */
667
+ if (IS_UTF8_1ST_OF_1(lead)) {
668
+ *ucs2p = lead & ONE_OCTET_MASK;
669
+ return 1;
670
+ }
671
+
672
+ /*
673
+ * Check for a two octet sequence
674
+ */
675
+ if (IS_UTF8_1ST_OF_2(*utf8p)) {
676
+ if (buflen < 2)
677
+ return -2;
678
+ cont1 = (uint16) *(utf8p+1);
679
+ if (!IS_UTF8_2ND_THRU_6TH(cont1))
680
+ return -1;
681
+ *ucs2p = (lead & TWO_OCTET_MASK) << 6;
682
+ *ucs2p |= cont1 & CONTINUING_OCTET_MASK;
683
+ return 2;
684
+ }
685
+
686
+ /*
687
+ * Check for a three octet sequence
688
+ */
689
+ else if (IS_UTF8_1ST_OF_3(lead)) {
690
+ if (buflen < 3)
691
+ return -2;
692
+ cont1 = (uint16) *(utf8p+1);
693
+ cont2 = (uint16) *(utf8p+2);
694
+ if ( (!IS_UTF8_2ND_THRU_6TH(cont1))
695
+ || (!IS_UTF8_2ND_THRU_6TH(cont2)))
696
+ return -1;
697
+ *ucs2p = (lead & THREE_OCTET_MASK) << 12;
698
+ *ucs2p |= (cont1 & CONTINUING_OCTET_MASK) << 6;
699
+ *ucs2p |= cont2 & CONTINUING_OCTET_MASK;
700
+ return 3;
701
+ }
702
+ else { /* not a valid utf8/ucs2 character */
703
+ return -1;
704
+ }
705
+ }
706
+
707
+ /* ----------------------------- Helper functions --------------------------- */
708
+ /* Ripped off from lm_win.c .. */
709
+ /* where is strcasecmp?.. for now, it's case sensitive..
710
+ *
711
+ * strcasecmp is in strings.h, but on windows it's called _stricmp...
712
+ * will need to #ifdef this
713
+ */
714
+
715
+ static int32
716
+ js_FileHasOption(JSContext *cx, const char *oldoptions, const char *name)
717
+ {
718
+ char *comma, *equal, *current;
719
+ char *options = JS_strdup(cx, oldoptions);
720
+ int32 found = 0;
721
+
722
+ current = options;
723
+ for (;;) {
724
+ comma = strchr(current, ',');
725
+ if (comma) *comma = '\0';
726
+ equal = strchr(current, '=');
727
+ if (equal) *equal = '\0';
728
+ if (strcmp(current, name) == 0) {
729
+ if (!equal || strcmp(equal + 1, "yes") == 0)
730
+ found = 1;
731
+ else
732
+ found = atoi(equal + 1);
733
+ }
734
+ if (equal) *equal = '=';
735
+ if (comma) *comma = ',';
736
+ if (found || !comma)
737
+ break;
738
+ current = comma + 1;
739
+ }
740
+ JS_free(cx, options);
741
+ return found;
742
+ }
743
+
744
+ /* empty the buffer */
745
+ static void
746
+ js_ResetBuffers(JSFile * file)
747
+ {
748
+ file->charBufferUsed = JS_FALSE;
749
+ file->nbBytesInBuf = 0;
750
+ }
751
+
752
+ /* Reset file attributes */
753
+ static void
754
+ js_ResetAttributes(JSFile * file)
755
+ {
756
+ file->mode = file->type = 0;
757
+ file->isOpen = JS_FALSE;
758
+ file->handle = NULL;
759
+ file->nativehandle = NULL;
760
+ file->hasRandomAccess = JS_TRUE; /* Innocent until proven guilty. */
761
+ file->hasAutoflush = JS_FALSE;
762
+ file->isNative = JS_FALSE;
763
+ file->isPipe = JS_FALSE;
764
+
765
+ js_ResetBuffers(file);
766
+ }
767
+
768
+ static JSBool
769
+ js_FileOpen(JSContext *cx, JSObject *obj, JSFile *file, char *mode){
770
+ JSString *type, *mask;
771
+ jsval v[2];
772
+ jsval rval;
773
+
774
+ type = JS_InternString(cx, asciistring);
775
+ mask = JS_NewStringCopyZ(cx, mode);
776
+ v[0] = STRING_TO_JSVAL(mask);
777
+ v[1] = STRING_TO_JSVAL(type);
778
+
779
+ if (!file_open(cx, obj, 2, v, &rval))
780
+ return JS_FALSE;
781
+ return JS_TRUE;
782
+ }
783
+
784
+ /* Buffered version of PR_Read. Used by js_FileRead */
785
+ static int32
786
+ js_BufferedRead(JSFile *f, unsigned char *buf, int32 len)
787
+ {
788
+ int32 count = 0;
789
+
790
+ while (f->nbBytesInBuf>0&&len>0) {
791
+ buf[0] = f->byteBuffer[0];
792
+ f->byteBuffer[0] = f->byteBuffer[1];
793
+ f->byteBuffer[1] = f->byteBuffer[2];
794
+ f->nbBytesInBuf--;
795
+ len--;
796
+ buf+=1;
797
+ count++;
798
+ }
799
+
800
+ if (len > 0) {
801
+ count += (!f->isNative)
802
+ ? PR_Read(f->handle, buf, len)
803
+ : fread(buf, 1, len, f->nativehandle);
804
+ }
805
+ return count;
806
+ }
807
+
808
+ static int32
809
+ js_FileRead(JSContext *cx, JSFile *file, jschar *buf, int32 len, int32 mode)
810
+ {
811
+ unsigned char *aux;
812
+ int32 count = 0, i;
813
+ jsint remainder;
814
+ unsigned char utfbuf[3];
815
+
816
+ if (file->charBufferUsed) {
817
+ buf[0] = file->charBuffer;
818
+ buf++;
819
+ len--;
820
+ file->charBufferUsed = JS_FALSE;
821
+ }
822
+
823
+ switch (mode) {
824
+ case ASCII:
825
+ aux = (unsigned char*)JS_malloc(cx, len);
826
+ if (!aux)
827
+ return 0;
828
+
829
+ count = js_BufferedRead(file, aux, len);
830
+ if (count == -1) {
831
+ JS_free(cx, aux);
832
+ return 0;
833
+ }
834
+
835
+ for (i = 0; i < len; i++)
836
+ buf[i] = (jschar)aux[i];
837
+
838
+ JS_free(cx, aux);
839
+ break;
840
+
841
+ case UTF8:
842
+ remainder = 0;
843
+ for (count = 0;count<len;count++) {
844
+ i = js_BufferedRead(file, utfbuf+remainder, 3-remainder);
845
+ if (i<=0) {
846
+ return count;
847
+ }
848
+ i = utf8_to_ucs2_char(utfbuf, (int16)i, &buf[count] );
849
+ if (i<0) {
850
+ return count;
851
+ } else {
852
+ if (i==1) {
853
+ utfbuf[0] = utfbuf[1];
854
+ utfbuf[1] = utfbuf[2];
855
+ remainder = 2;
856
+ } else if (i==2) {
857
+ utfbuf[0] = utfbuf[2];
858
+ remainder = 1;
859
+ } else if (i==3) {
860
+ remainder = 0;
861
+ }
862
+ }
863
+ }
864
+ while (remainder>0) {
865
+ file->byteBuffer[file->nbBytesInBuf] = utfbuf[0];
866
+ file->nbBytesInBuf++;
867
+ utfbuf[0] = utfbuf[1];
868
+ utfbuf[1] = utfbuf[2];
869
+ remainder--;
870
+ }
871
+ break;
872
+
873
+ case UCS2:
874
+ count = js_BufferedRead(file, (unsigned char *)buf, len * 2) >> 1;
875
+ if (count == -1)
876
+ return 0;
877
+
878
+ break;
879
+
880
+ default:
881
+ /* Not reached. */
882
+ JS_ASSERT(0);
883
+ }
884
+
885
+ if(count == -1) {
886
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
887
+ JSFILEMSG_OP_FAILED, "read", file->path);
888
+ }
889
+
890
+ return count;
891
+ }
892
+
893
+ static int32
894
+ js_FileSeek(JSContext *cx, JSFile *file, int32 len, int32 mode)
895
+ {
896
+ int32 count = 0, i;
897
+ jsint remainder;
898
+ unsigned char utfbuf[3];
899
+ jschar tmp;
900
+
901
+ switch (mode) {
902
+ case ASCII:
903
+ count = PR_Seek(file->handle, len, PR_SEEK_CUR);
904
+ break;
905
+
906
+ case UTF8:
907
+ remainder = 0;
908
+ for (count = 0;count<len;count++) {
909
+ i = js_BufferedRead(file, utfbuf+remainder, 3-remainder);
910
+ if (i<=0) {
911
+ return 0;
912
+ }
913
+ i = utf8_to_ucs2_char(utfbuf, (int16)i, &tmp );
914
+ if (i<0) {
915
+ return 0;
916
+ } else {
917
+ if (i==1) {
918
+ utfbuf[0] = utfbuf[1];
919
+ utfbuf[1] = utfbuf[2];
920
+ remainder = 2;
921
+ } else if (i==2) {
922
+ utfbuf[0] = utfbuf[2];
923
+ remainder = 1;
924
+ } else if (i==3) {
925
+ remainder = 0;
926
+ }
927
+ }
928
+ }
929
+ while (remainder>0) {
930
+ file->byteBuffer[file->nbBytesInBuf] = utfbuf[0];
931
+ file->nbBytesInBuf++;
932
+ utfbuf[0] = utfbuf[1];
933
+ utfbuf[1] = utfbuf[2];
934
+ remainder--;
935
+ }
936
+ break;
937
+
938
+ case UCS2:
939
+ count = PR_Seek(file->handle, len*2, PR_SEEK_CUR)/2;
940
+ break;
941
+
942
+ default:
943
+ /* Not reached. */
944
+ JS_ASSERT(0);
945
+ }
946
+
947
+ if(count == -1) {
948
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
949
+ JSFILEMSG_OP_FAILED, "seek", file->path);
950
+ }
951
+
952
+ return count;
953
+ }
954
+
955
+ static int32
956
+ js_FileWrite(JSContext *cx, JSFile *file, jschar *buf, int32 len, int32 mode)
957
+ {
958
+ unsigned char *aux;
959
+ int32 count = 0, i, j;
960
+ unsigned char *utfbuf;
961
+
962
+ switch (mode) {
963
+ case ASCII:
964
+ aux = (unsigned char*)JS_malloc(cx, len);
965
+ if (!aux)
966
+ return 0;
967
+
968
+ for (i = 0; i<len; i++)
969
+ aux[i] = buf[i] % 256;
970
+
971
+ count = (!file->isNative)
972
+ ? PR_Write(file->handle, aux, len)
973
+ : fwrite(aux, 1, len, file->nativehandle);
974
+
975
+ if (count==-1) {
976
+ JS_free(cx, aux);
977
+ return 0;
978
+ }
979
+
980
+ JS_free(cx, aux);
981
+ break;
982
+
983
+ case UTF8:
984
+ utfbuf = (unsigned char*)JS_malloc(cx, len*3);
985
+ if (!utfbuf) return 0;
986
+ i = 0;
987
+ for (count = 0;count<len;count++) {
988
+ j = one_ucs2_to_utf8_char(utfbuf+i, utfbuf+len*3, buf[count]);
989
+ if (j==-1) {
990
+ JS_free(cx, utfbuf);
991
+ return 0;
992
+ }
993
+ i+=j;
994
+ }
995
+ j = (!file->isNative)
996
+ ? PR_Write(file->handle, utfbuf, i)
997
+ : fwrite(utfbuf, 1, i, file->nativehandle);
998
+
999
+ if (j<i) {
1000
+ JS_free(cx, utfbuf);
1001
+ return 0;
1002
+ }
1003
+ JS_free(cx, utfbuf);
1004
+ break;
1005
+
1006
+ case UCS2:
1007
+ count = (!file->isNative)
1008
+ ? PR_Write(file->handle, buf, len*2) >> 1
1009
+ : fwrite(buf, 1, len*2, file->nativehandle) >> 1;
1010
+
1011
+ if (count == -1)
1012
+ return 0;
1013
+ break;
1014
+
1015
+ default:
1016
+ /* Not reached. */
1017
+ JS_ASSERT(0);
1018
+ }
1019
+
1020
+ if(count == -1) {
1021
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1022
+ JSFILEMSG_OP_FAILED, "write", file->path);
1023
+ }
1024
+
1025
+ return count;
1026
+ }
1027
+
1028
+ /* ----------------------------- Property checkers -------------------------- */
1029
+ static JSBool
1030
+ js_exists(JSContext *cx, JSFile *file)
1031
+ {
1032
+ if (file->isNative) {
1033
+ /* It doesn't make sense for a pipe of stdstream. */
1034
+ return JS_FALSE;
1035
+ }
1036
+
1037
+ return PR_Access(file->path, PR_ACCESS_EXISTS) == PR_SUCCESS;
1038
+ }
1039
+
1040
+ static JSBool
1041
+ js_canRead(JSContext *cx, JSFile *file)
1042
+ {
1043
+ if (!file->isNative) {
1044
+ if (file->isOpen && !(file->mode & PR_RDONLY))
1045
+ return JS_FALSE;
1046
+ return PR_Access(file->path, PR_ACCESS_READ_OK) == PR_SUCCESS;
1047
+ }
1048
+
1049
+ if (file->isPipe) {
1050
+ /* Is this pipe open for reading? */
1051
+ return file->path[0] == PIPE_SYMBOL;
1052
+ }
1053
+
1054
+ return !strcmp(file->path, STDINPUT_NAME);
1055
+ }
1056
+
1057
+ static JSBool
1058
+ js_canWrite(JSContext *cx, JSFile *file)
1059
+ {
1060
+ if (!file->isNative) {
1061
+ if (file->isOpen && !(file->mode & PR_WRONLY))
1062
+ return JS_FALSE;
1063
+ return PR_Access(file->path, PR_ACCESS_WRITE_OK) == PR_SUCCESS;
1064
+ }
1065
+
1066
+ if(file->isPipe) {
1067
+ /* Is this pipe open for writing? */
1068
+ return file->path[strlen(file->path)-1] == PIPE_SYMBOL;
1069
+ }
1070
+
1071
+ return !strcmp(file->path, STDOUTPUT_NAME) ||
1072
+ !strcmp(file->path, STDERROR_NAME);
1073
+ }
1074
+
1075
+ static JSBool
1076
+ js_isFile(JSContext *cx, JSFile *file)
1077
+ {
1078
+ if (!file->isNative) {
1079
+ PRFileInfo info;
1080
+
1081
+ if (file->isOpen
1082
+ ? PR_GetOpenFileInfo(file->handle, &info)
1083
+ : PR_GetFileInfo(file->path, &info) != PR_SUCCESS) {
1084
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1085
+ JSFILEMSG_CANNOT_ACCESS_FILE_STATUS, file->path);
1086
+ return JS_FALSE;
1087
+ }
1088
+
1089
+ return info.type == PR_FILE_FILE;
1090
+ }
1091
+
1092
+ /* This doesn't make sense for a pipe of stdstream. */
1093
+ return JS_FALSE;
1094
+ }
1095
+
1096
+ static JSBool
1097
+ js_isDirectory(JSContext *cx, JSFile *file)
1098
+ {
1099
+ if(!file->isNative){
1100
+ PRFileInfo info;
1101
+
1102
+ /* Hack needed to get get_property to work. */
1103
+ if (!js_exists(cx, file))
1104
+ return JS_FALSE;
1105
+
1106
+ if (file->isOpen
1107
+ ? PR_GetOpenFileInfo(file->handle, &info)
1108
+ : PR_GetFileInfo(file->path, &info) != PR_SUCCESS) {
1109
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1110
+ JSFILEMSG_CANNOT_ACCESS_FILE_STATUS, file->path);
1111
+ return JS_FALSE;
1112
+ }
1113
+
1114
+ return info.type == PR_FILE_DIRECTORY;
1115
+ }
1116
+
1117
+ /* This doesn't make sense for a pipe of stdstream. */
1118
+ return JS_FALSE;
1119
+ }
1120
+
1121
+ static jsval
1122
+ js_size(JSContext *cx, JSFile *file)
1123
+ {
1124
+ PRFileInfo info;
1125
+
1126
+ JSFILE_CHECK_NATIVE("size");
1127
+
1128
+ if (file->isOpen
1129
+ ? PR_GetOpenFileInfo(file->handle, &info)
1130
+ : PR_GetFileInfo(file->path, &info) != PR_SUCCESS) {
1131
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1132
+ JSFILEMSG_CANNOT_ACCESS_FILE_STATUS, file->path);
1133
+ return JSVAL_VOID;
1134
+ }
1135
+
1136
+ return INT_TO_JSVAL(info.size);
1137
+
1138
+ out:
1139
+ return JSVAL_VOID;
1140
+ }
1141
+
1142
+ /*
1143
+ * Return the parent object
1144
+ */
1145
+ static JSBool
1146
+ js_parent(JSContext *cx, JSFile *file, jsval *resultp)
1147
+ {
1148
+ char *str;
1149
+
1150
+ /* Since we only care about pipes and native files, return NULL. */
1151
+ if (file->isNative) {
1152
+ *resultp = JSVAL_VOID;
1153
+ return JS_TRUE;
1154
+ }
1155
+
1156
+ str = js_fileDirectoryName(cx, file->path);
1157
+ if (!str)
1158
+ return JS_FALSE;
1159
+
1160
+ /* If the directory is equal to the original path, we're at the root. */
1161
+ if (!strcmp(file->path, str)) {
1162
+ *resultp = JSVAL_NULL;
1163
+ } else {
1164
+ JSObject *obj = js_NewFileObject(cx, str);
1165
+ if (!obj) {
1166
+ JS_free(cx, str);
1167
+ return JS_FALSE;
1168
+ }
1169
+ *resultp = OBJECT_TO_JSVAL(obj);
1170
+ }
1171
+
1172
+ JS_free(cx, str);
1173
+ return JS_TRUE;
1174
+ }
1175
+
1176
+ static JSBool
1177
+ js_name(JSContext *cx, JSFile *file, jsval *vp)
1178
+ {
1179
+ char *name;
1180
+ JSString *str;
1181
+
1182
+ if (file->isPipe) {
1183
+ *vp = JSVAL_VOID;
1184
+ return JS_TRUE;
1185
+ }
1186
+
1187
+ name = js_fileBaseName(cx, file->path);
1188
+ if (!name)
1189
+ return JS_FALSE;
1190
+
1191
+ str = JS_NewString(cx, name, strlen(name));
1192
+ if (!str) {
1193
+ JS_free(cx, name);
1194
+ return JS_FALSE;
1195
+ }
1196
+
1197
+ *vp = STRING_TO_JSVAL(str);
1198
+ return JS_TRUE;
1199
+ }
1200
+
1201
+ /* ------------------------------ File object methods ---------------------------- */
1202
+ static JSBool
1203
+ file_open(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1204
+ {
1205
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1206
+ JSString *strmode, *strtype;
1207
+ char *ctype, *mode;
1208
+ int32 mask, type;
1209
+ int len;
1210
+
1211
+ mode = NULL;
1212
+
1213
+ SECURITY_CHECK(cx, NULL, "open", file);
1214
+
1215
+ /* A native file that is already open */
1216
+ if(file->isOpen && file->isNative) {
1217
+ JS_ReportWarning(cx, "Native file %s is already open, proceeding",
1218
+ file->path);
1219
+ goto good;
1220
+ }
1221
+
1222
+ /* Close before proceeding */
1223
+ if (file->isOpen) {
1224
+ JS_ReportWarning(cx, "File %s is already open, we will close it and "
1225
+ "reopen, proceeding", file->path);
1226
+ if(!file_close(cx, obj, 0, NULL, rval))
1227
+ goto out;
1228
+ }
1229
+
1230
+ if (js_isDirectory(cx, file)) {
1231
+ JS_ReportWarning(cx, "%s seems to be a directory, there is no point in "
1232
+ "trying to open it, proceeding", file->path);
1233
+ goto good;
1234
+ }
1235
+
1236
+ /* Path must be defined at this point */
1237
+ len = strlen(file->path);
1238
+
1239
+ /* Mode */
1240
+ if (argc >= 1) {
1241
+ strmode = JS_ValueToString(cx, argv[0]);
1242
+ if (!strmode) {
1243
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1244
+ JSFILEMSG_FIRST_ARGUMENT_OPEN_NOT_STRING_ERROR,
1245
+ argv[0]);
1246
+ goto out;
1247
+ }
1248
+ mode = JS_strdup(cx, JS_GetStringBytes(strmode));
1249
+ } else {
1250
+ if(file->path[0]==PIPE_SYMBOL) {
1251
+ /* pipe default mode */
1252
+ mode = JS_strdup(cx, "read");
1253
+ } else if(file->path[len-1]==PIPE_SYMBOL) {
1254
+ /* pipe default mode */
1255
+ mode = JS_strdup(cx, "write");
1256
+ } else {
1257
+ /* non-destructive, permissive defaults. */
1258
+ mode = JS_strdup(cx, "readWrite,append,create");
1259
+ }
1260
+ }
1261
+
1262
+ /* Process the mode */
1263
+ mask = 0;
1264
+ /* TODO: this is pretty ugly, we walk thru the string too many times */
1265
+ mask |= js_FileHasOption(cx, mode, "read") ? PR_RDONLY : 0;
1266
+ mask |= js_FileHasOption(cx, mode, "write") ? PR_WRONLY : 0;
1267
+ mask |= js_FileHasOption(cx, mode, "readWrite")? PR_RDWR : 0;
1268
+ mask |= js_FileHasOption(cx, mode, "append") ? PR_APPEND : 0;
1269
+ mask |= js_FileHasOption(cx, mode, "create") ? PR_CREATE_FILE : 0;
1270
+ mask |= js_FileHasOption(cx, mode, "replace") ? PR_TRUNCATE : 0;
1271
+
1272
+ if (mask & PR_RDWR)
1273
+ mask |= (PR_RDONLY | PR_WRONLY);
1274
+ if ((mask & PR_RDONLY) && (mask & PR_WRONLY))
1275
+ mask |= PR_RDWR;
1276
+
1277
+ file->hasAutoflush |= js_FileHasOption(cx, mode, "autoflush");
1278
+
1279
+ /* Type */
1280
+ if (argc > 1) {
1281
+ strtype = JS_ValueToString(cx, argv[1]);
1282
+ if (!strtype) {
1283
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1284
+ JSFILEMSG_SECOND_ARGUMENT_OPEN_NOT_STRING_ERROR,
1285
+ argv[1]);
1286
+ goto out;
1287
+ }
1288
+ ctype = JS_GetStringBytes(strtype);
1289
+
1290
+ if(!strcmp(ctype, utfstring)) {
1291
+ type = UTF8;
1292
+ } else if (!strcmp(ctype, unicodestring)) {
1293
+ type = UCS2;
1294
+ } else {
1295
+ if (strcmp(ctype, asciistring)) {
1296
+ JS_ReportWarning(cx, "File type %s is not supported, using "
1297
+ "'text' instead, proceeding", ctype);
1298
+ }
1299
+ type = ASCII;
1300
+ }
1301
+ } else {
1302
+ type = ASCII;
1303
+ }
1304
+
1305
+ /* Save the relevant fields */
1306
+ file->type = type;
1307
+ file->mode = mask;
1308
+ file->nativehandle = NULL;
1309
+ file->hasRandomAccess = (type != UTF8);
1310
+
1311
+ /*
1312
+ * Deal with pipes here. We can't use NSPR for pipes, so we have to use
1313
+ * POPEN.
1314
+ */
1315
+ if (file->path[0]==PIPE_SYMBOL || file->path[len-1]==PIPE_SYMBOL) {
1316
+ if (file->path[0] == PIPE_SYMBOL && file->path[len-1] == PIPE_SYMBOL) {
1317
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1318
+ JSFILEMSG_BIDIRECTIONAL_PIPE_NOT_SUPPORTED);
1319
+ goto out;
1320
+ } else {
1321
+ int i = 0;
1322
+ char pipemode[3];
1323
+ SECURITY_CHECK(cx, NULL, "pipe_open", file);
1324
+
1325
+ if(file->path[0] == PIPE_SYMBOL){
1326
+ if(mask & (PR_WRONLY | PR_APPEND | PR_CREATE_FILE | PR_TRUNCATE)){
1327
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1328
+ JSFILEMSG_OPEN_MODE_NOT_SUPPORTED_WITH_PIPES,
1329
+ mode, file->path);
1330
+ goto out;
1331
+ }
1332
+ /* open(SPOOLER, "| cat -v | lpr -h 2>/dev/null") -- pipe for writing */
1333
+ pipemode[i++] = 'r';
1334
+ #ifndef XP_UNIX
1335
+ pipemode[i++] = file->type==UTF8 ? 'b' : 't';
1336
+ #endif
1337
+ pipemode[i++] = '\0';
1338
+ file->nativehandle = POPEN(&file->path[1], pipemode);
1339
+ } else if(file->path[len-1] == PIPE_SYMBOL) {
1340
+ char *command = JS_malloc(cx, len);
1341
+
1342
+ strncpy(command, file->path, len-1);
1343
+ command[len-1] = '\0';
1344
+ /* open(STATUS, "netstat -an 2>&1 |") */
1345
+ pipemode[i++] = 'w';
1346
+ #ifndef XP_UNIX
1347
+ pipemode[i++] = file->type==UTF8 ? 'b' : 't';
1348
+ #endif
1349
+ pipemode[i++] = '\0';
1350
+ file->nativehandle = POPEN(command, pipemode);
1351
+ JS_free(cx, command);
1352
+ }
1353
+ /* set the flags */
1354
+ file->isNative = JS_TRUE;
1355
+ file->isPipe = JS_TRUE;
1356
+ file->hasRandomAccess = JS_FALSE;
1357
+ }
1358
+ } else {
1359
+ /* TODO: what about the permissions?? Java ignores the problem... */
1360
+ file->handle = PR_Open(file->path, mask, 0644);
1361
+ }
1362
+
1363
+ js_ResetBuffers(file);
1364
+ JS_free(cx, mode);
1365
+ mode = NULL;
1366
+
1367
+ /* Set the open flag and return result */
1368
+ if (file->handle == NULL && file->nativehandle == NULL) {
1369
+ file->isOpen = JS_FALSE;
1370
+
1371
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1372
+ JSFILEMSG_OP_FAILED, "open", file->path);
1373
+ goto out;
1374
+ }
1375
+
1376
+ good:
1377
+ file->isOpen = JS_TRUE;
1378
+ *rval = JSVAL_TRUE;
1379
+ return JS_TRUE;
1380
+
1381
+ out:
1382
+ if(mode)
1383
+ JS_free(cx, mode);
1384
+ return JS_FALSE;
1385
+ }
1386
+
1387
+ static JSBool
1388
+ file_close(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1389
+ {
1390
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1391
+
1392
+ SECURITY_CHECK(cx, NULL, "close", file);
1393
+
1394
+ if(!file->isOpen){
1395
+ JS_ReportWarning(cx, "File %s is not open, can't close it, proceeding",
1396
+ file->path);
1397
+ goto out;
1398
+ }
1399
+
1400
+ if(!file->isPipe){
1401
+ if(file->isNative){
1402
+ JS_ReportWarning(cx, "Unable to close a native file, proceeding", file->path);
1403
+ goto out;
1404
+ }else{
1405
+ if(file->handle && PR_Close(file->handle)){
1406
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1407
+ JSFILEMSG_OP_FAILED, "close", file->path);
1408
+
1409
+ goto out;
1410
+ }
1411
+ }
1412
+ }else{
1413
+ if(PCLOSE(file->nativehandle)==-1){
1414
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1415
+ JSFILEMSG_OP_FAILED, "pclose", file->path);
1416
+ goto out;
1417
+ }
1418
+ }
1419
+
1420
+ js_ResetAttributes(file);
1421
+ *rval = JSVAL_TRUE;
1422
+ return JS_TRUE;
1423
+
1424
+ out:
1425
+ return JS_FALSE;
1426
+ }
1427
+
1428
+
1429
+ static JSBool
1430
+ file_remove(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1431
+ {
1432
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1433
+
1434
+ SECURITY_CHECK(cx, NULL, "remove", file);
1435
+ JSFILE_CHECK_NATIVE("remove");
1436
+ JSFILE_CHECK_CLOSED("remove");
1437
+
1438
+ if ((js_isDirectory(cx, file) ?
1439
+ PR_RmDir(file->path) : PR_Delete(file->path))==PR_SUCCESS) {
1440
+ js_ResetAttributes(file);
1441
+ *rval = JSVAL_TRUE;
1442
+ return JS_TRUE;
1443
+ } else {
1444
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1445
+ JSFILEMSG_OP_FAILED, "remove", file->path);
1446
+ goto out;
1447
+ }
1448
+ out:
1449
+ *rval = JSVAL_FALSE;
1450
+ return JS_FALSE;
1451
+ }
1452
+
1453
+ /* Raw PR-based function. No text processing. Just raw data copying. */
1454
+ static JSBool
1455
+ file_copyTo(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1456
+ {
1457
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1458
+ char *dest = NULL;
1459
+ PRFileDesc *handle = NULL;
1460
+ char *buffer;
1461
+ jsval count, size;
1462
+ JSBool fileInitiallyOpen=JS_FALSE;
1463
+
1464
+ SECURITY_CHECK(cx, NULL, "copyTo", file); /* may need a second argument!*/
1465
+ JSFILE_CHECK_ONE_ARG("copyTo");
1466
+ JSFILE_CHECK_NATIVE("copyTo");
1467
+ /* remeber the state */
1468
+ fileInitiallyOpen = file->isOpen;
1469
+ JSFILE_CHECK_READ;
1470
+
1471
+ dest = JS_GetStringBytes(JS_ValueToString(cx, argv[0]));
1472
+
1473
+ /* make sure we are not reading a file open for writing */
1474
+ if (file->isOpen && !js_canRead(cx, file)) {
1475
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1476
+ JSFILEMSG_CANNOT_COPY_FILE_OPEN_FOR_WRITING_ERROR, file->path);
1477
+ goto out;
1478
+ }
1479
+
1480
+ if (file->handle==NULL){
1481
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1482
+ JSFILEMSG_OP_FAILED, "open", file->path);
1483
+ goto out;
1484
+ }
1485
+
1486
+ handle = PR_Open(dest, PR_WRONLY|PR_CREATE_FILE|PR_TRUNCATE, 0644);
1487
+
1488
+ if(!handle){
1489
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1490
+ JSFILEMSG_OP_FAILED, "open", dest);
1491
+ goto out;
1492
+ }
1493
+
1494
+ if ((size=js_size(cx, file))==JSVAL_VOID) {
1495
+ goto out;
1496
+ }
1497
+
1498
+ buffer = JS_malloc(cx, size);
1499
+
1500
+ count = INT_TO_JSVAL(PR_Read(file->handle, buffer, size));
1501
+
1502
+ /* reading panic */
1503
+ if (count!=size) {
1504
+ JS_free(cx, buffer);
1505
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1506
+ JSFILEMSG_COPY_READ_ERROR, file->path);
1507
+ goto out;
1508
+ }
1509
+
1510
+ count = INT_TO_JSVAL(PR_Write(handle, buffer, JSVAL_TO_INT(size)));
1511
+
1512
+ /* writing panic */
1513
+ if (count!=size) {
1514
+ JS_free(cx, buffer);
1515
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1516
+ JSFILEMSG_COPY_WRITE_ERROR, file->path);
1517
+ goto out;
1518
+ }
1519
+
1520
+ JS_free(cx, buffer);
1521
+
1522
+ if(!fileInitiallyOpen){
1523
+ if(!file_close(cx, obj, 0, NULL, rval)) goto out;
1524
+ }
1525
+
1526
+ if(PR_Close(handle)!=PR_SUCCESS){
1527
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1528
+ JSFILEMSG_OP_FAILED, "close", dest);
1529
+ goto out;
1530
+ }
1531
+
1532
+ *rval = JSVAL_TRUE;
1533
+ return JS_TRUE;
1534
+ out:
1535
+ if(file->isOpen && !fileInitiallyOpen){
1536
+ if(PR_Close(file->handle)!=PR_SUCCESS){
1537
+ JS_ReportWarning(cx, "Can't close %s, proceeding", file->path);
1538
+ }
1539
+ }
1540
+
1541
+ if(handle && PR_Close(handle)!=PR_SUCCESS){
1542
+ JS_ReportWarning(cx, "Can't close %s, proceeding", dest);
1543
+ }
1544
+
1545
+ *rval = JSVAL_FALSE;
1546
+ return JS_FALSE;
1547
+ }
1548
+
1549
+ static JSBool
1550
+ file_renameTo(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1551
+ {
1552
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1553
+ char *dest;
1554
+
1555
+ SECURITY_CHECK(cx, NULL, "renameTo", file); /* may need a second argument!*/
1556
+ JSFILE_CHECK_ONE_ARG("renameTo");
1557
+ JSFILE_CHECK_NATIVE("renameTo");
1558
+ JSFILE_CHECK_CLOSED("renameTo");
1559
+
1560
+ dest = RESOLVE_PATH(cx, JS_GetStringBytes(JS_ValueToString(cx, argv[0])));
1561
+
1562
+ if (PR_Rename(file->path, dest)==PR_SUCCESS){
1563
+ /* copy the new filename */
1564
+ JS_free(cx, file->path);
1565
+ file->path = dest;
1566
+ *rval = JSVAL_TRUE;
1567
+ return JS_TRUE;
1568
+ }else{
1569
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1570
+ JSFILEMSG_RENAME_FAILED, file->path, dest);
1571
+ goto out;
1572
+ }
1573
+ out:
1574
+ *rval = JSVAL_FALSE;
1575
+ return JS_FALSE;
1576
+ }
1577
+
1578
+ static JSBool
1579
+ file_flush(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1580
+ {
1581
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1582
+
1583
+ SECURITY_CHECK(cx, NULL, "flush", file);
1584
+ JSFILE_CHECK_NATIVE("flush");
1585
+ JSFILE_CHECK_OPEN("flush");
1586
+
1587
+ if (PR_Sync(file->handle)==PR_SUCCESS){
1588
+ *rval = JSVAL_TRUE;
1589
+ return JS_TRUE;
1590
+ }else{
1591
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1592
+ JSFILEMSG_OP_FAILED, "flush", file->path);
1593
+ goto out;
1594
+ }
1595
+ out:
1596
+ *rval = JSVAL_FALSE;
1597
+ return JS_FALSE;
1598
+ }
1599
+
1600
+ static JSBool
1601
+ file_write(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1602
+ {
1603
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1604
+ JSString *str;
1605
+ int32 count;
1606
+ uintN i;
1607
+
1608
+ SECURITY_CHECK(cx, NULL, "write", file);
1609
+ JSFILE_CHECK_WRITE;
1610
+
1611
+ for (i = 0; i<argc; i++) {
1612
+ str = JS_ValueToString(cx, argv[i]);
1613
+ count = js_FileWrite(cx, file, JS_GetStringChars(str),
1614
+ JS_GetStringLength(str), file->type);
1615
+ if (count==-1){
1616
+ *rval = JSVAL_FALSE;
1617
+ return JS_FALSE;
1618
+ }
1619
+ }
1620
+
1621
+ *rval = JSVAL_TRUE;
1622
+ return JS_TRUE;
1623
+ out:
1624
+ *rval = JSVAL_FALSE;
1625
+ return JS_FALSE;
1626
+ }
1627
+
1628
+ static JSBool
1629
+ file_writeln(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1630
+ {
1631
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1632
+ JSString *str;
1633
+
1634
+ SECURITY_CHECK(cx, NULL, "writeln", file);
1635
+ JSFILE_CHECK_WRITE;
1636
+
1637
+ /* don't report an error here */
1638
+ if(!file_write(cx, obj, argc, argv, rval)) return JS_FALSE;
1639
+ /* don't do security here -- we passed the check in file_write */
1640
+ str = JS_NewStringCopyZ(cx, "\n");
1641
+
1642
+ if (js_FileWrite(cx, file, JS_GetStringChars(str), JS_GetStringLength(str),
1643
+ file->type)==-1){
1644
+ *rval = JSVAL_FALSE;
1645
+ return JS_FALSE;
1646
+ }
1647
+
1648
+ /* eol causes flush if hasAutoflush is turned on */
1649
+ if (file->hasAutoflush)
1650
+ file_flush(cx, obj, 0, NULL, rval);
1651
+
1652
+ *rval = JSVAL_TRUE;
1653
+ return JS_TRUE;
1654
+ out:
1655
+ *rval = JSVAL_FALSE;
1656
+ return JS_FALSE;
1657
+ }
1658
+
1659
+ static JSBool
1660
+ file_writeAll(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1661
+ {
1662
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1663
+ jsuint i;
1664
+ jsuint limit;
1665
+ JSObject *array;
1666
+ JSObject *elem;
1667
+ jsval elemval;
1668
+
1669
+ SECURITY_CHECK(cx, NULL, "writeAll", file);
1670
+ JSFILE_CHECK_ONE_ARG("writeAll");
1671
+ JSFILE_CHECK_WRITE;
1672
+
1673
+ if (!JS_IsArrayObject(cx, JSVAL_TO_OBJECT(argv[0]))) {
1674
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1675
+ JSFILEMSG_FIRST_ARGUMENT_WRITEALL_NOT_ARRAY_ERROR);
1676
+ goto out;
1677
+ }
1678
+
1679
+ array = JSVAL_TO_OBJECT(argv[0]);
1680
+
1681
+ JS_GetArrayLength(cx, array, &limit);
1682
+
1683
+ for (i = 0; i<limit; i++) {
1684
+ if (!JS_GetElement(cx, array, i, &elemval)) return JS_FALSE;
1685
+ elem = JSVAL_TO_OBJECT(elemval);
1686
+ file_writeln(cx, obj, 1, &elemval, rval);
1687
+ }
1688
+
1689
+ *rval = JSVAL_TRUE;
1690
+ return JS_TRUE;
1691
+ out:
1692
+ *rval = JSVAL_FALSE;
1693
+ return JS_FALSE;
1694
+ }
1695
+
1696
+ static JSBool
1697
+ file_read(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1698
+ {
1699
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1700
+ JSString *str;
1701
+ int32 want, count;
1702
+ jschar *buf;
1703
+
1704
+ SECURITY_CHECK(cx, NULL, "read", file);
1705
+ JSFILE_CHECK_ONE_ARG("read");
1706
+ JSFILE_CHECK_READ;
1707
+
1708
+ if (!JS_ValueToInt32(cx, argv[0], &want)){
1709
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1710
+ JSFILEMSG_FIRST_ARGUMENT_MUST_BE_A_NUMBER, "read", argv[0]);
1711
+ goto out;
1712
+ }
1713
+
1714
+ /* want = (want>262144)?262144:want; * arbitrary size limitation */
1715
+
1716
+ buf = JS_malloc(cx, want*sizeof buf[0]);
1717
+ if (!buf) goto out;
1718
+
1719
+ count = js_FileRead(cx, file, buf, want, file->type);
1720
+ if (count>0) {
1721
+ str = JS_NewUCStringCopyN(cx, buf, count);
1722
+ *rval = STRING_TO_JSVAL(str);
1723
+ JS_free(cx, buf);
1724
+ return JS_TRUE;
1725
+ } else {
1726
+ JS_free(cx, buf);
1727
+ goto out;
1728
+ }
1729
+ out:
1730
+ *rval = JSVAL_FALSE;
1731
+ return JS_FALSE;
1732
+ }
1733
+
1734
+ static JSBool
1735
+ file_readln(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1736
+ {
1737
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1738
+ JSString *str;
1739
+ jschar *buf = NULL, *tmp;
1740
+ int32 offset, read;
1741
+ intN room;
1742
+ jschar data, data2;
1743
+
1744
+ SECURITY_CHECK(cx, NULL, "readln", file);
1745
+ JSFILE_CHECK_READ;
1746
+
1747
+ buf = JS_malloc(cx, MAX_LINE_LENGTH * sizeof data);
1748
+ if (!buf)
1749
+ return JS_FALSE;
1750
+
1751
+ room = MAX_LINE_LENGTH - 1;
1752
+ offset = 0;
1753
+
1754
+ for (;;) {
1755
+ read = js_FileRead(cx, file, &data, 1, file->type);
1756
+ if (read < 0)
1757
+ goto out;
1758
+ if (read == 0)
1759
+ goto eof;
1760
+
1761
+ switch (data) {
1762
+ case '\r':
1763
+ read = js_FileRead(cx, file, &data2, 1, file->type);
1764
+ if (read < 0)
1765
+ goto out;
1766
+
1767
+ if (read == 1 && data2 != '\n') {
1768
+ /* We read one char too far. Buffer it. */
1769
+ file->charBuffer = data2;
1770
+ file->charBufferUsed = JS_TRUE;
1771
+ }
1772
+
1773
+ /* Fall through. */
1774
+ case '\n':
1775
+ goto done;
1776
+
1777
+ default:
1778
+ if (--room < 0) {
1779
+ tmp = JS_realloc(cx, buf,
1780
+ (offset + MAX_LINE_LENGTH) * sizeof data);
1781
+ if (!tmp)
1782
+ goto out;
1783
+
1784
+ room = MAX_LINE_LENGTH - 1;
1785
+ buf = tmp;
1786
+ }
1787
+
1788
+ buf[offset++] = data;
1789
+ break;
1790
+ }
1791
+ }
1792
+
1793
+ eof:
1794
+ if (offset == 0) {
1795
+ *rval = JSVAL_NULL;
1796
+ return JS_TRUE;
1797
+ }
1798
+
1799
+ done:
1800
+ buf[offset] = 0;
1801
+ tmp = JS_realloc(cx, buf, (offset + 1) * sizeof data);
1802
+ if (!tmp)
1803
+ goto out;
1804
+
1805
+ str = JS_NewUCString(cx, tmp, offset);
1806
+ if (!str)
1807
+ goto out;
1808
+
1809
+ *rval = STRING_TO_JSVAL(str);
1810
+ return JS_TRUE;
1811
+
1812
+ out:
1813
+ if (buf)
1814
+ JS_free(cx, buf);
1815
+
1816
+ return JS_FALSE;
1817
+ }
1818
+
1819
+ static JSBool
1820
+ file_readAll(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1821
+ {
1822
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1823
+ JSObject *array;
1824
+ jsint len;
1825
+ jsval line;
1826
+ JSBool lineok = JS_FALSE;
1827
+
1828
+ SECURITY_CHECK(cx, NULL, "readAll", file);
1829
+ JSFILE_CHECK_READ;
1830
+
1831
+ array = JS_NewArrayObject(cx, 0, NULL);
1832
+ if (!array)
1833
+ return JS_FALSE;
1834
+ *rval = OBJECT_TO_JSVAL(array);
1835
+
1836
+ len = 0;
1837
+
1838
+ lineok = file_readln(cx, obj, 0, NULL, &line);
1839
+ while (lineok && !JSVAL_IS_NULL(line)) {
1840
+ JS_SetElement(cx, array, len++, &line);
1841
+ lineok = file_readln(cx, obj, 0, NULL, &line);
1842
+ }
1843
+
1844
+ out:
1845
+ return lineok;
1846
+ }
1847
+
1848
+ static JSBool
1849
+ file_seek(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1850
+ {
1851
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1852
+ int32 toskip;
1853
+ int32 pos;
1854
+
1855
+ SECURITY_CHECK(cx, NULL, "seek", file);
1856
+ JSFILE_CHECK_ONE_ARG("seek");
1857
+ JSFILE_CHECK_NATIVE("seek");
1858
+ JSFILE_CHECK_READ;
1859
+
1860
+ if (!JS_ValueToInt32(cx, argv[0], &toskip)){
1861
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1862
+ JSFILEMSG_FIRST_ARGUMENT_MUST_BE_A_NUMBER, "seek", argv[0]);
1863
+ goto out;
1864
+ }
1865
+
1866
+ if(!file->hasRandomAccess){
1867
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1868
+ JSFILEMSG_NO_RANDOM_ACCESS, file->path);
1869
+ goto out;
1870
+ }
1871
+
1872
+ if(js_isDirectory(cx, file)){
1873
+ JS_ReportWarning(cx,"Seek on directories is not supported, proceeding");
1874
+ goto out;
1875
+ }
1876
+
1877
+ pos = js_FileSeek(cx, file, toskip, file->type);
1878
+
1879
+ if (pos!=-1) {
1880
+ *rval = INT_TO_JSVAL(pos);
1881
+ return JS_TRUE;
1882
+ }
1883
+ out:
1884
+ *rval = JSVAL_VOID;
1885
+ return JS_FALSE;
1886
+ }
1887
+
1888
+ static JSBool
1889
+ file_list(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1890
+ {
1891
+ PRDir *dir;
1892
+ PRDirEntry *entry;
1893
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1894
+ JSObject *array;
1895
+ JSObject *eachFile;
1896
+ jsint len;
1897
+ jsval v;
1898
+ JSRegExp *re = NULL;
1899
+ JSFunction *func = NULL;
1900
+ JSString *str;
1901
+ jsval args[1];
1902
+ char *filePath;
1903
+
1904
+ SECURITY_CHECK(cx, NULL, "list", file);
1905
+ JSFILE_CHECK_NATIVE("list");
1906
+
1907
+ if (argc==1) {
1908
+ if (VALUE_IS_REGEXP(cx, argv[0])) {
1909
+ re = JS_GetPrivate(cx, JSVAL_TO_OBJECT(argv[0]));
1910
+ }else
1911
+ if (VALUE_IS_FUNCTION(cx, argv[0])) {
1912
+ func = JS_GetPrivate(cx, JSVAL_TO_OBJECT(argv[0]));
1913
+ }else{
1914
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1915
+ JSFILEMSG_FIRST_ARGUMENT_MUST_BE_A_FUNCTION_OR_REGEX, argv[0]);
1916
+ goto out;
1917
+ }
1918
+ }
1919
+
1920
+ if (!js_isDirectory(cx, file)) {
1921
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1922
+ JSFILEMSG_CANNOT_DO_LIST_ON_A_FILE, file->path);
1923
+ goto out;
1924
+ }
1925
+
1926
+ dir = PR_OpenDir(file->path);
1927
+ if(!dir){
1928
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1929
+ JSFILEMSG_OP_FAILED, "open", file->path);
1930
+ goto out;
1931
+ }
1932
+
1933
+ /* create JSArray here... */
1934
+ array = JS_NewArrayObject(cx, 0, NULL);
1935
+ len = 0;
1936
+
1937
+ while ((entry = PR_ReadDir(dir, PR_SKIP_BOTH))!=NULL) {
1938
+ /* first, check if we have a regexp */
1939
+ if (re!=NULL) {
1940
+ size_t index = 0;
1941
+
1942
+ str = JS_NewStringCopyZ(cx, entry->name);
1943
+ if(!js_ExecuteRegExp(cx, re, str, &index, JS_TRUE, &v)){
1944
+ /* don't report anything here */
1945
+ goto out;
1946
+ }
1947
+ /* not matched! */
1948
+ if (JSVAL_IS_NULL(v)) {
1949
+ continue;
1950
+ }
1951
+ }else
1952
+ if (func!=NULL) {
1953
+ str = JS_NewStringCopyZ(cx, entry->name);
1954
+ args[0] = STRING_TO_JSVAL(str);
1955
+ if(!JS_CallFunction(cx, obj, func, 1, args, &v)){
1956
+ goto out;
1957
+ }
1958
+
1959
+ if (v==JSVAL_FALSE) {
1960
+ continue;
1961
+ }
1962
+ }
1963
+
1964
+ filePath = js_combinePath(cx, file->path, (char*)entry->name);
1965
+
1966
+ eachFile = js_NewFileObject(cx, filePath);
1967
+ JS_free(cx, filePath);
1968
+ if (!eachFile){
1969
+ JS_ReportWarning(cx, "File %s cannot be retrieved", filePath);
1970
+ continue;
1971
+ }
1972
+ v = OBJECT_TO_JSVAL(eachFile);
1973
+ JS_SetElement(cx, array, len, &v);
1974
+ JS_SetProperty(cx, array, entry->name, &v);
1975
+ len++;
1976
+ }
1977
+
1978
+ if(PR_CloseDir(dir)!=PR_SUCCESS){
1979
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
1980
+ JSFILEMSG_OP_FAILED, "close", file->path);
1981
+ goto out;
1982
+ }
1983
+ *rval = OBJECT_TO_JSVAL(array);
1984
+ return JS_TRUE;
1985
+ out:
1986
+ *rval = JSVAL_NULL;
1987
+ return JS_FALSE;
1988
+ }
1989
+
1990
+ static JSBool
1991
+ file_mkdir(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
1992
+ {
1993
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
1994
+
1995
+ SECURITY_CHECK(cx, NULL, "mkdir", file);
1996
+ JSFILE_CHECK_ONE_ARG("mkdir");
1997
+ JSFILE_CHECK_NATIVE("mkdir");
1998
+
1999
+ /* if the current file is not a directory, find out the directory name */
2000
+ if (!js_isDirectory(cx, file)) {
2001
+ char *dir = js_fileDirectoryName(cx, file->path);
2002
+ JSObject *dirObj = js_NewFileObject(cx, dir);
2003
+
2004
+ JS_free(cx, dir);
2005
+
2006
+ /* call file_mkdir with the right set of parameters if needed */
2007
+ if (file_mkdir(cx, dirObj, argc, argv, rval))
2008
+ return JS_TRUE;
2009
+ else
2010
+ goto out;
2011
+ }else{
2012
+ char *dirName = JS_GetStringBytes(JS_ValueToString(cx, argv[0]));
2013
+ char *fullName;
2014
+
2015
+ fullName = js_combinePath(cx, file->path, dirName);
2016
+ if (PR_MkDir(fullName, 0755)==PR_SUCCESS){
2017
+ *rval = JSVAL_TRUE;
2018
+ JS_free(cx, fullName);
2019
+ return JS_TRUE;
2020
+ }else{
2021
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2022
+ JSFILEMSG_OP_FAILED, "mkdir", fullName);
2023
+ JS_free(cx, fullName);
2024
+ goto out;
2025
+ }
2026
+ }
2027
+ out:
2028
+ *rval = JSVAL_FALSE;
2029
+ return JS_FALSE;
2030
+ }
2031
+
2032
+ static JSBool
2033
+ file_toString(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval*rval)
2034
+ {
2035
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
2036
+ JSString *str;
2037
+
2038
+ str = JS_NewStringCopyZ(cx, file->path);
2039
+ if (!str)
2040
+ return JS_FALSE;
2041
+ *rval = STRING_TO_JSVAL(str);
2042
+ return JS_TRUE;
2043
+ }
2044
+
2045
+ static JSBool
2046
+ file_toURL(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
2047
+ {
2048
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
2049
+ char url[MAX_PATH_LENGTH];
2050
+ jschar *urlChars;
2051
+ size_t len;
2052
+ JSString *str;
2053
+
2054
+ JSFILE_CHECK_NATIVE("toURL");
2055
+
2056
+ sprintf(url, "file://%s", file->path);
2057
+
2058
+ len = strlen(url);
2059
+ urlChars = js_InflateString(cx, url, &len);
2060
+ if (!urlChars)
2061
+ return JS_FALSE;
2062
+ str = js_NewString(cx, urlChars, len);
2063
+ if (!str) {
2064
+ JS_free(cx, urlChars);
2065
+ return JS_FALSE;
2066
+ }
2067
+ *rval = STRING_TO_JSVAL(str);
2068
+
2069
+ /* TODO: js_escape in jsstr.h may go away at some point */
2070
+ return js_str_escape(cx, obj, 0, rval, rval);
2071
+
2072
+ out:
2073
+ *rval = JSVAL_VOID;
2074
+ return JS_FALSE;
2075
+ }
2076
+
2077
+
2078
+ static void
2079
+ file_finalize(JSContext *cx, JSObject *obj)
2080
+ {
2081
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
2082
+
2083
+ if(file) {
2084
+ /* Close the file before exiting. */
2085
+ if(file->isOpen && !file->isNative) {
2086
+ jsval vp;
2087
+ file_close(cx, obj, 0, NULL, &vp);
2088
+ }
2089
+
2090
+ if (file->path)
2091
+ JS_free(cx, file->path);
2092
+
2093
+ JS_free(cx, file);
2094
+ }
2095
+ }
2096
+
2097
+ /*
2098
+ Allocates memory for the file object, sets fields to defaults.
2099
+ */
2100
+ static JSFile*
2101
+ file_init(JSContext *cx, JSObject *obj, char *bytes)
2102
+ {
2103
+ JSFile *file;
2104
+
2105
+ file = JS_malloc(cx, sizeof *file);
2106
+ if (!file)
2107
+ return NULL;
2108
+ memset(file, 0 , sizeof *file);
2109
+
2110
+ js_ResetAttributes(file);
2111
+
2112
+ file->path = RESOLVE_PATH(cx, bytes);
2113
+
2114
+ if (!JS_SetPrivate(cx, obj, file)) {
2115
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2116
+ JSFILEMSG_CANNOT_SET_PRIVATE_FILE, file->path);
2117
+ JS_free(cx, file);
2118
+ return NULL;
2119
+ }
2120
+
2121
+ return file;
2122
+ }
2123
+
2124
+ /* Returns a JSObject. This function is globally visible */
2125
+ JS_PUBLIC_API(JSObject*)
2126
+ js_NewFileObject(JSContext *cx, char *filename)
2127
+ {
2128
+ JSObject *obj;
2129
+ JSFile *file;
2130
+
2131
+ obj = JS_NewObject(cx, &js_FileClass, NULL, NULL);
2132
+ if (!obj){
2133
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2134
+ JSFILEMSG_OBJECT_CREATION_FAILED, "js_NewFileObject");
2135
+ return NULL;
2136
+ }
2137
+ file = file_init(cx, obj, filename);
2138
+ if(!file) return NULL;
2139
+ return obj;
2140
+ }
2141
+
2142
+ /* Internal function, used for cases which NSPR file support doesn't cover */
2143
+ JSObject*
2144
+ js_NewFileObjectFromFILE(JSContext *cx, FILE *nativehandle, char *filename,
2145
+ int32 mode, JSBool open, JSBool randomAccess)
2146
+ {
2147
+ JSObject *obj;
2148
+ JSFile *file;
2149
+
2150
+ obj = JS_NewObject(cx, &js_FileClass, NULL, NULL);
2151
+ if (!obj){
2152
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2153
+ JSFILEMSG_OBJECT_CREATION_FAILED, "js_NewFileObjectFromFILE");
2154
+ return NULL;
2155
+ }
2156
+ file = file_init(cx, obj, filename);
2157
+ if(!file) return NULL;
2158
+
2159
+ file->nativehandle = nativehandle;
2160
+
2161
+ /* free result of RESOLVE_PATH from file_init. */
2162
+ JS_ASSERT(file->path != NULL);
2163
+ JS_free(cx, file->path);
2164
+
2165
+ file->path = strdup(filename);
2166
+ file->isOpen = open;
2167
+ file->mode = mode;
2168
+ file->hasRandomAccess = randomAccess;
2169
+ file->isNative = JS_TRUE;
2170
+ return obj;
2171
+ }
2172
+
2173
+ /*
2174
+ Real file constructor that is called from JavaScript.
2175
+ Basically, does error processing and calls file_init.
2176
+ */
2177
+ static JSBool
2178
+ file_constructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv,
2179
+ jsval *rval)
2180
+ {
2181
+ JSString *str;
2182
+ JSFile *file;
2183
+
2184
+ if (!(cx->fp->flags & JSFRAME_CONSTRUCTING)) {
2185
+ /* Replace obj with a new File object. */
2186
+ obj = JS_NewObject(cx, &js_FileClass, NULL, NULL);
2187
+ if (!obj)
2188
+ return JS_FALSE;
2189
+ *rval = OBJECT_TO_JSVAL(obj);
2190
+ }
2191
+
2192
+ str = (argc == 0)
2193
+ ? JS_InternString(cx, "")
2194
+ : JS_ValueToString(cx, argv[0]);
2195
+
2196
+ if (!str) {
2197
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2198
+ JSFILEMSG_FIRST_ARGUMENT_CONSTRUCTOR_NOT_STRING_ERROR,
2199
+ argv[0]);
2200
+ return JS_FALSE;
2201
+ }
2202
+
2203
+ file = file_init(cx, obj, JS_GetStringBytes(str));
2204
+ if (!file)
2205
+ return JS_FALSE;
2206
+
2207
+ SECURITY_CHECK(cx, NULL, "constructor", file);
2208
+
2209
+ return JS_TRUE;
2210
+ }
2211
+
2212
+ /* -------------------- File methods and properties ------------------------- */
2213
+ static JSFunctionSpec file_functions[] = {
2214
+ { "open", file_open, 0},
2215
+ { "close", file_close, 0},
2216
+ { "remove", file_remove, 0},
2217
+ { "copyTo", file_copyTo, 0},
2218
+ { "renameTo", file_renameTo, 0},
2219
+ { "flush", file_flush, 0},
2220
+ { "seek", file_seek, 0},
2221
+ { "read", file_read, 0},
2222
+ { "readln", file_readln, 0},
2223
+ { "readAll", file_readAll, 0},
2224
+ { "write", file_write, 0},
2225
+ { "writeln", file_writeln, 0},
2226
+ { "writeAll", file_writeAll, 0},
2227
+ { "list", file_list, 0},
2228
+ { "mkdir", file_mkdir, 0},
2229
+ { "toString", file_toString, 0},
2230
+ { "toURL", file_toURL, 0},
2231
+ {0}
2232
+ };
2233
+
2234
+ enum file_tinyid {
2235
+ FILE_LENGTH = -2,
2236
+ FILE_PARENT = -3,
2237
+ FILE_PATH = -4,
2238
+ FILE_NAME = -5,
2239
+ FILE_ISDIR = -6,
2240
+ FILE_ISFILE = -7,
2241
+ FILE_EXISTS = -8,
2242
+ FILE_CANREAD = -9,
2243
+ FILE_CANWRITE = -10,
2244
+ FILE_OPEN = -11,
2245
+ FILE_TYPE = -12,
2246
+ FILE_MODE = -13,
2247
+ FILE_CREATED = -14,
2248
+ FILE_MODIFIED = -15,
2249
+ FILE_SIZE = -16,
2250
+ FILE_RANDOMACCESS = -17,
2251
+ FILE_POSITION = -18,
2252
+ FILE_APPEND = -19,
2253
+ FILE_REPLACE = -20,
2254
+ FILE_AUTOFLUSH = -21,
2255
+ FILE_ISNATIVE = -22,
2256
+ };
2257
+
2258
+ static JSPropertySpec file_props[] = {
2259
+ {"length", FILE_LENGTH, JSPROP_ENUMERATE | JSPROP_READONLY },
2260
+ {"parent", FILE_PARENT, JSPROP_ENUMERATE | JSPROP_READONLY },
2261
+ {"path", FILE_PATH, JSPROP_ENUMERATE | JSPROP_READONLY },
2262
+ {"name", FILE_NAME, JSPROP_ENUMERATE | JSPROP_READONLY },
2263
+ {"isDirectory", FILE_ISDIR, JSPROP_ENUMERATE | JSPROP_READONLY },
2264
+ {"isFile", FILE_ISFILE, JSPROP_ENUMERATE | JSPROP_READONLY },
2265
+ {"exists", FILE_EXISTS, JSPROP_ENUMERATE | JSPROP_READONLY },
2266
+ {"canRead", FILE_CANREAD, JSPROP_ENUMERATE | JSPROP_READONLY },
2267
+ {"canWrite", FILE_CANWRITE, JSPROP_ENUMERATE | JSPROP_READONLY },
2268
+ {"canAppend", FILE_APPEND, JSPROP_ENUMERATE | JSPROP_READONLY },
2269
+ {"canReplace", FILE_REPLACE, JSPROP_ENUMERATE | JSPROP_READONLY },
2270
+ {"isOpen", FILE_OPEN, JSPROP_ENUMERATE | JSPROP_READONLY },
2271
+ {"type", FILE_TYPE, JSPROP_ENUMERATE | JSPROP_READONLY },
2272
+ {"mode", FILE_MODE, JSPROP_ENUMERATE | JSPROP_READONLY },
2273
+ {"creationTime", FILE_CREATED, JSPROP_ENUMERATE | JSPROP_READONLY },
2274
+ {"lastModified", FILE_MODIFIED, JSPROP_ENUMERATE | JSPROP_READONLY },
2275
+ {"size", FILE_SIZE, JSPROP_ENUMERATE | JSPROP_READONLY },
2276
+ {"hasRandomAccess", FILE_RANDOMACCESS, JSPROP_ENUMERATE | JSPROP_READONLY },
2277
+ {"hasAutoFlush", FILE_AUTOFLUSH, JSPROP_ENUMERATE | JSPROP_READONLY },
2278
+ {"position", FILE_POSITION, JSPROP_ENUMERATE },
2279
+ {"isNative", FILE_ISNATIVE, JSPROP_ENUMERATE | JSPROP_READONLY },
2280
+ {0}
2281
+ };
2282
+
2283
+ /* ------------------------- Property getter/setter ------------------------- */
2284
+ static JSBool
2285
+ file_getProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
2286
+ {
2287
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
2288
+ char *bytes;
2289
+ JSString *str;
2290
+ jsint tiny;
2291
+ PRFileInfo info;
2292
+ JSBool flag;
2293
+ PRExplodedTime expandedTime;
2294
+
2295
+ tiny = JSVAL_TO_INT(id);
2296
+ if (!file)
2297
+ return JS_TRUE;
2298
+
2299
+ switch (tiny) {
2300
+ case FILE_PARENT:
2301
+ SECURITY_CHECK(cx, NULL, "parent", file);
2302
+ if (!js_parent(cx, file, vp))
2303
+ return JS_FALSE;
2304
+ break;
2305
+ case FILE_PATH:
2306
+ str = JS_NewStringCopyZ(cx, file->path);
2307
+ if (!str)
2308
+ return JS_FALSE;
2309
+ *vp = STRING_TO_JSVAL(str);
2310
+ break;
2311
+ case FILE_NAME:
2312
+ if (!js_name(cx, file, vp))
2313
+ return JS_FALSE;
2314
+ break;
2315
+ case FILE_ISDIR:
2316
+ SECURITY_CHECK(cx, NULL, "isDirectory", file);
2317
+ *vp = BOOLEAN_TO_JSVAL(js_isDirectory(cx, file));
2318
+ break;
2319
+ case FILE_ISFILE:
2320
+ SECURITY_CHECK(cx, NULL, "isFile", file);
2321
+ *vp = BOOLEAN_TO_JSVAL(js_isFile(cx, file));
2322
+ break;
2323
+ case FILE_EXISTS:
2324
+ SECURITY_CHECK(cx, NULL, "exists", file);
2325
+ *vp = BOOLEAN_TO_JSVAL(js_exists(cx, file));
2326
+ break;
2327
+ case FILE_ISNATIVE:
2328
+ SECURITY_CHECK(cx, NULL, "isNative", file);
2329
+ *vp = BOOLEAN_TO_JSVAL(file->isNative);
2330
+ break;
2331
+ case FILE_CANREAD:
2332
+ SECURITY_CHECK(cx, NULL, "canRead", file);
2333
+ *vp = BOOLEAN_TO_JSVAL(js_canRead(cx, file));
2334
+ break;
2335
+ case FILE_CANWRITE:
2336
+ SECURITY_CHECK(cx, NULL, "canWrite", file);
2337
+ *vp = BOOLEAN_TO_JSVAL(js_canWrite(cx, file));
2338
+ break;
2339
+ case FILE_OPEN:
2340
+ SECURITY_CHECK(cx, NULL, "isOpen", file);
2341
+ *vp = BOOLEAN_TO_JSVAL(file->isOpen);
2342
+ break;
2343
+ case FILE_APPEND :
2344
+ SECURITY_CHECK(cx, NULL, "canAppend", file);
2345
+ JSFILE_CHECK_OPEN("canAppend");
2346
+ *vp = BOOLEAN_TO_JSVAL(!file->isNative &&
2347
+ (file->mode&PR_APPEND)==PR_APPEND);
2348
+ break;
2349
+ case FILE_REPLACE :
2350
+ SECURITY_CHECK(cx, NULL, "canReplace", file);
2351
+ JSFILE_CHECK_OPEN("canReplace");
2352
+ *vp = BOOLEAN_TO_JSVAL(!file->isNative &&
2353
+ (file->mode&PR_TRUNCATE)==PR_TRUNCATE);
2354
+ break;
2355
+ case FILE_AUTOFLUSH :
2356
+ SECURITY_CHECK(cx, NULL, "hasAutoFlush", file);
2357
+ JSFILE_CHECK_OPEN("hasAutoFlush");
2358
+ *vp = BOOLEAN_TO_JSVAL(!file->isNative && file->hasAutoflush);
2359
+ break;
2360
+ case FILE_TYPE:
2361
+ SECURITY_CHECK(cx, NULL, "type", file);
2362
+ JSFILE_CHECK_OPEN("type");
2363
+ if(js_isDirectory(cx, file)){
2364
+ *vp = JSVAL_VOID;
2365
+ break;
2366
+ }
2367
+
2368
+ switch (file->type) {
2369
+ case ASCII:
2370
+ *vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, asciistring));
2371
+ break;
2372
+ case UTF8:
2373
+ *vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, utfstring));
2374
+ break;
2375
+ case UCS2:
2376
+ *vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, unicodestring));
2377
+ break;
2378
+ default:
2379
+ JS_ReportWarning(cx, "Unsupported file type %d, proceeding",
2380
+ file->type);
2381
+ }
2382
+ break;
2383
+ case FILE_MODE:
2384
+ SECURITY_CHECK(cx, NULL, "mode", file);
2385
+ JSFILE_CHECK_OPEN("mode");
2386
+ bytes = JS_malloc(cx, MODE_SIZE);
2387
+ bytes[0] = '\0';
2388
+ flag = JS_FALSE;
2389
+
2390
+ if ((file->mode&PR_RDONLY)==PR_RDONLY) {
2391
+ if (flag) strcat(bytes, ",");
2392
+ strcat(bytes, "read");
2393
+ flag = JS_TRUE;
2394
+ }
2395
+ if ((file->mode&PR_WRONLY)==PR_WRONLY) {
2396
+ if (flag) strcat(bytes, ",");
2397
+ strcat(bytes, "write");
2398
+ flag = JS_TRUE;
2399
+ }
2400
+ if ((file->mode&PR_RDWR)==PR_RDWR) {
2401
+ if (flag) strcat(bytes, ",");
2402
+ strcat(bytes, "readWrite");
2403
+ flag = JS_TRUE;
2404
+ }
2405
+ if ((file->mode&PR_APPEND)==PR_APPEND) {
2406
+ if (flag) strcat(bytes, ",");
2407
+ strcat(bytes, "append");
2408
+ flag = JS_TRUE;
2409
+ }
2410
+ if ((file->mode&PR_CREATE_FILE)==PR_CREATE_FILE) {
2411
+ if (flag) strcat(bytes, ",");
2412
+ strcat(bytes, "create");
2413
+ flag = JS_TRUE;
2414
+ }
2415
+ if ((file->mode&PR_TRUNCATE)==PR_TRUNCATE) {
2416
+ if (flag) strcat(bytes, ",");
2417
+ strcat(bytes, "replace");
2418
+ flag = JS_TRUE;
2419
+ }
2420
+ if (file->hasAutoflush) {
2421
+ if (flag) strcat(bytes, ",");
2422
+ strcat(bytes, "hasAutoFlush");
2423
+ flag = JS_TRUE;
2424
+ }
2425
+ *vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, bytes));
2426
+ JS_free(cx, bytes);
2427
+ break;
2428
+ case FILE_CREATED:
2429
+ SECURITY_CHECK(cx, NULL, "creationTime", file);
2430
+ JSFILE_CHECK_NATIVE("creationTime");
2431
+ if(((file->isOpen)?
2432
+ PR_GetOpenFileInfo(file->handle, &info):
2433
+ PR_GetFileInfo(file->path, &info))!=PR_SUCCESS){
2434
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2435
+ JSFILEMSG_CANNOT_ACCESS_FILE_STATUS, file->path);
2436
+ goto out;
2437
+ }
2438
+
2439
+ PR_ExplodeTime(info.creationTime, PR_LocalTimeParameters,&expandedTime);
2440
+ *vp = OBJECT_TO_JSVAL(js_NewDateObject(cx, expandedTime.tm_year,
2441
+ expandedTime.tm_month,
2442
+ expandedTime.tm_mday,
2443
+ expandedTime.tm_hour,
2444
+ expandedTime.tm_min,
2445
+ expandedTime.tm_sec));
2446
+ break;
2447
+ case FILE_MODIFIED:
2448
+ SECURITY_CHECK(cx, NULL, "lastModified", file);
2449
+ JSFILE_CHECK_NATIVE("lastModified");
2450
+ if(((file->isOpen)?
2451
+ PR_GetOpenFileInfo(file->handle, &info):
2452
+ PR_GetFileInfo(file->path, &info))!=PR_SUCCESS){
2453
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2454
+ JSFILEMSG_CANNOT_ACCESS_FILE_STATUS, file->path);
2455
+ goto out;
2456
+ }
2457
+
2458
+ PR_ExplodeTime(info.modifyTime, PR_LocalTimeParameters, &expandedTime);
2459
+ *vp = OBJECT_TO_JSVAL(js_NewDateObject(cx, expandedTime.tm_year,
2460
+ expandedTime.tm_month,
2461
+ expandedTime.tm_mday,
2462
+ expandedTime.tm_hour,
2463
+ expandedTime.tm_min,
2464
+ expandedTime.tm_sec));
2465
+ break;
2466
+ case FILE_SIZE:
2467
+ SECURITY_CHECK(cx, NULL, "size", file);
2468
+ *vp = js_size(cx, file);
2469
+ break;
2470
+ case FILE_LENGTH:
2471
+ SECURITY_CHECK(cx, NULL, "length", file);
2472
+ JSFILE_CHECK_NATIVE("length");
2473
+
2474
+ if (js_isDirectory(cx, file)) { /* XXX debug me */
2475
+ PRDir *dir;
2476
+ PRDirEntry *entry;
2477
+ jsint count = 0;
2478
+
2479
+ if(!(dir = PR_OpenDir(file->path))){
2480
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2481
+ JSFILEMSG_CANNOT_OPEN_DIR, file->path);
2482
+ goto out;
2483
+ }
2484
+
2485
+ while ((entry = PR_ReadDir(dir, PR_SKIP_BOTH))) {
2486
+ count++;
2487
+ }
2488
+
2489
+ if(!PR_CloseDir(dir)){
2490
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2491
+ JSFILEMSG_OP_FAILED, "close", file->path);
2492
+
2493
+ goto out;
2494
+ }
2495
+
2496
+ *vp = INT_TO_JSVAL(count);
2497
+ break;
2498
+ }else{
2499
+ /* return file size */
2500
+ *vp = js_size(cx, file);
2501
+ }
2502
+ break;
2503
+ case FILE_RANDOMACCESS:
2504
+ SECURITY_CHECK(cx, NULL, "hasRandomAccess", file);
2505
+ JSFILE_CHECK_OPEN("hasRandomAccess");
2506
+ *vp = BOOLEAN_TO_JSVAL(file->hasRandomAccess);
2507
+ break;
2508
+ case FILE_POSITION:
2509
+ SECURITY_CHECK(cx, NULL, "position", file);
2510
+ JSFILE_CHECK_NATIVE("position");
2511
+ JSFILE_CHECK_OPEN("position");
2512
+
2513
+ if(!file->hasRandomAccess){
2514
+ JS_ReportWarning(cx, "File %s doesn't support random access, can't report the position, proceeding");
2515
+ *vp = JSVAL_VOID;
2516
+ break;
2517
+ }
2518
+
2519
+ if (file->isOpen && js_isFile(cx, file)) {
2520
+ int pos = PR_Seek(file->handle, 0, PR_SEEK_CUR);
2521
+ if(pos!=-1){
2522
+ *vp = INT_TO_JSVAL(pos);
2523
+ }else{
2524
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2525
+ JSFILEMSG_CANNOT_REPORT_POSITION, file->path);
2526
+ goto out;
2527
+ }
2528
+ }else {
2529
+ JS_ReportWarning(cx, "File %s is closed or not a plain file,"
2530
+ " can't report position, proceeding");
2531
+ goto out;
2532
+ }
2533
+ break;
2534
+ default:
2535
+ SECURITY_CHECK(cx, NULL, "file_access", file);
2536
+
2537
+ /* this is some other property -- try to use the dir["file"] syntax */
2538
+ if (js_isDirectory(cx, file)) {
2539
+ PRDir *dir = NULL;
2540
+ PRDirEntry *entry = NULL;
2541
+ char *prop_name;
2542
+
2543
+ str = JS_ValueToString(cx, id);
2544
+ if (!str)
2545
+ return JS_FALSE;
2546
+
2547
+ prop_name = JS_GetStringBytes(str);
2548
+
2549
+ /* no native files past this point */
2550
+ dir = PR_OpenDir(file->path);
2551
+ if(!dir) {
2552
+ /* This is probably not a directory */
2553
+ JS_ReportWarning(cx, "Can't open directory %s", file->path);
2554
+ return JS_FALSE;
2555
+ }
2556
+
2557
+ while ((entry = PR_ReadDir(dir, PR_SKIP_NONE)) != NULL) {
2558
+ if (!strcmp(entry->name, prop_name)){
2559
+ bytes = js_combinePath(cx, file->path, prop_name);
2560
+ *vp = OBJECT_TO_JSVAL(js_NewFileObject(cx, bytes));
2561
+ PR_CloseDir(dir);
2562
+ JS_free(cx, bytes);
2563
+ return !JSVAL_IS_NULL(*vp);
2564
+ }
2565
+ }
2566
+ PR_CloseDir(dir);
2567
+ }
2568
+ }
2569
+ return JS_TRUE;
2570
+
2571
+ out:
2572
+ return JS_FALSE;
2573
+ }
2574
+
2575
+ static JSBool
2576
+ file_setProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
2577
+ {
2578
+ JSFile *file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
2579
+ jsint slot;
2580
+
2581
+ if (JSVAL_IS_STRING(id)){
2582
+ return JS_TRUE;
2583
+ }
2584
+
2585
+ slot = JSVAL_TO_INT(id);
2586
+
2587
+ switch (slot) {
2588
+ /* File.position = 10 */
2589
+ case FILE_POSITION:
2590
+ SECURITY_CHECK(cx, NULL, "set_position", file);
2591
+ JSFILE_CHECK_NATIVE("set_position");
2592
+
2593
+ if(!file->hasRandomAccess){
2594
+ JS_ReportWarning(cx, "File %s doesn't support random access, can't "
2595
+ "report the position, proceeding");
2596
+ goto out;
2597
+ }
2598
+
2599
+ if (file->isOpen && js_isFile(cx, file)) {
2600
+ int32 pos;
2601
+ int32 offset;
2602
+
2603
+ if (!JS_ValueToInt32(cx, *vp, &offset)){
2604
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2605
+ JSFILEMSG_FIRST_ARGUMENT_MUST_BE_A_NUMBER, "position", *vp);
2606
+ goto out;
2607
+ }
2608
+
2609
+ pos = PR_Seek(file->handle, offset, PR_SEEK_SET);
2610
+
2611
+ if(pos!=-1){
2612
+ *vp = INT_TO_JSVAL(pos);
2613
+ }else{
2614
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2615
+ JSFILEMSG_CANNOT_SET_POSITION, file->path);
2616
+ goto out;
2617
+ }
2618
+ } else {
2619
+ JS_ReportWarning(cx, "File %s is closed or not a file, can't set "
2620
+ "position, proceeding", file->path);
2621
+ goto out;
2622
+ }
2623
+ }
2624
+
2625
+ return JS_TRUE;
2626
+ out:
2627
+ return JS_FALSE;
2628
+ }
2629
+
2630
+ /*
2631
+ File.currentDir = new File("D:\") or File.currentDir = "D:\"
2632
+ */
2633
+ static JSBool
2634
+ file_currentDirSetter(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
2635
+ {
2636
+ JSFile *file;
2637
+
2638
+ file = JS_GetInstancePrivate(cx, obj, &js_FileClass, NULL);
2639
+
2640
+ /* Look at the rhs and extract a file object from it */
2641
+ if (JSVAL_IS_OBJECT(*vp)) {
2642
+ if (JS_InstanceOf(cx, obj, &js_FileClass, NULL)) {
2643
+ /* Braindamaged rhs -- just return the old value */
2644
+ if (file && (!js_exists(cx, file) || !js_isDirectory(cx, file))) {
2645
+ JS_GetProperty(cx, obj, CURRENTDIR_PROPERTY, vp);
2646
+ return JS_FALSE;
2647
+ } else {
2648
+ chdir(file->path);
2649
+ return JS_TRUE;
2650
+ }
2651
+ } else {
2652
+ return JS_FALSE;
2653
+ }
2654
+ } else {
2655
+ JSObject *rhsObject;
2656
+ char *path;
2657
+
2658
+ path = JS_GetStringBytes(JS_ValueToString(cx, *vp));
2659
+ rhsObject = js_NewFileObject(cx, path);
2660
+ if (!rhsObject)
2661
+ return JS_FALSE;
2662
+
2663
+ if (!file || !js_exists(cx, file) || !js_isDirectory(cx, file)){
2664
+ JS_GetProperty(cx, obj, CURRENTDIR_PROPERTY, vp);
2665
+ } else {
2666
+ *vp = OBJECT_TO_JSVAL(rhsObject);
2667
+ chdir(path);
2668
+ }
2669
+ }
2670
+
2671
+ return JS_TRUE;
2672
+ }
2673
+
2674
+ /* Declare class */
2675
+ JSClass js_FileClass = {
2676
+ "File", JSCLASS_HAS_PRIVATE | JSCLASS_HAS_CACHED_PROTO(JSProto_File),
2677
+ JS_PropertyStub, JS_PropertyStub, file_getProperty, file_setProperty,
2678
+ JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub, file_finalize
2679
+ };
2680
+
2681
+ /* -------------------- Functions exposed to the outside -------------------- */
2682
+ JS_PUBLIC_API(JSObject*)
2683
+ js_InitFileClass(JSContext *cx, JSObject* obj)
2684
+ {
2685
+ JSObject *file, *ctor, *afile;
2686
+ jsval vp;
2687
+ char *currentdir;
2688
+ char separator[2];
2689
+
2690
+ file = JS_InitClass(cx, obj, NULL, &js_FileClass, file_constructor, 1,
2691
+ file_props, file_functions, NULL, NULL);
2692
+ if (!file) {
2693
+ JS_ReportErrorNumber(cx, JSFile_GetErrorMessage, NULL,
2694
+ JSFILEMSG_INIT_FAILED);
2695
+ return NULL;
2696
+ }
2697
+
2698
+ ctor = JS_GetConstructor(cx, file);
2699
+ if (!ctor) return NULL;
2700
+
2701
+ /* Define CURRENTDIR property. We are doing this to get a
2702
+ slash at the end of the current dir */
2703
+ afile = js_NewFileObject(cx, CURRENT_DIR);
2704
+ currentdir = JS_malloc(cx, MAX_PATH_LENGTH);
2705
+ currentdir = getcwd(currentdir, MAX_PATH_LENGTH);
2706
+ afile = js_NewFileObject(cx, currentdir);
2707
+ JS_free(cx, currentdir);
2708
+ vp = OBJECT_TO_JSVAL(afile);
2709
+ JS_DefinePropertyWithTinyId(cx, ctor, CURRENTDIR_PROPERTY, 0, vp,
2710
+ JS_PropertyStub, file_currentDirSetter,
2711
+ JSPROP_ENUMERATE | JSPROP_READONLY );
2712
+
2713
+ /* Define input */
2714
+ vp = OBJECT_TO_JSVAL(js_NewFileObjectFromFILE(cx, stdin,
2715
+ STDINPUT_NAME, PR_RDONLY, JS_TRUE, JS_FALSE));
2716
+ JS_SetProperty(cx, ctor, "input", &vp);
2717
+
2718
+ /* Define output */
2719
+ vp = OBJECT_TO_JSVAL(js_NewFileObjectFromFILE(cx, stdout,
2720
+ STDOUTPUT_NAME, PR_WRONLY, JS_TRUE, JS_FALSE));
2721
+ JS_SetProperty(cx, ctor, "output", &vp);
2722
+
2723
+ /* Define error */
2724
+ vp = OBJECT_TO_JSVAL(js_NewFileObjectFromFILE(cx, stderr,
2725
+ STDERROR_NAME, PR_WRONLY, JS_TRUE, JS_FALSE));
2726
+ JS_SetProperty(cx, ctor, "error", &vp);
2727
+
2728
+ separator[0] = FILESEPARATOR;
2729
+ separator[1] = '\0';
2730
+ vp = STRING_TO_JSVAL(JS_NewStringCopyZ(cx, separator));
2731
+ JS_DefinePropertyWithTinyId(cx, ctor, SEPARATOR_PROPERTY, 0, vp,
2732
+ JS_PropertyStub, JS_PropertyStub,
2733
+ JSPROP_ENUMERATE | JSPROP_READONLY );
2734
+ return file;
2735
+ }
2736
+ #endif /* JS_HAS_FILE_OBJECT */