therubyracer 0.5.0-x86-linux → 0.11.0beta5-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of therubyracer might be problematic. Click here for more details.

Files changed (721) hide show
  1. data/.gitignore +23 -11
  2. data/.travis.yml +10 -0
  3. data/Changelog.md +242 -0
  4. data/Gemfile +16 -0
  5. data/README.md +185 -0
  6. data/Rakefile +42 -51
  7. data/benchmarks.rb +217 -0
  8. data/ext/v8/accessor.cc +181 -0
  9. data/ext/v8/array.cc +26 -0
  10. data/ext/v8/backref.cc +56 -0
  11. data/ext/v8/build.rb +52 -0
  12. data/ext/v8/constants.cc +34 -0
  13. data/ext/v8/constraints.cc +52 -0
  14. data/ext/v8/context.cc +130 -0
  15. data/ext/v8/date.cc +18 -0
  16. data/ext/v8/exception.cc +38 -0
  17. data/ext/v8/extconf.rb +16 -29
  18. data/ext/v8/external.cc +43 -0
  19. data/ext/v8/function.cc +58 -0
  20. data/ext/v8/gc.cc +43 -0
  21. data/ext/v8/handles.cc +34 -0
  22. data/ext/v8/heap.cc +31 -0
  23. data/ext/v8/init.cc +39 -0
  24. data/ext/v8/init.so +0 -0
  25. data/ext/v8/invocation.cc +86 -0
  26. data/ext/v8/locker.cc +77 -0
  27. data/ext/v8/message.cc +51 -0
  28. data/ext/v8/object.cc +334 -0
  29. data/ext/v8/primitive.cc +8 -0
  30. data/ext/v8/rr.cc +83 -0
  31. data/ext/v8/rr.h +883 -0
  32. data/ext/v8/script.cc +80 -0
  33. data/ext/v8/signature.cc +18 -0
  34. data/ext/v8/stack.cc +75 -0
  35. data/ext/v8/string.cc +47 -0
  36. data/ext/v8/template.cc +175 -0
  37. data/ext/v8/trycatch.cc +86 -0
  38. data/ext/v8/v8.cc +87 -0
  39. data/ext/v8/value.cc +239 -0
  40. data/lib/v8.rb +30 -9
  41. data/lib/v8/access.rb +5 -0
  42. data/lib/v8/access/indices.rb +40 -0
  43. data/lib/v8/access/invocation.rb +47 -0
  44. data/lib/v8/access/names.rb +65 -0
  45. data/lib/v8/array.rb +26 -0
  46. data/lib/v8/context.rb +217 -75
  47. data/lib/v8/conversion.rb +35 -0
  48. data/lib/v8/conversion/array.rb +11 -0
  49. data/lib/v8/conversion/class.rb +120 -0
  50. data/lib/v8/conversion/code.rb +38 -0
  51. data/lib/v8/conversion/fundamental.rb +11 -0
  52. data/lib/v8/conversion/hash.rb +11 -0
  53. data/lib/v8/conversion/indentity.rb +31 -0
  54. data/lib/v8/conversion/method.rb +26 -0
  55. data/lib/v8/conversion/object.rb +28 -0
  56. data/lib/v8/conversion/primitive.rb +7 -0
  57. data/lib/v8/conversion/proc.rb +5 -0
  58. data/lib/v8/conversion/reference.rb +16 -0
  59. data/lib/v8/conversion/string.rb +12 -0
  60. data/lib/v8/conversion/symbol.rb +7 -0
  61. data/lib/v8/conversion/time.rb +13 -0
  62. data/lib/v8/error.rb +25 -0
  63. data/lib/v8/error/protect.rb +20 -0
  64. data/lib/v8/error/try.rb +15 -0
  65. data/lib/v8/function.rb +28 -0
  66. data/lib/v8/object.rb +69 -28
  67. data/lib/v8/util/weakcell.rb +29 -0
  68. data/lib/v8/version.rb +3 -0
  69. data/spec/c/array_spec.rb +17 -0
  70. data/spec/c/constants_spec.rb +20 -0
  71. data/spec/c/exception_spec.rb +26 -0
  72. data/spec/c/external_spec.rb +9 -0
  73. data/spec/c/function_spec.rb +46 -0
  74. data/spec/c/handles_spec.rb +35 -0
  75. data/spec/c/locker_spec.rb +38 -0
  76. data/spec/c/object_spec.rb +46 -0
  77. data/spec/c/script_spec.rb +28 -0
  78. data/spec/c/string_spec.rb +16 -0
  79. data/spec/c/template_spec.rb +30 -0
  80. data/spec/c/trycatch_spec.rb +51 -0
  81. data/spec/mem/blunt_spec.rb +42 -0
  82. data/spec/redjs_spec.rb +10 -0
  83. data/spec/spec_helper.rb +43 -12
  84. data/spec/threading_spec.rb +52 -0
  85. data/spec/v8/context_spec.rb +19 -0
  86. data/spec/v8/conversion_spec.rb +9 -0
  87. data/spec/v8/error_spec.rb +21 -0
  88. data/spec/v8/function_spec.rb +9 -0
  89. data/spec/v8/object_spec.rb +15 -0
  90. data/thefrontside.png +0 -0
  91. data/therubyracer.gemspec +15 -676
  92. metadata +146 -680
  93. data/.gitmodules +0 -3
  94. data/Doxyfile +0 -1514
  95. data/History.txt +0 -51
  96. data/README.rdoc +0 -158
  97. data/docs/data_conversion.txt +0 -18
  98. data/ext/v8/callbacks.cpp +0 -160
  99. data/ext/v8/callbacks.h +0 -14
  100. data/ext/v8/convert_ruby.cpp +0 -8
  101. data/ext/v8/convert_ruby.h +0 -99
  102. data/ext/v8/convert_string.cpp +0 -10
  103. data/ext/v8/convert_string.h +0 -73
  104. data/ext/v8/convert_v8.cpp +0 -9
  105. data/ext/v8/convert_v8.h +0 -121
  106. data/ext/v8/converters.cpp +0 -83
  107. data/ext/v8/converters.h +0 -23
  108. data/ext/v8/upstream/2.0.6/.gitignore +0 -26
  109. data/ext/v8/upstream/2.0.6/AUTHORS +0 -23
  110. data/ext/v8/upstream/2.0.6/ChangeLog +0 -1479
  111. data/ext/v8/upstream/2.0.6/LICENSE +0 -55
  112. data/ext/v8/upstream/2.0.6/SConstruct +0 -1028
  113. data/ext/v8/upstream/2.0.6/include/v8-debug.h +0 -275
  114. data/ext/v8/upstream/2.0.6/include/v8.h +0 -3236
  115. data/ext/v8/upstream/2.0.6/src/SConscript +0 -283
  116. data/ext/v8/upstream/2.0.6/src/accessors.cc +0 -695
  117. data/ext/v8/upstream/2.0.6/src/accessors.h +0 -114
  118. data/ext/v8/upstream/2.0.6/src/allocation.cc +0 -198
  119. data/ext/v8/upstream/2.0.6/src/allocation.h +0 -169
  120. data/ext/v8/upstream/2.0.6/src/api.cc +0 -3831
  121. data/ext/v8/upstream/2.0.6/src/api.h +0 -479
  122. data/ext/v8/upstream/2.0.6/src/apinatives.js +0 -110
  123. data/ext/v8/upstream/2.0.6/src/apiutils.h +0 -69
  124. data/ext/v8/upstream/2.0.6/src/arguments.h +0 -97
  125. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm-inl.h +0 -277
  126. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.cc +0 -1821
  127. data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.h +0 -1027
  128. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2-inl.h +0 -267
  129. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.cc +0 -1821
  130. data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.h +0 -1027
  131. data/ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc +0 -1271
  132. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm-inl.h +0 -74
  133. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.cc +0 -6682
  134. data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.h +0 -535
  135. data/ext/v8/upstream/2.0.6/src/arm/constants-arm.cc +0 -112
  136. data/ext/v8/upstream/2.0.6/src/arm/constants-arm.h +0 -347
  137. data/ext/v8/upstream/2.0.6/src/arm/cpu-arm.cc +0 -132
  138. data/ext/v8/upstream/2.0.6/src/arm/debug-arm.cc +0 -213
  139. data/ext/v8/upstream/2.0.6/src/arm/disasm-arm.cc +0 -1166
  140. data/ext/v8/upstream/2.0.6/src/arm/fast-codegen-arm.cc +0 -1698
  141. data/ext/v8/upstream/2.0.6/src/arm/frames-arm.cc +0 -123
  142. data/ext/v8/upstream/2.0.6/src/arm/frames-arm.h +0 -162
  143. data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +0 -849
  144. data/ext/v8/upstream/2.0.6/src/arm/jump-target-arm.cc +0 -238
  145. data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.cc +0 -1259
  146. data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.h +0 -423
  147. data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.cc +0 -1266
  148. data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.h +0 -282
  149. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm-inl.h +0 -103
  150. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.cc +0 -59
  151. data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.h +0 -43
  152. data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.cc +0 -2264
  153. data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.h +0 -306
  154. data/ext/v8/upstream/2.0.6/src/arm/stub-cache-arm.cc +0 -1516
  155. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +0 -412
  156. data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.h +0 -532
  157. data/ext/v8/upstream/2.0.6/src/array.js +0 -1154
  158. data/ext/v8/upstream/2.0.6/src/assembler.cc +0 -772
  159. data/ext/v8/upstream/2.0.6/src/assembler.h +0 -525
  160. data/ext/v8/upstream/2.0.6/src/ast.cc +0 -512
  161. data/ext/v8/upstream/2.0.6/src/ast.h +0 -1820
  162. data/ext/v8/upstream/2.0.6/src/bootstrapper.cc +0 -1680
  163. data/ext/v8/upstream/2.0.6/src/bootstrapper.h +0 -103
  164. data/ext/v8/upstream/2.0.6/src/builtins.cc +0 -851
  165. data/ext/v8/upstream/2.0.6/src/builtins.h +0 -245
  166. data/ext/v8/upstream/2.0.6/src/bytecodes-irregexp.h +0 -104
  167. data/ext/v8/upstream/2.0.6/src/char-predicates-inl.h +0 -86
  168. data/ext/v8/upstream/2.0.6/src/char-predicates.h +0 -65
  169. data/ext/v8/upstream/2.0.6/src/checks.cc +0 -100
  170. data/ext/v8/upstream/2.0.6/src/checks.h +0 -284
  171. data/ext/v8/upstream/2.0.6/src/code-stubs.cc +0 -164
  172. data/ext/v8/upstream/2.0.6/src/code-stubs.h +0 -164
  173. data/ext/v8/upstream/2.0.6/src/code.h +0 -68
  174. data/ext/v8/upstream/2.0.6/src/codegen-inl.h +0 -88
  175. data/ext/v8/upstream/2.0.6/src/codegen.cc +0 -504
  176. data/ext/v8/upstream/2.0.6/src/codegen.h +0 -522
  177. data/ext/v8/upstream/2.0.6/src/compilation-cache.cc +0 -490
  178. data/ext/v8/upstream/2.0.6/src/compilation-cache.h +0 -98
  179. data/ext/v8/upstream/2.0.6/src/compiler.cc +0 -1132
  180. data/ext/v8/upstream/2.0.6/src/compiler.h +0 -107
  181. data/ext/v8/upstream/2.0.6/src/contexts.cc +0 -256
  182. data/ext/v8/upstream/2.0.6/src/contexts.h +0 -345
  183. data/ext/v8/upstream/2.0.6/src/conversions-inl.h +0 -95
  184. data/ext/v8/upstream/2.0.6/src/conversions.cc +0 -709
  185. data/ext/v8/upstream/2.0.6/src/conversions.h +0 -118
  186. data/ext/v8/upstream/2.0.6/src/counters.cc +0 -78
  187. data/ext/v8/upstream/2.0.6/src/counters.h +0 -239
  188. data/ext/v8/upstream/2.0.6/src/cpu.h +0 -65
  189. data/ext/v8/upstream/2.0.6/src/d8-debug.cc +0 -345
  190. data/ext/v8/upstream/2.0.6/src/d8-debug.h +0 -155
  191. data/ext/v8/upstream/2.0.6/src/d8-posix.cc +0 -675
  192. data/ext/v8/upstream/2.0.6/src/d8-readline.cc +0 -128
  193. data/ext/v8/upstream/2.0.6/src/d8-windows.cc +0 -42
  194. data/ext/v8/upstream/2.0.6/src/d8.cc +0 -776
  195. data/ext/v8/upstream/2.0.6/src/d8.h +0 -225
  196. data/ext/v8/upstream/2.0.6/src/d8.js +0 -1625
  197. data/ext/v8/upstream/2.0.6/src/date-delay.js +0 -1138
  198. data/ext/v8/upstream/2.0.6/src/dateparser-inl.h +0 -114
  199. data/ext/v8/upstream/2.0.6/src/dateparser.cc +0 -186
  200. data/ext/v8/upstream/2.0.6/src/dateparser.h +0 -240
  201. data/ext/v8/upstream/2.0.6/src/debug-agent.cc +0 -425
  202. data/ext/v8/upstream/2.0.6/src/debug-agent.h +0 -129
  203. data/ext/v8/upstream/2.0.6/src/debug-delay.js +0 -2073
  204. data/ext/v8/upstream/2.0.6/src/debug.cc +0 -2751
  205. data/ext/v8/upstream/2.0.6/src/debug.h +0 -866
  206. data/ext/v8/upstream/2.0.6/src/disasm.h +0 -77
  207. data/ext/v8/upstream/2.0.6/src/disassembler.cc +0 -318
  208. data/ext/v8/upstream/2.0.6/src/disassembler.h +0 -56
  209. data/ext/v8/upstream/2.0.6/src/dtoa-config.c +0 -91
  210. data/ext/v8/upstream/2.0.6/src/execution.cc +0 -701
  211. data/ext/v8/upstream/2.0.6/src/execution.h +0 -312
  212. data/ext/v8/upstream/2.0.6/src/factory.cc +0 -957
  213. data/ext/v8/upstream/2.0.6/src/factory.h +0 -393
  214. data/ext/v8/upstream/2.0.6/src/fast-codegen.cc +0 -725
  215. data/ext/v8/upstream/2.0.6/src/fast-codegen.h +0 -371
  216. data/ext/v8/upstream/2.0.6/src/flag-definitions.h +0 -426
  217. data/ext/v8/upstream/2.0.6/src/flags.cc +0 -555
  218. data/ext/v8/upstream/2.0.6/src/flags.h +0 -81
  219. data/ext/v8/upstream/2.0.6/src/frame-element.cc +0 -45
  220. data/ext/v8/upstream/2.0.6/src/frame-element.h +0 -235
  221. data/ext/v8/upstream/2.0.6/src/frames-inl.h +0 -215
  222. data/ext/v8/upstream/2.0.6/src/frames.cc +0 -749
  223. data/ext/v8/upstream/2.0.6/src/frames.h +0 -659
  224. data/ext/v8/upstream/2.0.6/src/func-name-inferrer.cc +0 -76
  225. data/ext/v8/upstream/2.0.6/src/func-name-inferrer.h +0 -135
  226. data/ext/v8/upstream/2.0.6/src/global-handles.cc +0 -516
  227. data/ext/v8/upstream/2.0.6/src/global-handles.h +0 -180
  228. data/ext/v8/upstream/2.0.6/src/globals.h +0 -608
  229. data/ext/v8/upstream/2.0.6/src/handles-inl.h +0 -76
  230. data/ext/v8/upstream/2.0.6/src/handles.cc +0 -811
  231. data/ext/v8/upstream/2.0.6/src/handles.h +0 -367
  232. data/ext/v8/upstream/2.0.6/src/hashmap.cc +0 -226
  233. data/ext/v8/upstream/2.0.6/src/hashmap.h +0 -120
  234. data/ext/v8/upstream/2.0.6/src/heap-inl.h +0 -407
  235. data/ext/v8/upstream/2.0.6/src/heap-profiler.cc +0 -695
  236. data/ext/v8/upstream/2.0.6/src/heap-profiler.h +0 -277
  237. data/ext/v8/upstream/2.0.6/src/heap.cc +0 -4204
  238. data/ext/v8/upstream/2.0.6/src/heap.h +0 -1704
  239. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32-inl.h +0 -325
  240. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.cc +0 -2375
  241. data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.h +0 -914
  242. data/ext/v8/upstream/2.0.6/src/ia32/builtins-ia32.cc +0 -1222
  243. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32-inl.h +0 -46
  244. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.cc +0 -9770
  245. data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.h +0 -834
  246. data/ext/v8/upstream/2.0.6/src/ia32/cpu-ia32.cc +0 -79
  247. data/ext/v8/upstream/2.0.6/src/ia32/debug-ia32.cc +0 -208
  248. data/ext/v8/upstream/2.0.6/src/ia32/disasm-ia32.cc +0 -1357
  249. data/ext/v8/upstream/2.0.6/src/ia32/fast-codegen-ia32.cc +0 -1813
  250. data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.cc +0 -111
  251. data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.h +0 -135
  252. data/ext/v8/upstream/2.0.6/src/ia32/ic-ia32.cc +0 -1490
  253. data/ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc +0 -432
  254. data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.cc +0 -1517
  255. data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.h +0 -528
  256. data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.cc +0 -1219
  257. data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.h +0 -230
  258. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32-inl.h +0 -82
  259. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.cc +0 -99
  260. data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.h +0 -43
  261. data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.cc +0 -30
  262. data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.h +0 -62
  263. data/ext/v8/upstream/2.0.6/src/ia32/stub-cache-ia32.cc +0 -1961
  264. data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.cc +0 -1105
  265. data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.h +0 -580
  266. data/ext/v8/upstream/2.0.6/src/ic-inl.h +0 -93
  267. data/ext/v8/upstream/2.0.6/src/ic.cc +0 -1426
  268. data/ext/v8/upstream/2.0.6/src/ic.h +0 -443
  269. data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.cc +0 -646
  270. data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.h +0 -48
  271. data/ext/v8/upstream/2.0.6/src/json-delay.js +0 -254
  272. data/ext/v8/upstream/2.0.6/src/jsregexp.cc +0 -5234
  273. data/ext/v8/upstream/2.0.6/src/jsregexp.h +0 -1439
  274. data/ext/v8/upstream/2.0.6/src/jump-target-inl.h +0 -49
  275. data/ext/v8/upstream/2.0.6/src/jump-target.cc +0 -383
  276. data/ext/v8/upstream/2.0.6/src/jump-target.h +0 -280
  277. data/ext/v8/upstream/2.0.6/src/list-inl.h +0 -166
  278. data/ext/v8/upstream/2.0.6/src/list.h +0 -158
  279. data/ext/v8/upstream/2.0.6/src/log-inl.h +0 -126
  280. data/ext/v8/upstream/2.0.6/src/log-utils.cc +0 -503
  281. data/ext/v8/upstream/2.0.6/src/log-utils.h +0 -292
  282. data/ext/v8/upstream/2.0.6/src/log.cc +0 -1457
  283. data/ext/v8/upstream/2.0.6/src/log.h +0 -371
  284. data/ext/v8/upstream/2.0.6/src/macro-assembler.h +0 -93
  285. data/ext/v8/upstream/2.0.6/src/macros.py +0 -137
  286. data/ext/v8/upstream/2.0.6/src/mark-compact.cc +0 -2007
  287. data/ext/v8/upstream/2.0.6/src/mark-compact.h +0 -442
  288. data/ext/v8/upstream/2.0.6/src/math.js +0 -263
  289. data/ext/v8/upstream/2.0.6/src/memory.h +0 -74
  290. data/ext/v8/upstream/2.0.6/src/messages.cc +0 -177
  291. data/ext/v8/upstream/2.0.6/src/messages.h +0 -112
  292. data/ext/v8/upstream/2.0.6/src/messages.js +0 -937
  293. data/ext/v8/upstream/2.0.6/src/mirror-delay.js +0 -2332
  294. data/ext/v8/upstream/2.0.6/src/mksnapshot.cc +0 -169
  295. data/ext/v8/upstream/2.0.6/src/natives.h +0 -63
  296. data/ext/v8/upstream/2.0.6/src/objects-debug.cc +0 -1317
  297. data/ext/v8/upstream/2.0.6/src/objects-inl.h +0 -3044
  298. data/ext/v8/upstream/2.0.6/src/objects.cc +0 -8306
  299. data/ext/v8/upstream/2.0.6/src/objects.h +0 -4960
  300. data/ext/v8/upstream/2.0.6/src/oprofile-agent.cc +0 -116
  301. data/ext/v8/upstream/2.0.6/src/oprofile-agent.h +0 -69
  302. data/ext/v8/upstream/2.0.6/src/parser.cc +0 -4810
  303. data/ext/v8/upstream/2.0.6/src/parser.h +0 -195
  304. data/ext/v8/upstream/2.0.6/src/platform-freebsd.cc +0 -645
  305. data/ext/v8/upstream/2.0.6/src/platform-linux.cc +0 -808
  306. data/ext/v8/upstream/2.0.6/src/platform-macos.cc +0 -643
  307. data/ext/v8/upstream/2.0.6/src/platform-nullos.cc +0 -454
  308. data/ext/v8/upstream/2.0.6/src/platform-openbsd.cc +0 -597
  309. data/ext/v8/upstream/2.0.6/src/platform-posix.cc +0 -380
  310. data/ext/v8/upstream/2.0.6/src/platform-win32.cc +0 -1908
  311. data/ext/v8/upstream/2.0.6/src/platform.h +0 -556
  312. data/ext/v8/upstream/2.0.6/src/prettyprinter.cc +0 -1511
  313. data/ext/v8/upstream/2.0.6/src/prettyprinter.h +0 -219
  314. data/ext/v8/upstream/2.0.6/src/property.cc +0 -96
  315. data/ext/v8/upstream/2.0.6/src/property.h +0 -327
  316. data/ext/v8/upstream/2.0.6/src/regexp-delay.js +0 -406
  317. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp-inl.h +0 -78
  318. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.cc +0 -464
  319. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.h +0 -141
  320. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.cc +0 -356
  321. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.h +0 -103
  322. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.cc +0 -240
  323. data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.h +0 -220
  324. data/ext/v8/upstream/2.0.6/src/regexp-stack.cc +0 -103
  325. data/ext/v8/upstream/2.0.6/src/regexp-stack.h +0 -123
  326. data/ext/v8/upstream/2.0.6/src/register-allocator-inl.h +0 -74
  327. data/ext/v8/upstream/2.0.6/src/register-allocator.cc +0 -100
  328. data/ext/v8/upstream/2.0.6/src/register-allocator.h +0 -295
  329. data/ext/v8/upstream/2.0.6/src/rewriter.cc +0 -855
  330. data/ext/v8/upstream/2.0.6/src/rewriter.h +0 -54
  331. data/ext/v8/upstream/2.0.6/src/runtime.cc +0 -8163
  332. data/ext/v8/upstream/2.0.6/src/runtime.h +0 -432
  333. data/ext/v8/upstream/2.0.6/src/runtime.js +0 -626
  334. data/ext/v8/upstream/2.0.6/src/scanner.cc +0 -1098
  335. data/ext/v8/upstream/2.0.6/src/scanner.h +0 -425
  336. data/ext/v8/upstream/2.0.6/src/scopeinfo.cc +0 -649
  337. data/ext/v8/upstream/2.0.6/src/scopeinfo.h +0 -236
  338. data/ext/v8/upstream/2.0.6/src/scopes.cc +0 -963
  339. data/ext/v8/upstream/2.0.6/src/scopes.h +0 -401
  340. data/ext/v8/upstream/2.0.6/src/serialize.cc +0 -1260
  341. data/ext/v8/upstream/2.0.6/src/serialize.h +0 -404
  342. data/ext/v8/upstream/2.0.6/src/shell.h +0 -55
  343. data/ext/v8/upstream/2.0.6/src/simulator.h +0 -41
  344. data/ext/v8/upstream/2.0.6/src/smart-pointer.h +0 -109
  345. data/ext/v8/upstream/2.0.6/src/snapshot-common.cc +0 -97
  346. data/ext/v8/upstream/2.0.6/src/snapshot-empty.cc +0 -40
  347. data/ext/v8/upstream/2.0.6/src/snapshot.h +0 -59
  348. data/ext/v8/upstream/2.0.6/src/spaces-inl.h +0 -372
  349. data/ext/v8/upstream/2.0.6/src/spaces.cc +0 -2864
  350. data/ext/v8/upstream/2.0.6/src/spaces.h +0 -2072
  351. data/ext/v8/upstream/2.0.6/src/string-stream.cc +0 -584
  352. data/ext/v8/upstream/2.0.6/src/string-stream.h +0 -189
  353. data/ext/v8/upstream/2.0.6/src/string.js +0 -901
  354. data/ext/v8/upstream/2.0.6/src/stub-cache.cc +0 -1108
  355. data/ext/v8/upstream/2.0.6/src/stub-cache.h +0 -578
  356. data/ext/v8/upstream/2.0.6/src/third_party/dtoa/COPYING +0 -15
  357. data/ext/v8/upstream/2.0.6/src/third_party/dtoa/dtoa.c +0 -3330
  358. data/ext/v8/upstream/2.0.6/src/third_party/valgrind/valgrind.h +0 -3925
  359. data/ext/v8/upstream/2.0.6/src/token.cc +0 -56
  360. data/ext/v8/upstream/2.0.6/src/token.h +0 -270
  361. data/ext/v8/upstream/2.0.6/src/top.cc +0 -991
  362. data/ext/v8/upstream/2.0.6/src/top.h +0 -459
  363. data/ext/v8/upstream/2.0.6/src/unicode-inl.h +0 -238
  364. data/ext/v8/upstream/2.0.6/src/unicode.cc +0 -749
  365. data/ext/v8/upstream/2.0.6/src/unicode.h +0 -279
  366. data/ext/v8/upstream/2.0.6/src/uri.js +0 -415
  367. data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +0 -426
  368. data/ext/v8/upstream/2.0.6/src/usage-analyzer.h +0 -40
  369. data/ext/v8/upstream/2.0.6/src/utils.cc +0 -322
  370. data/ext/v8/upstream/2.0.6/src/utils.h +0 -592
  371. data/ext/v8/upstream/2.0.6/src/v8-counters.cc +0 -55
  372. data/ext/v8/upstream/2.0.6/src/v8-counters.h +0 -198
  373. data/ext/v8/upstream/2.0.6/src/v8.cc +0 -193
  374. data/ext/v8/upstream/2.0.6/src/v8.h +0 -119
  375. data/ext/v8/upstream/2.0.6/src/v8natives.js +0 -846
  376. data/ext/v8/upstream/2.0.6/src/v8threads.cc +0 -450
  377. data/ext/v8/upstream/2.0.6/src/v8threads.h +0 -144
  378. data/ext/v8/upstream/2.0.6/src/variables.cc +0 -163
  379. data/ext/v8/upstream/2.0.6/src/variables.h +0 -235
  380. data/ext/v8/upstream/2.0.6/src/version.cc +0 -88
  381. data/ext/v8/upstream/2.0.6/src/version.h +0 -64
  382. data/ext/v8/upstream/2.0.6/src/virtual-frame.cc +0 -381
  383. data/ext/v8/upstream/2.0.6/src/virtual-frame.h +0 -44
  384. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64-inl.h +0 -352
  385. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.cc +0 -2539
  386. data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.h +0 -1399
  387. data/ext/v8/upstream/2.0.6/src/x64/builtins-x64.cc +0 -1255
  388. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64-inl.h +0 -46
  389. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.cc +0 -8223
  390. data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.h +0 -785
  391. data/ext/v8/upstream/2.0.6/src/x64/cpu-x64.cc +0 -79
  392. data/ext/v8/upstream/2.0.6/src/x64/debug-x64.cc +0 -202
  393. data/ext/v8/upstream/2.0.6/src/x64/disasm-x64.cc +0 -1596
  394. data/ext/v8/upstream/2.0.6/src/x64/fast-codegen-x64.cc +0 -1820
  395. data/ext/v8/upstream/2.0.6/src/x64/frames-x64.cc +0 -109
  396. data/ext/v8/upstream/2.0.6/src/x64/frames-x64.h +0 -121
  397. data/ext/v8/upstream/2.0.6/src/x64/ic-x64.cc +0 -1392
  398. data/ext/v8/upstream/2.0.6/src/x64/jump-target-x64.cc +0 -432
  399. data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.cc +0 -2409
  400. data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.h +0 -765
  401. data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.cc +0 -1337
  402. data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.h +0 -295
  403. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64-inl.h +0 -86
  404. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.cc +0 -84
  405. data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.h +0 -43
  406. data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.cc +0 -27
  407. data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.h +0 -63
  408. data/ext/v8/upstream/2.0.6/src/x64/stub-cache-x64.cc +0 -1884
  409. data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.cc +0 -1089
  410. data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.h +0 -560
  411. data/ext/v8/upstream/2.0.6/src/zone-inl.h +0 -297
  412. data/ext/v8/upstream/2.0.6/src/zone.cc +0 -193
  413. data/ext/v8/upstream/2.0.6/src/zone.h +0 -305
  414. data/ext/v8/upstream/2.0.6/tools/codemap.js +0 -258
  415. data/ext/v8/upstream/2.0.6/tools/consarray.js +0 -93
  416. data/ext/v8/upstream/2.0.6/tools/csvparser.js +0 -98
  417. data/ext/v8/upstream/2.0.6/tools/gyp/v8.gyp +0 -620
  418. data/ext/v8/upstream/2.0.6/tools/js2c.py +0 -376
  419. data/ext/v8/upstream/2.0.6/tools/jsmin.py +0 -280
  420. data/ext/v8/upstream/2.0.6/tools/linux-tick-processor +0 -24
  421. data/ext/v8/upstream/2.0.6/tools/linux-tick-processor.py +0 -78
  422. data/ext/v8/upstream/2.0.6/tools/logreader.js +0 -320
  423. data/ext/v8/upstream/2.0.6/tools/mac-nm +0 -18
  424. data/ext/v8/upstream/2.0.6/tools/mac-tick-processor +0 -6
  425. data/ext/v8/upstream/2.0.6/tools/oprofile/annotate +0 -7
  426. data/ext/v8/upstream/2.0.6/tools/oprofile/common +0 -19
  427. data/ext/v8/upstream/2.0.6/tools/oprofile/dump +0 -7
  428. data/ext/v8/upstream/2.0.6/tools/oprofile/report +0 -7
  429. data/ext/v8/upstream/2.0.6/tools/oprofile/reset +0 -7
  430. data/ext/v8/upstream/2.0.6/tools/oprofile/run +0 -14
  431. data/ext/v8/upstream/2.0.6/tools/oprofile/shutdown +0 -7
  432. data/ext/v8/upstream/2.0.6/tools/oprofile/start +0 -7
  433. data/ext/v8/upstream/2.0.6/tools/presubmit.py +0 -299
  434. data/ext/v8/upstream/2.0.6/tools/process-heap-prof.py +0 -120
  435. data/ext/v8/upstream/2.0.6/tools/profile.js +0 -621
  436. data/ext/v8/upstream/2.0.6/tools/profile_view.js +0 -224
  437. data/ext/v8/upstream/2.0.6/tools/run-valgrind.py +0 -77
  438. data/ext/v8/upstream/2.0.6/tools/splaytree.js +0 -322
  439. data/ext/v8/upstream/2.0.6/tools/splaytree.py +0 -226
  440. data/ext/v8/upstream/2.0.6/tools/stats-viewer.py +0 -456
  441. data/ext/v8/upstream/2.0.6/tools/test.py +0 -1370
  442. data/ext/v8/upstream/2.0.6/tools/tickprocessor-driver.js +0 -53
  443. data/ext/v8/upstream/2.0.6/tools/tickprocessor.js +0 -731
  444. data/ext/v8/upstream/2.0.6/tools/tickprocessor.py +0 -535
  445. data/ext/v8/upstream/2.0.6/tools/utils.py +0 -82
  446. data/ext/v8/upstream/2.0.6/tools/visual_studio/README.txt +0 -71
  447. data/ext/v8/upstream/2.0.6/tools/visual_studio/arm.vsprops +0 -14
  448. data/ext/v8/upstream/2.0.6/tools/visual_studio/common.vsprops +0 -35
  449. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8.vcproj +0 -199
  450. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_arm.vcproj +0 -199
  451. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_x64.vcproj +0 -201
  452. data/ext/v8/upstream/2.0.6/tools/visual_studio/d8js2c.cmd +0 -6
  453. data/ext/v8/upstream/2.0.6/tools/visual_studio/debug.vsprops +0 -17
  454. data/ext/v8/upstream/2.0.6/tools/visual_studio/ia32.vsprops +0 -13
  455. data/ext/v8/upstream/2.0.6/tools/visual_studio/js2c.cmd +0 -6
  456. data/ext/v8/upstream/2.0.6/tools/visual_studio/release.vsprops +0 -24
  457. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.sln +0 -101
  458. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.vcproj +0 -223
  459. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.sln +0 -74
  460. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.vcproj +0 -223
  461. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base.vcproj +0 -971
  462. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_arm.vcproj +0 -983
  463. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_x64.vcproj +0 -959
  464. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest.vcproj +0 -255
  465. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_arm.vcproj +0 -243
  466. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_x64.vcproj +0 -257
  467. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot.vcproj +0 -151
  468. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot_x64.vcproj +0 -151
  469. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample.vcproj +0 -151
  470. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_arm.vcproj +0 -151
  471. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_x64.vcproj +0 -151
  472. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample.vcproj +0 -151
  473. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_arm.vcproj +0 -151
  474. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_x64.vcproj +0 -153
  475. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot.vcproj +0 -142
  476. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc.vcproj +0 -92
  477. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc_x64.vcproj +0 -92
  478. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_x64.vcproj +0 -142
  479. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.sln +0 -101
  480. data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.vcproj +0 -223
  481. data/ext/v8/upstream/2.0.6/tools/visual_studio/x64.vsprops +0 -13
  482. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +0 -5
  483. data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.py +0 -137
  484. data/ext/v8/upstream/Makefile +0 -32
  485. data/ext/v8/upstream/fpic-on-linux-amd64.patch +0 -13
  486. data/ext/v8/upstream/no-strict-aliasing.patch +0 -13
  487. data/ext/v8/upstream/scons/CHANGES.txt +0 -5183
  488. data/ext/v8/upstream/scons/LICENSE.txt +0 -20
  489. data/ext/v8/upstream/scons/MANIFEST +0 -202
  490. data/ext/v8/upstream/scons/PKG-INFO +0 -13
  491. data/ext/v8/upstream/scons/README.txt +0 -273
  492. data/ext/v8/upstream/scons/RELEASE.txt +0 -1040
  493. data/ext/v8/upstream/scons/engine/SCons/Action.py +0 -1256
  494. data/ext/v8/upstream/scons/engine/SCons/Builder.py +0 -868
  495. data/ext/v8/upstream/scons/engine/SCons/CacheDir.py +0 -217
  496. data/ext/v8/upstream/scons/engine/SCons/Conftest.py +0 -794
  497. data/ext/v8/upstream/scons/engine/SCons/Debug.py +0 -237
  498. data/ext/v8/upstream/scons/engine/SCons/Defaults.py +0 -485
  499. data/ext/v8/upstream/scons/engine/SCons/Environment.py +0 -2327
  500. data/ext/v8/upstream/scons/engine/SCons/Errors.py +0 -207
  501. data/ext/v8/upstream/scons/engine/SCons/Executor.py +0 -636
  502. data/ext/v8/upstream/scons/engine/SCons/Job.py +0 -435
  503. data/ext/v8/upstream/scons/engine/SCons/Memoize.py +0 -292
  504. data/ext/v8/upstream/scons/engine/SCons/Node/Alias.py +0 -153
  505. data/ext/v8/upstream/scons/engine/SCons/Node/FS.py +0 -3220
  506. data/ext/v8/upstream/scons/engine/SCons/Node/Python.py +0 -128
  507. data/ext/v8/upstream/scons/engine/SCons/Node/__init__.py +0 -1341
  508. data/ext/v8/upstream/scons/engine/SCons/Options/BoolOption.py +0 -50
  509. data/ext/v8/upstream/scons/engine/SCons/Options/EnumOption.py +0 -50
  510. data/ext/v8/upstream/scons/engine/SCons/Options/ListOption.py +0 -50
  511. data/ext/v8/upstream/scons/engine/SCons/Options/PackageOption.py +0 -50
  512. data/ext/v8/upstream/scons/engine/SCons/Options/PathOption.py +0 -76
  513. data/ext/v8/upstream/scons/engine/SCons/Options/__init__.py +0 -74
  514. data/ext/v8/upstream/scons/engine/SCons/PathList.py +0 -232
  515. data/ext/v8/upstream/scons/engine/SCons/Platform/__init__.py +0 -236
  516. data/ext/v8/upstream/scons/engine/SCons/Platform/aix.py +0 -70
  517. data/ext/v8/upstream/scons/engine/SCons/Platform/cygwin.py +0 -55
  518. data/ext/v8/upstream/scons/engine/SCons/Platform/darwin.py +0 -46
  519. data/ext/v8/upstream/scons/engine/SCons/Platform/hpux.py +0 -46
  520. data/ext/v8/upstream/scons/engine/SCons/Platform/irix.py +0 -44
  521. data/ext/v8/upstream/scons/engine/SCons/Platform/os2.py +0 -58
  522. data/ext/v8/upstream/scons/engine/SCons/Platform/posix.py +0 -264
  523. data/ext/v8/upstream/scons/engine/SCons/Platform/sunos.py +0 -50
  524. data/ext/v8/upstream/scons/engine/SCons/Platform/win32.py +0 -386
  525. data/ext/v8/upstream/scons/engine/SCons/SConf.py +0 -1038
  526. data/ext/v8/upstream/scons/engine/SCons/SConsign.py +0 -381
  527. data/ext/v8/upstream/scons/engine/SCons/Scanner/C.py +0 -132
  528. data/ext/v8/upstream/scons/engine/SCons/Scanner/D.py +0 -74
  529. data/ext/v8/upstream/scons/engine/SCons/Scanner/Dir.py +0 -111
  530. data/ext/v8/upstream/scons/engine/SCons/Scanner/Fortran.py +0 -320
  531. data/ext/v8/upstream/scons/engine/SCons/Scanner/IDL.py +0 -48
  532. data/ext/v8/upstream/scons/engine/SCons/Scanner/LaTeX.py +0 -378
  533. data/ext/v8/upstream/scons/engine/SCons/Scanner/Prog.py +0 -103
  534. data/ext/v8/upstream/scons/engine/SCons/Scanner/RC.py +0 -55
  535. data/ext/v8/upstream/scons/engine/SCons/Scanner/__init__.py +0 -415
  536. data/ext/v8/upstream/scons/engine/SCons/Script/Interactive.py +0 -386
  537. data/ext/v8/upstream/scons/engine/SCons/Script/Main.py +0 -1360
  538. data/ext/v8/upstream/scons/engine/SCons/Script/SConsOptions.py +0 -944
  539. data/ext/v8/upstream/scons/engine/SCons/Script/SConscript.py +0 -642
  540. data/ext/v8/upstream/scons/engine/SCons/Script/__init__.py +0 -414
  541. data/ext/v8/upstream/scons/engine/SCons/Sig.py +0 -63
  542. data/ext/v8/upstream/scons/engine/SCons/Subst.py +0 -911
  543. data/ext/v8/upstream/scons/engine/SCons/Taskmaster.py +0 -1030
  544. data/ext/v8/upstream/scons/engine/SCons/Tool/386asm.py +0 -61
  545. data/ext/v8/upstream/scons/engine/SCons/Tool/BitKeeper.py +0 -65
  546. data/ext/v8/upstream/scons/engine/SCons/Tool/CVS.py +0 -73
  547. data/ext/v8/upstream/scons/engine/SCons/Tool/FortranCommon.py +0 -247
  548. data/ext/v8/upstream/scons/engine/SCons/Tool/JavaCommon.py +0 -324
  549. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/__init__.py +0 -56
  550. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/arch.py +0 -61
  551. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/common.py +0 -210
  552. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/netframework.py +0 -84
  553. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/sdk.py +0 -321
  554. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vc.py +0 -367
  555. data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vs.py +0 -497
  556. data/ext/v8/upstream/scons/engine/SCons/Tool/Perforce.py +0 -104
  557. data/ext/v8/upstream/scons/engine/SCons/Tool/PharLapCommon.py +0 -138
  558. data/ext/v8/upstream/scons/engine/SCons/Tool/RCS.py +0 -64
  559. data/ext/v8/upstream/scons/engine/SCons/Tool/SCCS.py +0 -64
  560. data/ext/v8/upstream/scons/engine/SCons/Tool/Subversion.py +0 -71
  561. data/ext/v8/upstream/scons/engine/SCons/Tool/__init__.py +0 -675
  562. data/ext/v8/upstream/scons/engine/SCons/Tool/aixc++.py +0 -82
  563. data/ext/v8/upstream/scons/engine/SCons/Tool/aixcc.py +0 -74
  564. data/ext/v8/upstream/scons/engine/SCons/Tool/aixf77.py +0 -80
  565. data/ext/v8/upstream/scons/engine/SCons/Tool/aixlink.py +0 -76
  566. data/ext/v8/upstream/scons/engine/SCons/Tool/applelink.py +0 -71
  567. data/ext/v8/upstream/scons/engine/SCons/Tool/ar.py +0 -63
  568. data/ext/v8/upstream/scons/engine/SCons/Tool/as.py +0 -78
  569. data/ext/v8/upstream/scons/engine/SCons/Tool/bcc32.py +0 -82
  570. data/ext/v8/upstream/scons/engine/SCons/Tool/c++.py +0 -99
  571. data/ext/v8/upstream/scons/engine/SCons/Tool/cc.py +0 -114
  572. data/ext/v8/upstream/scons/engine/SCons/Tool/cvf.py +0 -58
  573. data/ext/v8/upstream/scons/engine/SCons/Tool/default.py +0 -50
  574. data/ext/v8/upstream/scons/engine/SCons/Tool/dmd.py +0 -224
  575. data/ext/v8/upstream/scons/engine/SCons/Tool/dvi.py +0 -64
  576. data/ext/v8/upstream/scons/engine/SCons/Tool/dvipdf.py +0 -125
  577. data/ext/v8/upstream/scons/engine/SCons/Tool/dvips.py +0 -94
  578. data/ext/v8/upstream/scons/engine/SCons/Tool/f77.py +0 -62
  579. data/ext/v8/upstream/scons/engine/SCons/Tool/f90.py +0 -62
  580. data/ext/v8/upstream/scons/engine/SCons/Tool/f95.py +0 -63
  581. data/ext/v8/upstream/scons/engine/SCons/Tool/filesystem.py +0 -98
  582. data/ext/v8/upstream/scons/engine/SCons/Tool/fortran.py +0 -63
  583. data/ext/v8/upstream/scons/engine/SCons/Tool/g++.py +0 -90
  584. data/ext/v8/upstream/scons/engine/SCons/Tool/g77.py +0 -73
  585. data/ext/v8/upstream/scons/engine/SCons/Tool/gas.py +0 -53
  586. data/ext/v8/upstream/scons/engine/SCons/Tool/gcc.py +0 -80
  587. data/ext/v8/upstream/scons/engine/SCons/Tool/gfortran.py +0 -64
  588. data/ext/v8/upstream/scons/engine/SCons/Tool/gnulink.py +0 -63
  589. data/ext/v8/upstream/scons/engine/SCons/Tool/gs.py +0 -81
  590. data/ext/v8/upstream/scons/engine/SCons/Tool/hpc++.py +0 -85
  591. data/ext/v8/upstream/scons/engine/SCons/Tool/hpcc.py +0 -53
  592. data/ext/v8/upstream/scons/engine/SCons/Tool/hplink.py +0 -77
  593. data/ext/v8/upstream/scons/engine/SCons/Tool/icc.py +0 -59
  594. data/ext/v8/upstream/scons/engine/SCons/Tool/icl.py +0 -52
  595. data/ext/v8/upstream/scons/engine/SCons/Tool/ifl.py +0 -72
  596. data/ext/v8/upstream/scons/engine/SCons/Tool/ifort.py +0 -90
  597. data/ext/v8/upstream/scons/engine/SCons/Tool/ilink.py +0 -59
  598. data/ext/v8/upstream/scons/engine/SCons/Tool/ilink32.py +0 -60
  599. data/ext/v8/upstream/scons/engine/SCons/Tool/install.py +0 -229
  600. data/ext/v8/upstream/scons/engine/SCons/Tool/intelc.py +0 -490
  601. data/ext/v8/upstream/scons/engine/SCons/Tool/ipkg.py +0 -71
  602. data/ext/v8/upstream/scons/engine/SCons/Tool/jar.py +0 -110
  603. data/ext/v8/upstream/scons/engine/SCons/Tool/javac.py +0 -234
  604. data/ext/v8/upstream/scons/engine/SCons/Tool/javah.py +0 -138
  605. data/ext/v8/upstream/scons/engine/SCons/Tool/latex.py +0 -79
  606. data/ext/v8/upstream/scons/engine/SCons/Tool/lex.py +0 -99
  607. data/ext/v8/upstream/scons/engine/SCons/Tool/link.py +0 -121
  608. data/ext/v8/upstream/scons/engine/SCons/Tool/linkloc.py +0 -112
  609. data/ext/v8/upstream/scons/engine/SCons/Tool/m4.py +0 -63
  610. data/ext/v8/upstream/scons/engine/SCons/Tool/masm.py +0 -77
  611. data/ext/v8/upstream/scons/engine/SCons/Tool/midl.py +0 -90
  612. data/ext/v8/upstream/scons/engine/SCons/Tool/mingw.py +0 -159
  613. data/ext/v8/upstream/scons/engine/SCons/Tool/mslib.py +0 -64
  614. data/ext/v8/upstream/scons/engine/SCons/Tool/mslink.py +0 -266
  615. data/ext/v8/upstream/scons/engine/SCons/Tool/mssdk.py +0 -50
  616. data/ext/v8/upstream/scons/engine/SCons/Tool/msvc.py +0 -269
  617. data/ext/v8/upstream/scons/engine/SCons/Tool/msvs.py +0 -1439
  618. data/ext/v8/upstream/scons/engine/SCons/Tool/mwcc.py +0 -208
  619. data/ext/v8/upstream/scons/engine/SCons/Tool/mwld.py +0 -107
  620. data/ext/v8/upstream/scons/engine/SCons/Tool/nasm.py +0 -72
  621. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/__init__.py +0 -314
  622. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/ipk.py +0 -185
  623. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/msi.py +0 -526
  624. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/rpm.py +0 -367
  625. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_tarbz2.py +0 -43
  626. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_targz.py +0 -43
  627. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_zip.py +0 -43
  628. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/tarbz2.py +0 -44
  629. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/targz.py +0 -44
  630. data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/zip.py +0 -44
  631. data/ext/v8/upstream/scons/engine/SCons/Tool/pdf.py +0 -78
  632. data/ext/v8/upstream/scons/engine/SCons/Tool/pdflatex.py +0 -83
  633. data/ext/v8/upstream/scons/engine/SCons/Tool/pdftex.py +0 -108
  634. data/ext/v8/upstream/scons/engine/SCons/Tool/qt.py +0 -336
  635. data/ext/v8/upstream/scons/engine/SCons/Tool/rmic.py +0 -121
  636. data/ext/v8/upstream/scons/engine/SCons/Tool/rpcgen.py +0 -70
  637. data/ext/v8/upstream/scons/engine/SCons/Tool/rpm.py +0 -132
  638. data/ext/v8/upstream/scons/engine/SCons/Tool/sgiar.py +0 -68
  639. data/ext/v8/upstream/scons/engine/SCons/Tool/sgic++.py +0 -58
  640. data/ext/v8/upstream/scons/engine/SCons/Tool/sgicc.py +0 -53
  641. data/ext/v8/upstream/scons/engine/SCons/Tool/sgilink.py +0 -63
  642. data/ext/v8/upstream/scons/engine/SCons/Tool/sunar.py +0 -67
  643. data/ext/v8/upstream/scons/engine/SCons/Tool/sunc++.py +0 -142
  644. data/ext/v8/upstream/scons/engine/SCons/Tool/suncc.py +0 -58
  645. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf77.py +0 -63
  646. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf90.py +0 -64
  647. data/ext/v8/upstream/scons/engine/SCons/Tool/sunf95.py +0 -64
  648. data/ext/v8/upstream/scons/engine/SCons/Tool/sunlink.py +0 -77
  649. data/ext/v8/upstream/scons/engine/SCons/Tool/swig.py +0 -186
  650. data/ext/v8/upstream/scons/engine/SCons/Tool/tar.py +0 -73
  651. data/ext/v8/upstream/scons/engine/SCons/Tool/tex.py +0 -805
  652. data/ext/v8/upstream/scons/engine/SCons/Tool/textfile.py +0 -175
  653. data/ext/v8/upstream/scons/engine/SCons/Tool/tlib.py +0 -53
  654. data/ext/v8/upstream/scons/engine/SCons/Tool/wix.py +0 -100
  655. data/ext/v8/upstream/scons/engine/SCons/Tool/yacc.py +0 -131
  656. data/ext/v8/upstream/scons/engine/SCons/Tool/zip.py +0 -100
  657. data/ext/v8/upstream/scons/engine/SCons/Util.py +0 -1645
  658. data/ext/v8/upstream/scons/engine/SCons/Variables/BoolVariable.py +0 -91
  659. data/ext/v8/upstream/scons/engine/SCons/Variables/EnumVariable.py +0 -107
  660. data/ext/v8/upstream/scons/engine/SCons/Variables/ListVariable.py +0 -139
  661. data/ext/v8/upstream/scons/engine/SCons/Variables/PackageVariable.py +0 -109
  662. data/ext/v8/upstream/scons/engine/SCons/Variables/PathVariable.py +0 -147
  663. data/ext/v8/upstream/scons/engine/SCons/Variables/__init__.py +0 -317
  664. data/ext/v8/upstream/scons/engine/SCons/Warnings.py +0 -228
  665. data/ext/v8/upstream/scons/engine/SCons/__init__.py +0 -49
  666. data/ext/v8/upstream/scons/engine/SCons/compat/__init__.py +0 -302
  667. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_UserString.py +0 -98
  668. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_hashlib.py +0 -91
  669. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_itertools.py +0 -124
  670. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_optparse.py +0 -1725
  671. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets.py +0 -583
  672. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets15.py +0 -176
  673. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_shlex.py +0 -325
  674. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_subprocess.py +0 -1296
  675. data/ext/v8/upstream/scons/engine/SCons/compat/_scons_textwrap.py +0 -382
  676. data/ext/v8/upstream/scons/engine/SCons/compat/builtins.py +0 -187
  677. data/ext/v8/upstream/scons/engine/SCons/cpp.py +0 -598
  678. data/ext/v8/upstream/scons/engine/SCons/dblite.py +0 -248
  679. data/ext/v8/upstream/scons/engine/SCons/exitfuncs.py +0 -77
  680. data/ext/v8/upstream/scons/os_spawnv_fix.diff +0 -83
  681. data/ext/v8/upstream/scons/scons-time.1 +0 -1017
  682. data/ext/v8/upstream/scons/scons.1 +0 -15179
  683. data/ext/v8/upstream/scons/sconsign.1 +0 -208
  684. data/ext/v8/upstream/scons/script/scons +0 -184
  685. data/ext/v8/upstream/scons/script/scons-time +0 -1529
  686. data/ext/v8/upstream/scons/script/scons.bat +0 -31
  687. data/ext/v8/upstream/scons/script/sconsign +0 -508
  688. data/ext/v8/upstream/scons/setup.cfg +0 -6
  689. data/ext/v8/upstream/scons/setup.py +0 -427
  690. data/ext/v8/v8.cpp +0 -89
  691. data/ext/v8/v8_cxt.cpp +0 -92
  692. data/ext/v8/v8_cxt.h +0 -20
  693. data/ext/v8/v8_func.cpp +0 -10
  694. data/ext/v8/v8_func.h +0 -11
  695. data/ext/v8/v8_msg.cpp +0 -54
  696. data/ext/v8/v8_msg.h +0 -18
  697. data/ext/v8/v8_obj.cpp +0 -52
  698. data/ext/v8/v8_obj.h +0 -13
  699. data/ext/v8/v8_ref.cpp +0 -26
  700. data/ext/v8/v8_ref.h +0 -31
  701. data/ext/v8/v8_script.cpp +0 -20
  702. data/ext/v8/v8_script.h +0 -8
  703. data/ext/v8/v8_standalone.cpp +0 -69
  704. data/ext/v8/v8_standalone.h +0 -31
  705. data/ext/v8/v8_str.cpp +0 -17
  706. data/ext/v8/v8_str.h +0 -9
  707. data/ext/v8/v8_template.cpp +0 -53
  708. data/ext/v8/v8_template.h +0 -13
  709. data/lib/v8/to.rb +0 -33
  710. data/lib/v8/v8.so +0 -0
  711. data/script/console +0 -10
  712. data/script/destroy +0 -14
  713. data/script/generate +0 -14
  714. data/spec/ext/cxt_spec.rb +0 -25
  715. data/spec/ext/obj_spec.rb +0 -13
  716. data/spec/redjs/jsapi_spec.rb +0 -405
  717. data/spec/redjs/tap.rb +0 -8
  718. data/spec/redjs_helper.rb +0 -3
  719. data/spec/spec.opts +0 -1
  720. data/spec/v8/to_spec.rb +0 -15
  721. data/tasks/rspec.rake +0 -21
@@ -1,1296 +0,0 @@
1
- # subprocess - Subprocesses with accessible I/O streams
2
- #
3
- # For more information about this module, see PEP 324.
4
- #
5
- # This module should remain compatible with Python 2.2, see PEP 291.
6
- #
7
- # Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
8
- #
9
- # Licensed to PSF under a Contributor Agreement.
10
- # See http://www.python.org/2.4/license for licensing details.
11
-
12
- r"""subprocess - Subprocesses with accessible I/O streams
13
-
14
- This module allows you to spawn processes, connect to their
15
- input/output/error pipes, and obtain their return codes. This module
16
- intends to replace several other, older modules and functions, like:
17
-
18
- os.system
19
- os.spawn*
20
- os.popen*
21
- popen2.*
22
- commands.*
23
-
24
- Information about how the subprocess module can be used to replace these
25
- modules and functions can be found below.
26
-
27
-
28
-
29
- Using the subprocess module
30
- ===========================
31
- This module defines one class called Popen:
32
-
33
- class Popen(args, bufsize=0, executable=None,
34
- stdin=None, stdout=None, stderr=None,
35
- preexec_fn=None, close_fds=False, shell=False,
36
- cwd=None, env=None, universal_newlines=False,
37
- startupinfo=None, creationflags=0):
38
-
39
-
40
- Arguments are:
41
-
42
- args should be a string, or a sequence of program arguments. The
43
- program to execute is normally the first item in the args sequence or
44
- string, but can be explicitly set by using the executable argument.
45
-
46
- On UNIX, with shell=False (default): In this case, the Popen class
47
- uses os.execvp() to execute the child program. args should normally
48
- be a sequence. A string will be treated as a sequence with the string
49
- as the only item (the program to execute).
50
-
51
- On UNIX, with shell=True: If args is a string, it specifies the
52
- command string to execute through the shell. If args is a sequence,
53
- the first item specifies the command string, and any additional items
54
- will be treated as additional shell arguments.
55
-
56
- On Windows: the Popen class uses CreateProcess() to execute the child
57
- program, which operates on strings. If args is a sequence, it will be
58
- converted to a string using the list2cmdline method. Please note that
59
- not all MS Windows applications interpret the command line the same
60
- way: The list2cmdline is designed for applications using the same
61
- rules as the MS C runtime.
62
-
63
- bufsize, if given, has the same meaning as the corresponding argument
64
- to the built-in open() function: 0 means unbuffered, 1 means line
65
- buffered, any other positive value means use a buffer of
66
- (approximately) that size. A negative bufsize means to use the system
67
- default, which usually means fully buffered. The default value for
68
- bufsize is 0 (unbuffered).
69
-
70
- stdin, stdout and stderr specify the executed programs' standard
71
- input, standard output and standard error file handles, respectively.
72
- Valid values are PIPE, an existing file descriptor (a positive
73
- integer), an existing file object, and None. PIPE indicates that a
74
- new pipe to the child should be created. With None, no redirection
75
- will occur; the child's file handles will be inherited from the
76
- parent. Additionally, stderr can be STDOUT, which indicates that the
77
- stderr data from the applications should be captured into the same
78
- file handle as for stdout.
79
-
80
- If preexec_fn is set to a callable object, this object will be called
81
- in the child process just before the child is executed.
82
-
83
- If close_fds is true, all file descriptors except 0, 1 and 2 will be
84
- closed before the child process is executed.
85
-
86
- if shell is true, the specified command will be executed through the
87
- shell.
88
-
89
- If cwd is not None, the current directory will be changed to cwd
90
- before the child is executed.
91
-
92
- If env is not None, it defines the environment variables for the new
93
- process.
94
-
95
- If universal_newlines is true, the file objects stdout and stderr are
96
- opened as a text files, but lines may be terminated by any of '\n',
97
- the Unix end-of-line convention, '\r', the Macintosh convention or
98
- '\r\n', the Windows convention. All of these external representations
99
- are seen as '\n' by the Python program. Note: This feature is only
100
- available if Python is built with universal newline support (the
101
- default). Also, the newlines attribute of the file objects stdout,
102
- stdin and stderr are not updated by the communicate() method.
103
-
104
- The startupinfo and creationflags, if given, will be passed to the
105
- underlying CreateProcess() function. They can specify things such as
106
- appearance of the main window and priority for the new process.
107
- (Windows only)
108
-
109
-
110
- This module also defines two shortcut functions:
111
-
112
- call(*popenargs, **kwargs):
113
- Run command with arguments. Wait for command to complete, then
114
- return the returncode attribute.
115
-
116
- The arguments are the same as for the Popen constructor. Example:
117
-
118
- retcode = call(["ls", "-l"])
119
-
120
- check_call(*popenargs, **kwargs):
121
- Run command with arguments. Wait for command to complete. If the
122
- exit code was zero then return, otherwise raise
123
- CalledProcessError. The CalledProcessError object will have the
124
- return code in the returncode attribute.
125
-
126
- The arguments are the same as for the Popen constructor. Example:
127
-
128
- check_call(["ls", "-l"])
129
-
130
- Exceptions
131
- ----------
132
- Exceptions raised in the child process, before the new program has
133
- started to execute, will be re-raised in the parent. Additionally,
134
- the exception object will have one extra attribute called
135
- 'child_traceback', which is a string containing traceback information
136
- from the childs point of view.
137
-
138
- The most common exception raised is OSError. This occurs, for
139
- example, when trying to execute a non-existent file. Applications
140
- should prepare for OSErrors.
141
-
142
- A ValueError will be raised if Popen is called with invalid arguments.
143
-
144
- check_call() will raise CalledProcessError, if the called process
145
- returns a non-zero return code.
146
-
147
-
148
- Security
149
- --------
150
- Unlike some other popen functions, this implementation will never call
151
- /bin/sh implicitly. This means that all characters, including shell
152
- metacharacters, can safely be passed to child processes.
153
-
154
-
155
- Popen objects
156
- =============
157
- Instances of the Popen class have the following methods:
158
-
159
- poll()
160
- Check if child process has terminated. Returns returncode
161
- attribute.
162
-
163
- wait()
164
- Wait for child process to terminate. Returns returncode attribute.
165
-
166
- communicate(input=None)
167
- Interact with process: Send data to stdin. Read data from stdout
168
- and stderr, until end-of-file is reached. Wait for process to
169
- terminate. The optional stdin argument should be a string to be
170
- sent to the child process, or None, if no data should be sent to
171
- the child.
172
-
173
- communicate() returns a tuple (stdout, stderr).
174
-
175
- Note: The data read is buffered in memory, so do not use this
176
- method if the data size is large or unlimited.
177
-
178
- The following attributes are also available:
179
-
180
- stdin
181
- If the stdin argument is PIPE, this attribute is a file object
182
- that provides input to the child process. Otherwise, it is None.
183
-
184
- stdout
185
- If the stdout argument is PIPE, this attribute is a file object
186
- that provides output from the child process. Otherwise, it is
187
- None.
188
-
189
- stderr
190
- If the stderr argument is PIPE, this attribute is file object that
191
- provides error output from the child process. Otherwise, it is
192
- None.
193
-
194
- pid
195
- The process ID of the child process.
196
-
197
- returncode
198
- The child return code. A None value indicates that the process
199
- hasn't terminated yet. A negative value -N indicates that the
200
- child was terminated by signal N (UNIX only).
201
-
202
-
203
- Replacing older functions with the subprocess module
204
- ====================================================
205
- In this section, "a ==> b" means that b can be used as a replacement
206
- for a.
207
-
208
- Note: All functions in this section fail (more or less) silently if
209
- the executed program cannot be found; this module raises an OSError
210
- exception.
211
-
212
- In the following examples, we assume that the subprocess module is
213
- imported with "from subprocess import *".
214
-
215
-
216
- Replacing /bin/sh shell backquote
217
- ---------------------------------
218
- output=`mycmd myarg`
219
- ==>
220
- output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
221
-
222
-
223
- Replacing shell pipe line
224
- -------------------------
225
- output=`dmesg | grep hda`
226
- ==>
227
- p1 = Popen(["dmesg"], stdout=PIPE)
228
- p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
229
- output = p2.communicate()[0]
230
-
231
-
232
- Replacing os.system()
233
- ---------------------
234
- sts = os.system("mycmd" + " myarg")
235
- ==>
236
- p = Popen("mycmd" + " myarg", shell=True)
237
- pid, sts = os.waitpid(p.pid, 0)
238
-
239
- Note:
240
-
241
- * Calling the program through the shell is usually not required.
242
-
243
- * It's easier to look at the returncode attribute than the
244
- exitstatus.
245
-
246
- A more real-world example would look like this:
247
-
248
- try:
249
- retcode = call("mycmd" + " myarg", shell=True)
250
- if retcode < 0:
251
- print >>sys.stderr, "Child was terminated by signal", -retcode
252
- else:
253
- print >>sys.stderr, "Child returned", retcode
254
- except OSError, e:
255
- print >>sys.stderr, "Execution failed:", e
256
-
257
-
258
- Replacing os.spawn*
259
- -------------------
260
- P_NOWAIT example:
261
-
262
- pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
263
- ==>
264
- pid = Popen(["/bin/mycmd", "myarg"]).pid
265
-
266
-
267
- P_WAIT example:
268
-
269
- retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
270
- ==>
271
- retcode = call(["/bin/mycmd", "myarg"])
272
-
273
-
274
- Vector example:
275
-
276
- os.spawnvp(os.P_NOWAIT, path, args)
277
- ==>
278
- Popen([path] + args[1:])
279
-
280
-
281
- Environment example:
282
-
283
- os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
284
- ==>
285
- Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
286
-
287
-
288
- Replacing os.popen*
289
- -------------------
290
- pipe = os.popen(cmd, mode='r', bufsize)
291
- ==>
292
- pipe = Popen(cmd, shell=True, bufsize=bufsize, stdout=PIPE).stdout
293
-
294
- pipe = os.popen(cmd, mode='w', bufsize)
295
- ==>
296
- pipe = Popen(cmd, shell=True, bufsize=bufsize, stdin=PIPE).stdin
297
-
298
-
299
- (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
300
- ==>
301
- p = Popen(cmd, shell=True, bufsize=bufsize,
302
- stdin=PIPE, stdout=PIPE, close_fds=True)
303
- (child_stdin, child_stdout) = (p.stdin, p.stdout)
304
-
305
-
306
- (child_stdin,
307
- child_stdout,
308
- child_stderr) = os.popen3(cmd, mode, bufsize)
309
- ==>
310
- p = Popen(cmd, shell=True, bufsize=bufsize,
311
- stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
312
- (child_stdin,
313
- child_stdout,
314
- child_stderr) = (p.stdin, p.stdout, p.stderr)
315
-
316
-
317
- (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
318
- ==>
319
- p = Popen(cmd, shell=True, bufsize=bufsize,
320
- stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
321
- (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
322
-
323
-
324
- Replacing popen2.*
325
- ------------------
326
- Note: If the cmd argument to popen2 functions is a string, the command
327
- is executed through /bin/sh. If it is a list, the command is directly
328
- executed.
329
-
330
- (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
331
- ==>
332
- p = Popen(["somestring"], shell=True, bufsize=bufsize
333
- stdin=PIPE, stdout=PIPE, close_fds=True)
334
- (child_stdout, child_stdin) = (p.stdout, p.stdin)
335
-
336
-
337
- (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
338
- ==>
339
- p = Popen(["mycmd", "myarg"], bufsize=bufsize,
340
- stdin=PIPE, stdout=PIPE, close_fds=True)
341
- (child_stdout, child_stdin) = (p.stdout, p.stdin)
342
-
343
- The popen2.Popen3 and popen3.Popen4 basically works as subprocess.Popen,
344
- except that:
345
-
346
- * subprocess.Popen raises an exception if the execution fails
347
- * the capturestderr argument is replaced with the stderr argument.
348
- * stdin=PIPE and stdout=PIPE must be specified.
349
- * popen2 closes all filedescriptors by default, but you have to specify
350
- close_fds=True with subprocess.Popen.
351
-
352
-
353
- """
354
-
355
- import sys
356
- mswindows = (sys.platform == "win32")
357
-
358
- import os
359
- import string
360
- import types
361
- import traceback
362
-
363
- # Exception classes used by this module.
364
- class CalledProcessError(Exception):
365
- """This exception is raised when a process run by check_call() returns
366
- a non-zero exit status. The exit status will be stored in the
367
- returncode attribute."""
368
- def __init__(self, returncode, cmd):
369
- self.returncode = returncode
370
- self.cmd = cmd
371
- def __str__(self):
372
- return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode)
373
-
374
-
375
- if mswindows:
376
- try:
377
- import threading
378
- except ImportError:
379
- # SCons: the threading module is only used by the communicate()
380
- # method, which we don't actually use, so don't worry if we
381
- # can't import it.
382
- pass
383
- import msvcrt
384
- if 0: # <-- change this to use pywin32 instead of the _subprocess driver
385
- import pywintypes
386
- from win32api import GetStdHandle, STD_INPUT_HANDLE, \
387
- STD_OUTPUT_HANDLE, STD_ERROR_HANDLE
388
- from win32api import GetCurrentProcess, DuplicateHandle, \
389
- GetModuleFileName, GetVersion
390
- from win32con import DUPLICATE_SAME_ACCESS, SW_HIDE
391
- from win32pipe import CreatePipe
392
- from win32process import CreateProcess, STARTUPINFO, \
393
- GetExitCodeProcess, STARTF_USESTDHANDLES, \
394
- STARTF_USESHOWWINDOW, CREATE_NEW_CONSOLE
395
- from win32event import WaitForSingleObject, INFINITE, WAIT_OBJECT_0
396
- else:
397
- # SCons: don't die on Python versions that don't have _subprocess.
398
- try:
399
- from _subprocess import *
400
- except ImportError:
401
- pass
402
- class STARTUPINFO:
403
- dwFlags = 0
404
- hStdInput = None
405
- hStdOutput = None
406
- hStdError = None
407
- wShowWindow = 0
408
- class pywintypes:
409
- error = IOError
410
- else:
411
- import select
412
- import errno
413
- import fcntl
414
- import pickle
415
-
416
- try:
417
- fcntl.F_GETFD
418
- except AttributeError:
419
- fcntl.F_GETFD = 1
420
-
421
- try:
422
- fcntl.F_SETFD
423
- except AttributeError:
424
- fcntl.F_SETFD = 2
425
-
426
- __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "CalledProcessError"]
427
-
428
- try:
429
- MAXFD = os.sysconf("SC_OPEN_MAX")
430
- except KeyboardInterrupt:
431
- raise # SCons: don't swallow keyboard interrupts
432
- except:
433
- MAXFD = 256
434
-
435
- # True/False does not exist on 2.2.0
436
- try:
437
- False
438
- except NameError:
439
- False = 0
440
- True = 1
441
-
442
- try:
443
- isinstance(1, int)
444
- except TypeError:
445
- def is_int(obj):
446
- return type(obj) == type(1)
447
- def is_int_or_long(obj):
448
- return type(obj) in (type(1), type(1L))
449
- else:
450
- def is_int(obj):
451
- return isinstance(obj, int)
452
- def is_int_or_long(obj):
453
- return isinstance(obj, (int, long))
454
-
455
- try:
456
- types.StringTypes
457
- except AttributeError:
458
- try:
459
- types.StringTypes = (types.StringType, types.UnicodeType)
460
- except AttributeError:
461
- types.StringTypes = (types.StringType,)
462
- def is_string(obj):
463
- return type(obj) in types.StringTypes
464
- else:
465
- def is_string(obj):
466
- return isinstance(obj, types.StringTypes)
467
-
468
- _active = []
469
-
470
- def _cleanup():
471
- for inst in _active[:]:
472
- if inst.poll(_deadstate=sys.maxint) >= 0:
473
- try:
474
- _active.remove(inst)
475
- except ValueError:
476
- # This can happen if two threads create a new Popen instance.
477
- # It's harmless that it was already removed, so ignore.
478
- pass
479
-
480
- PIPE = -1
481
- STDOUT = -2
482
-
483
-
484
- def call(*popenargs, **kwargs):
485
- """Run command with arguments. Wait for command to complete, then
486
- return the returncode attribute.
487
-
488
- The arguments are the same as for the Popen constructor. Example:
489
-
490
- retcode = call(["ls", "-l"])
491
- """
492
- return apply(Popen, popenargs, kwargs).wait()
493
-
494
-
495
- def check_call(*popenargs, **kwargs):
496
- """Run command with arguments. Wait for command to complete. If
497
- the exit code was zero then return, otherwise raise
498
- CalledProcessError. The CalledProcessError object will have the
499
- return code in the returncode attribute.
500
-
501
- The arguments are the same as for the Popen constructor. Example:
502
-
503
- check_call(["ls", "-l"])
504
- """
505
- retcode = apply(call, popenargs, kwargs)
506
- cmd = kwargs.get("args")
507
- if cmd is None:
508
- cmd = popenargs[0]
509
- if retcode:
510
- raise CalledProcessError(retcode, cmd)
511
- return retcode
512
-
513
-
514
- def list2cmdline(seq):
515
- """
516
- Translate a sequence of arguments into a command line
517
- string, using the same rules as the MS C runtime:
518
-
519
- 1) Arguments are delimited by white space, which is either a
520
- space or a tab.
521
-
522
- 2) A string surrounded by double quotation marks is
523
- interpreted as a single argument, regardless of white space
524
- contained within. A quoted string can be embedded in an
525
- argument.
526
-
527
- 3) A double quotation mark preceded by a backslash is
528
- interpreted as a literal double quotation mark.
529
-
530
- 4) Backslashes are interpreted literally, unless they
531
- immediately precede a double quotation mark.
532
-
533
- 5) If backslashes immediately precede a double quotation mark,
534
- every pair of backslashes is interpreted as a literal
535
- backslash. If the number of backslashes is odd, the last
536
- backslash escapes the next double quotation mark as
537
- described in rule 3.
538
- """
539
-
540
- # See
541
- # http://msdn.microsoft.com/library/en-us/vccelng/htm/progs_12.asp
542
- result = []
543
- needquote = False
544
- for arg in seq:
545
- bs_buf = []
546
-
547
- # Add a space to separate this argument from the others
548
- if result:
549
- result.append(' ')
550
-
551
- needquote = (" " in arg) or ("\t" in arg)
552
- if needquote:
553
- result.append('"')
554
-
555
- for c in arg:
556
- if c == '\\':
557
- # Don't know if we need to double yet.
558
- bs_buf.append(c)
559
- elif c == '"':
560
- # Double backspaces.
561
- result.append('\\' * len(bs_buf)*2)
562
- bs_buf = []
563
- result.append('\\"')
564
- else:
565
- # Normal char
566
- if bs_buf:
567
- result.extend(bs_buf)
568
- bs_buf = []
569
- result.append(c)
570
-
571
- # Add remaining backspaces, if any.
572
- if bs_buf:
573
- result.extend(bs_buf)
574
-
575
- if needquote:
576
- result.extend(bs_buf)
577
- result.append('"')
578
-
579
- return string.join(result, '')
580
-
581
-
582
- try:
583
- object
584
- except NameError:
585
- class object:
586
- pass
587
-
588
- class Popen(object):
589
- def __init__(self, args, bufsize=0, executable=None,
590
- stdin=None, stdout=None, stderr=None,
591
- preexec_fn=None, close_fds=False, shell=False,
592
- cwd=None, env=None, universal_newlines=False,
593
- startupinfo=None, creationflags=0):
594
- """Create new Popen instance."""
595
- _cleanup()
596
-
597
- self._child_created = False
598
- if not is_int_or_long(bufsize):
599
- raise TypeError("bufsize must be an integer")
600
-
601
- if mswindows:
602
- if preexec_fn is not None:
603
- raise ValueError("preexec_fn is not supported on Windows "
604
- "platforms")
605
- if close_fds:
606
- raise ValueError("close_fds is not supported on Windows "
607
- "platforms")
608
- else:
609
- # POSIX
610
- if startupinfo is not None:
611
- raise ValueError("startupinfo is only supported on Windows "
612
- "platforms")
613
- if creationflags != 0:
614
- raise ValueError("creationflags is only supported on Windows "
615
- "platforms")
616
-
617
- self.stdin = None
618
- self.stdout = None
619
- self.stderr = None
620
- self.pid = None
621
- self.returncode = None
622
- self.universal_newlines = universal_newlines
623
-
624
- # Input and output objects. The general principle is like
625
- # this:
626
- #
627
- # Parent Child
628
- # ------ -----
629
- # p2cwrite ---stdin---> p2cread
630
- # c2pread <--stdout--- c2pwrite
631
- # errread <--stderr--- errwrite
632
- #
633
- # On POSIX, the child objects are file descriptors. On
634
- # Windows, these are Windows file handles. The parent objects
635
- # are file descriptors on both platforms. The parent objects
636
- # are None when not using PIPEs. The child objects are None
637
- # when not redirecting.
638
-
639
- (p2cread, p2cwrite,
640
- c2pread, c2pwrite,
641
- errread, errwrite) = self._get_handles(stdin, stdout, stderr)
642
-
643
- self._execute_child(args, executable, preexec_fn, close_fds,
644
- cwd, env, universal_newlines,
645
- startupinfo, creationflags, shell,
646
- p2cread, p2cwrite,
647
- c2pread, c2pwrite,
648
- errread, errwrite)
649
-
650
- if p2cwrite:
651
- self.stdin = os.fdopen(p2cwrite, 'wb', bufsize)
652
- if c2pread:
653
- if universal_newlines:
654
- self.stdout = os.fdopen(c2pread, 'rU', bufsize)
655
- else:
656
- self.stdout = os.fdopen(c2pread, 'rb', bufsize)
657
- if errread:
658
- if universal_newlines:
659
- self.stderr = os.fdopen(errread, 'rU', bufsize)
660
- else:
661
- self.stderr = os.fdopen(errread, 'rb', bufsize)
662
-
663
-
664
- def _translate_newlines(self, data):
665
- data = data.replace("\r\n", "\n")
666
- data = data.replace("\r", "\n")
667
- return data
668
-
669
-
670
- def __del__(self):
671
- if not self._child_created:
672
- # We didn't get to successfully create a child process.
673
- return
674
- # In case the child hasn't been waited on, check if it's done.
675
- self.poll(_deadstate=sys.maxint)
676
- if self.returncode is None and _active is not None:
677
- # Child is still running, keep us alive until we can wait on it.
678
- _active.append(self)
679
-
680
-
681
- def communicate(self, input=None):
682
- """Interact with process: Send data to stdin. Read data from
683
- stdout and stderr, until end-of-file is reached. Wait for
684
- process to terminate. The optional input argument should be a
685
- string to be sent to the child process, or None, if no data
686
- should be sent to the child.
687
-
688
- communicate() returns a tuple (stdout, stderr)."""
689
-
690
- # Optimization: If we are only using one pipe, or no pipe at
691
- # all, using select() or threads is unnecessary.
692
- if [self.stdin, self.stdout, self.stderr].count(None) >= 2:
693
- stdout = None
694
- stderr = None
695
- if self.stdin:
696
- if input:
697
- self.stdin.write(input)
698
- self.stdin.close()
699
- elif self.stdout:
700
- stdout = self.stdout.read()
701
- elif self.stderr:
702
- stderr = self.stderr.read()
703
- self.wait()
704
- return (stdout, stderr)
705
-
706
- return self._communicate(input)
707
-
708
-
709
- if mswindows:
710
- #
711
- # Windows methods
712
- #
713
- def _get_handles(self, stdin, stdout, stderr):
714
- """Construct and return tupel with IO objects:
715
- p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
716
- """
717
- if stdin is None and stdout is None and stderr is None:
718
- return (None, None, None, None, None, None)
719
-
720
- p2cread, p2cwrite = None, None
721
- c2pread, c2pwrite = None, None
722
- errread, errwrite = None, None
723
-
724
- if stdin is None:
725
- p2cread = GetStdHandle(STD_INPUT_HANDLE)
726
- elif stdin == PIPE:
727
- p2cread, p2cwrite = CreatePipe(None, 0)
728
- # Detach and turn into fd
729
- p2cwrite = p2cwrite.Detach()
730
- p2cwrite = msvcrt.open_osfhandle(p2cwrite, 0)
731
- elif is_int(stdin):
732
- p2cread = msvcrt.get_osfhandle(stdin)
733
- else:
734
- # Assuming file-like object
735
- p2cread = msvcrt.get_osfhandle(stdin.fileno())
736
- p2cread = self._make_inheritable(p2cread)
737
-
738
- if stdout is None:
739
- c2pwrite = GetStdHandle(STD_OUTPUT_HANDLE)
740
- elif stdout == PIPE:
741
- c2pread, c2pwrite = CreatePipe(None, 0)
742
- # Detach and turn into fd
743
- c2pread = c2pread.Detach()
744
- c2pread = msvcrt.open_osfhandle(c2pread, 0)
745
- elif is_int(stdout):
746
- c2pwrite = msvcrt.get_osfhandle(stdout)
747
- else:
748
- # Assuming file-like object
749
- c2pwrite = msvcrt.get_osfhandle(stdout.fileno())
750
- c2pwrite = self._make_inheritable(c2pwrite)
751
-
752
- if stderr is None:
753
- errwrite = GetStdHandle(STD_ERROR_HANDLE)
754
- elif stderr == PIPE:
755
- errread, errwrite = CreatePipe(None, 0)
756
- # Detach and turn into fd
757
- errread = errread.Detach()
758
- errread = msvcrt.open_osfhandle(errread, 0)
759
- elif stderr == STDOUT:
760
- errwrite = c2pwrite
761
- elif is_int(stderr):
762
- errwrite = msvcrt.get_osfhandle(stderr)
763
- else:
764
- # Assuming file-like object
765
- errwrite = msvcrt.get_osfhandle(stderr.fileno())
766
- errwrite = self._make_inheritable(errwrite)
767
-
768
- return (p2cread, p2cwrite,
769
- c2pread, c2pwrite,
770
- errread, errwrite)
771
-
772
-
773
- def _make_inheritable(self, handle):
774
- """Return a duplicate of handle, which is inheritable"""
775
- return DuplicateHandle(GetCurrentProcess(), handle,
776
- GetCurrentProcess(), 0, 1,
777
- DUPLICATE_SAME_ACCESS)
778
-
779
-
780
- def _find_w9xpopen(self):
781
- """Find and return absolut path to w9xpopen.exe"""
782
- w9xpopen = os.path.join(os.path.dirname(GetModuleFileName(0)),
783
- "w9xpopen.exe")
784
- if not os.path.exists(w9xpopen):
785
- # Eeek - file-not-found - possibly an embedding
786
- # situation - see if we can locate it in sys.exec_prefix
787
- w9xpopen = os.path.join(os.path.dirname(sys.exec_prefix),
788
- "w9xpopen.exe")
789
- if not os.path.exists(w9xpopen):
790
- raise RuntimeError("Cannot locate w9xpopen.exe, which is "
791
- "needed for Popen to work with your "
792
- "shell or platform.")
793
- return w9xpopen
794
-
795
-
796
- def _execute_child(self, args, executable, preexec_fn, close_fds,
797
- cwd, env, universal_newlines,
798
- startupinfo, creationflags, shell,
799
- p2cread, p2cwrite,
800
- c2pread, c2pwrite,
801
- errread, errwrite):
802
- """Execute program (MS Windows version)"""
803
-
804
- if not isinstance(args, types.StringTypes):
805
- args = list2cmdline(args)
806
-
807
- # Process startup details
808
- if startupinfo is None:
809
- startupinfo = STARTUPINFO()
810
- if None not in (p2cread, c2pwrite, errwrite):
811
- startupinfo.dwFlags = startupinfo.dwFlags | STARTF_USESTDHANDLES
812
- startupinfo.hStdInput = p2cread
813
- startupinfo.hStdOutput = c2pwrite
814
- startupinfo.hStdError = errwrite
815
-
816
- if shell:
817
- startupinfo.dwFlags = startupinfo.dwFlags | STARTF_USESHOWWINDOW
818
- startupinfo.wShowWindow = SW_HIDE
819
- comspec = os.environ.get("COMSPEC", "cmd.exe")
820
- args = comspec + " /c " + args
821
- if (GetVersion() >= 0x80000000L or
822
- os.path.basename(comspec).lower() == "command.com"):
823
- # Win9x, or using command.com on NT. We need to
824
- # use the w9xpopen intermediate program. For more
825
- # information, see KB Q150956
826
- # (http://web.archive.org/web/20011105084002/http://support.microsoft.com/support/kb/articles/Q150/9/56.asp)
827
- w9xpopen = self._find_w9xpopen()
828
- args = '"%s" %s' % (w9xpopen, args)
829
- # Not passing CREATE_NEW_CONSOLE has been known to
830
- # cause random failures on win9x. Specifically a
831
- # dialog: "Your program accessed mem currently in
832
- # use at xxx" and a hopeful warning about the
833
- # stability of your system. Cost is Ctrl+C wont
834
- # kill children.
835
- creationflags = creationflags | CREATE_NEW_CONSOLE
836
-
837
- # Start the process
838
- try:
839
- hp, ht, pid, tid = CreateProcess(executable, args,
840
- # no special security
841
- None, None,
842
- # must inherit handles to pass std
843
- # handles
844
- 1,
845
- creationflags,
846
- env,
847
- cwd,
848
- startupinfo)
849
- except pywintypes.error, e:
850
- # Translate pywintypes.error to WindowsError, which is
851
- # a subclass of OSError. FIXME: We should really
852
- # translate errno using _sys_errlist (or simliar), but
853
- # how can this be done from Python?
854
- raise apply(WindowsError, e.args)
855
-
856
- # Retain the process handle, but close the thread handle
857
- self._child_created = True
858
- self._handle = hp
859
- self.pid = pid
860
- ht.Close()
861
-
862
- # Child is launched. Close the parent's copy of those pipe
863
- # handles that only the child should have open. You need
864
- # to make sure that no handles to the write end of the
865
- # output pipe are maintained in this process or else the
866
- # pipe will not close when the child process exits and the
867
- # ReadFile will hang.
868
- if p2cread is not None:
869
- p2cread.Close()
870
- if c2pwrite is not None:
871
- c2pwrite.Close()
872
- if errwrite is not None:
873
- errwrite.Close()
874
-
875
-
876
- def poll(self, _deadstate=None):
877
- """Check if child process has terminated. Returns returncode
878
- attribute."""
879
- if self.returncode is None:
880
- if WaitForSingleObject(self._handle, 0) == WAIT_OBJECT_0:
881
- self.returncode = GetExitCodeProcess(self._handle)
882
- return self.returncode
883
-
884
-
885
- def wait(self):
886
- """Wait for child process to terminate. Returns returncode
887
- attribute."""
888
- if self.returncode is None:
889
- obj = WaitForSingleObject(self._handle, INFINITE)
890
- self.returncode = GetExitCodeProcess(self._handle)
891
- return self.returncode
892
-
893
-
894
- def _readerthread(self, fh, buffer):
895
- buffer.append(fh.read())
896
-
897
-
898
- def _communicate(self, input):
899
- stdout = None # Return
900
- stderr = None # Return
901
-
902
- if self.stdout:
903
- stdout = []
904
- stdout_thread = threading.Thread(target=self._readerthread,
905
- args=(self.stdout, stdout))
906
- stdout_thread.setDaemon(True)
907
- stdout_thread.start()
908
- if self.stderr:
909
- stderr = []
910
- stderr_thread = threading.Thread(target=self._readerthread,
911
- args=(self.stderr, stderr))
912
- stderr_thread.setDaemon(True)
913
- stderr_thread.start()
914
-
915
- if self.stdin:
916
- if input is not None:
917
- self.stdin.write(input)
918
- self.stdin.close()
919
-
920
- if self.stdout:
921
- stdout_thread.join()
922
- if self.stderr:
923
- stderr_thread.join()
924
-
925
- # All data exchanged. Translate lists into strings.
926
- if stdout is not None:
927
- stdout = stdout[0]
928
- if stderr is not None:
929
- stderr = stderr[0]
930
-
931
- # Translate newlines, if requested. We cannot let the file
932
- # object do the translation: It is based on stdio, which is
933
- # impossible to combine with select (unless forcing no
934
- # buffering).
935
- if self.universal_newlines and hasattr(file, 'newlines'):
936
- if stdout:
937
- stdout = self._translate_newlines(stdout)
938
- if stderr:
939
- stderr = self._translate_newlines(stderr)
940
-
941
- self.wait()
942
- return (stdout, stderr)
943
-
944
- else:
945
- #
946
- # POSIX methods
947
- #
948
- def _get_handles(self, stdin, stdout, stderr):
949
- """Construct and return tupel with IO objects:
950
- p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
951
- """
952
- p2cread, p2cwrite = None, None
953
- c2pread, c2pwrite = None, None
954
- errread, errwrite = None, None
955
-
956
- if stdin is None:
957
- pass
958
- elif stdin == PIPE:
959
- p2cread, p2cwrite = os.pipe()
960
- elif is_int(stdin):
961
- p2cread = stdin
962
- else:
963
- # Assuming file-like object
964
- p2cread = stdin.fileno()
965
-
966
- if stdout is None:
967
- pass
968
- elif stdout == PIPE:
969
- c2pread, c2pwrite = os.pipe()
970
- elif is_int(stdout):
971
- c2pwrite = stdout
972
- else:
973
- # Assuming file-like object
974
- c2pwrite = stdout.fileno()
975
-
976
- if stderr is None:
977
- pass
978
- elif stderr == PIPE:
979
- errread, errwrite = os.pipe()
980
- elif stderr == STDOUT:
981
- errwrite = c2pwrite
982
- elif is_int(stderr):
983
- errwrite = stderr
984
- else:
985
- # Assuming file-like object
986
- errwrite = stderr.fileno()
987
-
988
- return (p2cread, p2cwrite,
989
- c2pread, c2pwrite,
990
- errread, errwrite)
991
-
992
-
993
- def _set_cloexec_flag(self, fd):
994
- try:
995
- cloexec_flag = fcntl.FD_CLOEXEC
996
- except AttributeError:
997
- cloexec_flag = 1
998
-
999
- old = fcntl.fcntl(fd, fcntl.F_GETFD)
1000
- fcntl.fcntl(fd, fcntl.F_SETFD, old | cloexec_flag)
1001
-
1002
-
1003
- def _close_fds(self, but):
1004
- for i in xrange(3, MAXFD):
1005
- if i == but:
1006
- continue
1007
- try:
1008
- os.close(i)
1009
- except KeyboardInterrupt:
1010
- raise # SCons: don't swallow keyboard interrupts
1011
- except:
1012
- pass
1013
-
1014
-
1015
- def _execute_child(self, args, executable, preexec_fn, close_fds,
1016
- cwd, env, universal_newlines,
1017
- startupinfo, creationflags, shell,
1018
- p2cread, p2cwrite,
1019
- c2pread, c2pwrite,
1020
- errread, errwrite):
1021
- """Execute program (POSIX version)"""
1022
-
1023
- if is_string(args):
1024
- args = [args]
1025
-
1026
- if shell:
1027
- args = ["/bin/sh", "-c"] + args
1028
-
1029
- if executable is None:
1030
- executable = args[0]
1031
-
1032
- # For transferring possible exec failure from child to parent
1033
- # The first char specifies the exception type: 0 means
1034
- # OSError, 1 means some other error.
1035
- errpipe_read, errpipe_write = os.pipe()
1036
- self._set_cloexec_flag(errpipe_write)
1037
-
1038
- self.pid = os.fork()
1039
- self._child_created = True
1040
- if self.pid == 0:
1041
- # Child
1042
- try:
1043
- # Close parent's pipe ends
1044
- if p2cwrite:
1045
- os.close(p2cwrite)
1046
- if c2pread:
1047
- os.close(c2pread)
1048
- if errread:
1049
- os.close(errread)
1050
- os.close(errpipe_read)
1051
-
1052
- # Dup fds for child
1053
- if p2cread:
1054
- os.dup2(p2cread, 0)
1055
- if c2pwrite:
1056
- os.dup2(c2pwrite, 1)
1057
- if errwrite:
1058
- os.dup2(errwrite, 2)
1059
-
1060
- # Close pipe fds. Make sure we don't close the same
1061
- # fd more than once, or standard fds.
1062
- try:
1063
- set
1064
- except NameError:
1065
- # Fall-back for earlier Python versions, so epydoc
1066
- # can use this module directly to execute things.
1067
- if p2cread:
1068
- os.close(p2cread)
1069
- if c2pwrite and c2pwrite not in (p2cread,):
1070
- os.close(c2pwrite)
1071
- if errwrite and errwrite not in (p2cread, c2pwrite):
1072
- os.close(errwrite)
1073
- else:
1074
- for fd in set((p2cread, c2pwrite, errwrite))-set((0,1,2)):
1075
- if fd: os.close(fd)
1076
-
1077
- # Close all other fds, if asked for
1078
- if close_fds:
1079
- self._close_fds(but=errpipe_write)
1080
-
1081
- if cwd is not None:
1082
- os.chdir(cwd)
1083
-
1084
- if preexec_fn:
1085
- apply(preexec_fn)
1086
-
1087
- if env is None:
1088
- os.execvp(executable, args)
1089
- else:
1090
- os.execvpe(executable, args, env)
1091
-
1092
- except KeyboardInterrupt:
1093
- raise # SCons: don't swallow keyboard interrupts
1094
-
1095
- except:
1096
- exc_type, exc_value, tb = sys.exc_info()
1097
- # Save the traceback and attach it to the exception object
1098
- exc_lines = traceback.format_exception(exc_type,
1099
- exc_value,
1100
- tb)
1101
- exc_value.child_traceback = string.join(exc_lines, '')
1102
- os.write(errpipe_write, pickle.dumps(exc_value))
1103
-
1104
- # This exitcode won't be reported to applications, so it
1105
- # really doesn't matter what we return.
1106
- os._exit(255)
1107
-
1108
- # Parent
1109
- os.close(errpipe_write)
1110
- if p2cread and p2cwrite:
1111
- os.close(p2cread)
1112
- if c2pwrite and c2pread:
1113
- os.close(c2pwrite)
1114
- if errwrite and errread:
1115
- os.close(errwrite)
1116
-
1117
- # Wait for exec to fail or succeed; possibly raising exception
1118
- data = os.read(errpipe_read, 1048576) # Exceptions limited to 1 MB
1119
- os.close(errpipe_read)
1120
- if data != "":
1121
- os.waitpid(self.pid, 0)
1122
- child_exception = pickle.loads(data)
1123
- raise child_exception
1124
-
1125
-
1126
- def _handle_exitstatus(self, sts):
1127
- if os.WIFSIGNALED(sts):
1128
- self.returncode = -os.WTERMSIG(sts)
1129
- elif os.WIFEXITED(sts):
1130
- self.returncode = os.WEXITSTATUS(sts)
1131
- else:
1132
- # Should never happen
1133
- raise RuntimeError("Unknown child exit status!")
1134
-
1135
-
1136
- def poll(self, _deadstate=None):
1137
- """Check if child process has terminated. Returns returncode
1138
- attribute."""
1139
- if self.returncode is None:
1140
- try:
1141
- pid, sts = os.waitpid(self.pid, os.WNOHANG)
1142
- if pid == self.pid:
1143
- self._handle_exitstatus(sts)
1144
- except os.error:
1145
- if _deadstate is not None:
1146
- self.returncode = _deadstate
1147
- return self.returncode
1148
-
1149
-
1150
- def wait(self):
1151
- """Wait for child process to terminate. Returns returncode
1152
- attribute."""
1153
- if self.returncode is None:
1154
- pid, sts = os.waitpid(self.pid, 0)
1155
- self._handle_exitstatus(sts)
1156
- return self.returncode
1157
-
1158
-
1159
- def _communicate(self, input):
1160
- read_set = []
1161
- write_set = []
1162
- stdout = None # Return
1163
- stderr = None # Return
1164
-
1165
- if self.stdin:
1166
- # Flush stdio buffer. This might block, if the user has
1167
- # been writing to .stdin in an uncontrolled fashion.
1168
- self.stdin.flush()
1169
- if input:
1170
- write_set.append(self.stdin)
1171
- else:
1172
- self.stdin.close()
1173
- if self.stdout:
1174
- read_set.append(self.stdout)
1175
- stdout = []
1176
- if self.stderr:
1177
- read_set.append(self.stderr)
1178
- stderr = []
1179
-
1180
- input_offset = 0
1181
- while read_set or write_set:
1182
- rlist, wlist, xlist = select.select(read_set, write_set, [])
1183
-
1184
- if self.stdin in wlist:
1185
- # When select has indicated that the file is writable,
1186
- # we can write up to PIPE_BUF bytes without risk
1187
- # blocking. POSIX defines PIPE_BUF >= 512
1188
- bytes_written = os.write(self.stdin.fileno(), buffer(input, input_offset, 512))
1189
- input_offset = input_offset + bytes_written
1190
- if input_offset >= len(input):
1191
- self.stdin.close()
1192
- write_set.remove(self.stdin)
1193
-
1194
- if self.stdout in rlist:
1195
- data = os.read(self.stdout.fileno(), 1024)
1196
- if data == "":
1197
- self.stdout.close()
1198
- read_set.remove(self.stdout)
1199
- stdout.append(data)
1200
-
1201
- if self.stderr in rlist:
1202
- data = os.read(self.stderr.fileno(), 1024)
1203
- if data == "":
1204
- self.stderr.close()
1205
- read_set.remove(self.stderr)
1206
- stderr.append(data)
1207
-
1208
- # All data exchanged. Translate lists into strings.
1209
- if stdout is not None:
1210
- stdout = string.join(stdout, '')
1211
- if stderr is not None:
1212
- stderr = string.join(stderr, '')
1213
-
1214
- # Translate newlines, if requested. We cannot let the file
1215
- # object do the translation: It is based on stdio, which is
1216
- # impossible to combine with select (unless forcing no
1217
- # buffering).
1218
- if self.universal_newlines and hasattr(file, 'newlines'):
1219
- if stdout:
1220
- stdout = self._translate_newlines(stdout)
1221
- if stderr:
1222
- stderr = self._translate_newlines(stderr)
1223
-
1224
- self.wait()
1225
- return (stdout, stderr)
1226
-
1227
-
1228
- def _demo_posix():
1229
- #
1230
- # Example 1: Simple redirection: Get process list
1231
- #
1232
- plist = Popen(["ps"], stdout=PIPE).communicate()[0]
1233
- print "Process list:"
1234
- print plist
1235
-
1236
- #
1237
- # Example 2: Change uid before executing child
1238
- #
1239
- if os.getuid() == 0:
1240
- p = Popen(["id"], preexec_fn=lambda: os.setuid(100))
1241
- p.wait()
1242
-
1243
- #
1244
- # Example 3: Connecting several subprocesses
1245
- #
1246
- print "Looking for 'hda'..."
1247
- p1 = Popen(["dmesg"], stdout=PIPE)
1248
- p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
1249
- print repr(p2.communicate()[0])
1250
-
1251
- #
1252
- # Example 4: Catch execution error
1253
- #
1254
- print
1255
- print "Trying a weird file..."
1256
- try:
1257
- print Popen(["/this/path/does/not/exist"]).communicate()
1258
- except OSError, e:
1259
- if e.errno == errno.ENOENT:
1260
- print "The file didn't exist. I thought so..."
1261
- print "Child traceback:"
1262
- print e.child_traceback
1263
- else:
1264
- print "Error", e.errno
1265
- else:
1266
- sys.stderr.write( "Gosh. No error.\n" )
1267
-
1268
-
1269
- def _demo_windows():
1270
- #
1271
- # Example 1: Connecting several subprocesses
1272
- #
1273
- print "Looking for 'PROMPT' in set output..."
1274
- p1 = Popen("set", stdout=PIPE, shell=True)
1275
- p2 = Popen('find "PROMPT"', stdin=p1.stdout, stdout=PIPE)
1276
- print repr(p2.communicate()[0])
1277
-
1278
- #
1279
- # Example 2: Simple execution of program
1280
- #
1281
- print "Executing calc..."
1282
- p = Popen("calc")
1283
- p.wait()
1284
-
1285
-
1286
- if __name__ == "__main__":
1287
- if mswindows:
1288
- _demo_windows()
1289
- else:
1290
- _demo_posix()
1291
-
1292
- # Local Variables:
1293
- # tab-width:4
1294
- # indent-tabs-mode:nil
1295
- # End:
1296
- # vim: set expandtab tabstop=4 shiftwidth=4: