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,98 +0,0 @@
1
- #
2
- # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
3
- #
4
- # Permission is hereby granted, free of charge, to any person obtaining
5
- # a copy of this software and associated documentation files (the
6
- # "Software"), to deal in the Software without restriction, including
7
- # without limitation the rights to use, copy, modify, merge, publish,
8
- # distribute, sublicense, and/or sell copies of the Software, and to
9
- # permit persons to whom the Software is furnished to do so, subject to
10
- # the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included
13
- # in all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16
- # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17
- # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
- #
23
-
24
- __revision__ = "src/engine/SCons/compat/_scons_UserString.py 4629 2010/01/17 22:23:21 scons"
25
-
26
- __doc__ = """
27
- A user-defined wrapper around string objects
28
-
29
- This class is "borrowed" from the Python 2.2 UserString and modified
30
- slightly for use with SCons. It is *NOT* guaranteed to be fully compliant
31
- with the standard UserString class from all later versions of Python.
32
- In particular, it does not necessarily contain all of the methods found
33
- in later versions.
34
- """
35
-
36
- import types
37
-
38
- StringType = types.StringType
39
-
40
- if hasattr(types, 'UnicodeType'):
41
- UnicodeType = types.UnicodeType
42
- def is_String(obj):
43
- return type(obj) in (StringType, UnicodeType)
44
- else:
45
- def is_String(obj):
46
- return type(obj) is StringType
47
-
48
- class UserString:
49
- def __init__(self, seq):
50
- if is_String(seq):
51
- self.data = seq
52
- elif isinstance(seq, UserString):
53
- self.data = seq.data[:]
54
- else:
55
- self.data = str(seq)
56
- def __str__(self): return str(self.data)
57
- def __repr__(self): return repr(self.data)
58
- def __int__(self): return int(self.data)
59
- def __long__(self): return long(self.data)
60
- def __float__(self): return float(self.data)
61
- def __complex__(self): return complex(self.data)
62
- def __hash__(self): return hash(self.data)
63
-
64
- def __cmp__(self, string):
65
- if isinstance(string, UserString):
66
- return cmp(self.data, string.data)
67
- else:
68
- return cmp(self.data, string)
69
- def __contains__(self, char):
70
- return char in self.data
71
-
72
- def __len__(self): return len(self.data)
73
- def __getitem__(self, index): return self.__class__(self.data[index])
74
- def __getslice__(self, start, end):
75
- start = max(start, 0); end = max(end, 0)
76
- return self.__class__(self.data[start:end])
77
-
78
- def __add__(self, other):
79
- if isinstance(other, UserString):
80
- return self.__class__(self.data + other.data)
81
- elif is_String(other):
82
- return self.__class__(self.data + other)
83
- else:
84
- return self.__class__(self.data + str(other))
85
- def __radd__(self, other):
86
- if is_String(other):
87
- return self.__class__(other + self.data)
88
- else:
89
- return self.__class__(str(other) + self.data)
90
- def __mul__(self, n):
91
- return self.__class__(self.data*n)
92
- __rmul__ = __mul__
93
-
94
- # Local Variables:
95
- # tab-width:4
96
- # indent-tabs-mode:nil
97
- # End:
98
- # vim: set expandtab tabstop=4 shiftwidth=4:
@@ -1,91 +0,0 @@
1
- #
2
- # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
3
- #
4
- # Permission is hereby granted, free of charge, to any person obtaining
5
- # a copy of this software and associated documentation files (the
6
- # "Software"), to deal in the Software without restriction, including
7
- # without limitation the rights to use, copy, modify, merge, publish,
8
- # distribute, sublicense, and/or sell copies of the Software, and to
9
- # permit persons to whom the Software is furnished to do so, subject to
10
- # the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included
13
- # in all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16
- # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17
- # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
- #
23
-
24
- __doc__ = """
25
- hashlib backwards-compatibility module for older (pre-2.5) Python versions
26
-
27
- This does not not NOT (repeat, *NOT*) provide complete hashlib
28
- functionality. It only wraps the portions of MD5 functionality used
29
- by SCons, in an interface that looks like hashlib (or enough for our
30
- purposes, anyway). In fact, this module will raise an ImportError if
31
- the underlying md5 module isn't available.
32
- """
33
-
34
- __revision__ = "src/engine/SCons/compat/_scons_hashlib.py 4629 2010/01/17 22:23:21 scons"
35
-
36
- import md5
37
- import string
38
-
39
- class md5obj:
40
-
41
- md5_module = md5
42
-
43
- def __init__(self, name, string=''):
44
- if not name in ('MD5', 'md5'):
45
- raise ValueError, "unsupported hash type"
46
- self.name = 'md5'
47
- self.m = self.md5_module.md5()
48
-
49
- def __repr__(self):
50
- return '<%s HASH object @ %#x>' % (self.name, id(self))
51
-
52
- def copy(self):
53
- import copy
54
- result = copy.copy(self)
55
- result.m = self.m.copy()
56
- return result
57
-
58
- def digest(self):
59
- return self.m.digest()
60
-
61
- def update(self, arg):
62
- return self.m.update(arg)
63
-
64
- if hasattr(md5.md5(), 'hexdigest'):
65
-
66
- def hexdigest(self):
67
- return self.m.hexdigest()
68
-
69
- else:
70
-
71
- # Objects created by the underlying md5 module have no native
72
- # hexdigest() method (*cough* 1.5.2 *cough*), so provide an
73
- # equivalent lifted from elsewhere.
74
- def hexdigest(self):
75
- h = string.hexdigits
76
- r = ''
77
- for c in self.digest():
78
- i = ord(c)
79
- r = r + h[(i >> 4) & 0xF] + h[i & 0xF]
80
- return r
81
-
82
- new = md5obj
83
-
84
- def md5(string=''):
85
- return md5obj('md5', string)
86
-
87
- # Local Variables:
88
- # tab-width:4
89
- # indent-tabs-mode:nil
90
- # End:
91
- # vim: set expandtab tabstop=4 shiftwidth=4:
@@ -1,124 +0,0 @@
1
- #
2
- # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
3
- #
4
- # Permission is hereby granted, free of charge, to any person obtaining
5
- # a copy of this software and associated documentation files (the
6
- # "Software"), to deal in the Software without restriction, including
7
- # without limitation the rights to use, copy, modify, merge, publish,
8
- # distribute, sublicense, and/or sell copies of the Software, and to
9
- # permit persons to whom the Software is furnished to do so, subject to
10
- # the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included
13
- # in all copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
16
- # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
17
- # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
- # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
- # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
- # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
- # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
- #
23
-
24
- __revision__ = "src/engine/SCons/compat/_scons_itertools.py 4629 2010/01/17 22:23:21 scons"
25
-
26
- __doc__ = """
27
- Implementations of itertools functions for Python versions that don't
28
- have iterators.
29
-
30
- These implement the functions by creating the entire list, not returning
31
- it element-by-element as the real itertools functions do. This means
32
- that early Python versions won't get the performance benefit of using
33
- the itertools, but we can still use them so the later Python versions
34
- do get the advantages of using iterators.
35
-
36
- Because we return the entire list, we intentionally do not implement the
37
- itertools functions that "return" infinitely-long lists: the count(),
38
- cycle() and repeat() functions. Other functions below have remained
39
- unimplemented simply because they aren't being used (yet) and it wasn't
40
- obvious how to do it. Or, conversely, we only implemented those functions
41
- that *were* easy to implement (mostly because the Python documentation
42
- contained examples of equivalent code).
43
-
44
- Note that these do not have independent unit tests, so it's possible
45
- that there are bugs.
46
- """
47
-
48
- def chain(*iterables):
49
- result = []
50
- for x in iterables:
51
- result.extend(list(x))
52
- return result
53
-
54
- def count(n=0):
55
- # returns infinite length, should not be supported
56
- raise NotImplementedError
57
-
58
- def cycle(iterable):
59
- # returns infinite length, should not be supported
60
- raise NotImplementedError
61
-
62
- def dropwhile(predicate, iterable):
63
- result = []
64
- for x in iterable:
65
- if not predicate(x):
66
- result.append(x)
67
- break
68
- result.extend(iterable)
69
- return result
70
-
71
- def groupby(iterable, *args):
72
- raise NotImplementedError
73
-
74
- def ifilter(predicate, iterable):
75
- result = []
76
- if predicate is None:
77
- predicate = bool
78
- for x in iterable:
79
- if predicate(x):
80
- result.append(x)
81
- return result
82
-
83
- def ifilterfalse(predicate, iterable):
84
- result = []
85
- if predicate is None:
86
- predicate = bool
87
- for x in iterable:
88
- if not predicate(x):
89
- result.append(x)
90
- return result
91
-
92
- def imap(function, *iterables):
93
- return apply(map, (function,) + tuple(iterables))
94
-
95
- def islice(*args, **kw):
96
- raise NotImplementedError
97
-
98
- def izip(*iterables):
99
- return apply(zip, iterables)
100
-
101
- def repeat(*args, **kw):
102
- # returns infinite length, should not be supported
103
- raise NotImplementedError
104
-
105
- def starmap(*args, **kw):
106
- raise NotImplementedError
107
-
108
- def takewhile(predicate, iterable):
109
- result = []
110
- for x in iterable:
111
- if predicate(x):
112
- result.append(x)
113
- else:
114
- break
115
- return result
116
-
117
- def tee(*args, **kw):
118
- raise NotImplementedError
119
-
120
- # Local Variables:
121
- # tab-width:4
122
- # indent-tabs-mode:nil
123
- # End:
124
- # vim: set expandtab tabstop=4 shiftwidth=4:
@@ -1,1725 +0,0 @@
1
- """optparse - a powerful, extensible, and easy-to-use option parser.
2
-
3
- By Greg Ward <gward@python.net>
4
-
5
- Originally distributed as Optik; see http://optik.sourceforge.net/ .
6
-
7
- If you have problems with this module, please do not file bugs,
8
- patches, or feature requests with Python; instead, use Optik's
9
- SourceForge project page:
10
- http://sourceforge.net/projects/optik
11
-
12
- For support, use the optik-users@lists.sourceforge.net mailing list
13
- (http://lists.sourceforge.net/lists/listinfo/optik-users).
14
- """
15
-
16
- # Python developers: please do not make changes to this file, since
17
- # it is automatically generated from the Optik source code.
18
-
19
- __version__ = "1.5.3"
20
-
21
- __all__ = ['Option',
22
- 'SUPPRESS_HELP',
23
- 'SUPPRESS_USAGE',
24
- 'Values',
25
- 'OptionContainer',
26
- 'OptionGroup',
27
- 'OptionParser',
28
- 'HelpFormatter',
29
- 'IndentedHelpFormatter',
30
- 'TitledHelpFormatter',
31
- 'OptParseError',
32
- 'OptionError',
33
- 'OptionConflictError',
34
- 'OptionValueError',
35
- 'BadOptionError']
36
-
37
- __copyright__ = """
38
- Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
39
- Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
40
-
41
- Redistribution and use in source and binary forms, with or without
42
- modification, are permitted provided that the following conditions are
43
- met:
44
-
45
- * Redistributions of source code must retain the above copyright
46
- notice, this list of conditions and the following disclaimer.
47
-
48
- * Redistributions in binary form must reproduce the above copyright
49
- notice, this list of conditions and the following disclaimer in the
50
- documentation and/or other materials provided with the distribution.
51
-
52
- * Neither the name of the author nor the names of its
53
- contributors may be used to endorse or promote products derived from
54
- this software without specific prior written permission.
55
-
56
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
57
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
58
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
59
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
60
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
61
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
62
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
63
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
64
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
65
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
66
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67
- """
68
-
69
- import string
70
- import sys, os
71
- import types
72
- import textwrap
73
-
74
- def _repr(self):
75
- return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self)
76
-
77
-
78
- try:
79
- sys.getdefaultencoding
80
- except AttributeError:
81
- def fake_getdefaultencoding():
82
- return None
83
- sys.getdefaultencoding = fake_getdefaultencoding
84
-
85
- try:
86
- ''.encode
87
- except AttributeError:
88
- def encode_wrapper(s, encoding, replacement):
89
- return s
90
- else:
91
- def encode_wrapper(s, encoding, replacement):
92
- return s.encode(encoding, replacement)
93
-
94
-
95
- # This file was generated from:
96
- # Id: option_parser.py 527 2006-07-23 15:21:30Z greg
97
- # Id: option.py 522 2006-06-11 16:22:03Z gward
98
- # Id: help.py 527 2006-07-23 15:21:30Z greg
99
- # Id: errors.py 509 2006-04-20 00:58:24Z gward
100
-
101
- try:
102
- from gettext import gettext
103
- except ImportError:
104
- def gettext(message):
105
- return message
106
- _ = gettext
107
-
108
-
109
- class OptParseError (Exception):
110
- def __init__(self, msg):
111
- self.msg = msg
112
-
113
- def __str__(self):
114
- return self.msg
115
-
116
-
117
- class OptionError (OptParseError):
118
- """
119
- Raised if an Option instance is created with invalid or
120
- inconsistent arguments.
121
- """
122
-
123
- def __init__(self, msg, option):
124
- self.msg = msg
125
- self.option_id = str(option)
126
-
127
- def __str__(self):
128
- if self.option_id:
129
- return "option %s: %s" % (self.option_id, self.msg)
130
- else:
131
- return self.msg
132
-
133
- class OptionConflictError (OptionError):
134
- """
135
- Raised if conflicting options are added to an OptionParser.
136
- """
137
-
138
- class OptionValueError (OptParseError):
139
- """
140
- Raised if an invalid option value is encountered on the command
141
- line.
142
- """
143
-
144
- class BadOptionError (OptParseError):
145
- """
146
- Raised if an invalid option is seen on the command line.
147
- """
148
- def __init__(self, opt_str):
149
- self.opt_str = opt_str
150
-
151
- def __str__(self):
152
- return _("no such option: %s") % self.opt_str
153
-
154
- class AmbiguousOptionError (BadOptionError):
155
- """
156
- Raised if an ambiguous option is seen on the command line.
157
- """
158
- def __init__(self, opt_str, possibilities):
159
- BadOptionError.__init__(self, opt_str)
160
- self.possibilities = possibilities
161
-
162
- def __str__(self):
163
- return (_("ambiguous option: %s (%s?)")
164
- % (self.opt_str, string.join(self.possibilities, ", ")))
165
-
166
-
167
- class HelpFormatter:
168
-
169
- """
170
- Abstract base class for formatting option help. OptionParser
171
- instances should use one of the HelpFormatter subclasses for
172
- formatting help; by default IndentedHelpFormatter is used.
173
-
174
- Instance attributes:
175
- parser : OptionParser
176
- the controlling OptionParser instance
177
- indent_increment : int
178
- the number of columns to indent per nesting level
179
- max_help_position : int
180
- the maximum starting column for option help text
181
- help_position : int
182
- the calculated starting column for option help text;
183
- initially the same as the maximum
184
- width : int
185
- total number of columns for output (pass None to constructor for
186
- this value to be taken from the $COLUMNS environment variable)
187
- level : int
188
- current indentation level
189
- current_indent : int
190
- current indentation level (in columns)
191
- help_width : int
192
- number of columns available for option help text (calculated)
193
- default_tag : str
194
- text to replace with each option's default value, "%default"
195
- by default. Set to false value to disable default value expansion.
196
- option_strings : { Option : str }
197
- maps Option instances to the snippet of help text explaining
198
- the syntax of that option, e.g. "-h, --help" or
199
- "-fFILE, --file=FILE"
200
- _short_opt_fmt : str
201
- format string controlling how short options with values are
202
- printed in help text. Must be either "%s%s" ("-fFILE") or
203
- "%s %s" ("-f FILE"), because those are the two syntaxes that
204
- Optik supports.
205
- _long_opt_fmt : str
206
- similar but for long options; must be either "%s %s" ("--file FILE")
207
- or "%s=%s" ("--file=FILE").
208
- """
209
-
210
- NO_DEFAULT_VALUE = "none"
211
-
212
- def __init__(self,
213
- indent_increment,
214
- max_help_position,
215
- width,
216
- short_first):
217
- self.parser = None
218
- self.indent_increment = indent_increment
219
- self.help_position = self.max_help_position = max_help_position
220
- if width is None:
221
- try:
222
- width = int(os.environ['COLUMNS'])
223
- except (KeyError, ValueError):
224
- width = 80
225
- width = width - 2
226
- self.width = width
227
- self.current_indent = 0
228
- self.level = 0
229
- self.help_width = None # computed later
230
- self.short_first = short_first
231
- self.default_tag = "%default"
232
- self.option_strings = {}
233
- self._short_opt_fmt = "%s %s"
234
- self._long_opt_fmt = "%s=%s"
235
-
236
- def set_parser(self, parser):
237
- self.parser = parser
238
-
239
- def set_short_opt_delimiter(self, delim):
240
- if delim not in ("", " "):
241
- raise ValueError(
242
- "invalid metavar delimiter for short options: %r" % delim)
243
- self._short_opt_fmt = "%s" + delim + "%s"
244
-
245
- def set_long_opt_delimiter(self, delim):
246
- if delim not in ("=", " "):
247
- raise ValueError(
248
- "invalid metavar delimiter for long options: %r" % delim)
249
- self._long_opt_fmt = "%s" + delim + "%s"
250
-
251
- def indent(self):
252
- self.current_indent = self.current_indent + self.indent_increment
253
- self.level = self.level + 1
254
-
255
- def dedent(self):
256
- self.current_indent = self.current_indent - self.indent_increment
257
- assert self.current_indent >= 0, "Indent decreased below 0."
258
- self.level = self.level - 1
259
-
260
- def format_usage(self, usage):
261
- raise NotImplementedError, "subclasses must implement"
262
-
263
- def format_heading(self, heading):
264
- raise NotImplementedError, "subclasses must implement"
265
-
266
- def _format_text(self, text):
267
- """
268
- Format a paragraph of free-form text for inclusion in the
269
- help output at the current indentation level.
270
- """
271
- text_width = self.width - self.current_indent
272
- indent = " "*self.current_indent
273
- return textwrap.fill(text,
274
- text_width,
275
- initial_indent=indent,
276
- subsequent_indent=indent)
277
-
278
- def format_description(self, description):
279
- if description:
280
- return self._format_text(description) + "\n"
281
- else:
282
- return ""
283
-
284
- def format_epilog(self, epilog):
285
- if epilog:
286
- return "\n" + self._format_text(epilog) + "\n"
287
- else:
288
- return ""
289
-
290
-
291
- def expand_default(self, option):
292
- if self.parser is None or not self.default_tag:
293
- return option.help
294
-
295
- default_value = self.parser.defaults.get(option.dest)
296
- if default_value is NO_DEFAULT or default_value is None:
297
- default_value = self.NO_DEFAULT_VALUE
298
-
299
- return string.replace(option.help, self.default_tag, str(default_value))
300
-
301
- def format_option(self, option):
302
- # The help for each option consists of two parts:
303
- # * the opt strings and metavars
304
- # eg. ("-x", or "-fFILENAME, --file=FILENAME")
305
- # * the user-supplied help string
306
- # eg. ("turn on expert mode", "read data from FILENAME")
307
- #
308
- # If possible, we write both of these on the same line:
309
- # -x turn on expert mode
310
- #
311
- # But if the opt string list is too long, we put the help
312
- # string on a second line, indented to the same column it would
313
- # start in if it fit on the first line.
314
- # -fFILENAME, --file=FILENAME
315
- # read data from FILENAME
316
- result = []
317
- opts = self.option_strings[option]
318
- opt_width = self.help_position - self.current_indent - 2
319
- if len(opts) > opt_width:
320
- opts = "%*s%s\n" % (self.current_indent, "", opts)
321
- indent_first = self.help_position
322
- else: # start help on same line as opts
323
- opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
324
- indent_first = 0
325
- result.append(opts)
326
- if option.help:
327
- help_text = self.expand_default(option)
328
- help_lines = textwrap.wrap(help_text, self.help_width)
329
- result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
330
- for line in help_lines[1:]:
331
- result.append("%*s%s\n" % (self.help_position, "", line))
332
- elif opts[-1] != "\n":
333
- result.append("\n")
334
- return string.join(result, "")
335
-
336
- def store_option_strings(self, parser):
337
- self.indent()
338
- max_len = 0
339
- for opt in parser.option_list:
340
- strings = self.format_option_strings(opt)
341
- self.option_strings[opt] = strings
342
- max_len = max(max_len, len(strings) + self.current_indent)
343
- self.indent()
344
- for group in parser.option_groups:
345
- for opt in group.option_list:
346
- strings = self.format_option_strings(opt)
347
- self.option_strings[opt] = strings
348
- max_len = max(max_len, len(strings) + self.current_indent)
349
- self.dedent()
350
- self.dedent()
351
- self.help_position = min(max_len + 2, self.max_help_position)
352
- self.help_width = self.width - self.help_position
353
-
354
- def format_option_strings(self, option):
355
- """Return a comma-separated list of option strings & metavariables."""
356
- if option.takes_value():
357
- metavar = option.metavar or string.upper(option.dest)
358
- short_opts = []
359
- for sopt in option._short_opts:
360
- short_opts.append(self._short_opt_fmt % (sopt, metavar))
361
- long_opts = []
362
- for lopt in option._long_opts:
363
- long_opts.append(self._long_opt_fmt % (lopt, metavar))
364
- else:
365
- short_opts = option._short_opts
366
- long_opts = option._long_opts
367
-
368
- if self.short_first:
369
- opts = short_opts + long_opts
370
- else:
371
- opts = long_opts + short_opts
372
-
373
- return string.join(opts, ", ")
374
-
375
- class IndentedHelpFormatter (HelpFormatter):
376
- """Format help with indented section bodies.
377
- """
378
-
379
- def __init__(self,
380
- indent_increment=2,
381
- max_help_position=24,
382
- width=None,
383
- short_first=1):
384
- HelpFormatter.__init__(
385
- self, indent_increment, max_help_position, width, short_first)
386
-
387
- def format_usage(self, usage):
388
- return _("Usage: %s\n") % usage
389
-
390
- def format_heading(self, heading):
391
- return "%*s%s:\n" % (self.current_indent, "", heading)
392
-
393
-
394
- class TitledHelpFormatter (HelpFormatter):
395
- """Format help with underlined section headers.
396
- """
397
-
398
- def __init__(self,
399
- indent_increment=0,
400
- max_help_position=24,
401
- width=None,
402
- short_first=0):
403
- HelpFormatter.__init__ (
404
- self, indent_increment, max_help_position, width, short_first)
405
-
406
- def format_usage(self, usage):
407
- return "%s %s\n" % (self.format_heading(_("Usage")), usage)
408
-
409
- def format_heading(self, heading):
410
- return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
411
-
412
-
413
- def _parse_num(val, type):
414
- if string.lower(val[:2]) == "0x": # hexadecimal
415
- radix = 16
416
- elif string.lower(val[:2]) == "0b": # binary
417
- radix = 2
418
- val = val[2:] or "0" # have to remove "0b" prefix
419
- elif val[:1] == "0": # octal
420
- radix = 8
421
- else: # decimal
422
- radix = 10
423
-
424
- return type(val, radix)
425
-
426
- def _parse_int(val):
427
- return _parse_num(val, int)
428
-
429
- def _parse_long(val):
430
- return _parse_num(val, long)
431
-
432
- try:
433
- int('0', 10)
434
- except TypeError:
435
- # Python 1.5.2 doesn't allow a radix value to be passed to int().
436
- _parse_int = int
437
-
438
- try:
439
- long('0', 10)
440
- except TypeError:
441
- # Python 1.5.2 doesn't allow a radix value to be passed to long().
442
- _parse_long = long
443
-
444
- _builtin_cvt = { "int" : (_parse_int, _("integer")),
445
- "long" : (_parse_long, _("long integer")),
446
- "float" : (float, _("floating-point")),
447
- "complex" : (complex, _("complex")) }
448
-
449
- def check_builtin(option, opt, value):
450
- (cvt, what) = _builtin_cvt[option.type]
451
- try:
452
- return cvt(value)
453
- except ValueError:
454
- raise OptionValueError(
455
- _("option %s: invalid %s value: %r") % (opt, what, value))
456
-
457
- def check_choice(option, opt, value):
458
- if value in option.choices:
459
- return value
460
- else:
461
- choices = string.join(map(repr, option.choices), ", ")
462
- raise OptionValueError(
463
- _("option %s: invalid choice: %r (choose from %s)")
464
- % (opt, value, choices))
465
-
466
- # Not supplying a default is different from a default of None,
467
- # so we need an explicit "not supplied" value.
468
- NO_DEFAULT = ("NO", "DEFAULT")
469
-
470
-
471
- class Option:
472
- """
473
- Instance attributes:
474
- _short_opts : [string]
475
- _long_opts : [string]
476
-
477
- action : string
478
- type : string
479
- dest : string
480
- default : any
481
- nargs : int
482
- const : any
483
- choices : [string]
484
- callback : function
485
- callback_args : (any*)
486
- callback_kwargs : { string : any }
487
- help : string
488
- metavar : string
489
- """
490
-
491
- # The list of instance attributes that may be set through
492
- # keyword args to the constructor.
493
- ATTRS = ['action',
494
- 'type',
495
- 'dest',
496
- 'default',
497
- 'nargs',
498
- 'const',
499
- 'choices',
500
- 'callback',
501
- 'callback_args',
502
- 'callback_kwargs',
503
- 'help',
504
- 'metavar']
505
-
506
- # The set of actions allowed by option parsers. Explicitly listed
507
- # here so the constructor can validate its arguments.
508
- ACTIONS = ("store",
509
- "store_const",
510
- "store_true",
511
- "store_false",
512
- "append",
513
- "append_const",
514
- "count",
515
- "callback",
516
- "help",
517
- "version")
518
-
519
- # The set of actions that involve storing a value somewhere;
520
- # also listed just for constructor argument validation. (If
521
- # the action is one of these, there must be a destination.)
522
- STORE_ACTIONS = ("store",
523
- "store_const",
524
- "store_true",
525
- "store_false",
526
- "append",
527
- "append_const",
528
- "count")
529
-
530
- # The set of actions for which it makes sense to supply a value
531
- # type, ie. which may consume an argument from the command line.
532
- TYPED_ACTIONS = ("store",
533
- "append",
534
- "callback")
535
-
536
- # The set of actions which *require* a value type, ie. that
537
- # always consume an argument from the command line.
538
- ALWAYS_TYPED_ACTIONS = ("store",
539
- "append")
540
-
541
- # The set of actions which take a 'const' attribute.
542
- CONST_ACTIONS = ("store_const",
543
- "append_const")
544
-
545
- # The set of known types for option parsers. Again, listed here for
546
- # constructor argument validation.
547
- TYPES = ("string", "int", "long", "float", "complex", "choice")
548
-
549
- # Dictionary of argument checking functions, which convert and
550
- # validate option arguments according to the option type.
551
- #
552
- # Signature of checking functions is:
553
- # check(option : Option, opt : string, value : string) -> any
554
- # where
555
- # option is the Option instance calling the checker
556
- # opt is the actual option seen on the command-line
557
- # (eg. "-a", "--file")
558
- # value is the option argument seen on the command-line
559
- #
560
- # The return value should be in the appropriate Python type
561
- # for option.type -- eg. an integer if option.type == "int".
562
- #
563
- # If no checker is defined for a type, arguments will be
564
- # unchecked and remain strings.
565
- TYPE_CHECKER = { "int" : check_builtin,
566
- "long" : check_builtin,
567
- "float" : check_builtin,
568
- "complex": check_builtin,
569
- "choice" : check_choice,
570
- }
571
-
572
-
573
- # CHECK_METHODS is a list of unbound method objects; they are called
574
- # by the constructor, in order, after all attributes are
575
- # initialized. The list is created and filled in later, after all
576
- # the methods are actually defined. (I just put it here because I
577
- # like to define and document all class attributes in the same
578
- # place.) Subclasses that add another _check_*() method should
579
- # define their own CHECK_METHODS list that adds their check method
580
- # to those from this class.
581
- CHECK_METHODS = None
582
-
583
-
584
- # -- Constructor/initialization methods ----------------------------
585
-
586
- def __init__(self, *opts, **attrs):
587
- # Set _short_opts, _long_opts attrs from 'opts' tuple.
588
- # Have to be set now, in case no option strings are supplied.
589
- self._short_opts = []
590
- self._long_opts = []
591
- opts = self._check_opt_strings(opts)
592
- self._set_opt_strings(opts)
593
-
594
- # Set all other attrs (action, type, etc.) from 'attrs' dict
595
- self._set_attrs(attrs)
596
-
597
- # Check all the attributes we just set. There are lots of
598
- # complicated interdependencies, but luckily they can be farmed
599
- # out to the _check_*() methods listed in CHECK_METHODS -- which
600
- # could be handy for subclasses! The one thing these all share
601
- # is that they raise OptionError if they discover a problem.
602
- for checker in self.CHECK_METHODS:
603
- checker(self)
604
-
605
- def _check_opt_strings(self, opts):
606
- # Filter out None because early versions of Optik had exactly
607
- # one short option and one long option, either of which
608
- # could be None.
609
- opts = filter(None, opts)
610
- if not opts:
611
- raise TypeError("at least one option string must be supplied")
612
- return opts
613
-
614
- def _set_opt_strings(self, opts):
615
- for opt in opts:
616
- if len(opt) < 2:
617
- raise OptionError(
618
- "invalid option string %r: "
619
- "must be at least two characters long" % opt, self)
620
- elif len(opt) == 2:
621
- if not (opt[0] == "-" and opt[1] != "-"):
622
- raise OptionError(
623
- "invalid short option string %r: "
624
- "must be of the form -x, (x any non-dash char)" % opt,
625
- self)
626
- self._short_opts.append(opt)
627
- else:
628
- if not (opt[0:2] == "--" and opt[2] != "-"):
629
- raise OptionError(
630
- "invalid long option string %r: "
631
- "must start with --, followed by non-dash" % opt,
632
- self)
633
- self._long_opts.append(opt)
634
-
635
- def _set_attrs(self, attrs):
636
- for attr in self.ATTRS:
637
- if attrs.has_key(attr):
638
- setattr(self, attr, attrs[attr])
639
- del attrs[attr]
640
- else:
641
- if attr == 'default':
642
- setattr(self, attr, NO_DEFAULT)
643
- else:
644
- setattr(self, attr, None)
645
- if attrs:
646
- attrs = attrs.keys()
647
- attrs.sort()
648
- raise OptionError(
649
- "invalid keyword arguments: %s" % string.join(attrs, ", "),
650
- self)
651
-
652
-
653
- # -- Constructor validation methods --------------------------------
654
-
655
- def _check_action(self):
656
- if self.action is None:
657
- self.action = "store"
658
- elif self.action not in self.ACTIONS:
659
- raise OptionError("invalid action: %r" % self.action, self)
660
-
661
- def _check_type(self):
662
- if self.type is None:
663
- if self.action in self.ALWAYS_TYPED_ACTIONS:
664
- if self.choices is not None:
665
- # The "choices" attribute implies "choice" type.
666
- self.type = "choice"
667
- else:
668
- # No type given? "string" is the most sensible default.
669
- self.type = "string"
670
- else:
671
- # Allow type objects or builtin type conversion functions
672
- # (int, str, etc.) as an alternative to their names. (The
673
- # complicated check of __builtin__ is only necessary for
674
- # Python 2.1 and earlier, and is short-circuited by the
675
- # first check on modern Pythons.)
676
- import __builtin__
677
- if ( type(self.type) is types.TypeType or
678
- (hasattr(self.type, "__name__") and
679
- getattr(__builtin__, self.type.__name__, None) is self.type) ):
680
- self.type = self.type.__name__
681
-
682
- if self.type == "str":
683
- self.type = "string"
684
-
685
- if self.type not in self.TYPES:
686
- raise OptionError("invalid option type: %r" % self.type, self)
687
- if self.action not in self.TYPED_ACTIONS:
688
- raise OptionError(
689
- "must not supply a type for action %r" % self.action, self)
690
-
691
- def _check_choice(self):
692
- if self.type == "choice":
693
- if self.choices is None:
694
- raise OptionError(
695
- "must supply a list of choices for type 'choice'", self)
696
- elif type(self.choices) not in (types.TupleType, types.ListType):
697
- raise OptionError(
698
- "choices must be a list of strings ('%s' supplied)"
699
- % string.split(str(type(self.choices)), "'")[1], self)
700
- elif self.choices is not None:
701
- raise OptionError(
702
- "must not supply choices for type %r" % self.type, self)
703
-
704
- def _check_dest(self):
705
- # No destination given, and we need one for this action. The
706
- # self.type check is for callbacks that take a value.
707
- takes_value = (self.action in self.STORE_ACTIONS or
708
- self.type is not None)
709
- if self.dest is None and takes_value:
710
-
711
- # Glean a destination from the first long option string,
712
- # or from the first short option string if no long options.
713
- if self._long_opts:
714
- # eg. "--foo-bar" -> "foo_bar"
715
- self.dest = string.replace(self._long_opts[0][2:], '-', '_')
716
- else:
717
- self.dest = self._short_opts[0][1]
718
-
719
- def _check_const(self):
720
- if self.action not in self.CONST_ACTIONS and self.const is not None:
721
- raise OptionError(
722
- "'const' must not be supplied for action %r" % self.action,
723
- self)
724
-
725
- def _check_nargs(self):
726
- if self.action in self.TYPED_ACTIONS:
727
- if self.nargs is None:
728
- self.nargs = 1
729
- elif self.nargs is not None:
730
- raise OptionError(
731
- "'nargs' must not be supplied for action %r" % self.action,
732
- self)
733
-
734
- def _check_callback(self):
735
- if self.action == "callback":
736
- if not callable(self.callback):
737
- raise OptionError(
738
- "callback not callable: %r" % self.callback, self)
739
- if (self.callback_args is not None and
740
- type(self.callback_args) is not types.TupleType):
741
- raise OptionError(
742
- "callback_args, if supplied, must be a tuple: not %r"
743
- % self.callback_args, self)
744
- if (self.callback_kwargs is not None and
745
- type(self.callback_kwargs) is not types.DictType):
746
- raise OptionError(
747
- "callback_kwargs, if supplied, must be a dict: not %r"
748
- % self.callback_kwargs, self)
749
- else:
750
- if self.callback is not None:
751
- raise OptionError(
752
- "callback supplied (%r) for non-callback option"
753
- % self.callback, self)
754
- if self.callback_args is not None:
755
- raise OptionError(
756
- "callback_args supplied for non-callback option", self)
757
- if self.callback_kwargs is not None:
758
- raise OptionError(
759
- "callback_kwargs supplied for non-callback option", self)
760
-
761
-
762
- CHECK_METHODS = [_check_action,
763
- _check_type,
764
- _check_choice,
765
- _check_dest,
766
- _check_const,
767
- _check_nargs,
768
- _check_callback]
769
-
770
-
771
- # -- Miscellaneous methods -----------------------------------------
772
-
773
- def __str__(self):
774
- return string.join(self._short_opts + self._long_opts, "/")
775
-
776
- __repr__ = _repr
777
-
778
- def takes_value(self):
779
- return self.type is not None
780
-
781
- def get_opt_string(self):
782
- if self._long_opts:
783
- return self._long_opts[0]
784
- else:
785
- return self._short_opts[0]
786
-
787
-
788
- # -- Processing methods --------------------------------------------
789
-
790
- def check_value(self, opt, value):
791
- checker = self.TYPE_CHECKER.get(self.type)
792
- if checker is None:
793
- return value
794
- else:
795
- return checker(self, opt, value)
796
-
797
- def convert_value(self, opt, value):
798
- if value is not None:
799
- if self.nargs == 1:
800
- return self.check_value(opt, value)
801
- else:
802
- return tuple(map(lambda v, o=opt, s=self: s.check_value(o, v), value))
803
-
804
- def process(self, opt, value, values, parser):
805
-
806
- # First, convert the value(s) to the right type. Howl if any
807
- # value(s) are bogus.
808
- value = self.convert_value(opt, value)
809
-
810
- # And then take whatever action is expected of us.
811
- # This is a separate method to make life easier for
812
- # subclasses to add new actions.
813
- return self.take_action(
814
- self.action, self.dest, opt, value, values, parser)
815
-
816
- def take_action(self, action, dest, opt, value, values, parser):
817
- if action == "store":
818
- setattr(values, dest, value)
819
- elif action == "store_const":
820
- setattr(values, dest, self.const)
821
- elif action == "store_true":
822
- setattr(values, dest, True)
823
- elif action == "store_false":
824
- setattr(values, dest, False)
825
- elif action == "append":
826
- values.ensure_value(dest, []).append(value)
827
- elif action == "append_const":
828
- values.ensure_value(dest, []).append(self.const)
829
- elif action == "count":
830
- setattr(values, dest, values.ensure_value(dest, 0) + 1)
831
- elif action == "callback":
832
- args = self.callback_args or ()
833
- kwargs = self.callback_kwargs or {}
834
- apply(self.callback, (self, opt, value, parser,) + args, kwargs)
835
- elif action == "help":
836
- parser.print_help()
837
- parser.exit()
838
- elif action == "version":
839
- parser.print_version()
840
- parser.exit()
841
- else:
842
- raise RuntimeError, "unknown action %r" % self.action
843
-
844
- return 1
845
-
846
- # class Option
847
-
848
-
849
- SUPPRESS_HELP = "SUPPRESS"+"HELP"
850
- SUPPRESS_USAGE = "SUPPRESS"+"USAGE"
851
-
852
- # For compatibility with Python 2.2
853
- try:
854
- True, False
855
- except NameError:
856
- (True, False) = (1, 0)
857
-
858
- try:
859
- types.UnicodeType
860
- except AttributeError:
861
- def isbasestring(x):
862
- return isinstance(x, types.StringType)
863
- else:
864
- def isbasestring(x):
865
- return isinstance(x, types.StringType) or isinstance(x, types.UnicodeType)
866
-
867
- class Values:
868
-
869
- def __init__(self, defaults=None):
870
- if defaults:
871
- for (attr, val) in defaults.items():
872
- setattr(self, attr, val)
873
-
874
- def __str__(self):
875
- return str(self.__dict__)
876
-
877
- __repr__ = _repr
878
-
879
- def __cmp__(self, other):
880
- if isinstance(other, Values):
881
- return cmp(self.__dict__, other.__dict__)
882
- elif isinstance(other, types.DictType):
883
- return cmp(self.__dict__, other)
884
- else:
885
- return -1
886
-
887
- def _update_careful(self, dict):
888
- """
889
- Update the option values from an arbitrary dictionary, but only
890
- use keys from dict that already have a corresponding attribute
891
- in self. Any keys in dict without a corresponding attribute
892
- are silently ignored.
893
- """
894
- for attr in dir(self):
895
- if dict.has_key(attr):
896
- dval = dict[attr]
897
- if dval is not None:
898
- setattr(self, attr, dval)
899
-
900
- def _update_loose(self, dict):
901
- """
902
- Update the option values from an arbitrary dictionary,
903
- using all keys from the dictionary regardless of whether
904
- they have a corresponding attribute in self or not.
905
- """
906
- self.__dict__.update(dict)
907
-
908
- def _update(self, dict, mode):
909
- if mode == "careful":
910
- self._update_careful(dict)
911
- elif mode == "loose":
912
- self._update_loose(dict)
913
- else:
914
- raise ValueError, "invalid update mode: %r" % mode
915
-
916
- def read_module(self, modname, mode="careful"):
917
- __import__(modname)
918
- mod = sys.modules[modname]
919
- self._update(vars(mod), mode)
920
-
921
- def read_file(self, filename, mode="careful"):
922
- vars = {}
923
- exec open(filename, 'rU').read() in vars
924
- self._update(vars, mode)
925
-
926
- def ensure_value(self, attr, value):
927
- if not hasattr(self, attr) or getattr(self, attr) is None:
928
- setattr(self, attr, value)
929
- return getattr(self, attr)
930
-
931
-
932
- class OptionContainer:
933
-
934
- """
935
- Abstract base class.
936
-
937
- Class attributes:
938
- standard_option_list : [Option]
939
- list of standard options that will be accepted by all instances
940
- of this parser class (intended to be overridden by subclasses).
941
-
942
- Instance attributes:
943
- option_list : [Option]
944
- the list of Option objects contained by this OptionContainer
945
- _short_opt : { string : Option }
946
- dictionary mapping short option strings, eg. "-f" or "-X",
947
- to the Option instances that implement them. If an Option
948
- has multiple short option strings, it will appears in this
949
- dictionary multiple times. [1]
950
- _long_opt : { string : Option }
951
- dictionary mapping long option strings, eg. "--file" or
952
- "--exclude", to the Option instances that implement them.
953
- Again, a given Option can occur multiple times in this
954
- dictionary. [1]
955
- defaults : { string : any }
956
- dictionary mapping option destination names to default
957
- values for each destination [1]
958
-
959
- [1] These mappings are common to (shared by) all components of the
960
- controlling OptionParser, where they are initially created.
961
-
962
- """
963
-
964
- def __init__(self, option_class, conflict_handler, description):
965
- # Initialize the option list and related data structures.
966
- # This method must be provided by subclasses, and it must
967
- # initialize at least the following instance attributes:
968
- # option_list, _short_opt, _long_opt, defaults.
969
- self._create_option_list()
970
-
971
- self.option_class = option_class
972
- self.set_conflict_handler(conflict_handler)
973
- self.set_description(description)
974
-
975
- def _create_option_mappings(self):
976
- # For use by OptionParser constructor -- create the master
977
- # option mappings used by this OptionParser and all
978
- # OptionGroups that it owns.
979
- self._short_opt = {} # single letter -> Option instance
980
- self._long_opt = {} # long option -> Option instance
981
- self.defaults = {} # maps option dest -> default value
982
-
983
-
984
- def _share_option_mappings(self, parser):
985
- # For use by OptionGroup constructor -- use shared option
986
- # mappings from the OptionParser that owns this OptionGroup.
987
- self._short_opt = parser._short_opt
988
- self._long_opt = parser._long_opt
989
- self.defaults = parser.defaults
990
-
991
- def set_conflict_handler(self, handler):
992
- if handler not in ("error", "resolve"):
993
- raise ValueError, "invalid conflict_resolution value %r" % handler
994
- self.conflict_handler = handler
995
-
996
- def set_description(self, description):
997
- self.description = description
998
-
999
- def get_description(self):
1000
- return self.description
1001
-
1002
-
1003
- def destroy(self):
1004
- """see OptionParser.destroy()."""
1005
- del self._short_opt
1006
- del self._long_opt
1007
- del self.defaults
1008
-
1009
-
1010
- # -- Option-adding methods -----------------------------------------
1011
-
1012
- def _check_conflict(self, option):
1013
- conflict_opts = []
1014
- for opt in option._short_opts:
1015
- if self._short_opt.has_key(opt):
1016
- conflict_opts.append((opt, self._short_opt[opt]))
1017
- for opt in option._long_opts:
1018
- if self._long_opt.has_key(opt):
1019
- conflict_opts.append((opt, self._long_opt[opt]))
1020
-
1021
- if conflict_opts:
1022
- handler = self.conflict_handler
1023
- if handler == "error":
1024
- raise OptionConflictError(
1025
- "conflicting option string(s): %s"
1026
- % string.join(map(lambda co: co[0], conflict_opts), ", "),
1027
- option)
1028
- elif handler == "resolve":
1029
- for (opt, c_option) in conflict_opts:
1030
- if opt[:2] == "--":
1031
- c_option._long_opts.remove(opt)
1032
- del self._long_opt[opt]
1033
- else:
1034
- c_option._short_opts.remove(opt)
1035
- del self._short_opt[opt]
1036
- if not (c_option._short_opts or c_option._long_opts):
1037
- c_option.container.option_list.remove(c_option)
1038
-
1039
- def add_option(self, *args, **kwargs):
1040
- """add_option(Option)
1041
- add_option(opt_str, ..., kwarg=val, ...)
1042
- """
1043
- if type(args[0]) is types.StringType:
1044
- option = apply(self.option_class, args, kwargs)
1045
- elif len(args) == 1 and not kwargs:
1046
- option = args[0]
1047
- if not isinstance(option, Option):
1048
- raise TypeError, "not an Option instance: %r" % option
1049
- else:
1050
- raise TypeError, "invalid arguments"
1051
-
1052
- self._check_conflict(option)
1053
-
1054
- self.option_list.append(option)
1055
- option.container = self
1056
- for opt in option._short_opts:
1057
- self._short_opt[opt] = option
1058
- for opt in option._long_opts:
1059
- self._long_opt[opt] = option
1060
-
1061
- if option.dest is not None: # option has a dest, we need a default
1062
- if option.default is not NO_DEFAULT:
1063
- self.defaults[option.dest] = option.default
1064
- elif not self.defaults.has_key(option.dest):
1065
- self.defaults[option.dest] = None
1066
-
1067
- return option
1068
-
1069
- def add_options(self, option_list):
1070
- for option in option_list:
1071
- self.add_option(option)
1072
-
1073
- # -- Option query/removal methods ----------------------------------
1074
-
1075
- def get_option(self, opt_str):
1076
- return (self._short_opt.get(opt_str) or
1077
- self._long_opt.get(opt_str))
1078
-
1079
- def has_option(self, opt_str):
1080
- return (self._short_opt.has_key(opt_str) or
1081
- self._long_opt.has_key(opt_str))
1082
-
1083
- def remove_option(self, opt_str):
1084
- option = self._short_opt.get(opt_str)
1085
- if option is None:
1086
- option = self._long_opt.get(opt_str)
1087
- if option is None:
1088
- raise ValueError("no such option %r" % opt_str)
1089
-
1090
- for opt in option._short_opts:
1091
- del self._short_opt[opt]
1092
- for opt in option._long_opts:
1093
- del self._long_opt[opt]
1094
- option.container.option_list.remove(option)
1095
-
1096
-
1097
- # -- Help-formatting methods ---------------------------------------
1098
-
1099
- def format_option_help(self, formatter):
1100
- if not self.option_list:
1101
- return ""
1102
- result = []
1103
- for option in self.option_list:
1104
- if not option.help is SUPPRESS_HELP:
1105
- result.append(formatter.format_option(option))
1106
- return string.join(result, "")
1107
-
1108
- def format_description(self, formatter):
1109
- return formatter.format_description(self.get_description())
1110
-
1111
- def format_help(self, formatter):
1112
- result = []
1113
- if self.description:
1114
- result.append(self.format_description(formatter))
1115
- if self.option_list:
1116
- result.append(self.format_option_help(formatter))
1117
- return string.join(result, "\n")
1118
-
1119
-
1120
- class OptionGroup (OptionContainer):
1121
-
1122
- def __init__(self, parser, title, description=None):
1123
- self.parser = parser
1124
- OptionContainer.__init__(
1125
- self, parser.option_class, parser.conflict_handler, description)
1126
- self.title = title
1127
-
1128
- def _create_option_list(self):
1129
- self.option_list = []
1130
- self._share_option_mappings(self.parser)
1131
-
1132
- def set_title(self, title):
1133
- self.title = title
1134
-
1135
- def destroy(self):
1136
- """see OptionParser.destroy()."""
1137
- OptionContainer.destroy(self)
1138
- del self.option_list
1139
-
1140
- # -- Help-formatting methods ---------------------------------------
1141
-
1142
- def format_help(self, formatter):
1143
- result = formatter.format_heading(self.title)
1144
- formatter.indent()
1145
- result = result + OptionContainer.format_help(self, formatter)
1146
- formatter.dedent()
1147
- return result
1148
-
1149
-
1150
- class OptionParser (OptionContainer):
1151
-
1152
- """
1153
- Class attributes:
1154
- standard_option_list : [Option]
1155
- list of standard options that will be accepted by all instances
1156
- of this parser class (intended to be overridden by subclasses).
1157
-
1158
- Instance attributes:
1159
- usage : string
1160
- a usage string for your program. Before it is displayed
1161
- to the user, "%prog" will be expanded to the name of
1162
- your program (self.prog or os.path.basename(sys.argv[0])).
1163
- prog : string
1164
- the name of the current program (to override
1165
- os.path.basename(sys.argv[0])).
1166
- epilog : string
1167
- paragraph of help text to print after option help
1168
-
1169
- option_groups : [OptionGroup]
1170
- list of option groups in this parser (option groups are
1171
- irrelevant for parsing the command-line, but very useful
1172
- for generating help)
1173
-
1174
- allow_interspersed_args : bool = true
1175
- if true, positional arguments may be interspersed with options.
1176
- Assuming -a and -b each take a single argument, the command-line
1177
- -ablah foo bar -bboo baz
1178
- will be interpreted the same as
1179
- -ablah -bboo -- foo bar baz
1180
- If this flag were false, that command line would be interpreted as
1181
- -ablah -- foo bar -bboo baz
1182
- -- ie. we stop processing options as soon as we see the first
1183
- non-option argument. (This is the tradition followed by
1184
- Python's getopt module, Perl's Getopt::Std, and other argument-
1185
- parsing libraries, but it is generally annoying to users.)
1186
-
1187
- process_default_values : bool = true
1188
- if true, option default values are processed similarly to option
1189
- values from the command line: that is, they are passed to the
1190
- type-checking function for the option's type (as long as the
1191
- default value is a string). (This really only matters if you
1192
- have defined custom types; see SF bug #955889.) Set it to false
1193
- to restore the behaviour of Optik 1.4.1 and earlier.
1194
-
1195
- rargs : [string]
1196
- the argument list currently being parsed. Only set when
1197
- parse_args() is active, and continually trimmed down as
1198
- we consume arguments. Mainly there for the benefit of
1199
- callback options.
1200
- largs : [string]
1201
- the list of leftover arguments that we have skipped while
1202
- parsing options. If allow_interspersed_args is false, this
1203
- list is always empty.
1204
- values : Values
1205
- the set of option values currently being accumulated. Only
1206
- set when parse_args() is active. Also mainly for callbacks.
1207
-
1208
- Because of the 'rargs', 'largs', and 'values' attributes,
1209
- OptionParser is not thread-safe. If, for some perverse reason, you
1210
- need to parse command-line arguments simultaneously in different
1211
- threads, use different OptionParser instances.
1212
-
1213
- """
1214
-
1215
- standard_option_list = []
1216
-
1217
- def __init__(self,
1218
- usage=None,
1219
- option_list=None,
1220
- option_class=Option,
1221
- version=None,
1222
- conflict_handler="error",
1223
- description=None,
1224
- formatter=None,
1225
- add_help_option=True,
1226
- prog=None,
1227
- epilog=None):
1228
- OptionContainer.__init__(
1229
- self, option_class, conflict_handler, description)
1230
- self.set_usage(usage)
1231
- self.prog = prog
1232
- self.version = version
1233
- self.allow_interspersed_args = True
1234
- self.process_default_values = True
1235
- if formatter is None:
1236
- formatter = IndentedHelpFormatter()
1237
- self.formatter = formatter
1238
- self.formatter.set_parser(self)
1239
- self.epilog = epilog
1240
-
1241
- # Populate the option list; initial sources are the
1242
- # standard_option_list class attribute, the 'option_list'
1243
- # argument, and (if applicable) the _add_version_option() and
1244
- # _add_help_option() methods.
1245
- self._populate_option_list(option_list,
1246
- add_help=add_help_option)
1247
-
1248
- self._init_parsing_state()
1249
-
1250
-
1251
- def destroy(self):
1252
- """
1253
- Declare that you are done with this OptionParser. This cleans up
1254
- reference cycles so the OptionParser (and all objects referenced by
1255
- it) can be garbage-collected promptly. After calling destroy(), the
1256
- OptionParser is unusable.
1257
- """
1258
- OptionContainer.destroy(self)
1259
- for group in self.option_groups:
1260
- group.destroy()
1261
- del self.option_list
1262
- del self.option_groups
1263
- del self.formatter
1264
-
1265
-
1266
- # -- Private methods -----------------------------------------------
1267
- # (used by our or OptionContainer's constructor)
1268
-
1269
- def _create_option_list(self):
1270
- self.option_list = []
1271
- self.option_groups = []
1272
- self._create_option_mappings()
1273
-
1274
- def _add_help_option(self):
1275
- self.add_option("-h", "--help",
1276
- action="help",
1277
- help=_("show this help message and exit"))
1278
-
1279
- def _add_version_option(self):
1280
- self.add_option("--version",
1281
- action="version",
1282
- help=_("show program's version number and exit"))
1283
-
1284
- def _populate_option_list(self, option_list, add_help=True):
1285
- if self.standard_option_list:
1286
- self.add_options(self.standard_option_list)
1287
- if option_list:
1288
- self.add_options(option_list)
1289
- if self.version:
1290
- self._add_version_option()
1291
- if add_help:
1292
- self._add_help_option()
1293
-
1294
- def _init_parsing_state(self):
1295
- # These are set in parse_args() for the convenience of callbacks.
1296
- self.rargs = None
1297
- self.largs = None
1298
- self.values = None
1299
-
1300
-
1301
- # -- Simple modifier methods ---------------------------------------
1302
-
1303
- def set_usage(self, usage):
1304
- if usage is None:
1305
- self.usage = _("%prog [options]")
1306
- elif usage is SUPPRESS_USAGE:
1307
- self.usage = None
1308
- # For backwards compatibility with Optik 1.3 and earlier.
1309
- elif string.lower(usage)[:7] == "usage: ":
1310
- self.usage = usage[7:]
1311
- else:
1312
- self.usage = usage
1313
-
1314
- def enable_interspersed_args(self):
1315
- self.allow_interspersed_args = True
1316
-
1317
- def disable_interspersed_args(self):
1318
- self.allow_interspersed_args = False
1319
-
1320
- def set_process_default_values(self, process):
1321
- self.process_default_values = process
1322
-
1323
- def set_default(self, dest, value):
1324
- self.defaults[dest] = value
1325
-
1326
- def set_defaults(self, **kwargs):
1327
- self.defaults.update(kwargs)
1328
-
1329
- def _get_all_options(self):
1330
- options = self.option_list[:]
1331
- for group in self.option_groups:
1332
- options.extend(group.option_list)
1333
- return options
1334
-
1335
- def get_default_values(self):
1336
- if not self.process_default_values:
1337
- # Old, pre-Optik 1.5 behaviour.
1338
- return Values(self.defaults)
1339
-
1340
- defaults = self.defaults.copy()
1341
- for option in self._get_all_options():
1342
- default = defaults.get(option.dest)
1343
- if isbasestring(default):
1344
- opt_str = option.get_opt_string()
1345
- defaults[option.dest] = option.check_value(opt_str, default)
1346
-
1347
- return Values(defaults)
1348
-
1349
-
1350
- # -- OptionGroup methods -------------------------------------------
1351
-
1352
- def add_option_group(self, *args, **kwargs):
1353
- # XXX lots of overlap with OptionContainer.add_option()
1354
- if type(args[0]) is types.StringType:
1355
- group = apply(OptionGroup, (self,) + args, kwargs)
1356
- elif len(args) == 1 and not kwargs:
1357
- group = args[0]
1358
- if not isinstance(group, OptionGroup):
1359
- raise TypeError, "not an OptionGroup instance: %r" % group
1360
- if group.parser is not self:
1361
- raise ValueError, "invalid OptionGroup (wrong parser)"
1362
- else:
1363
- raise TypeError, "invalid arguments"
1364
-
1365
- self.option_groups.append(group)
1366
- return group
1367
-
1368
- def get_option_group(self, opt_str):
1369
- option = (self._short_opt.get(opt_str) or
1370
- self._long_opt.get(opt_str))
1371
- if option and option.container is not self:
1372
- return option.container
1373
- return None
1374
-
1375
-
1376
- # -- Option-parsing methods ----------------------------------------
1377
-
1378
- def _get_args(self, args):
1379
- if args is None:
1380
- return sys.argv[1:]
1381
- else:
1382
- return args[:] # don't modify caller's list
1383
-
1384
- def parse_args(self, args=None, values=None):
1385
- """
1386
- parse_args(args : [string] = sys.argv[1:],
1387
- values : Values = None)
1388
- -> (values : Values, args : [string])
1389
-
1390
- Parse the command-line options found in 'args' (default:
1391
- sys.argv[1:]). Any errors result in a call to 'error()', which
1392
- by default prints the usage message to stderr and calls
1393
- sys.exit() with an error message. On success returns a pair
1394
- (values, args) where 'values' is an Values instance (with all
1395
- your option values) and 'args' is the list of arguments left
1396
- over after parsing options.
1397
- """
1398
- rargs = self._get_args(args)
1399
- if values is None:
1400
- values = self.get_default_values()
1401
-
1402
- # Store the halves of the argument list as attributes for the
1403
- # convenience of callbacks:
1404
- # rargs
1405
- # the rest of the command-line (the "r" stands for
1406
- # "remaining" or "right-hand")
1407
- # largs
1408
- # the leftover arguments -- ie. what's left after removing
1409
- # options and their arguments (the "l" stands for "leftover"
1410
- # or "left-hand")
1411
- self.rargs = rargs
1412
- self.largs = largs = []
1413
- self.values = values
1414
-
1415
- try:
1416
- stop = self._process_args(largs, rargs, values)
1417
- except (BadOptionError, OptionValueError), err:
1418
- self.error(str(err))
1419
-
1420
- args = largs + rargs
1421
- return self.check_values(values, args)
1422
-
1423
- def check_values(self, values, args):
1424
- """
1425
- check_values(values : Values, args : [string])
1426
- -> (values : Values, args : [string])
1427
-
1428
- Check that the supplied option values and leftover arguments are
1429
- valid. Returns the option values and leftover arguments
1430
- (possibly adjusted, possibly completely new -- whatever you
1431
- like). Default implementation just returns the passed-in
1432
- values; subclasses may override as desired.
1433
- """
1434
- return (values, args)
1435
-
1436
- def _process_args(self, largs, rargs, values):
1437
- """_process_args(largs : [string],
1438
- rargs : [string],
1439
- values : Values)
1440
-
1441
- Process command-line arguments and populate 'values', consuming
1442
- options and arguments from 'rargs'. If 'allow_interspersed_args' is
1443
- false, stop at the first non-option argument. If true, accumulate any
1444
- interspersed non-option arguments in 'largs'.
1445
- """
1446
- while rargs:
1447
- arg = rargs[0]
1448
- # We handle bare "--" explicitly, and bare "-" is handled by the
1449
- # standard arg handler since the short arg case ensures that the
1450
- # len of the opt string is greater than 1.
1451
- if arg == "--":
1452
- del rargs[0]
1453
- return
1454
- elif arg[0:2] == "--":
1455
- # process a single long option (possibly with value(s))
1456
- self._process_long_opt(rargs, values)
1457
- elif arg[:1] == "-" and len(arg) > 1:
1458
- # process a cluster of short options (possibly with
1459
- # value(s) for the last one only)
1460
- self._process_short_opts(rargs, values)
1461
- elif self.allow_interspersed_args:
1462
- largs.append(arg)
1463
- del rargs[0]
1464
- else:
1465
- return # stop now, leave this arg in rargs
1466
-
1467
- # Say this is the original argument list:
1468
- # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]
1469
- # ^
1470
- # (we are about to process arg(i)).
1471
- #
1472
- # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of
1473
- # [arg0, ..., arg(i-1)] (any options and their arguments will have
1474
- # been removed from largs).
1475
- #
1476
- # The while loop will usually consume 1 or more arguments per pass.
1477
- # If it consumes 1 (eg. arg is an option that takes no arguments),
1478
- # then after _process_arg() is done the situation is:
1479
- #
1480
- # largs = subset of [arg0, ..., arg(i)]
1481
- # rargs = [arg(i+1), ..., arg(N-1)]
1482
- #
1483
- # If allow_interspersed_args is false, largs will always be
1484
- # *empty* -- still a subset of [arg0, ..., arg(i-1)], but
1485
- # not a very interesting subset!
1486
-
1487
- def _match_long_opt(self, opt):
1488
- """_match_long_opt(opt : string) -> string
1489
-
1490
- Determine which long option string 'opt' matches, ie. which one
1491
- it is an unambiguous abbrevation for. Raises BadOptionError if
1492
- 'opt' doesn't unambiguously match any long option string.
1493
- """
1494
- return _match_abbrev(opt, self._long_opt)
1495
-
1496
- def _process_long_opt(self, rargs, values):
1497
- arg = rargs.pop(0)
1498
-
1499
- # Value explicitly attached to arg? Pretend it's the next
1500
- # argument.
1501
- if "=" in arg:
1502
- (opt, next_arg) = string.split(arg, "=", 1)
1503
- rargs.insert(0, next_arg)
1504
- had_explicit_value = True
1505
- else:
1506
- opt = arg
1507
- had_explicit_value = False
1508
-
1509
- opt = self._match_long_opt(opt)
1510
- option = self._long_opt[opt]
1511
- if option.takes_value():
1512
- nargs = option.nargs
1513
- if len(rargs) < nargs:
1514
- if nargs == 1:
1515
- self.error(_("%s option requires an argument") % opt)
1516
- else:
1517
- self.error(_("%s option requires %d arguments")
1518
- % (opt, nargs))
1519
- elif nargs == 1:
1520
- value = rargs.pop(0)
1521
- else:
1522
- value = tuple(rargs[0:nargs])
1523
- del rargs[0:nargs]
1524
-
1525
- elif had_explicit_value:
1526
- self.error(_("%s option does not take a value") % opt)
1527
-
1528
- else:
1529
- value = None
1530
-
1531
- option.process(opt, value, values, self)
1532
-
1533
- def _process_short_opts(self, rargs, values):
1534
- arg = rargs.pop(0)
1535
- stop = False
1536
- i = 1
1537
- for ch in arg[1:]:
1538
- opt = "-" + ch
1539
- option = self._short_opt.get(opt)
1540
- i = i + 1 # we have consumed a character
1541
-
1542
- if not option:
1543
- raise BadOptionError(opt)
1544
- if option.takes_value():
1545
- # Any characters left in arg? Pretend they're the
1546
- # next arg, and stop consuming characters of arg.
1547
- if i < len(arg):
1548
- rargs.insert(0, arg[i:])
1549
- stop = True
1550
-
1551
- nargs = option.nargs
1552
- if len(rargs) < nargs:
1553
- if nargs == 1:
1554
- self.error(_("%s option requires an argument") % opt)
1555
- else:
1556
- self.error(_("%s option requires %d arguments")
1557
- % (opt, nargs))
1558
- elif nargs == 1:
1559
- value = rargs.pop(0)
1560
- else:
1561
- value = tuple(rargs[0:nargs])
1562
- del rargs[0:nargs]
1563
-
1564
- else: # option doesn't take a value
1565
- value = None
1566
-
1567
- option.process(opt, value, values, self)
1568
-
1569
- if stop:
1570
- break
1571
-
1572
-
1573
- # -- Feedback methods ----------------------------------------------
1574
-
1575
- def get_prog_name(self):
1576
- if self.prog is None:
1577
- return os.path.basename(sys.argv[0])
1578
- else:
1579
- return self.prog
1580
-
1581
- def expand_prog_name(self, s):
1582
- return string.replace(s, "%prog", self.get_prog_name())
1583
-
1584
- def get_description(self):
1585
- return self.expand_prog_name(self.description)
1586
-
1587
- def exit(self, status=0, msg=None):
1588
- if msg:
1589
- sys.stderr.write(msg)
1590
- sys.exit(status)
1591
-
1592
- def error(self, msg):
1593
- """error(msg : string)
1594
-
1595
- Print a usage message incorporating 'msg' to stderr and exit.
1596
- If you override this in a subclass, it should not return -- it
1597
- should either exit or raise an exception.
1598
- """
1599
- self.print_usage(sys.stderr)
1600
- self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg))
1601
-
1602
- def get_usage(self):
1603
- if self.usage:
1604
- return self.formatter.format_usage(
1605
- self.expand_prog_name(self.usage))
1606
- else:
1607
- return ""
1608
-
1609
- def print_usage(self, file=None):
1610
- """print_usage(file : file = stdout)
1611
-
1612
- Print the usage message for the current program (self.usage) to
1613
- 'file' (default stdout). Any occurence of the string "%prog" in
1614
- self.usage is replaced with the name of the current program
1615
- (basename of sys.argv[0]). Does nothing if self.usage is empty
1616
- or not defined.
1617
- """
1618
- if self.usage:
1619
- file.write(self.get_usage() + '\n')
1620
-
1621
- def get_version(self):
1622
- if self.version:
1623
- return self.expand_prog_name(self.version)
1624
- else:
1625
- return ""
1626
-
1627
- def print_version(self, file=None):
1628
- """print_version(file : file = stdout)
1629
-
1630
- Print the version message for this program (self.version) to
1631
- 'file' (default stdout). As with print_usage(), any occurence
1632
- of "%prog" in self.version is replaced by the current program's
1633
- name. Does nothing if self.version is empty or undefined.
1634
- """
1635
- if self.version:
1636
- file.write(self.get_version() + '\n')
1637
-
1638
- def format_option_help(self, formatter=None):
1639
- if formatter is None:
1640
- formatter = self.formatter
1641
- formatter.store_option_strings(self)
1642
- result = []
1643
- result.append(formatter.format_heading(_("Options")))
1644
- formatter.indent()
1645
- if self.option_list:
1646
- result.append(OptionContainer.format_option_help(self, formatter))
1647
- result.append("\n")
1648
- for group in self.option_groups:
1649
- result.append(group.format_help(formatter))
1650
- result.append("\n")
1651
- formatter.dedent()
1652
- # Drop the last "\n", or the header if no options or option groups:
1653
- return string.join(result[:-1], "")
1654
-
1655
- def format_epilog(self, formatter):
1656
- return formatter.format_epilog(self.epilog)
1657
-
1658
- def format_help(self, formatter=None):
1659
- if formatter is None:
1660
- formatter = self.formatter
1661
- result = []
1662
- if self.usage:
1663
- result.append(self.get_usage() + "\n")
1664
- if self.description:
1665
- result.append(self.format_description(formatter) + "\n")
1666
- result.append(self.format_option_help(formatter))
1667
- result.append(self.format_epilog(formatter))
1668
- return string.join(result, "")
1669
-
1670
- # used by test suite
1671
- def _get_encoding(self, file):
1672
- encoding = getattr(file, "encoding", None)
1673
- if not encoding:
1674
- encoding = sys.getdefaultencoding()
1675
- return encoding
1676
-
1677
- def print_help(self, file=None):
1678
- """print_help(file : file = stdout)
1679
-
1680
- Print an extended help message, listing all options and any
1681
- help text provided with them, to 'file' (default stdout).
1682
- """
1683
- if file is None:
1684
- file = sys.stdout
1685
- encoding = self._get_encoding(file)
1686
- file.write(encode_wrapper(self.format_help(), encoding, "replace"))
1687
-
1688
- # class OptionParser
1689
-
1690
-
1691
- def _match_abbrev(s, wordmap):
1692
- """_match_abbrev(s : string, wordmap : {string : Option}) -> string
1693
-
1694
- Return the string key in 'wordmap' for which 's' is an unambiguous
1695
- abbreviation. If 's' is found to be ambiguous or doesn't match any of
1696
- 'words', raise BadOptionError.
1697
- """
1698
- # Is there an exact match?
1699
- if wordmap.has_key(s):
1700
- return s
1701
- else:
1702
- # Isolate all words with s as a prefix.
1703
- possibilities = filter(lambda w, s=s: w[:len(s)] == s, wordmap.keys())
1704
- # No exact match, so there had better be just one possibility.
1705
- if len(possibilities) == 1:
1706
- return possibilities[0]
1707
- elif not possibilities:
1708
- raise BadOptionError(s)
1709
- else:
1710
- # More than one possible completion: ambiguous prefix.
1711
- possibilities.sort()
1712
- raise AmbiguousOptionError(s, possibilities)
1713
-
1714
-
1715
- # Some day, there might be many Option classes. As of Optik 1.3, the
1716
- # preferred way to instantiate Options is indirectly, via make_option(),
1717
- # which will become a factory function when there are many Option
1718
- # classes.
1719
- make_option = Option
1720
-
1721
- # Local Variables:
1722
- # tab-width:4
1723
- # indent-tabs-mode:nil
1724
- # End:
1725
- # vim: set expandtab tabstop=4 shiftwidth=4: