johnson 1.2.0 → 2.0.0.pre0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (782) hide show
  1. data/CHANGELOG.rdoc +8 -0
  2. data/Manifest.txt +762 -48
  3. data/README.rdoc +2 -1
  4. data/Rakefile +90 -18
  5. data/ext/spidermonkey/conversions.c +9 -2
  6. data/ext/spidermonkey/ruby_land_proxy.c +1 -1
  7. data/ext/spidermonkey/runtime.h +1 -1
  8. data/ext/tracemonkey/context.cc +125 -0
  9. data/ext/tracemonkey/context.h +19 -0
  10. data/ext/tracemonkey/conversions.cc +365 -0
  11. data/ext/tracemonkey/conversions.h +32 -0
  12. data/ext/tracemonkey/debugger.cc +234 -0
  13. data/ext/tracemonkey/debugger.h +10 -0
  14. data/ext/tracemonkey/extconf.rb +37 -0
  15. data/ext/tracemonkey/extensions.cc +37 -0
  16. data/ext/tracemonkey/extensions.h +12 -0
  17. data/ext/tracemonkey/global.cc +40 -0
  18. data/ext/tracemonkey/global.h +11 -0
  19. data/ext/tracemonkey/idhash.cc +16 -0
  20. data/ext/tracemonkey/idhash.h +8 -0
  21. data/ext/tracemonkey/immutable_node.cc +1199 -0
  22. data/ext/tracemonkey/immutable_node.cc.erb +559 -0
  23. data/ext/tracemonkey/immutable_node.h +22 -0
  24. data/ext/tracemonkey/jroot.h +215 -0
  25. data/ext/tracemonkey/js_land_proxy.cc +620 -0
  26. data/ext/tracemonkey/js_land_proxy.h +20 -0
  27. data/ext/tracemonkey/ruby_land_proxy.cc +618 -0
  28. data/ext/tracemonkey/ruby_land_proxy.h +38 -0
  29. data/ext/tracemonkey/runtime.cc +454 -0
  30. data/ext/tracemonkey/runtime.h +27 -0
  31. data/ext/tracemonkey/split_global.cc +392 -0
  32. data/ext/tracemonkey/split_global.h +11 -0
  33. data/ext/tracemonkey/tracemonkey.cc +23 -0
  34. data/ext/tracemonkey/tracemonkey.h +32 -0
  35. data/lib/johnson.rb +12 -4
  36. data/lib/johnson/error.rb +5 -0
  37. data/lib/johnson/js/prelude.js +16 -1
  38. data/lib/johnson/parser.rb +2 -1
  39. data/lib/johnson/runtime.rb +87 -26
  40. data/lib/johnson/spidermonkey/runtime.rb +7 -16
  41. data/lib/johnson/tracemonkey.rb +13 -0
  42. data/lib/johnson/tracemonkey/context.rb +10 -0
  43. data/lib/johnson/tracemonkey/debugger.rb +67 -0
  44. data/lib/johnson/tracemonkey/immutable_node.rb +282 -0
  45. data/lib/johnson/tracemonkey/js_land_proxy.rb +64 -0
  46. data/lib/johnson/tracemonkey/mutable_tree_visitor.rb +242 -0
  47. data/lib/johnson/tracemonkey/ruby_land_proxy.rb +17 -0
  48. data/lib/johnson/tracemonkey/runtime.rb +80 -0
  49. data/test/{johnson_test.rb → generic/johnson_test.rb} +1 -1
  50. data/test/{parser_test.rb → generic/parser_test.rb} +1 -1
  51. data/test/helper.rb +23 -4
  52. data/test/johnson/{browser_test.rb → generic/browser_test.rb} +1 -1
  53. data/test/johnson/{conversions → generic/conversions}/array_test.rb +1 -1
  54. data/test/johnson/{conversions → generic/conversions}/boolean_test.rb +1 -1
  55. data/test/johnson/{conversions → generic/conversions}/callable_test.rb +1 -1
  56. data/test/johnson/{conversions → generic/conversions}/file_test.rb +1 -1
  57. data/test/johnson/generic/conversions/helper.rb +1 -0
  58. data/test/johnson/{conversions → generic/conversions}/nil_test.rb +1 -1
  59. data/test/johnson/{conversions → generic/conversions}/number_test.rb +1 -1
  60. data/test/johnson/{conversions → generic/conversions}/regexp_test.rb +1 -1
  61. data/test/johnson/{conversions → generic/conversions}/string_test.rb +1 -1
  62. data/test/johnson/{conversions → generic/conversions}/struct_test.rb +1 -1
  63. data/test/johnson/{conversions → generic/conversions}/symbol_test.rb +1 -1
  64. data/test/johnson/{conversions → generic/conversions}/thread_test.rb +1 -1
  65. data/test/johnson/{custom_conversions_test.rb → generic/custom_conversions_test.rb} +1 -1
  66. data/test/johnson/generic/default_test.rb +12 -0
  67. data/test/johnson/{error_test.rb → generic/error_test.rb} +1 -1
  68. data/test/johnson/{extensions_test.rb → generic/extensions_test.rb} +1 -1
  69. data/test/johnson/generic/helper.rb +1 -0
  70. data/test/johnson/{nodes → generic/nodes}/array_literal_test.rb +1 -1
  71. data/test/johnson/{nodes → generic/nodes}/array_node_test.rb +1 -1
  72. data/test/johnson/{nodes → generic/nodes}/binary_node_test.rb +1 -1
  73. data/test/johnson/{nodes → generic/nodes}/bracket_access_test.rb +1 -1
  74. data/test/johnson/{nodes → generic/nodes}/delete_test.rb +1 -1
  75. data/test/johnson/{nodes → generic/nodes}/do_while_test.rb +1 -1
  76. data/test/johnson/{nodes → generic/nodes}/dot_accessor_test.rb +1 -1
  77. data/test/johnson/generic/nodes/export_test.rb +11 -0
  78. data/test/johnson/{nodes → generic/nodes}/for_test.rb +1 -1
  79. data/test/johnson/{nodes → generic/nodes}/function_test.rb +1 -1
  80. data/test/johnson/generic/nodes/helper.rb +1 -0
  81. data/test/johnson/{nodes → generic/nodes}/if_test.rb +16 -6
  82. data/test/johnson/generic/nodes/import_test.rb +15 -0
  83. data/test/johnson/{nodes → generic/nodes}/label_test.rb +1 -1
  84. data/test/johnson/{nodes → generic/nodes}/let_test.rb +1 -1
  85. data/test/johnson/{nodes → generic/nodes}/object_literal_test.rb +1 -1
  86. data/test/johnson/{nodes → generic/nodes}/return_test.rb +1 -1
  87. data/test/johnson/{nodes → generic/nodes}/semi_test.rb +1 -1
  88. data/test/johnson/{nodes → generic/nodes}/switch_test.rb +1 -1
  89. data/test/johnson/{nodes → generic/nodes}/ternary_test.rb +1 -1
  90. data/test/johnson/{nodes → generic/nodes}/throw_test.rb +1 -1
  91. data/test/johnson/{nodes → generic/nodes}/try_node_test.rb +36 -6
  92. data/test/johnson/{nodes → generic/nodes}/typeof_test.rb +1 -1
  93. data/test/johnson/{nodes → generic/nodes}/unary_node_test.rb +1 -1
  94. data/test/johnson/{nodes → generic/nodes}/void_test.rb +1 -1
  95. data/test/johnson/{nodes → generic/nodes}/while_test.rb +1 -1
  96. data/test/johnson/{nodes → generic/nodes}/with_test.rb +1 -1
  97. data/test/johnson/{prelude_test.rb → generic/prelude_test.rb} +1 -1
  98. data/test/johnson/{runtime_test.rb → generic/runtime_test.rb} +3 -6
  99. data/test/johnson/generic/version_test.rb +13 -0
  100. data/test/johnson/{visitors → generic/visitors}/dot_visitor_test.rb +1 -1
  101. data/test/johnson/{visitors → generic/visitors}/enumerating_visitor_test.rb +1 -1
  102. data/test/johnson/generic/visitors/helper.rb +1 -0
  103. data/test/johnson/spidermonkey/js_land_proxy_test.rb +1 -5
  104. data/test/johnson/spidermonkey/ruby_land_proxy_test.rb +11 -7
  105. data/test/johnson/tracemonkey/context_test.rb +21 -0
  106. data/test/johnson/tracemonkey/immutable_node_test.rb +34 -0
  107. data/test/johnson/tracemonkey/js_land_proxy_test.rb +273 -0
  108. data/test/johnson/tracemonkey/ruby_land_proxy_test.rb +274 -0
  109. data/test/johnson/tracemonkey/runtime_test.rb +41 -0
  110. data/test/johnson/tracemonkey/split_global_test.rb +32 -0
  111. data/vendor/spidermonkey/js.pkg +2 -0
  112. data/vendor/tracemonkey/Makefile.in +668 -0
  113. data/vendor/tracemonkey/Makefile.ref +483 -0
  114. data/vendor/tracemonkey/README.html +54 -0
  115. data/vendor/tracemonkey/SpiderMonkey.rsp +11 -0
  116. data/vendor/tracemonkey/Y.js +19 -0
  117. data/vendor/tracemonkey/aclocal.m4 +9 -0
  118. data/vendor/tracemonkey/bench.sh +5 -0
  119. data/vendor/tracemonkey/build/autoconf/acoutput-fast.pl +202 -0
  120. data/vendor/tracemonkey/build/autoconf/altoptions.m4 +154 -0
  121. data/vendor/tracemonkey/build/autoconf/config.guess +1537 -0
  122. data/vendor/tracemonkey/build/autoconf/config.sub +1595 -0
  123. data/vendor/tracemonkey/build/autoconf/install-sh +119 -0
  124. data/vendor/tracemonkey/build/autoconf/make-makefile +315 -0
  125. data/vendor/tracemonkey/build/autoconf/match-dir.sh +101 -0
  126. data/vendor/tracemonkey/build/autoconf/moznbytetype.m4 +136 -0
  127. data/vendor/tracemonkey/build/autoconf/nspr.m4 +82 -0
  128. data/vendor/tracemonkey/build/autoconf/pkg.m4 +59 -0
  129. data/vendor/tracemonkey/build/autoconf/update-makefile.sh +118 -0
  130. data/vendor/tracemonkey/build/cygwin-wrapper +75 -0
  131. data/vendor/tracemonkey/build/hcc +111 -0
  132. data/vendor/tracemonkey/build/hcpp +155 -0
  133. data/vendor/tracemonkey/build/unix/mddepend.pl +165 -0
  134. data/vendor/tracemonkey/build/unix/uniq.pl +63 -0
  135. data/vendor/tracemonkey/build/win32/pgomerge.py +40 -0
  136. data/vendor/tracemonkey/builtins.tbl +91 -0
  137. data/vendor/tracemonkey/call.js +13 -0
  138. data/vendor/tracemonkey/config.mk +206 -0
  139. data/vendor/tracemonkey/config/Makefile.in +106 -0
  140. data/vendor/tracemonkey/config/Moz/Milestone.pm +232 -0
  141. data/vendor/tracemonkey/config/autoconf.mk.in +362 -0
  142. data/vendor/tracemonkey/config/check-sync-dirs.py +103 -0
  143. data/vendor/tracemonkey/config/check-sync-exceptions +7 -0
  144. data/vendor/tracemonkey/config/config.mk +881 -0
  145. data/vendor/tracemonkey/config/fastcwd.pl +66 -0
  146. data/vendor/tracemonkey/config/gcc_hidden.h +2 -0
  147. data/vendor/tracemonkey/config/insure.mk +53 -0
  148. data/vendor/tracemonkey/config/make-system-wrappers.pl +59 -0
  149. data/vendor/tracemonkey/config/milestone.pl +112 -0
  150. data/vendor/tracemonkey/config/milestone.txt +13 -0
  151. data/vendor/tracemonkey/config/mkdepend/Makefile.in +84 -0
  152. data/vendor/tracemonkey/config/mkdepend/cppsetup.c +233 -0
  153. data/vendor/tracemonkey/config/mkdepend/def.h +184 -0
  154. data/vendor/tracemonkey/config/mkdepend/ifparser.c +551 -0
  155. data/vendor/tracemonkey/config/mkdepend/ifparser.h +83 -0
  156. data/vendor/tracemonkey/config/mkdepend/imakemdep.h +733 -0
  157. data/vendor/tracemonkey/config/mkdepend/include.c +337 -0
  158. data/vendor/tracemonkey/config/mkdepend/main.c +860 -0
  159. data/vendor/tracemonkey/config/mkdepend/mkdepend.man +382 -0
  160. data/vendor/tracemonkey/config/mkdepend/parse.c +686 -0
  161. data/vendor/tracemonkey/config/mkdepend/pr.c +124 -0
  162. data/vendor/tracemonkey/config/nfspwd.pl +50 -0
  163. data/vendor/tracemonkey/config/nsinstall.c +481 -0
  164. data/vendor/tracemonkey/config/nsinstall.py +155 -0
  165. data/vendor/tracemonkey/config/pathsub.c +247 -0
  166. data/vendor/tracemonkey/config/pathsub.h +74 -0
  167. data/vendor/tracemonkey/config/preprocessor.pl +671 -0
  168. data/vendor/tracemonkey/config/revdepth-nt.pl +48 -0
  169. data/vendor/tracemonkey/config/revdepth.pl +51 -0
  170. data/vendor/tracemonkey/config/rules.mk +2310 -0
  171. data/vendor/tracemonkey/config/static-checking-config.mk +21 -0
  172. data/vendor/tracemonkey/config/static-checking.js +92 -0
  173. data/vendor/tracemonkey/config/string-format.js +61 -0
  174. data/vendor/tracemonkey/config/system-headers +1035 -0
  175. data/vendor/tracemonkey/config/version.mk +85 -0
  176. data/vendor/tracemonkey/config/version_win.pl +442 -0
  177. data/vendor/tracemonkey/configure +14183 -0
  178. data/vendor/tracemonkey/configure.in +5363 -0
  179. data/vendor/tracemonkey/correct.sh +23 -0
  180. data/vendor/tracemonkey/correct/check-3d-morph.js +55 -0
  181. data/vendor/tracemonkey/correct/check-3d-raytrace.js +445 -0
  182. data/vendor/tracemonkey/correct/check-access-binary-trees.js +52 -0
  183. data/vendor/tracemonkey/correct/check-access-fannkuch.js +66 -0
  184. data/vendor/tracemonkey/correct/check-access-nbody.js +171 -0
  185. data/vendor/tracemonkey/correct/check-access-nsieve.js +40 -0
  186. data/vendor/tracemonkey/correct/check-bitops-3bit-bits-in-byte.js +35 -0
  187. data/vendor/tracemonkey/correct/check-bitops-bits-in-byte.js +24 -0
  188. data/vendor/tracemonkey/correct/check-bitops-bitwise-and.js +29 -0
  189. data/vendor/tracemonkey/correct/check-bitops-nsieve-bits.js +40 -0
  190. data/vendor/tracemonkey/correct/check-controlflow-recursive.js +27 -0
  191. data/vendor/tracemonkey/correct/check-date-format-tofte.js +302 -0
  192. data/vendor/tracemonkey/correct/check-date-format-xparb.js +421 -0
  193. data/vendor/tracemonkey/correct/check-mont.js +119 -0
  194. data/vendor/tracemonkey/dtoa.c +3335 -0
  195. data/vendor/tracemonkey/editline/Makefile.in +55 -0
  196. data/vendor/tracemonkey/editline/Makefile.ref +143 -0
  197. data/vendor/tracemonkey/editline/README +83 -0
  198. data/vendor/tracemonkey/editline/editline.3 +175 -0
  199. data/vendor/tracemonkey/editline/editline.c +1371 -0
  200. data/vendor/tracemonkey/editline/editline.h +135 -0
  201. data/vendor/tracemonkey/editline/sysunix.c +182 -0
  202. data/vendor/tracemonkey/editline/unix.h +82 -0
  203. data/vendor/tracemonkey/if.js +13 -0
  204. data/vendor/tracemonkey/imacro_asm.js.in +396 -0
  205. data/vendor/tracemonkey/imacros.c.out +1034 -0
  206. data/vendor/tracemonkey/imacros.jsasm +770 -0
  207. data/vendor/tracemonkey/javascript-trace.d +73 -0
  208. data/vendor/tracemonkey/jitstats.tbl +55 -0
  209. data/vendor/tracemonkey/js-config.h.in +82 -0
  210. data/vendor/tracemonkey/js-config.in +111 -0
  211. data/vendor/tracemonkey/js.mdp +0 -0
  212. data/vendor/tracemonkey/js.msg +312 -0
  213. data/vendor/tracemonkey/js3240.rc +79 -0
  214. data/vendor/tracemonkey/jsOS240.def +654 -0
  215. data/vendor/tracemonkey/jsapi.cpp +6005 -0
  216. data/vendor/tracemonkey/jsapi.h +2727 -0
  217. data/vendor/tracemonkey/jsarena.cpp +450 -0
  218. data/vendor/tracemonkey/jsarena.h +318 -0
  219. data/vendor/tracemonkey/jsarray.cpp +3664 -0
  220. data/vendor/tracemonkey/jsarray.h +238 -0
  221. data/vendor/tracemonkey/jsatom.cpp +1244 -0
  222. data/vendor/tracemonkey/jsatom.h +493 -0
  223. data/vendor/tracemonkey/jsbit.h +249 -0
  224. data/vendor/tracemonkey/jsbool.cpp +184 -0
  225. data/vendor/tracemonkey/jsbool.h +88 -0
  226. data/vendor/tracemonkey/jsbuiltins.cpp +415 -0
  227. data/vendor/tracemonkey/jsbuiltins.h +456 -0
  228. data/vendor/tracemonkey/jsclist.h +139 -0
  229. data/vendor/tracemonkey/jscntxt.cpp +1816 -0
  230. data/vendor/tracemonkey/jscntxt.h +1541 -0
  231. data/vendor/tracemonkey/jscompat.h +57 -0
  232. data/vendor/tracemonkey/jsconfig.mk +181 -0
  233. data/vendor/tracemonkey/jscpucfg.cpp +194 -0
  234. data/vendor/tracemonkey/jscpucfg.h +91 -0
  235. data/vendor/tracemonkey/jsdate.cpp +2465 -0
  236. data/vendor/tracemonkey/jsdate.h +129 -0
  237. data/vendor/tracemonkey/jsdbgapi.cpp +2017 -0
  238. data/vendor/tracemonkey/jsdbgapi.h +500 -0
  239. data/vendor/tracemonkey/jsdhash.cpp +876 -0
  240. data/vendor/tracemonkey/jsdhash.h +588 -0
  241. data/vendor/tracemonkey/jsdtoa.cpp +572 -0
  242. data/vendor/tracemonkey/jsdtoa.h +131 -0
  243. data/vendor/tracemonkey/jsdtracef.c +318 -0
  244. data/vendor/tracemonkey/jsdtracef.h +81 -0
  245. data/vendor/tracemonkey/jsemit.cpp +7292 -0
  246. data/vendor/tracemonkey/jsemit.h +802 -0
  247. data/vendor/tracemonkey/jsexn.cpp +1337 -0
  248. data/vendor/tracemonkey/jsexn.h +96 -0
  249. data/vendor/tracemonkey/jsfile.cpp +2747 -0
  250. data/vendor/tracemonkey/jsfile.h +56 -0
  251. data/vendor/tracemonkey/jsfile.msg +90 -0
  252. data/vendor/tracemonkey/jsfun.cpp +3089 -0
  253. data/vendor/tracemonkey/jsfun.h +366 -0
  254. data/vendor/tracemonkey/jsgc.cpp +3816 -0
  255. data/vendor/tracemonkey/jsgc.h +429 -0
  256. data/vendor/tracemonkey/jshash.cpp +477 -0
  257. data/vendor/tracemonkey/jshash.h +151 -0
  258. data/vendor/tracemonkey/jsify.pl +483 -0
  259. data/vendor/tracemonkey/jsinterp.cpp +7441 -0
  260. data/vendor/tracemonkey/jsinterp.h +666 -0
  261. data/vendor/tracemonkey/jsinvoke.cpp +42 -0
  262. data/vendor/tracemonkey/jsiter.cpp +1040 -0
  263. data/vendor/tracemonkey/jsiter.h +140 -0
  264. data/vendor/tracemonkey/jskeyword.tbl +124 -0
  265. data/vendor/tracemonkey/jskwgen.cpp +460 -0
  266. data/vendor/tracemonkey/jslibmath.h +69 -0
  267. data/vendor/tracemonkey/jslock.cpp +1512 -0
  268. data/vendor/tracemonkey/jslock.h +325 -0
  269. data/vendor/tracemonkey/jslocko.asm +60 -0
  270. data/vendor/tracemonkey/jslog2.cpp +111 -0
  271. data/vendor/tracemonkey/jslong.h +167 -0
  272. data/vendor/tracemonkey/jsmath.cpp +806 -0
  273. data/vendor/tracemonkey/jsmath.h +63 -0
  274. data/vendor/tracemonkey/jsnum.cpp +1374 -0
  275. data/vendor/tracemonkey/jsnum.h +280 -0
  276. data/vendor/tracemonkey/jsobj.cpp +6165 -0
  277. data/vendor/tracemonkey/jsobj.h +870 -0
  278. data/vendor/tracemonkey/json.cpp +1338 -0
  279. data/vendor/tracemonkey/json.h +108 -0
  280. data/vendor/tracemonkey/jsopcode.cpp +5484 -0
  281. data/vendor/tracemonkey/jsopcode.h +434 -0
  282. data/vendor/tracemonkey/jsopcode.tbl +591 -0
  283. data/vendor/tracemonkey/jsoplengen.cpp +121 -0
  284. data/vendor/tracemonkey/jsotypes.h +202 -0
  285. data/vendor/tracemonkey/jsparse.cpp +9257 -0
  286. data/vendor/tracemonkey/jsparse.h +900 -0
  287. data/vendor/tracemonkey/jsprf.cpp +1262 -0
  288. data/vendor/tracemonkey/jsprf.h +150 -0
  289. data/vendor/tracemonkey/jsproto.tbl +117 -0
  290. data/vendor/tracemonkey/jsprvtd.h +366 -0
  291. data/vendor/tracemonkey/jspubtd.h +585 -0
  292. data/vendor/tracemonkey/jsregexp.cpp +5051 -0
  293. data/vendor/tracemonkey/jsregexp.h +199 -0
  294. data/vendor/tracemonkey/jsreops.tbl +145 -0
  295. data/vendor/tracemonkey/jsscan.cpp +2040 -0
  296. data/vendor/tracemonkey/jsscan.h +467 -0
  297. data/vendor/tracemonkey/jsscope.cpp +1966 -0
  298. data/vendor/tracemonkey/jsscope.h +487 -0
  299. data/vendor/tracemonkey/jsscript.cpp +1932 -0
  300. data/vendor/tracemonkey/jsscript.h +345 -0
  301. data/vendor/tracemonkey/jsshell.msg +54 -0
  302. data/vendor/tracemonkey/jsstack.js +167 -0
  303. data/vendor/tracemonkey/jsstaticcheck.h +69 -0
  304. data/vendor/tracemonkey/jsstddef.h +87 -0
  305. data/vendor/tracemonkey/jsstdint.h +96 -0
  306. data/vendor/tracemonkey/jsstr.cpp +5277 -0
  307. data/vendor/tracemonkey/jsstr.h +702 -0
  308. data/vendor/tracemonkey/jstracer.cpp +10991 -0
  309. data/vendor/tracemonkey/jstracer.h +794 -0
  310. data/vendor/tracemonkey/jstypes.h +481 -0
  311. data/vendor/tracemonkey/jsutil.cpp +361 -0
  312. data/vendor/tracemonkey/jsutil.h +178 -0
  313. data/vendor/tracemonkey/jsversion.h +243 -0
  314. data/vendor/tracemonkey/jswince.asm +44 -0
  315. data/vendor/tracemonkey/jsxdrapi.cpp +800 -0
  316. data/vendor/tracemonkey/jsxdrapi.h +220 -0
  317. data/vendor/tracemonkey/jsxml.cpp +8327 -0
  318. data/vendor/tracemonkey/jsxml.h +305 -0
  319. data/vendor/tracemonkey/liveconnect/LiveConnect.dsp +157 -0
  320. data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsp +120 -0
  321. data/vendor/tracemonkey/liveconnect/LiveConnectShell.dsw +44 -0
  322. data/vendor/tracemonkey/liveconnect/Makefile.in +105 -0
  323. data/vendor/tracemonkey/liveconnect/Makefile.ref +169 -0
  324. data/vendor/tracemonkey/liveconnect/README.html +712 -0
  325. data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSException.h +14 -0
  326. data/vendor/tracemonkey/liveconnect/_jni/netscape_javascript_JSObject.h +155 -0
  327. data/vendor/tracemonkey/liveconnect/classes/Makefile.in +89 -0
  328. data/vendor/tracemonkey/liveconnect/classes/Makefile.ref +57 -0
  329. data/vendor/tracemonkey/liveconnect/classes/netscape/Makefile.ref +47 -0
  330. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSException.java +140 -0
  331. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSObject.java +183 -0
  332. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSProxy.java +58 -0
  333. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSRunnable.java +70 -0
  334. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/JSUtil.java +59 -0
  335. data/vendor/tracemonkey/liveconnect/classes/netscape/javascript/Makefile.ref +53 -0
  336. data/vendor/tracemonkey/liveconnect/config/AIX4.1.mk +45 -0
  337. data/vendor/tracemonkey/liveconnect/config/AIX4.2.mk +45 -0
  338. data/vendor/tracemonkey/liveconnect/config/AIX4.3.mk +50 -0
  339. data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.10.mk +43 -0
  340. data/vendor/tracemonkey/liveconnect/config/HP-UXB.10.20.mk +43 -0
  341. data/vendor/tracemonkey/liveconnect/config/HP-UXB.11.00.mk +43 -0
  342. data/vendor/tracemonkey/liveconnect/config/IRIX6.2.mk +43 -0
  343. data/vendor/tracemonkey/liveconnect/config/IRIX6.3.mk +43 -0
  344. data/vendor/tracemonkey/liveconnect/config/IRIX6.5.mk +43 -0
  345. data/vendor/tracemonkey/liveconnect/config/Linux_All.mk +73 -0
  346. data/vendor/tracemonkey/liveconnect/config/OSF1V4.0.mk +65 -0
  347. data/vendor/tracemonkey/liveconnect/config/OSF1V5.0.mk +62 -0
  348. data/vendor/tracemonkey/liveconnect/config/SunOS5.5.1.mk +55 -0
  349. data/vendor/tracemonkey/liveconnect/config/SunOS5.6.mk +39 -0
  350. data/vendor/tracemonkey/liveconnect/config/SunOS5.7.mk +39 -0
  351. data/vendor/tracemonkey/liveconnect/config/SunOS5.8.mk +39 -0
  352. data/vendor/tracemonkey/liveconnect/config/WINNT4.0.mk +53 -0
  353. data/vendor/tracemonkey/liveconnect/jsj.c +886 -0
  354. data/vendor/tracemonkey/liveconnect/jsj.msg +98 -0
  355. data/vendor/tracemonkey/liveconnect/jsj_JSObject.c +1377 -0
  356. data/vendor/tracemonkey/liveconnect/jsj_JavaArray.c +474 -0
  357. data/vendor/tracemonkey/liveconnect/jsj_JavaClass.c +737 -0
  358. data/vendor/tracemonkey/liveconnect/jsj_JavaMember.c +191 -0
  359. data/vendor/tracemonkey/liveconnect/jsj_JavaObject.c +1079 -0
  360. data/vendor/tracemonkey/liveconnect/jsj_JavaPackage.c +569 -0
  361. data/vendor/tracemonkey/liveconnect/jsj_array.c +207 -0
  362. data/vendor/tracemonkey/liveconnect/jsj_class.c +770 -0
  363. data/vendor/tracemonkey/liveconnect/jsj_convert.c +902 -0
  364. data/vendor/tracemonkey/liveconnect/jsj_field.c +421 -0
  365. data/vendor/tracemonkey/liveconnect/jsj_hash.c +488 -0
  366. data/vendor/tracemonkey/liveconnect/jsj_hash.h +161 -0
  367. data/vendor/tracemonkey/liveconnect/jsj_method.c +1825 -0
  368. data/vendor/tracemonkey/liveconnect/jsj_nodl.c +1 -0
  369. data/vendor/tracemonkey/liveconnect/jsj_private.h +677 -0
  370. data/vendor/tracemonkey/liveconnect/jsj_simpleapi.c +219 -0
  371. data/vendor/tracemonkey/liveconnect/jsj_utils.c +513 -0
  372. data/vendor/tracemonkey/liveconnect/jsjava.h +316 -0
  373. data/vendor/tracemonkey/liveconnect/netscape_javascript_JSObject.h +155 -0
  374. data/vendor/tracemonkey/liveconnect/nsCLiveconnect.cpp +785 -0
  375. data/vendor/tracemonkey/liveconnect/nsCLiveconnect.h +197 -0
  376. data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.cpp +118 -0
  377. data/vendor/tracemonkey/liveconnect/nsCLiveconnectFactory.h +76 -0
  378. data/vendor/tracemonkey/liveconnect/nsILiveconnect.h +197 -0
  379. data/vendor/tracemonkey/liveconnect/nsISecureLiveconnect.h +94 -0
  380. data/vendor/tracemonkey/liveconnect/nsISecurityContext.h +136 -0
  381. data/vendor/tracemonkey/lock_SunOS.s +119 -0
  382. data/vendor/tracemonkey/mandelbrot-results.js +3 -0
  383. data/vendor/tracemonkey/math-partial-sums.js +32 -0
  384. data/vendor/tracemonkey/math-trace-tests.js +507 -0
  385. data/vendor/tracemonkey/md5.js +289 -0
  386. data/vendor/tracemonkey/nanojit/Assembler.cpp +1984 -0
  387. data/vendor/tracemonkey/nanojit/Assembler.h +375 -0
  388. data/vendor/tracemonkey/nanojit/Fragmento.cpp +651 -0
  389. data/vendor/tracemonkey/nanojit/Fragmento.h +237 -0
  390. data/vendor/tracemonkey/nanojit/LIR.cpp +2314 -0
  391. data/vendor/tracemonkey/nanojit/LIR.h +879 -0
  392. data/vendor/tracemonkey/nanojit/LIRopcode.tbl +252 -0
  393. data/vendor/tracemonkey/nanojit/Native.h +127 -0
  394. data/vendor/tracemonkey/nanojit/NativeARM.cpp +1742 -0
  395. data/vendor/tracemonkey/nanojit/NativeARM.h +844 -0
  396. data/vendor/tracemonkey/nanojit/NativeSparc.cpp +1130 -0
  397. data/vendor/tracemonkey/nanojit/NativeSparc.h +948 -0
  398. data/vendor/tracemonkey/nanojit/NativeThumb.cpp +1322 -0
  399. data/vendor/tracemonkey/nanojit/NativeThumb.h +525 -0
  400. data/vendor/tracemonkey/nanojit/Nativei386.cpp +1748 -0
  401. data/vendor/tracemonkey/nanojit/Nativei386.h +857 -0
  402. data/vendor/tracemonkey/nanojit/RegAlloc.cpp +183 -0
  403. data/vendor/tracemonkey/nanojit/RegAlloc.h +95 -0
  404. data/vendor/tracemonkey/nanojit/TraceTreeDrawer.cpp +306 -0
  405. data/vendor/tracemonkey/nanojit/TraceTreeDrawer.h +88 -0
  406. data/vendor/tracemonkey/nanojit/avmplus.cpp +56 -0
  407. data/vendor/tracemonkey/nanojit/avmplus.h +1016 -0
  408. data/vendor/tracemonkey/nanojit/nanojit.h +253 -0
  409. data/vendor/tracemonkey/perfect.js +39 -0
  410. data/vendor/tracemonkey/plify_jsdhash.sed +35 -0
  411. data/vendor/tracemonkey/prmjtime.cpp +869 -0
  412. data/vendor/tracemonkey/prmjtime.h +103 -0
  413. data/vendor/tracemonkey/ref-config/AIX4.1.mk +65 -0
  414. data/vendor/tracemonkey/ref-config/AIX4.2.mk +64 -0
  415. data/vendor/tracemonkey/ref-config/AIX4.3.mk +65 -0
  416. data/vendor/tracemonkey/ref-config/Darwin.mk +85 -0
  417. data/vendor/tracemonkey/ref-config/Darwin1.3.mk +81 -0
  418. data/vendor/tracemonkey/ref-config/Darwin1.4.mk +41 -0
  419. data/vendor/tracemonkey/ref-config/Darwin5.2.mk +81 -0
  420. data/vendor/tracemonkey/ref-config/Darwin5.3.mk +81 -0
  421. data/vendor/tracemonkey/ref-config/Darwin64.mk +72 -0
  422. data/vendor/tracemonkey/ref-config/HP-UXB.10.10.mk +77 -0
  423. data/vendor/tracemonkey/ref-config/HP-UXB.10.20.mk +77 -0
  424. data/vendor/tracemonkey/ref-config/HP-UXB.11.00.mk +80 -0
  425. data/vendor/tracemonkey/ref-config/IRIX.mk +87 -0
  426. data/vendor/tracemonkey/ref-config/IRIX5.3.mk +44 -0
  427. data/vendor/tracemonkey/ref-config/IRIX6.1.mk +44 -0
  428. data/vendor/tracemonkey/ref-config/IRIX6.2.mk +44 -0
  429. data/vendor/tracemonkey/ref-config/IRIX6.3.mk +44 -0
  430. data/vendor/tracemonkey/ref-config/IRIX6.5.mk +44 -0
  431. data/vendor/tracemonkey/ref-config/Linux_All.mk +105 -0
  432. data/vendor/tracemonkey/ref-config/Mac_OS10.0.mk +82 -0
  433. data/vendor/tracemonkey/ref-config/OSF1V4.0.mk +72 -0
  434. data/vendor/tracemonkey/ref-config/OSF1V5.0.mk +69 -0
  435. data/vendor/tracemonkey/ref-config/SunOS4.1.4.mk +101 -0
  436. data/vendor/tracemonkey/ref-config/SunOS5.10.mk +50 -0
  437. data/vendor/tracemonkey/ref-config/SunOS5.3.mk +91 -0
  438. data/vendor/tracemonkey/ref-config/SunOS5.4.mk +92 -0
  439. data/vendor/tracemonkey/ref-config/SunOS5.5.1.mk +44 -0
  440. data/vendor/tracemonkey/ref-config/SunOS5.5.mk +87 -0
  441. data/vendor/tracemonkey/ref-config/SunOS5.6.mk +89 -0
  442. data/vendor/tracemonkey/ref-config/SunOS5.7.mk +44 -0
  443. data/vendor/tracemonkey/ref-config/SunOS5.8.mk +44 -0
  444. data/vendor/tracemonkey/ref-config/SunOS5.9.mk +44 -0
  445. data/vendor/tracemonkey/ref-config/WINNT4.0.mk +118 -0
  446. data/vendor/tracemonkey/ref-config/WINNT5.0.mk +118 -0
  447. data/vendor/tracemonkey/ref-config/WINNT5.1.mk +118 -0
  448. data/vendor/tracemonkey/ref-config/WINNT5.2.mk +118 -0
  449. data/vendor/tracemonkey/ref-config/WINNT6.0.mk +118 -0
  450. data/vendor/tracemonkey/ref-config/dgux.mk +64 -0
  451. data/vendor/tracemonkey/resource.h +15 -0
  452. data/vendor/tracemonkey/rules.mk +206 -0
  453. data/vendor/tracemonkey/shell/Makefile.in +72 -0
  454. data/vendor/tracemonkey/shell/js.cpp +4719 -0
  455. data/vendor/tracemonkey/t/3d-cube.js +337 -0
  456. data/vendor/tracemonkey/t/3d-morph.js +54 -0
  457. data/vendor/tracemonkey/t/3d-raytrace.js +441 -0
  458. data/vendor/tracemonkey/t/access-binary-trees.js +50 -0
  459. data/vendor/tracemonkey/t/access-fannkuch.js +66 -0
  460. data/vendor/tracemonkey/t/access-nbody.js +169 -0
  461. data/vendor/tracemonkey/t/access-nsieve.js +38 -0
  462. data/vendor/tracemonkey/t/bitops-3bit-bits-in-byte.js +32 -0
  463. data/vendor/tracemonkey/t/bitops-bits-in-byte.js +21 -0
  464. data/vendor/tracemonkey/t/bitops-bitwise-and.js +28 -0
  465. data/vendor/tracemonkey/t/bitops-nsieve-bits.js +32 -0
  466. data/vendor/tracemonkey/t/controlflow-recursive.js +25 -0
  467. data/vendor/tracemonkey/t/crypto-aes.js +422 -0
  468. data/vendor/tracemonkey/t/crypto-md5.js +286 -0
  469. data/vendor/tracemonkey/t/crypto-sha1.js +224 -0
  470. data/vendor/tracemonkey/t/date-format-tofte.js +299 -0
  471. data/vendor/tracemonkey/t/date-format-xparb.js +417 -0
  472. data/vendor/tracemonkey/t/math-cordic.js +95 -0
  473. data/vendor/tracemonkey/t/math-partial-sums.js +33 -0
  474. data/vendor/tracemonkey/t/math-spectral-norm.js +51 -0
  475. data/vendor/tracemonkey/t/regexp-dna.js +1712 -0
  476. data/vendor/tracemonkey/t/string-base64.js +135 -0
  477. data/vendor/tracemonkey/t/string-fasta.js +85 -0
  478. data/vendor/tracemonkey/t/string-tagcloud.js +265 -0
  479. data/vendor/tracemonkey/t/string-unpack-code.js +68 -0
  480. data/vendor/tracemonkey/t/string-validate-input.js +89 -0
  481. data/vendor/tracemonkey/time.sh +13 -0
  482. data/vendor/tracemonkey/trace-test.js +5564 -0
  483. data/vendor/tracemonkey/v8/base.js +187 -0
  484. data/vendor/tracemonkey/v8/crypto.js +1689 -0
  485. data/vendor/tracemonkey/v8/deltablue.js +880 -0
  486. data/vendor/tracemonkey/v8/earley-boyer.js +4682 -0
  487. data/vendor/tracemonkey/v8/raytrace.js +3418 -0
  488. data/vendor/tracemonkey/v8/richards.js +539 -0
  489. data/vendor/tracemonkey/v8/run-crypto.js +44 -0
  490. data/vendor/tracemonkey/v8/run-deltablue.js +44 -0
  491. data/vendor/tracemonkey/v8/run-earley-boyer.js +44 -0
  492. data/vendor/tracemonkey/v8/run-raytrace.js +44 -0
  493. data/vendor/tracemonkey/v8/run-richards.js +44 -0
  494. data/vendor/tracemonkey/v8/run.js +49 -0
  495. data/vendor/tracemonkey/vprof/readme.txt +93 -0
  496. data/vendor/tracemonkey/vprof/vprof.cpp +360 -0
  497. data/vendor/tracemonkey/vprof/vprof.h +245 -0
  498. data/vendor/tracemonkey/xpconnect/Makefile.in +67 -0
  499. data/vendor/tracemonkey/xpconnect/crashtests/117307-1.html +20 -0
  500. data/vendor/tracemonkey/xpconnect/crashtests/193710.html +11 -0
  501. data/vendor/tracemonkey/xpconnect/crashtests/290162-1.html +5 -0
  502. data/vendor/tracemonkey/xpconnect/crashtests/326615-1.html +16 -0
  503. data/vendor/tracemonkey/xpconnect/crashtests/328553-1.html +13 -0
  504. data/vendor/tracemonkey/xpconnect/crashtests/346258-1.html +12 -0
  505. data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame1.xhtml +16 -0
  506. data/vendor/tracemonkey/xpconnect/crashtests/346512-1-frame2.xhtml +15 -0
  507. data/vendor/tracemonkey/xpconnect/crashtests/346512-1.xhtml +30 -0
  508. data/vendor/tracemonkey/xpconnect/crashtests/382133-1.html +3 -0
  509. data/vendor/tracemonkey/xpconnect/crashtests/386680-1.html +22 -0
  510. data/vendor/tracemonkey/xpconnect/crashtests/394810-1.html +4 -0
  511. data/vendor/tracemonkey/xpconnect/crashtests/400349-1.html +20 -0
  512. data/vendor/tracemonkey/xpconnect/crashtests/403356-1.html +13 -0
  513. data/vendor/tracemonkey/xpconnect/crashtests/418139-1.svg +22 -0
  514. data/vendor/tracemonkey/xpconnect/crashtests/420513-1.html +11 -0
  515. data/vendor/tracemonkey/xpconnect/crashtests/453935-1.html +37 -0
  516. data/vendor/tracemonkey/xpconnect/crashtests/462926.html +12 -0
  517. data/vendor/tracemonkey/xpconnect/crashtests/468552-1.html +18 -0
  518. data/vendor/tracemonkey/xpconnect/crashtests/471366-1.html +12 -0
  519. data/vendor/tracemonkey/xpconnect/crashtests/475185-1.html +13 -0
  520. data/vendor/tracemonkey/xpconnect/crashtests/475291-1.html +14 -0
  521. data/vendor/tracemonkey/xpconnect/crashtests/503286-1.html +23 -0
  522. data/vendor/tracemonkey/xpconnect/crashtests/crashtests.list +21 -0
  523. data/vendor/tracemonkey/xpconnect/idl/Makefile.in +78 -0
  524. data/vendor/tracemonkey/xpconnect/idl/XPCIDispatch.idl +51 -0
  525. data/vendor/tracemonkey/xpconnect/idl/mozIJSSubScriptLoader.idl +64 -0
  526. data/vendor/tracemonkey/xpconnect/idl/nsIActiveXSecurityPolicy.idl +67 -0
  527. data/vendor/tracemonkey/xpconnect/idl/nsIDispatchSupport.idl +119 -0
  528. data/vendor/tracemonkey/xpconnect/idl/nsIJSContextStack.idl +85 -0
  529. data/vendor/tracemonkey/xpconnect/idl/nsIJSRuntimeService.idl +51 -0
  530. data/vendor/tracemonkey/xpconnect/idl/nsIScriptError.idl +102 -0
  531. data/vendor/tracemonkey/xpconnect/idl/nsIScriptableInterfaces.idl +67 -0
  532. data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptNotify.idl +66 -0
  533. data/vendor/tracemonkey/xpconnect/idl/nsIXPCScriptable.idl +183 -0
  534. data/vendor/tracemonkey/xpconnect/idl/nsIXPCSecurityManager.idl +114 -0
  535. data/vendor/tracemonkey/xpconnect/idl/nsIXPConnect.idl +819 -0
  536. data/vendor/tracemonkey/xpconnect/idl/xpcIJSModuleLoader.idl +95 -0
  537. data/vendor/tracemonkey/xpconnect/idl/xpcIJSWeakReference.idl +49 -0
  538. data/vendor/tracemonkey/xpconnect/idl/xpccomponents.idl +254 -0
  539. data/vendor/tracemonkey/xpconnect/idl/xpcexception.idl +66 -0
  540. data/vendor/tracemonkey/xpconnect/idl/xpcjsid.idl +83 -0
  541. data/vendor/tracemonkey/xpconnect/loader/ISO8601DateUtils.jsm +176 -0
  542. data/vendor/tracemonkey/xpconnect/loader/Makefile.in +63 -0
  543. data/vendor/tracemonkey/xpconnect/loader/XPCOMUtils.jsm +267 -0
  544. data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.cpp +1717 -0
  545. data/vendor/tracemonkey/xpconnect/loader/mozJSComponentLoader.h +172 -0
  546. data/vendor/tracemonkey/xpconnect/loader/mozJSLoaderConstructors.h +101 -0
  547. data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.cpp +360 -0
  548. data/vendor/tracemonkey/xpconnect/loader/mozJSSubScriptLoader.h +66 -0
  549. data/vendor/tracemonkey/xpconnect/public/Makefile.in +54 -0
  550. data/vendor/tracemonkey/xpconnect/public/nsAXPCNativeCallContext.h +89 -0
  551. data/vendor/tracemonkey/xpconnect/public/nsAutoJSValHolder.h +168 -0
  552. data/vendor/tracemonkey/xpconnect/public/xpc_map_end.h +327 -0
  553. data/vendor/tracemonkey/xpconnect/sample/Makefile.in +71 -0
  554. data/vendor/tracemonkey/xpconnect/sample/README +39 -0
  555. data/vendor/tracemonkey/xpconnect/sample/xpcsample1.cpp +337 -0
  556. data/vendor/tracemonkey/xpconnect/sample/xpcsample1.idl +82 -0
  557. data/vendor/tracemonkey/xpconnect/sample/xpcsample1.js +21 -0
  558. data/vendor/tracemonkey/xpconnect/shell/Makefile.in +106 -0
  559. data/vendor/tracemonkey/xpconnect/shell/jsshell.msg +50 -0
  560. data/vendor/tracemonkey/xpconnect/shell/xpcshell.cpp +1817 -0
  561. data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.h +43 -0
  562. data/vendor/tracemonkey/xpconnect/shell/xpcshellMacUtils.mm +54 -0
  563. data/vendor/tracemonkey/xpconnect/src/Makefile.in +228 -0
  564. data/vendor/tracemonkey/xpconnect/src/README +3 -0
  565. data/vendor/tracemonkey/xpconnect/src/XPCCrossOriginWrapper.cpp +1186 -0
  566. data/vendor/tracemonkey/xpconnect/src/XPCDispConvert.cpp +593 -0
  567. data/vendor/tracemonkey/xpconnect/src/XPCDispInlines.h +667 -0
  568. data/vendor/tracemonkey/xpconnect/src/XPCDispInterface.cpp +383 -0
  569. data/vendor/tracemonkey/xpconnect/src/XPCDispObject.cpp +516 -0
  570. data/vendor/tracemonkey/xpconnect/src/XPCDispParamPropJSClass.cpp +223 -0
  571. data/vendor/tracemonkey/xpconnect/src/XPCDispParams.cpp +103 -0
  572. data/vendor/tracemonkey/xpconnect/src/XPCDispPrivate.h +1401 -0
  573. data/vendor/tracemonkey/xpconnect/src/XPCDispTearOff.cpp +547 -0
  574. data/vendor/tracemonkey/xpconnect/src/XPCDispTypeInfo.cpp +471 -0
  575. data/vendor/tracemonkey/xpconnect/src/XPCIDispatchClassInfo.cpp +139 -0
  576. data/vendor/tracemonkey/xpconnect/src/XPCIDispatchExtension.cpp +362 -0
  577. data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.cpp +1350 -0
  578. data/vendor/tracemonkey/xpconnect/src/XPCNativeWrapper.h +88 -0
  579. data/vendor/tracemonkey/xpconnect/src/XPCSafeJSObjectWrapper.cpp +1148 -0
  580. data/vendor/tracemonkey/xpconnect/src/XPCSystemOnlyWrapper.cpp +718 -0
  581. data/vendor/tracemonkey/xpconnect/src/XPCWrapper.cpp +850 -0
  582. data/vendor/tracemonkey/xpconnect/src/XPCWrapper.h +394 -0
  583. data/vendor/tracemonkey/xpconnect/src/dom_quickstubs.qsconf +568 -0
  584. data/vendor/tracemonkey/xpconnect/src/nsDispatchSupport.cpp +348 -0
  585. data/vendor/tracemonkey/xpconnect/src/nsScriptError.cpp +201 -0
  586. data/vendor/tracemonkey/xpconnect/src/nsXPConnect.cpp +2609 -0
  587. data/vendor/tracemonkey/xpconnect/src/qsgen.py +1487 -0
  588. data/vendor/tracemonkey/xpconnect/src/xpc.msg +217 -0
  589. data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.cpp +148 -0
  590. data/vendor/tracemonkey/xpconnect/src/xpcJSWeakReference.h +56 -0
  591. data/vendor/tracemonkey/xpconnect/src/xpccallcontext.cpp +579 -0
  592. data/vendor/tracemonkey/xpconnect/src/xpccomponents.cpp +4144 -0
  593. data/vendor/tracemonkey/xpconnect/src/xpccontext.cpp +115 -0
  594. data/vendor/tracemonkey/xpconnect/src/xpcconvert.cpp +2298 -0
  595. data/vendor/tracemonkey/xpconnect/src/xpcdebug.cpp +481 -0
  596. data/vendor/tracemonkey/xpconnect/src/xpcexception.cpp +502 -0
  597. data/vendor/tracemonkey/xpconnect/src/xpcforwards.h +114 -0
  598. data/vendor/tracemonkey/xpconnect/src/xpcinlines.h +772 -0
  599. data/vendor/tracemonkey/xpconnect/src/xpcjsid.cpp +1025 -0
  600. data/vendor/tracemonkey/xpconnect/src/xpcjsruntime.cpp +1342 -0
  601. data/vendor/tracemonkey/xpconnect/src/xpclog.cpp +128 -0
  602. data/vendor/tracemonkey/xpconnect/src/xpclog.h +101 -0
  603. data/vendor/tracemonkey/xpconnect/src/xpcmaps.cpp +761 -0
  604. data/vendor/tracemonkey/xpconnect/src/xpcmaps.h +713 -0
  605. data/vendor/tracemonkey/xpconnect/src/xpcmodule.cpp +136 -0
  606. data/vendor/tracemonkey/xpconnect/src/xpcprivate.h +4138 -0
  607. data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.cpp +1128 -0
  608. data/vendor/tracemonkey/xpconnect/src/xpcquickstubs.h +480 -0
  609. data/vendor/tracemonkey/xpconnect/src/xpcruntimesvc.cpp +179 -0
  610. data/vendor/tracemonkey/xpconnect/src/xpcstack.cpp +342 -0
  611. data/vendor/tracemonkey/xpconnect/src/xpcstring.cpp +139 -0
  612. data/vendor/tracemonkey/xpconnect/src/xpcthreadcontext.cpp +599 -0
  613. data/vendor/tracemonkey/xpconnect/src/xpcthrower.cpp +399 -0
  614. data/vendor/tracemonkey/xpconnect/src/xpcvariant.cpp +850 -0
  615. data/vendor/tracemonkey/xpconnect/src/xpcwrappedjs.cpp +670 -0
  616. data/vendor/tracemonkey/xpconnect/src/xpcwrappedjsclass.cpp +2015 -0
  617. data/vendor/tracemonkey/xpconnect/src/xpcwrappednative.cpp +3482 -0
  618. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeinfo.cpp +945 -0
  619. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativejsops.cpp +2003 -0
  620. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativeproto.cpp +302 -0
  621. data/vendor/tracemonkey/xpconnect/src/xpcwrappednativescope.cpp +991 -0
  622. data/vendor/tracemonkey/xpconnect/tests/Makefile.in +75 -0
  623. data/vendor/tracemonkey/xpconnect/tests/TestXPC.cpp +785 -0
  624. data/vendor/tracemonkey/xpconnect/tests/chrome/Makefile.in +51 -0
  625. data/vendor/tracemonkey/xpconnect/tests/chrome/test_bug500931.xul +43 -0
  626. data/vendor/tracemonkey/xpconnect/tests/components/Makefile.in +85 -0
  627. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_array.cpp +388 -0
  628. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_attributes.cpp +305 -0
  629. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_calljs.cpp +135 -0
  630. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_child.cpp +225 -0
  631. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_const.cpp +76 -0
  632. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_domstring.cpp +118 -0
  633. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_echo.cpp +616 -0
  634. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_in.cpp +204 -0
  635. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_inout.cpp +171 -0
  636. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_module.cpp +77 -0
  637. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_multiple.cpp +554 -0
  638. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_noisy.cpp +154 -0
  639. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_out.cpp +335 -0
  640. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_overloaded.cpp +250 -0
  641. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_private.h +192 -0
  642. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_string.cpp +185 -0
  643. data/vendor/tracemonkey/xpconnect/tests/components/xpctest_variant.cpp +355 -0
  644. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.cpp +12 -0
  645. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/StdAfx.h +28 -0
  646. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCDispUtilities.h +28 -0
  647. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.cpp +86 -0
  648. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.def +9 -0
  649. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsp +318 -0
  650. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.dsw +29 -0
  651. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.idl +454 -0
  652. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/XPCIDispatchTest.rc +145 -0
  653. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.cpp +44 -0
  654. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.h +56 -0
  655. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispSimple.rgs +23 -0
  656. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.cpp +221 -0
  657. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.h +53 -0
  658. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestArrays.rgs +23 -0
  659. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.cpp +699 -0
  660. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.h +138 -0
  661. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestMethods.rgs +23 -0
  662. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.cpp +23 -0
  663. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.h +41 -0
  664. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestNoIDispatch.rgs +23 -0
  665. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.cpp +256 -0
  666. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.h +88 -0
  667. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestProperties.rgs +23 -0
  668. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.cpp +23 -0
  669. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.h +43 -0
  670. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOff.rgs +23 -0
  671. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.cpp +29 -0
  672. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.h +45 -0
  673. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestScriptOn.rgs +23 -0
  674. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.cpp +177 -0
  675. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.h +50 -0
  676. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/nsXPCDispTestWrappedJS.rgs +23 -0
  677. data/vendor/tracemonkey/xpconnect/tests/idispatch/COM/resource.h +36 -0
  678. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Arrays/XPCIDispatchArrayTests.js +54 -0
  679. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Attributes/XPCIDispatchAttributeTests.js +150 -0
  680. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCIDispatchInstantiations.js +122 -0
  681. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/General/XPCStress.js +58 -0
  682. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/Methods/XPCIDispatchMethodTests.js +376 -0
  683. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedCOM/shell.js +377 -0
  684. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/General/XPCIDispatchTestWrappedJS.js +76 -0
  685. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/WrappedJS/shell.js +377 -0
  686. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/exectests.cmd +1 -0
  687. data/vendor/tracemonkey/xpconnect/tests/idispatch/Tests/jsDriver.pl +1288 -0
  688. data/vendor/tracemonkey/xpconnect/tests/idl/Makefile.in +61 -0
  689. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest.idl +312 -0
  690. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest2.idl +51 -0
  691. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_attributes.idl +67 -0
  692. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_calljs.idl +59 -0
  693. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_const.idl +61 -0
  694. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_domstring.idl +59 -0
  695. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_in.idl +88 -0
  696. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_inout.idl +86 -0
  697. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_multiple.idl +77 -0
  698. data/vendor/tracemonkey/xpconnect/tests/idl/xpctest_out.idl +142 -0
  699. data/vendor/tracemonkey/xpconnect/tests/js/checkid.js +82 -0
  700. data/vendor/tracemonkey/xpconnect/tests/js/evaluate.js +311 -0
  701. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-2.js +153 -0
  702. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-3.js +194 -0
  703. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-4.js +297 -0
  704. data/vendor/tracemonkey/xpconnect/tests/js/exceptions-5.js +343 -0
  705. data/vendor/tracemonkey/xpconnect/tests/js/exceptions.js +230 -0
  706. data/vendor/tracemonkey/xpconnect/tests/js/javascript.js +96 -0
  707. data/vendor/tracemonkey/xpconnect/tests/js/multiple-2.js +151 -0
  708. data/vendor/tracemonkey/xpconnect/tests/js/multiple-3.js +148 -0
  709. data/vendor/tracemonkey/xpconnect/tests/js/multiple-4.js +152 -0
  710. data/vendor/tracemonkey/xpconnect/tests/js/multiple.js +137 -0
  711. data/vendor/tracemonkey/xpconnect/tests/js/notscriptable.js +104 -0
  712. data/vendor/tracemonkey/xpconnect/tests/js/old/simpletest.js +36 -0
  713. data/vendor/tracemonkey/xpconnect/tests/js/old/speed.js +60 -0
  714. data/vendor/tracemonkey/xpconnect/tests/js/old/testxpc.js +464 -0
  715. data/vendor/tracemonkey/xpconnect/tests/js/old/threads.js +74 -0
  716. data/vendor/tracemonkey/xpconnect/tests/js/old/try.js +27 -0
  717. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_array.js +308 -0
  718. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_callcontext.js +68 -0
  719. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_echo.js +636 -0
  720. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_and_sort.js +28 -0
  721. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_constants.js +15 -0
  722. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_enum_create.js +200 -0
  723. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_exceptions.js +167 -0
  724. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_ids.js +135 -0
  725. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_observer.js +36 -0
  726. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_overloaded.js +14 -0
  727. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_primitives.js +141 -0
  728. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_propertybag.js +36 -0
  729. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant.js +339 -0
  730. data/vendor/tracemonkey/xpconnect/tests/js/old/xpctest_variant_array.js +30 -0
  731. data/vendor/tracemonkey/xpconnect/tests/js/readonlyattributes.js +74 -0
  732. data/vendor/tracemonkey/xpconnect/tests/js/readwriteattributes.js +101 -0
  733. data/vendor/tracemonkey/xpconnect/tests/js/scriptable.js +120 -0
  734. data/vendor/tracemonkey/xpconnect/tests/js/testin.js +203 -0
  735. data/vendor/tracemonkey/xpconnect/tests/js/xpcfun.js +234 -0
  736. data/vendor/tracemonkey/xpconnect/tests/js/xpctest_primitives.js +200 -0
  737. data/vendor/tracemonkey/xpconnect/tests/mochitest/Makefile.in +66 -0
  738. data/vendor/tracemonkey/xpconnect/tests/mochitest/bug500931_helper.html +7 -0
  739. data/vendor/tracemonkey/xpconnect/tests/mochitest/inner.html +7 -0
  740. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug361111.xul +29 -0
  741. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug384632.html +32 -0
  742. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug390488.html +65 -0
  743. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug393269.html +46 -0
  744. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug396851.html +43 -0
  745. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug428021.html +41 -0
  746. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug446584.html +49 -0
  747. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug448587.html +31 -0
  748. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug462428.html +42 -0
  749. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug478438.html +66 -0
  750. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484107.html +100 -0
  751. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug484459.html +36 -0
  752. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_bug500691.html +28 -0
  753. data/vendor/tracemonkey/xpconnect/tests/mochitest/test_wrappers.html +116 -0
  754. data/vendor/tracemonkey/xpconnect/tests/unit/bogus_element_type.jsm +1 -0
  755. data/vendor/tracemonkey/xpconnect/tests/unit/bogus_exports_type.jsm +1 -0
  756. data/vendor/tracemonkey/xpconnect/tests/unit/bug451678_subscript.js +2 -0
  757. data/vendor/tracemonkey/xpconnect/tests/unit/component_import.js +144 -0
  758. data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importA.jsm +44 -0
  759. data/vendor/tracemonkey/xpconnect/tests/unit/recursive_importB.jsm +45 -0
  760. data/vendor/tracemonkey/xpconnect/tests/unit/syntax_error.jsm +1 -0
  761. data/vendor/tracemonkey/xpconnect/tests/unit/test_bogus_files.js +88 -0
  762. data/vendor/tracemonkey/xpconnect/tests/unit/test_bug408412.js +51 -0
  763. data/vendor/tracemonkey/xpconnect/tests/unit/test_bug451678.js +52 -0
  764. data/vendor/tracemonkey/xpconnect/tests/unit/test_bug_442086.js +68 -0
  765. data/vendor/tracemonkey/xpconnect/tests/unit/test_import.js +127 -0
  766. data/vendor/tracemonkey/xpconnect/tests/unit/test_js_weak_references.js +63 -0
  767. data/vendor/tracemonkey/xpconnect/tests/unit/test_recursive_import.js +62 -0
  768. data/vendor/tracemonkey/xpconnect/tools/Makefile.in +49 -0
  769. data/vendor/tracemonkey/xpconnect/tools/idl/Makefile.in +53 -0
  770. data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsCompiler.idl +60 -0
  771. data/vendor/tracemonkey/xpconnect/tools/idl/nsIXPCToolsProfiler.idl +57 -0
  772. data/vendor/tracemonkey/xpconnect/tools/js/CompileJSFiles.js +28 -0
  773. data/vendor/tracemonkey/xpconnect/tools/js/ListJSFiles.js +18 -0
  774. data/vendor/tracemonkey/xpconnect/tools/src/Makefile.in +76 -0
  775. data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsCompiler.cpp +161 -0
  776. data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsModule.cpp +65 -0
  777. data/vendor/tracemonkey/xpconnect/tools/src/nsXPCToolsProfiler.cpp +370 -0
  778. data/vendor/tracemonkey/xpconnect/tools/src/xpctools_private.h +236 -0
  779. metadata +782 -107
  780. data/test/johnson/nodes/export_test.rb +0 -9
  781. data/test/johnson/nodes/import_test.rb +0 -13
  782. data/test/johnson/version_test.rb +0 -13
@@ -0,0 +1,62 @@
1
+ #
2
+ # ***** BEGIN LICENSE BLOCK *****
3
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
+ #
5
+ # The contents of this file are subject to the Mozilla Public License Version
6
+ # 1.1 (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ # http://www.mozilla.org/MPL/
9
+ #
10
+ # Software distributed under the License is distributed on an "AS IS" basis,
11
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
+ # for the specific language governing rights and limitations under the
13
+ # License.
14
+ #
15
+ # The Original Code is Mozilla Communicator client code, released
16
+ # March 31, 1998.
17
+ #
18
+ # The Initial Developer of the Original Code is
19
+ # Netscape Communications Corporation.
20
+ # Portions created by the Initial Developer are Copyright (C) 1998
21
+ # the Initial Developer. All Rights Reserved.
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # Alternatively, the contents of this file may be used under the terms of
26
+ # either the GNU General Public License Version 2 or later (the "GPL"), or
27
+ # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
+ # in which case the provisions of the GPL or the LGPL are applicable instead
29
+ # of those above. If you wish to allow use of your version of this file only
30
+ # under the terms of either the GPL or the LGPL, and not to allow others to
31
+ # use your version of this file under the terms of the MPL, indicate your
32
+ # decision by deleting the provisions above and replace them with the notice
33
+ # and other provisions required by the GPL or the LGPL. If you do not delete
34
+ # the provisions above, a recipient may use your version of this file under
35
+ # the terms of any one of the MPL, the GPL or the LGPL.
36
+ #
37
+ # ***** END LICENSE BLOCK *****
38
+
39
+ # JDK = /share/builds/components/jdk/1.1.6/OSF1
40
+
41
+ # INCLUDES += -I$(JDK)/include/java -I$(JDK)/include/java/alpha
42
+
43
+ # OTHER_LIBS += -L$(JDK)/lib/alpha -ljava
44
+
45
+ # XLDFLAGS += -taso
46
+
47
+ ifndef JDK_VERSION
48
+ JDK_VERSION = 1.2.2
49
+ endif
50
+
51
+ # jni.h #error's without this.
52
+ CFLAGS += -pthread
53
+
54
+ JDK = /share/builds/components/jdk/$(JDK_VERSION)/OSF1
55
+
56
+ # INCLUDES += -I$(JDK)/include -I$(JDK)/include/solaris
57
+ INCLUDES += -I$(JDK)/include/alpha -I$(JDK)/include
58
+
59
+ # XXX is this consistent with -pthread above?
60
+ OTHER_LIBS += -L$(JDK)/jre/lib/alpha/native_threads
61
+ OTHER_LIBS += -L$(JDK)/jre/lib/alpha/classic
62
+ OTHER_LIBS += -L$(JDK)/jre/lib/alpha -ljava -ljvm
@@ -0,0 +1,55 @@
1
+ # -*- Mode: makefile -*-
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 the GNU General Public License Version 2 or later (the "GPL"), or
28
+ # 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
+ # Change these to the current platform settings!!!
41
+
42
+ ifndef JDK_VERSION
43
+ JDK_VERSION = 1.2.2
44
+ endif
45
+
46
+ JDK = /share/builds/components/jdk/$(JDK_VERSION)/SunOS
47
+
48
+ # INCLUDES += -I$(JDK)/include -I$(JDK)/include/solaris
49
+ INCLUDES += -I$(JDK)/include/solaris -I$(JDK)/include
50
+
51
+ OTHER_LIBS += -L$(JDK)/jre/lib/sparc/native_threads
52
+ OTHER_LIBS += -L$(JDK)/jre/lib/sparc/classic
53
+ OTHER_LIBS += -L$(JDK)/jre/lib/sparc -ljava -ljvm
54
+
55
+
@@ -0,0 +1,39 @@
1
+ #
2
+ # ***** BEGIN LICENSE BLOCK *****
3
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
+ #
5
+ # The contents of this file are subject to the Mozilla Public License Version
6
+ # 1.1 (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ # http://www.mozilla.org/MPL/
9
+ #
10
+ # Software distributed under the License is distributed on an "AS IS" basis,
11
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
+ # for the specific language governing rights and limitations under the
13
+ # License.
14
+ #
15
+ # The Original Code is Mozilla Communicator client code, released
16
+ # March 31, 1998.
17
+ #
18
+ # The Initial Developer of the Original Code is
19
+ # Netscape Communications Corporation.
20
+ # Portions created by the Initial Developer are Copyright (C) 1998
21
+ # the Initial Developer. All Rights Reserved.
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # Alternatively, the contents of this file may be used under the terms of
26
+ # either the GNU General Public License Version 2 or later (the "GPL"), or
27
+ # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
+ # in which case the provisions of the GPL or the LGPL are applicable instead
29
+ # of those above. If you wish to allow use of your version of this file only
30
+ # under the terms of either the GPL or the LGPL, and not to allow others to
31
+ # use your version of this file under the terms of the MPL, indicate your
32
+ # decision by deleting the provisions above and replace them with the notice
33
+ # and other provisions required by the GPL or the LGPL. If you do not delete
34
+ # the provisions above, a recipient may use your version of this file under
35
+ # the terms of any one of the MPL, the GPL or the LGPL.
36
+ #
37
+ # ***** END LICENSE BLOCK *****
38
+
39
+ include $(DEPTH)/liveconnect/config/SunOS5.5.1.mk
@@ -0,0 +1,39 @@
1
+ #
2
+ # ***** BEGIN LICENSE BLOCK *****
3
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
+ #
5
+ # The contents of this file are subject to the Mozilla Public License Version
6
+ # 1.1 (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ # http://www.mozilla.org/MPL/
9
+ #
10
+ # Software distributed under the License is distributed on an "AS IS" basis,
11
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
+ # for the specific language governing rights and limitations under the
13
+ # License.
14
+ #
15
+ # The Original Code is Mozilla Communicator client code, released
16
+ # March 31, 1998.
17
+ #
18
+ # The Initial Developer of the Original Code is
19
+ # Netscape Communications Corporation.
20
+ # Portions created by the Initial Developer are Copyright (C) 1998
21
+ # the Initial Developer. All Rights Reserved.
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # Alternatively, the contents of this file may be used under the terms of
26
+ # either the GNU General Public License Version 2 or later (the "GPL"), or
27
+ # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
+ # in which case the provisions of the GPL or the LGPL are applicable instead
29
+ # of those above. If you wish to allow use of your version of this file only
30
+ # under the terms of either the GPL or the LGPL, and not to allow others to
31
+ # use your version of this file under the terms of the MPL, indicate your
32
+ # decision by deleting the provisions above and replace them with the notice
33
+ # and other provisions required by the GPL or the LGPL. If you do not delete
34
+ # the provisions above, a recipient may use your version of this file under
35
+ # the terms of any one of the MPL, the GPL or the LGPL.
36
+ #
37
+ # ***** END LICENSE BLOCK *****
38
+
39
+ include $(DEPTH)/liveconnect/config/SunOS5.5.1.mk
@@ -0,0 +1,39 @@
1
+ #
2
+ # ***** BEGIN LICENSE BLOCK *****
3
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
+ #
5
+ # The contents of this file are subject to the Mozilla Public License Version
6
+ # 1.1 (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ # http://www.mozilla.org/MPL/
9
+ #
10
+ # Software distributed under the License is distributed on an "AS IS" basis,
11
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
+ # for the specific language governing rights and limitations under the
13
+ # License.
14
+ #
15
+ # The Original Code is Mozilla Communicator client code, released
16
+ # March 31, 1998.
17
+ #
18
+ # The Initial Developer of the Original Code is
19
+ # Netscape Communications Corporation.
20
+ # Portions created by the Initial Developer are Copyright (C) 1998
21
+ # the Initial Developer. All Rights Reserved.
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # Alternatively, the contents of this file may be used under the terms of
26
+ # either the GNU General Public License Version 2 or later (the "GPL"), or
27
+ # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
+ # in which case the provisions of the GPL or the LGPL are applicable instead
29
+ # of those above. If you wish to allow use of your version of this file only
30
+ # under the terms of either the GPL or the LGPL, and not to allow others to
31
+ # use your version of this file under the terms of the MPL, indicate your
32
+ # decision by deleting the provisions above and replace them with the notice
33
+ # and other provisions required by the GPL or the LGPL. If you do not delete
34
+ # the provisions above, a recipient may use your version of this file under
35
+ # the terms of any one of the MPL, the GPL or the LGPL.
36
+ #
37
+ # ***** END LICENSE BLOCK *****
38
+
39
+ include $(DEPTH)/liveconnect/config/SunOS5.5.1.mk
@@ -0,0 +1,53 @@
1
+ #
2
+ # ***** BEGIN LICENSE BLOCK *****
3
+ # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
+ #
5
+ # The contents of this file are subject to the Mozilla Public License Version
6
+ # 1.1 (the "License"); you may not use this file except in compliance with
7
+ # the License. You may obtain a copy of the License at
8
+ # http://www.mozilla.org/MPL/
9
+ #
10
+ # Software distributed under the License is distributed on an "AS IS" basis,
11
+ # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
+ # for the specific language governing rights and limitations under the
13
+ # License.
14
+ #
15
+ # The Original Code is Mozilla Communicator client code, released
16
+ # March 31, 1998.
17
+ #
18
+ # The Initial Developer of the Original Code is
19
+ # Netscape Communications Corporation.
20
+ # Portions created by the Initial Developer are Copyright (C) 1998
21
+ # the Initial Developer. All Rights Reserved.
22
+ #
23
+ # Contributor(s):
24
+ #
25
+ # Alternatively, the contents of this file may be used under the terms of
26
+ # either the GNU General Public License Version 2 or later (the "GPL"), or
27
+ # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28
+ # in which case the provisions of the GPL or the LGPL are applicable instead
29
+ # of those above. If you wish to allow use of your version of this file only
30
+ # under the terms of either the GPL or the LGPL, and not to allow others to
31
+ # use your version of this file under the terms of the MPL, indicate your
32
+ # decision by deleting the provisions above and replace them with the notice
33
+ # and other provisions required by the GPL or the LGPL. If you do not delete
34
+ # the provisions above, a recipient may use your version of this file under
35
+ # the terms of any one of the MPL, the GPL or the LGPL.
36
+ #
37
+ # ***** END LICENSE BLOCK *****
38
+
39
+ ifeq ($(JDKVER),1_2_2)
40
+
41
+ JDK = c:/jdk1.2.2
42
+ OTHER_LIBS += $(JDK)/lib/jvm.lib ../$(OBJDIR)/js32.lib
43
+
44
+ else
45
+
46
+ JDK = c:/jdk1.1.8
47
+ OTHER_LIBS += $(JDK)/lib/javai.lib ../$(OBJDIR)/js32.lib
48
+
49
+ endif
50
+
51
+ INCLUDES += -I$(JDK)/include -I$(JDK)/include/win32
52
+
53
+ JSDLL_CFLAGS =
@@ -0,0 +1,886 @@
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
+ * This file is part of the Java-vendor-neutral implementation of LiveConnect
42
+ *
43
+ * It contains the top-level initialization code and the implementation of the
44
+ * public API.
45
+ *
46
+ */
47
+
48
+ #include <stdlib.h>
49
+ #include <string.h>
50
+
51
+ #include "jsj_private.h" /* LiveConnect internals */
52
+ #include "jsjava.h" /* LiveConnect external API */
53
+
54
+ #ifdef JSJ_THREADSAFE
55
+ # include "prmon.h"
56
+ #endif
57
+
58
+ JSBool jsj_JSIsCallingApplet = JS_FALSE;
59
+
60
+ /*
61
+ * At certain times during initialization, there may be no JavaScript context
62
+ * available to direct error reports to, in which case the error messages
63
+ * are sent to this function. The caller is responsible for free'ing
64
+ * the js_error_msg argument.
65
+ */
66
+ static void
67
+ report_java_initialization_error(JNIEnv *jEnv, const char *js_error_msg)
68
+ {
69
+ const char *error_msg, *java_error_msg;
70
+
71
+ java_error_msg = NULL;
72
+
73
+ if (jEnv) {
74
+ java_error_msg = jsj_GetJavaErrorMessage(jEnv);
75
+ (*jEnv)->ExceptionClear(jEnv);
76
+ }
77
+
78
+ if (java_error_msg) {
79
+ error_msg = JS_smprintf("initialization error: %s (%s)\n",
80
+ js_error_msg, java_error_msg);
81
+ free((void*)java_error_msg);
82
+ } else {
83
+ error_msg = JS_smprintf("initialization error: %s\n",
84
+ js_error_msg);
85
+ }
86
+
87
+ jsj_LogError(error_msg);
88
+ JS_smprintf_free((char*)error_msg);
89
+ }
90
+
91
+ /*
92
+ * Opaque JVM handles to Java classes and methods required for Java reflection.
93
+ * These are computed and cached during initialization.
94
+ */
95
+
96
+ jclass jlObject; /* java.lang.Object */
97
+ jclass jlrMethod; /* java.lang.reflect.Method */
98
+ jclass jlrField; /* java.lang.reflect.Field */
99
+ jclass jlrArray; /* java.lang.reflect.Array */
100
+ jclass jlVoid; /* java.lang.Void */
101
+ jclass jlrConstructor; /* java.lang.reflect.Constructor */
102
+ jclass jlThrowable; /* java.lang.Throwable */
103
+ jclass jlSystem; /* java.lang.System */
104
+ jclass jlClass; /* java.lang.Class */
105
+ jclass jlBoolean; /* java.lang.Boolean */
106
+ jclass jlDouble; /* java.lang.Double */
107
+ jclass jlString; /* java.lang.String */
108
+ jclass jaApplet; /* java.applet.Applet */
109
+ jclass njJSObject; /* netscape.javascript.JSObject */
110
+ jclass njJSException; /* netscape.javascript.JSException */
111
+ jclass njJSUtil; /* netscape.javascript.JSUtil */
112
+
113
+ jmethodID jlClass_getMethods; /* java.lang.Class.getMethods() */
114
+ jmethodID jlClass_getConstructors; /* java.lang.Class.getConstructors() */
115
+ jmethodID jlClass_getFields; /* java.lang.Class.getFields() */
116
+ jmethodID jlClass_getName; /* java.lang.Class.getName() */
117
+ jmethodID jlClass_getComponentType; /* java.lang.Class.getComponentType() */
118
+ jmethodID jlClass_getModifiers; /* java.lang.Class.getModifiers() */
119
+ jmethodID jlClass_isArray; /* java.lang.Class.isArray() */
120
+
121
+ jmethodID jlrMethod_getName; /* java.lang.reflect.Method.getName() */
122
+ jmethodID jlrMethod_getParameterTypes; /* java.lang.reflect.Method.getParameterTypes() */
123
+ jmethodID jlrMethod_getReturnType; /* java.lang.reflect.Method.getReturnType() */
124
+ jmethodID jlrMethod_getModifiers; /* java.lang.reflect.Method.getModifiers() */
125
+
126
+ jmethodID jlrConstructor_getParameterTypes; /* java.lang.reflect.Constructor.getParameterTypes() */
127
+ jmethodID jlrConstructor_getModifiers; /* java.lang.reflect.Constructor.getModifiers() */
128
+
129
+ jmethodID jlrField_getName; /* java.lang.reflect.Field.getName() */
130
+ jmethodID jlrField_getType; /* java.lang.reflect.Field.getType() */
131
+ jmethodID jlrField_getModifiers; /* java.lang.reflect.Field.getModifiers() */
132
+
133
+ jmethodID jlrArray_newInstance; /* java.lang.reflect.Array.newInstance() */
134
+
135
+ jmethodID jlBoolean_Boolean; /* java.lang.Boolean constructor */
136
+ jmethodID jlBoolean_booleanValue; /* java.lang.Boolean.booleanValue() */
137
+ jmethodID jlDouble_Double; /* java.lang.Double constructor */
138
+ jmethodID jlDouble_doubleValue; /* java.lang.Double.doubleValue() */
139
+
140
+ jmethodID jlThrowable_toString; /* java.lang.Throwable.toString() */
141
+ jmethodID jlThrowable_getMessage; /* java.lang.Throwable.getMessage() */
142
+
143
+ jmethodID jlSystem_identityHashCode; /* java.lang.System.identityHashCode() */
144
+
145
+ jobject jlVoid_TYPE; /* java.lang.Void.TYPE value */
146
+
147
+ jmethodID njJSException_JSException; /* netscape.javascript.JSException constructor */
148
+ jmethodID njJSException_JSException_wrap;/*netscape.javascript.JSException alternate constructor */
149
+ jmethodID njJSObject_JSObject; /* netscape.javascript.JSObject constructor */
150
+ jmethodID njJSUtil_getStackTrace; /* netscape.javascript.JSUtil.getStackTrace() */
151
+ jfieldID njJSObject_internal; /* netscape.javascript.JSObject.internal */
152
+ jfieldID njJSObject_long_internal; /* netscape.javascript.JSObject.long_internal */
153
+ jfieldID njJSException_lineno; /* netscape.javascript.JSException.lineno */
154
+ jfieldID njJSException_tokenIndex; /* netscape.javascript.JSException.tokenIndex */
155
+ jfieldID njJSException_source; /* netscape.javascript.JSException.source */
156
+ jfieldID njJSException_filename; /* netscape.javascript.JSException.filename */
157
+ jfieldID njJSException_wrappedExceptionType; /* netscape.javascript.JSException.wrappedExceptionType */
158
+ jfieldID njJSException_wrappedException; /* netscape.javascript.JSException.wrappedException */
159
+
160
+ /* Obtain a reference to a Java class */
161
+ #define LOAD_CLASS(qualified_name, class) \
162
+ { \
163
+ jclass _##class = (*jEnv)->FindClass(jEnv, #qualified_name); \
164
+ if (_##class == 0) { \
165
+ (*jEnv)->ExceptionClear(jEnv); \
166
+ report_java_initialization_error(jEnv, \
167
+ "Can't load class " #qualified_name); \
168
+ return JS_FALSE; \
169
+ } \
170
+ class = (*jEnv)->NewGlobalRef(jEnv, _##class); \
171
+ (*jEnv)->DeleteLocalRef(jEnv, _##class); \
172
+ }
173
+
174
+ /* Obtain a methodID reference to a Java method or constructor */
175
+ #define _LOAD_METHOD(qualified_class, method, mvar, signature, class, is_static)\
176
+ if (is_static) { \
177
+ class##_##mvar = \
178
+ (*jEnv)->GetStaticMethodID(jEnv, class, #method, signature); \
179
+ } else { \
180
+ class##_##mvar = \
181
+ (*jEnv)->GetMethodID(jEnv, class, #method, signature); \
182
+ } \
183
+ if (class##_##mvar == 0) { \
184
+ (*jEnv)->ExceptionClear(jEnv); \
185
+ report_java_initialization_error(jEnv, \
186
+ "Can't get mid for " #qualified_class "." #method "()"); \
187
+ return JS_FALSE; \
188
+ }
189
+
190
+ /* Obtain a methodID reference to a Java instance method */
191
+ #define LOAD_METHOD(qualified_class, method, signature, class) \
192
+ _LOAD_METHOD(qualified_class, method, method, signature, class, JS_FALSE)
193
+
194
+ /* Obtain a methodID reference to a Java static method */
195
+ #define LOAD_STATIC_METHOD(qualified_class, method, signature, class) \
196
+ _LOAD_METHOD(qualified_class, method, method, signature, class, JS_TRUE)
197
+
198
+ /* Obtain a methodID reference to a Java constructor */
199
+ #define LOAD_CONSTRUCTOR(qualified_class, method, signature, class) \
200
+ _LOAD_METHOD(qualified_class,<init>, method, signature, class, JS_FALSE)
201
+
202
+ /* Obtain a fieldID reference to a Java instance or static field */
203
+ #define _LOAD_FIELDID(qualified_class, field, signature, class, is_static) \
204
+ if (is_static) { \
205
+ class##_##field = (*jEnv)->GetStaticFieldID(jEnv, class, #field, signature);\
206
+ } else { \
207
+ class##_##field = (*jEnv)->GetFieldID(jEnv, class, #field, signature);\
208
+ } \
209
+ if (class##_##field == 0) { \
210
+ (*jEnv)->ExceptionClear(jEnv); \
211
+ report_java_initialization_error(jEnv, \
212
+ "Can't get fid for " #qualified_class "." #field); \
213
+ return JS_FALSE; \
214
+ }
215
+
216
+ /* Obtain a fieldID reference to a Java instance field */
217
+ #define LOAD_FIELDID(qualified_class, field, signature, class) \
218
+ _LOAD_FIELDID(qualified_class, field, signature, class, JS_FALSE)
219
+
220
+ /* Obtain the value of a static field in a Java class */
221
+ #define LOAD_FIELD_VAL(qualified_class, field, signature, class, type) \
222
+ { \
223
+ jfieldID field_id; \
224
+ field_id = (*jEnv)->GetStaticFieldID(jEnv, class, #field, signature);\
225
+ if (field_id == 0) { \
226
+ report_java_initialization_error(jEnv, \
227
+ "Can't get fid for " #qualified_class "." #field); \
228
+ return JS_FALSE; \
229
+ } \
230
+ class##_##field = \
231
+ (*jEnv)->GetStatic##type##Field(jEnv, class, field_id); \
232
+ if (class##_##field == 0) { \
233
+ (*jEnv)->ExceptionClear(jEnv); \
234
+ report_java_initialization_error(jEnv, \
235
+ "Can't read static field " #qualified_class "." #field); \
236
+ return JS_FALSE; \
237
+ } \
238
+ }
239
+
240
+ /* Obtain the value of a static field in a Java class, which is known to
241
+ contain an object value. */
242
+ #define LOAD_FIELD_OBJ(qualified_class, field, signature, class) \
243
+ LOAD_FIELD_VAL(qualified_class, field, signature, class, Object); \
244
+ class##_##field = (*jEnv)->NewGlobalRef(jEnv, class##_##field);
245
+
246
+ /*
247
+ * Load the Java classes, and the method and field descriptors required for Java reflection.
248
+ * Returns JS_TRUE on success, JS_FALSE on failure.
249
+ */
250
+ static JSBool
251
+ init_java_VM_reflection(JSJavaVM *jsjava_vm, JNIEnv *jEnv)
252
+ {
253
+ /* Load Java system classes and method, including java.lang.reflect classes */
254
+ LOAD_CLASS(java/lang/Object, jlObject);
255
+ LOAD_CLASS(java/lang/Class, jlClass);
256
+ LOAD_CLASS(java/lang/reflect/Method, jlrMethod);
257
+ LOAD_CLASS(java/lang/reflect/Constructor, jlrConstructor);
258
+ LOAD_CLASS(java/lang/reflect/Field, jlrField);
259
+ LOAD_CLASS(java/lang/reflect/Array, jlrArray);
260
+ LOAD_CLASS(java/lang/Throwable, jlThrowable);
261
+ LOAD_CLASS(java/lang/System, jlSystem);
262
+ LOAD_CLASS(java/lang/Boolean, jlBoolean);
263
+ LOAD_CLASS(java/lang/Double, jlDouble);
264
+ LOAD_CLASS(java/lang/String, jlString);
265
+ LOAD_CLASS(java/lang/Void, jlVoid);
266
+
267
+ LOAD_CLASS(java/applet/Applet, jaApplet);
268
+
269
+ LOAD_METHOD(java.lang.Class, getMethods, "()[Ljava/lang/reflect/Method;",jlClass);
270
+ LOAD_METHOD(java.lang.Class, getConstructors, "()[Ljava/lang/reflect/Constructor;",jlClass);
271
+ LOAD_METHOD(java.lang.Class, getFields, "()[Ljava/lang/reflect/Field;", jlClass);
272
+ LOAD_METHOD(java.lang.Class, getName, "()Ljava/lang/String;", jlClass);
273
+ LOAD_METHOD(java.lang.Class, isArray, "()Z", jlClass);
274
+ LOAD_METHOD(java.lang.Class, getComponentType, "()Ljava/lang/Class;", jlClass);
275
+ LOAD_METHOD(java.lang.Class, getModifiers, "()I", jlClass);
276
+
277
+ LOAD_METHOD(java.lang.reflect.Method, getName, "()Ljava/lang/String;", jlrMethod);
278
+ LOAD_METHOD(java.lang.reflect.Method, getParameterTypes, "()[Ljava/lang/Class;", jlrMethod);
279
+ LOAD_METHOD(java.lang.reflect.Method, getReturnType, "()Ljava/lang/Class;", jlrMethod);
280
+ LOAD_METHOD(java.lang.reflect.Method, getModifiers, "()I", jlrMethod);
281
+
282
+ LOAD_METHOD(java.lang.reflect.Constructor, getParameterTypes, "()[Ljava/lang/Class;", jlrConstructor);
283
+ LOAD_METHOD(java.lang.reflect.Constructor, getModifiers, "()I", jlrConstructor);
284
+
285
+ LOAD_METHOD(java.lang.reflect.Field, getName, "()Ljava/lang/String;", jlrField);
286
+ LOAD_METHOD(java.lang.reflect.Field, getType, "()Ljava/lang/Class;", jlrField);
287
+ LOAD_METHOD(java.lang.reflect.Field, getModifiers, "()I", jlrField);
288
+
289
+ LOAD_STATIC_METHOD(java.lang.reflect.Array,
290
+ newInstance, "(Ljava/lang/Class;I)Ljava/lang/Object;",jlrArray);
291
+
292
+ LOAD_METHOD(java.lang.Throwable, toString, "()Ljava/lang/String;", jlThrowable);
293
+ LOAD_METHOD(java.lang.Throwable, getMessage, "()Ljava/lang/String;", jlThrowable);
294
+
295
+ LOAD_METHOD(java.lang.Double, doubleValue, "()D", jlDouble);
296
+
297
+ LOAD_METHOD(java.lang.Boolean, booleanValue, "()Z", jlBoolean);
298
+
299
+ LOAD_STATIC_METHOD(java.lang.System, identityHashCode, "(Ljava/lang/Object;)I", jlSystem);
300
+
301
+ LOAD_CONSTRUCTOR(java.lang.Boolean, Boolean, "(Z)V", jlBoolean);
302
+ LOAD_CONSTRUCTOR(java.lang.Double, Double, "(D)V", jlDouble);
303
+
304
+ LOAD_FIELD_OBJ(java.lang.Void, TYPE, "Ljava/lang/Class;", jlVoid);
305
+
306
+ return JS_TRUE;
307
+ }
308
+
309
+ #if !defined(OJI)
310
+
311
+ /**
312
+ * Workaround for the fact that MRJ loads a different instance of the shared library.
313
+ */
314
+
315
+ #include "netscape_javascript_JSObject.h"
316
+
317
+ /* Manually load the required native methods. */
318
+ static JSBool
319
+ JSObject_RegisterNativeMethods(JNIEnv* jEnv)
320
+ {
321
+
322
+ static JNINativeMethod nativeMethods[] = {
323
+ {"initClass", "()V", (void*)&Java_netscape_javascript_JSObject_initClass},
324
+
325
+ #ifndef OJI
326
+ {"getMember", "(Ljava/lang/String;)Ljava/lang/Object;", (void*)&Java_netscape_javascript_JSObject_getMember},
327
+ {"getSlot", "(I)Ljava/lang/Object;", (void*)&Java_netscape_javascript_JSObject_getSlot},
328
+ {"setMember", "(Ljava/lang/String;Ljava/lang/Object;)V", (void*)&Java_netscape_javascript_JSObject_setMember},
329
+ {"setSlot", "(ILjava/lang/Object;)V", (void*)&Java_netscape_javascript_JSObject_setSlot},
330
+ {"removeMember", "(Ljava/lang/String;)V", (void*)&Java_netscape_javascript_JSObject_removeMember},
331
+ {"call", "(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/Object;", (void*)&Java_netscape_javascript_JSObject_call},
332
+ {"eval", "(Ljava/lang/String;)Ljava/lang/Object;", (void*)&Java_netscape_javascript_JSObject_eval},
333
+
334
+ {"toString", "()Ljava/lang/String;", (void*)&Java_netscape_javascript_JSObject_toString},
335
+ {"getWindow", "(Ljava/applet/Applet;)Lnetscape/javascript/JSObject;", (void*)&Java_netscape_javascript_JSObject_getWindow},
336
+ {"finalize", "()V", (void*)&Java_netscape_javascript_JSObject_finalize},
337
+ {"equals", "(Ljava/lang/Object;)Z", (void*)&Java_netscape_javascript_JSObject_equals}
338
+ #endif /* !OJI */
339
+
340
+ };
341
+ (*jEnv)->RegisterNatives(jEnv, njJSObject, nativeMethods, sizeof(nativeMethods) / sizeof(JNINativeMethod));
342
+ if ((*jEnv)->ExceptionOccurred(jEnv)) {
343
+ report_java_initialization_error(jEnv, "Couldn't initialize JSObject native methods.");
344
+ (*jEnv)->ExceptionClear(jEnv);
345
+ return JS_FALSE;
346
+ }
347
+ /* Call the initClass method */
348
+ Java_netscape_javascript_JSObject_initClass(jEnv, njJSObject);
349
+ return JS_TRUE;
350
+ }
351
+
352
+ #endif
353
+
354
+ /* Load Netscape-specific Java extension classes, methods, and fields */
355
+ static JSBool
356
+ init_netscape_java_classes(JSJavaVM *jsjava_vm, JNIEnv *jEnv)
357
+ {
358
+ LOAD_CLASS(netscape/javascript/JSObject, njJSObject);
359
+ LOAD_CLASS(netscape/javascript/JSException, njJSException);
360
+ LOAD_CLASS(netscape/javascript/JSUtil, njJSUtil);
361
+
362
+ #if !defined(OJI)
363
+ JSObject_RegisterNativeMethods(jEnv);
364
+ #endif
365
+
366
+ #ifndef OJI
367
+ LOAD_CONSTRUCTOR(netscape.javascript.JSObject,
368
+ JSObject, "(I)V", njJSObject);
369
+ #endif
370
+ LOAD_CONSTRUCTOR(netscape.javascript.JSException,
371
+ JSException, "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;I)V",
372
+ njJSException);
373
+
374
+ /* Load second constructor for wrapping JS exception objects inside JSExceptions */
375
+ _LOAD_METHOD(netscape.javascript.JSException,<init>,
376
+ JSException_wrap, "(ILjava/lang/Object;)V",
377
+ njJSException, JS_FALSE);
378
+
379
+ #ifndef OJI
380
+ LOAD_FIELDID(netscape.javascript.JSObject,
381
+ internal, "I", njJSObject);
382
+ #endif
383
+ LOAD_FIELDID(netscape.javascript.JSException,
384
+ lineno, "I", njJSException);
385
+ LOAD_FIELDID(netscape.javascript.JSException,
386
+ tokenIndex, "I", njJSException);
387
+ LOAD_FIELDID(netscape.javascript.JSException,
388
+ source, "Ljava/lang/String;", njJSException);
389
+ LOAD_FIELDID(netscape.javascript.JSException,
390
+ filename, "Ljava/lang/String;", njJSException);
391
+ LOAD_FIELDID(netscape.javascript.JSException, wrappedExceptionType, "I",
392
+ njJSException);
393
+ LOAD_FIELDID(netscape.javascript.JSException, wrappedException,
394
+ "Ljava/lang/Object;", njJSException);
395
+
396
+ LOAD_STATIC_METHOD(netscape.javascript.JSUtil,
397
+ getStackTrace, "(Ljava/lang/Throwable;)Ljava/lang/String;",
398
+ njJSUtil);
399
+
400
+ return JS_TRUE;
401
+ }
402
+
403
+ JSJavaVM *jsjava_vm_list = NULL;
404
+
405
+ static JSJavaThreadState *thread_list = NULL;
406
+
407
+ #ifdef JSJ_THREADSAFE
408
+ static PRMonitor *thread_list_monitor = NULL;
409
+ #endif
410
+
411
+ /*
412
+ * Called once per Java VM, this function initializes the classes, fields, and
413
+ * methods required for Java reflection. If java_vm is NULL, a new Java VM is
414
+ * created, using the provided classpath in addition to any default classpath.
415
+ * The classpath argument is ignored, however, if java_vm_arg is non-NULL.
416
+ */
417
+ JSJavaVM *
418
+ JSJ_ConnectToJavaVM(SystemJavaVM *java_vm_arg, void* initargs)
419
+ {
420
+ SystemJavaVM* java_vm;
421
+ JSJavaVM *jsjava_vm;
422
+ JNIEnv *jEnv;
423
+
424
+ JS_ASSERT(JSJ_callbacks);
425
+ JS_ASSERT(JSJ_callbacks->attach_current_thread);
426
+ JS_ASSERT(JSJ_callbacks->detach_current_thread);
427
+ JS_ASSERT(JSJ_callbacks->get_java_vm);
428
+
429
+ jsjava_vm = (JSJavaVM*)malloc(sizeof(JSJavaVM));
430
+ if (!jsjava_vm)
431
+ return NULL;
432
+ memset(jsjava_vm, 0, sizeof(JSJavaVM));
433
+
434
+ java_vm = java_vm_arg;
435
+
436
+ /* If a Java VM was passed in, try to attach to it on the current thread. */
437
+ if (java_vm) {
438
+ jEnv = JSJ_callbacks->attach_current_thread(java_vm);
439
+ if (jEnv == NULL) {
440
+ jsj_LogError("Failed to attach to Java VM thread\n");
441
+ free(jsjava_vm);
442
+ return NULL;
443
+ }
444
+
445
+ jsjava_vm->java_vm = java_vm;
446
+ jsjava_vm->main_thread_env = jEnv;
447
+ } else {
448
+ jsjava_vm->init_args = initargs;
449
+ }
450
+
451
+ #ifdef JSJ_THREADSAFE
452
+ if (jsjava_vm_list == NULL) {
453
+ thread_list_monitor =
454
+ (struct PRMonitor *) PR_NewMonitor();
455
+ }
456
+ #endif /* JSJ_THREADSAFE */
457
+
458
+ /* Put this VM on the list of all created VMs */
459
+ jsjava_vm->next = jsjava_vm_list;
460
+ jsjava_vm_list = jsjava_vm;
461
+
462
+ return jsjava_vm;
463
+ }
464
+
465
+ /* Completes a lazy connection to the host Java VM. */
466
+ static JSBool
467
+ jsj_ConnectToJavaVM(JSJavaVM *jsjava_vm)
468
+ {
469
+ if (!jsjava_vm->java_vm) {
470
+ JSBool ok;
471
+ JS_ASSERT(JSJ_callbacks->create_java_vm);
472
+ JS_ASSERT(JSJ_callbacks->destroy_java_vm);
473
+
474
+ ok = JSJ_callbacks->create_java_vm(&jsjava_vm->java_vm,
475
+ &jsjava_vm->main_thread_env,
476
+ jsjava_vm->init_args);
477
+ if (!ok) {
478
+ jsj_LogError("Failed to create Java VM\n");
479
+ return JS_FALSE;
480
+ }
481
+
482
+ /* Remember that we created the VM so that we know to destroy it later */
483
+ jsjava_vm->jsj_created_java_vm = JS_TRUE;
484
+ }
485
+
486
+ if (!jsjava_vm->jsj_inited_java_vm) {
487
+ /*
488
+ * JVM initialization for netscape.javascript.JSObject is performed
489
+ * independently of the other classes that are initialized in
490
+ * init_java_VM_reflection, because we allow it to fail. In the case
491
+ * of failure, LiveConnect is still operative, but only when calling
492
+ * from JS to Java and not vice-versa.
493
+ */
494
+ init_netscape_java_classes(jsjava_vm, jsjava_vm->main_thread_env);
495
+
496
+ /* Load the Java classes, and the method and field descriptors required for
497
+ Java reflection. */
498
+ if (!init_java_VM_reflection(jsjava_vm, jsjava_vm->main_thread_env) ||
499
+ !jsj_InitJavaObjReflectionsTable()) {
500
+ jsj_LogError("LiveConnect was unable to reflect one or more components of the Java runtime.\nGo to http://bugzilla.mozilla.org/show_bug.cgi?id=5369 for details.\n");
501
+ /* This function crashes when called from here.
502
+ Check that all the preconditions for this
503
+ call are satisfied before making it. [jd]
504
+ JSJ_DisconnectFromJavaVM(jsjava_vm); */
505
+ return JS_FALSE;
506
+ }
507
+
508
+ jsjava_vm->jsj_inited_java_vm = JS_TRUE;
509
+ }
510
+
511
+ return JS_TRUE;
512
+ }
513
+
514
+ JSJCallbacks *JSJ_callbacks = NULL;
515
+
516
+ /* Called once to set up callbacks for all instances of LiveConnect */
517
+ void
518
+ JSJ_Init(JSJCallbacks *callbacks)
519
+ {
520
+ JS_ASSERT(callbacks);
521
+ JSJ_callbacks = callbacks;
522
+ }
523
+
524
+ /*
525
+ * Initialize the provided JSContext by setting up the JS classes necessary for
526
+ * reflection and by defining JavaPackage objects for the default Java packages
527
+ * as properties of global_obj. Additional packages may be pre-defined by
528
+ * setting the predefined_packages argument. (Pre-defining a Java package at
529
+ * initialization time is not necessary, but it will make package lookup faster
530
+ * and, more importantly, will avoid unnecessary network accesses if classes
531
+ * are being loaded over the network.)
532
+ */
533
+ JSBool
534
+ JSJ_InitJSContext(JSContext *cx, JSObject *global_obj,
535
+ JavaPackageDef *predefined_packages)
536
+ {
537
+ /* Initialize the JavaScript classes used for reflection */
538
+ if (!jsj_init_JavaObject(cx, global_obj))
539
+ return JS_FALSE;
540
+
541
+ /* if (!jsj_init_JavaMember(cx, global_obj))
542
+ return JS_FALSE; */
543
+
544
+ if (!jsj_init_JavaPackage(cx, global_obj, predefined_packages))
545
+ return JS_FALSE;
546
+
547
+ if (!jsj_init_JavaClass(cx, global_obj))
548
+ return JS_FALSE;
549
+
550
+ if (!jsj_init_JavaArray(cx, global_obj))
551
+ return JS_FALSE;
552
+
553
+ if (!jsj_init_JavaMember(cx, global_obj))
554
+ return JS_FALSE;
555
+
556
+ return JS_TRUE;
557
+ }
558
+
559
+ /* Eliminate a reference to a Java class */
560
+ #define UNLOAD_CLASS(qualified_name, class) \
561
+ if (class) { \
562
+ (*jEnv)->DeleteGlobalRef(jEnv, class); \
563
+ class = NULL; \
564
+ }
565
+
566
+ /*
567
+ * This routine severs the connection to a Java VM, freeing all related resources.
568
+ * It shouldn't be called until the global scope has been cleared in all related
569
+ * JSContexts (so that all LiveConnect objects are finalized) and a JavaScript
570
+ * GC is performed. Otherwise, accessed to free'ed memory could result.
571
+ */
572
+ void
573
+ JSJ_DisconnectFromJavaVM(JSJavaVM *jsjava_vm)
574
+ {
575
+ SystemJavaVM *java_vm;
576
+ JSJavaVM *j, **jp;
577
+
578
+ /* Since JSJ_ConnectToJavaVM is now lazy */
579
+ java_vm = jsjava_vm->java_vm;
580
+ if (java_vm) {
581
+ JNIEnv *jEnv = jsjava_vm->main_thread_env;
582
+
583
+ /* Drop all references to Java objects and classes */
584
+ jsj_DiscardJavaObjReflections(jEnv);
585
+ jsj_DiscardJavaClassReflections(jEnv);
586
+
587
+ if (jsjava_vm->jsj_created_java_vm) {
588
+ (void)JSJ_callbacks->destroy_java_vm(java_vm, jEnv);
589
+ } else {
590
+ UNLOAD_CLASS(java/lang/Object, jlObject);
591
+ UNLOAD_CLASS(java/lang/Class, jlClass);
592
+ UNLOAD_CLASS(java/lang/reflect/Method, jlrMethod);
593
+ UNLOAD_CLASS(java/lang/reflect/Constructor, jlrConstructor);
594
+ UNLOAD_CLASS(java/lang/reflect/Field, jlrField);
595
+ UNLOAD_CLASS(java/lang/reflect/Array, jlrArray);
596
+ UNLOAD_CLASS(java/lang/Throwable, jlThrowable);
597
+ UNLOAD_CLASS(java/lang/System, jlSystem);
598
+ UNLOAD_CLASS(java/lang/Boolean, jlBoolean);
599
+ UNLOAD_CLASS(java/lang/Double, jlDouble);
600
+ UNLOAD_CLASS(java/lang/String, jlString);
601
+ UNLOAD_CLASS(java/lang/Void, jlVoid);
602
+ UNLOAD_CLASS(java/applet/Applet, jaApplet);
603
+ UNLOAD_CLASS(netscape/javascript/JSObject, njJSObject);
604
+ UNLOAD_CLASS(netscape/javascript/JSException, njJSException);
605
+ UNLOAD_CLASS(netscape/javascript/JSUtil, njJSUtil);
606
+ }
607
+ }
608
+
609
+ /* Remove this VM from the list of all JSJavaVM objects. */
610
+ for (jp = &jsjava_vm_list; (j = *jp) != NULL; jp = &j->next) {
611
+ if (j == jsjava_vm) {
612
+ *jp = jsjava_vm->next;
613
+ break;
614
+ }
615
+ }
616
+ JS_ASSERT(j); /* vm not found in list */
617
+
618
+ #ifdef JSJ_THREADSAFE
619
+ if (jsjava_vm_list == NULL) {
620
+ PR_DestroyMonitor(thread_list_monitor);
621
+ thread_list_monitor = NULL;
622
+ }
623
+ #endif /* JSJ_THREADSAFE */
624
+
625
+ free(jsjava_vm);
626
+ }
627
+
628
+ static JSJavaThreadState *
629
+ new_jsjava_thread_state(JSJavaVM *jsjava_vm, const char *thread_name, JNIEnv *jEnv)
630
+ {
631
+ JSJavaThreadState *jsj_env;
632
+
633
+ jsj_env = (JSJavaThreadState *)malloc(sizeof(JSJavaThreadState));
634
+ if (!jsj_env)
635
+ return NULL;
636
+ memset(jsj_env, 0, sizeof(JSJavaThreadState));
637
+
638
+ jsj_env->jEnv = jEnv;
639
+ jsj_env->jsjava_vm = jsjava_vm;
640
+ if (thread_name)
641
+ jsj_env->name = strdup(thread_name);
642
+
643
+ #ifdef JSJ_THREADSAFE
644
+ PR_EnterMonitor(thread_list_monitor);
645
+ #endif
646
+
647
+ jsj_env->next = thread_list;
648
+ thread_list = jsj_env;
649
+
650
+ #ifdef JSJ_THREADSAFE
651
+ PR_ExitMonitor(thread_list_monitor);
652
+ #endif
653
+
654
+ return jsj_env;
655
+ }
656
+
657
+ static JSJavaThreadState *
658
+ find_jsjava_thread(JNIEnv *jEnv)
659
+ {
660
+ JSJavaThreadState *e, **p, *jsj_env;
661
+ jsj_env = NULL;
662
+
663
+ #ifdef JSJ_THREADSAFE
664
+ PR_EnterMonitor(thread_list_monitor);
665
+ #endif
666
+
667
+ /* Search for the thread state among the list of all created
668
+ LiveConnect threads */
669
+ for (p = &thread_list; (e = *p) != NULL; p = &(e->next)) {
670
+ if (e->jEnv == jEnv) {
671
+ jsj_env = e;
672
+ break;
673
+ }
674
+ }
675
+
676
+ /* Move a found thread to head of list for faster search next time. */
677
+ if (jsj_env && p != &thread_list) {
678
+ *p = jsj_env->next;
679
+ jsj_env->next = thread_list;
680
+ thread_list = jsj_env;
681
+ }
682
+
683
+ #ifdef JSJ_THREADSAFE
684
+ PR_ExitMonitor(thread_list_monitor);
685
+ #endif
686
+
687
+ return jsj_env;
688
+ }
689
+
690
+ JS_EXPORT_API(JSJavaThreadState *)
691
+ JSJ_AttachCurrentThreadToJava(JSJavaVM *jsjava_vm, const char *name, JNIEnv **java_envp)
692
+ {
693
+ JNIEnv *jEnv;
694
+ SystemJavaVM *java_vm;
695
+ JSJavaThreadState *jsj_env;
696
+
697
+ /* Make sure we're fully connected to the Java VM */
698
+ if (!jsj_ConnectToJavaVM(jsjava_vm))
699
+ return NULL;
700
+
701
+ /* Try to attach a Java thread to the current native thread */
702
+ if (!JSJ_callbacks || !JSJ_callbacks->attach_current_thread)
703
+ return NULL;
704
+
705
+ java_vm = jsjava_vm->java_vm;
706
+ if (!(jEnv = JSJ_callbacks->attach_current_thread(java_vm)))
707
+ return NULL;
708
+
709
+ if (java_envp)
710
+ *java_envp = jEnv;
711
+
712
+ /* If we found an existing thread state, just return it. */
713
+ jsj_env = find_jsjava_thread(jEnv);
714
+ if (jsj_env)
715
+ return jsj_env;
716
+
717
+ /* Create a new wrapper around the thread/VM state */
718
+ jsj_env = new_jsjava_thread_state(jsjava_vm, name, jEnv);
719
+
720
+ return jsj_env;
721
+ }
722
+
723
+ static JSJavaVM *
724
+ map_java_vm_to_jsjava_vm(SystemJavaVM *java_vm)
725
+ {
726
+ JSJavaVM *v;
727
+ for (v = jsjava_vm_list; v; v = v->next) {
728
+ if (!jsj_ConnectToJavaVM(v))
729
+ return NULL;
730
+ if (v->java_vm == java_vm)
731
+ return v;
732
+ }
733
+ return NULL;
734
+ }
735
+
736
+ /*
737
+ * Unfortunately, there's no standard means to associate any private data with
738
+ * a JNI thread environment, so we need to use the Java environment pointer as
739
+ * the key in a lookup table that maps it to a JSJavaThreadState structure,
740
+ * where we store all our per-thread private data. If no existing thread state
741
+ * is found, a new one is created.
742
+ *
743
+ * If an error occurs, returns NULL and sets the errp argument to an error
744
+ * message, which the caller is responsible for free'ing.
745
+ */
746
+ JSJavaThreadState *
747
+ jsj_MapJavaThreadToJSJavaThreadState(JNIEnv *jEnv, char **errp)
748
+ {
749
+ JSJavaThreadState *jsj_env;
750
+ SystemJavaVM *java_vm;
751
+ JSJavaVM *jsjava_vm;
752
+
753
+ /* If we found an existing thread state, just return it. */
754
+ jsj_env = find_jsjava_thread(jEnv);
755
+ if (jsj_env)
756
+ return jsj_env;
757
+
758
+ /* No one set up a LiveConnect thread state for a given Java thread.
759
+ Invoke the callback to create one on-the-fly. */
760
+
761
+ /* First, figure out which Java VM is calling us */
762
+ if (JSJ_callbacks && JSJ_callbacks->get_java_vm)
763
+ java_vm = JSJ_callbacks->get_java_vm(jEnv);
764
+ else
765
+ return NULL;
766
+ if (java_vm == NULL)
767
+ return NULL;
768
+
769
+ /* Get our private JavaVM data */
770
+ jsjava_vm = map_java_vm_to_jsjava_vm(java_vm);
771
+ if (!jsjava_vm) {
772
+ *errp = JS_smprintf("Total weirdness: No JSJavaVM wrapper ever created "
773
+ "for JavaVM 0x%08x", java_vm);
774
+ return NULL;
775
+ }
776
+
777
+ jsj_env = new_jsjava_thread_state(jsjava_vm, NULL, jEnv);
778
+ if (!jsj_env)
779
+ return NULL;
780
+
781
+ return jsj_env;
782
+ }
783
+
784
+ /*
785
+ * This function is used to specify a particular JSContext as *the* JavaScript
786
+ * execution environment to be used when LiveConnect is accessed from the given
787
+ * Java thread, i.e. by using one of the methods of netscape.javascript.JSObject.
788
+ * (There can only be one such JS context for a given Java thread. To
789
+ * multiplex JSContexts among a single thread, this function must be called
790
+ * before Java is invoked on that thread.) The return value is the previous
791
+ * context associated with the given Java thread.
792
+ */
793
+ JS_EXPORT_API(JSContext *)
794
+ JSJ_SetDefaultJSContextForJavaThread(JSContext *cx, JSJavaThreadState *jsj_env)
795
+ {
796
+ JSContext *old_context;
797
+ old_context = jsj_env->cx;
798
+ jsj_env->cx = cx;
799
+
800
+ /* The following line prevents clearing of jsj_env->cx by jsj_ExitJava() */
801
+ jsj_env->recursion_depth++;
802
+ return old_context;
803
+ }
804
+
805
+ JS_EXPORT_API(JSBool)
806
+ JSJ_DetachCurrentThreadFromJava(JSJavaThreadState *jsj_env)
807
+ {
808
+ SystemJavaVM *java_vm;
809
+ JNIEnv* jEnv;
810
+ JSJavaThreadState *e, **p;
811
+
812
+ /* Disassociate the current native thread from its corresponding Java thread */
813
+ java_vm = jsj_env->jsjava_vm->java_vm;
814
+ jEnv = jsj_env->jEnv;
815
+
816
+ #ifdef JSJ_THREADSAFE
817
+ PR_EnterMonitor(thread_list_monitor);
818
+ #endif /* JSJ_THREADSAFE */
819
+
820
+ if (!JSJ_callbacks->detach_current_thread(java_vm, jEnv)) {
821
+
822
+ #ifdef JSJ_THREADSAFE
823
+ PR_ExitMonitor(thread_list_monitor);
824
+ #endif /* JSJ_THREADSAFE */
825
+
826
+ return JS_FALSE;
827
+ }
828
+
829
+ /* Destroy the LiveConnect execution environment passed in */
830
+ jsj_ClearPendingJSErrors(jsj_env);
831
+
832
+ for (p = &thread_list; (e = *p) != NULL; p = &(e->next)) {
833
+ if (e == jsj_env) {
834
+ *p = jsj_env->next;
835
+ break;
836
+ }
837
+ }
838
+
839
+ JS_ASSERT(e);
840
+
841
+ #ifdef JSJ_THREADSAFE
842
+ PR_ExitMonitor(thread_list_monitor);
843
+ #endif /* JSJ_THREADSAFE */
844
+
845
+ free(jsj_env);
846
+ return JS_TRUE;
847
+ }
848
+
849
+ /* Utility routine to wrap a Java object inside a JS object, having a
850
+ a result type of either JavaObject or JavaArray. */
851
+ JSBool
852
+ JSJ_ConvertJavaObjectToJSValue(JSContext *cx, jobject java_obj, jsval *vp)
853
+ {
854
+ JNIEnv *jEnv;
855
+ JSBool result;
856
+ JSJavaThreadState *jsj_env;
857
+
858
+ /* Get the Java per-thread environment pointer for this JSContext */
859
+ jsj_env = jsj_EnterJava(cx, &jEnv);
860
+ if (!jEnv)
861
+ return JS_FALSE;
862
+
863
+ result = jsj_ConvertJavaObjectToJSValue(cx, jEnv, java_obj, vp);
864
+ jsj_ExitJava(jsj_env);
865
+ return result;
866
+ }
867
+
868
+
869
+ JS_EXPORT_API(JSBool)
870
+ JSJ_ConvertJSValueToJavaObject(JSContext *cx, jsval v, jobject *vp)
871
+ {
872
+ if (!JSVAL_IS_PRIMITIVE(v)) {
873
+ JSObject *js_obj = JSVAL_TO_OBJECT(v);
874
+ JavaObjectWrapper *java_wrapper = JS_GetPrivate(cx, js_obj);
875
+ *vp = java_wrapper->java_obj;
876
+ return JS_TRUE;
877
+ }
878
+ return JS_FALSE;
879
+ }
880
+
881
+
882
+ JS_EXPORT_API(JSBool)
883
+ JSJ_IsJSCallApplet()
884
+ {
885
+ return jsj_JSIsCallingApplet;
886
+ }