libv8 3.3.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (700) hide show
  1. data/.gitignore +8 -0
  2. data/.gitmodules +3 -0
  3. data/Gemfile +4 -0
  4. data/README.md +44 -0
  5. data/Rakefile +73 -0
  6. data/ext/libv8/extconf.rb +9 -0
  7. data/lib/libv8.rb +15 -0
  8. data/lib/libv8/Makefile +38 -0
  9. data/lib/libv8/detect_cpu.rb +27 -0
  10. data/lib/libv8/fpic-on-linux-amd64.patch +13 -0
  11. data/lib/libv8/scons/CHANGES.txt +5334 -0
  12. data/lib/libv8/scons/LICENSE.txt +20 -0
  13. data/lib/libv8/scons/MANIFEST +199 -0
  14. data/lib/libv8/scons/PKG-INFO +13 -0
  15. data/lib/libv8/scons/README.txt +243 -0
  16. data/lib/libv8/scons/RELEASE.txt +98 -0
  17. data/lib/libv8/scons/engine/SCons/Action.py +1241 -0
  18. data/lib/libv8/scons/engine/SCons/Builder.py +877 -0
  19. data/lib/libv8/scons/engine/SCons/CacheDir.py +216 -0
  20. data/lib/libv8/scons/engine/SCons/Conftest.py +793 -0
  21. data/lib/libv8/scons/engine/SCons/Debug.py +220 -0
  22. data/lib/libv8/scons/engine/SCons/Defaults.py +480 -0
  23. data/lib/libv8/scons/engine/SCons/Environment.py +2318 -0
  24. data/lib/libv8/scons/engine/SCons/Errors.py +205 -0
  25. data/lib/libv8/scons/engine/SCons/Executor.py +633 -0
  26. data/lib/libv8/scons/engine/SCons/Job.py +435 -0
  27. data/lib/libv8/scons/engine/SCons/Memoize.py +244 -0
  28. data/lib/libv8/scons/engine/SCons/Node/Alias.py +152 -0
  29. data/lib/libv8/scons/engine/SCons/Node/FS.py +3142 -0
  30. data/lib/libv8/scons/engine/SCons/Node/Python.py +128 -0
  31. data/lib/libv8/scons/engine/SCons/Node/__init__.py +1328 -0
  32. data/lib/libv8/scons/engine/SCons/Options/BoolOption.py +50 -0
  33. data/lib/libv8/scons/engine/SCons/Options/EnumOption.py +50 -0
  34. data/lib/libv8/scons/engine/SCons/Options/ListOption.py +50 -0
  35. data/lib/libv8/scons/engine/SCons/Options/PackageOption.py +50 -0
  36. data/lib/libv8/scons/engine/SCons/Options/PathOption.py +76 -0
  37. data/lib/libv8/scons/engine/SCons/Options/__init__.py +67 -0
  38. data/lib/libv8/scons/engine/SCons/PathList.py +231 -0
  39. data/lib/libv8/scons/engine/SCons/Platform/__init__.py +241 -0
  40. data/lib/libv8/scons/engine/SCons/Platform/aix.py +69 -0
  41. data/lib/libv8/scons/engine/SCons/Platform/cygwin.py +55 -0
  42. data/lib/libv8/scons/engine/SCons/Platform/darwin.py +46 -0
  43. data/lib/libv8/scons/engine/SCons/Platform/hpux.py +46 -0
  44. data/lib/libv8/scons/engine/SCons/Platform/irix.py +44 -0
  45. data/lib/libv8/scons/engine/SCons/Platform/os2.py +58 -0
  46. data/lib/libv8/scons/engine/SCons/Platform/posix.py +263 -0
  47. data/lib/libv8/scons/engine/SCons/Platform/sunos.py +50 -0
  48. data/lib/libv8/scons/engine/SCons/Platform/win32.py +385 -0
  49. data/lib/libv8/scons/engine/SCons/SConf.py +1030 -0
  50. data/lib/libv8/scons/engine/SCons/SConsign.py +383 -0
  51. data/lib/libv8/scons/engine/SCons/Scanner/C.py +132 -0
  52. data/lib/libv8/scons/engine/SCons/Scanner/D.py +73 -0
  53. data/lib/libv8/scons/engine/SCons/Scanner/Dir.py +109 -0
  54. data/lib/libv8/scons/engine/SCons/Scanner/Fortran.py +316 -0
  55. data/lib/libv8/scons/engine/SCons/Scanner/IDL.py +48 -0
  56. data/lib/libv8/scons/engine/SCons/Scanner/LaTeX.py +384 -0
  57. data/lib/libv8/scons/engine/SCons/Scanner/Prog.py +101 -0
  58. data/lib/libv8/scons/engine/SCons/Scanner/RC.py +55 -0
  59. data/lib/libv8/scons/engine/SCons/Scanner/__init__.py +413 -0
  60. data/lib/libv8/scons/engine/SCons/Script/Interactive.py +384 -0
  61. data/lib/libv8/scons/engine/SCons/Script/Main.py +1334 -0
  62. data/lib/libv8/scons/engine/SCons/Script/SConsOptions.py +939 -0
  63. data/lib/libv8/scons/engine/SCons/Script/SConscript.py +640 -0
  64. data/lib/libv8/scons/engine/SCons/Script/__init__.py +412 -0
  65. data/lib/libv8/scons/engine/SCons/Sig.py +63 -0
  66. data/lib/libv8/scons/engine/SCons/Subst.py +904 -0
  67. data/lib/libv8/scons/engine/SCons/Taskmaster.py +1017 -0
  68. data/lib/libv8/scons/engine/SCons/Tool/386asm.py +61 -0
  69. data/lib/libv8/scons/engine/SCons/Tool/BitKeeper.py +67 -0
  70. data/lib/libv8/scons/engine/SCons/Tool/CVS.py +73 -0
  71. data/lib/libv8/scons/engine/SCons/Tool/FortranCommon.py +246 -0
  72. data/lib/libv8/scons/engine/SCons/Tool/JavaCommon.py +323 -0
  73. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/__init__.py +56 -0
  74. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/arch.py +61 -0
  75. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/common.py +240 -0
  76. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/netframework.py +82 -0
  77. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/sdk.py +391 -0
  78. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/vc.py +456 -0
  79. data/lib/libv8/scons/engine/SCons/Tool/MSCommon/vs.py +499 -0
  80. data/lib/libv8/scons/engine/SCons/Tool/Perforce.py +103 -0
  81. data/lib/libv8/scons/engine/SCons/Tool/PharLapCommon.py +137 -0
  82. data/lib/libv8/scons/engine/SCons/Tool/RCS.py +64 -0
  83. data/lib/libv8/scons/engine/SCons/Tool/SCCS.py +64 -0
  84. data/lib/libv8/scons/engine/SCons/Tool/Subversion.py +71 -0
  85. data/lib/libv8/scons/engine/SCons/Tool/__init__.py +681 -0
  86. data/lib/libv8/scons/engine/SCons/Tool/aixc++.py +82 -0
  87. data/lib/libv8/scons/engine/SCons/Tool/aixcc.py +74 -0
  88. data/lib/libv8/scons/engine/SCons/Tool/aixf77.py +80 -0
  89. data/lib/libv8/scons/engine/SCons/Tool/aixlink.py +76 -0
  90. data/lib/libv8/scons/engine/SCons/Tool/applelink.py +71 -0
  91. data/lib/libv8/scons/engine/SCons/Tool/ar.py +63 -0
  92. data/lib/libv8/scons/engine/SCons/Tool/as.py +78 -0
  93. data/lib/libv8/scons/engine/SCons/Tool/bcc32.py +81 -0
  94. data/lib/libv8/scons/engine/SCons/Tool/c++.py +99 -0
  95. data/lib/libv8/scons/engine/SCons/Tool/cc.py +102 -0
  96. data/lib/libv8/scons/engine/SCons/Tool/cvf.py +58 -0
  97. data/lib/libv8/scons/engine/SCons/Tool/default.py +50 -0
  98. data/lib/libv8/scons/engine/SCons/Tool/dmd.py +223 -0
  99. data/lib/libv8/scons/engine/SCons/Tool/dvi.py +64 -0
  100. data/lib/libv8/scons/engine/SCons/Tool/dvipdf.py +124 -0
  101. data/lib/libv8/scons/engine/SCons/Tool/dvips.py +94 -0
  102. data/lib/libv8/scons/engine/SCons/Tool/f77.py +62 -0
  103. data/lib/libv8/scons/engine/SCons/Tool/f90.py +62 -0
  104. data/lib/libv8/scons/engine/SCons/Tool/f95.py +63 -0
  105. data/lib/libv8/scons/engine/SCons/Tool/filesystem.py +98 -0
  106. data/lib/libv8/scons/engine/SCons/Tool/fortran.py +62 -0
  107. data/lib/libv8/scons/engine/SCons/Tool/g++.py +90 -0
  108. data/lib/libv8/scons/engine/SCons/Tool/g77.py +73 -0
  109. data/lib/libv8/scons/engine/SCons/Tool/gas.py +53 -0
  110. data/lib/libv8/scons/engine/SCons/Tool/gcc.py +80 -0
  111. data/lib/libv8/scons/engine/SCons/Tool/gfortran.py +64 -0
  112. data/lib/libv8/scons/engine/SCons/Tool/gnulink.py +63 -0
  113. data/lib/libv8/scons/engine/SCons/Tool/gs.py +81 -0
  114. data/lib/libv8/scons/engine/SCons/Tool/hpc++.py +84 -0
  115. data/lib/libv8/scons/engine/SCons/Tool/hpcc.py +53 -0
  116. data/lib/libv8/scons/engine/SCons/Tool/hplink.py +77 -0
  117. data/lib/libv8/scons/engine/SCons/Tool/icc.py +59 -0
  118. data/lib/libv8/scons/engine/SCons/Tool/icl.py +52 -0
  119. data/lib/libv8/scons/engine/SCons/Tool/ifl.py +72 -0
  120. data/lib/libv8/scons/engine/SCons/Tool/ifort.py +88 -0
  121. data/lib/libv8/scons/engine/SCons/Tool/ilink.py +59 -0
  122. data/lib/libv8/scons/engine/SCons/Tool/ilink32.py +60 -0
  123. data/lib/libv8/scons/engine/SCons/Tool/install.py +229 -0
  124. data/lib/libv8/scons/engine/SCons/Tool/intelc.py +482 -0
  125. data/lib/libv8/scons/engine/SCons/Tool/ipkg.py +67 -0
  126. data/lib/libv8/scons/engine/SCons/Tool/jar.py +110 -0
  127. data/lib/libv8/scons/engine/SCons/Tool/javac.py +230 -0
  128. data/lib/libv8/scons/engine/SCons/Tool/javah.py +137 -0
  129. data/lib/libv8/scons/engine/SCons/Tool/latex.py +79 -0
  130. data/lib/libv8/scons/engine/SCons/Tool/lex.py +97 -0
  131. data/lib/libv8/scons/engine/SCons/Tool/link.py +121 -0
  132. data/lib/libv8/scons/engine/SCons/Tool/linkloc.py +112 -0
  133. data/lib/libv8/scons/engine/SCons/Tool/m4.py +63 -0
  134. data/lib/libv8/scons/engine/SCons/Tool/masm.py +77 -0
  135. data/lib/libv8/scons/engine/SCons/Tool/midl.py +88 -0
  136. data/lib/libv8/scons/engine/SCons/Tool/mingw.py +158 -0
  137. data/lib/libv8/scons/engine/SCons/Tool/mslib.py +64 -0
  138. data/lib/libv8/scons/engine/SCons/Tool/mslink.py +266 -0
  139. data/lib/libv8/scons/engine/SCons/Tool/mssdk.py +50 -0
  140. data/lib/libv8/scons/engine/SCons/Tool/msvc.py +268 -0
  141. data/lib/libv8/scons/engine/SCons/Tool/msvs.py +1388 -0
  142. data/lib/libv8/scons/engine/SCons/Tool/mwcc.py +207 -0
  143. data/lib/libv8/scons/engine/SCons/Tool/mwld.py +107 -0
  144. data/lib/libv8/scons/engine/SCons/Tool/nasm.py +72 -0
  145. data/lib/libv8/scons/engine/SCons/Tool/packaging/__init__.py +312 -0
  146. data/lib/libv8/scons/engine/SCons/Tool/packaging/ipk.py +185 -0
  147. data/lib/libv8/scons/engine/SCons/Tool/packaging/msi.py +527 -0
  148. data/lib/libv8/scons/engine/SCons/Tool/packaging/rpm.py +365 -0
  149. data/lib/libv8/scons/engine/SCons/Tool/packaging/src_tarbz2.py +43 -0
  150. data/lib/libv8/scons/engine/SCons/Tool/packaging/src_targz.py +43 -0
  151. data/lib/libv8/scons/engine/SCons/Tool/packaging/src_zip.py +43 -0
  152. data/lib/libv8/scons/engine/SCons/Tool/packaging/tarbz2.py +44 -0
  153. data/lib/libv8/scons/engine/SCons/Tool/packaging/targz.py +44 -0
  154. data/lib/libv8/scons/engine/SCons/Tool/packaging/zip.py +44 -0
  155. data/lib/libv8/scons/engine/SCons/Tool/pdf.py +78 -0
  156. data/lib/libv8/scons/engine/SCons/Tool/pdflatex.py +83 -0
  157. data/lib/libv8/scons/engine/SCons/Tool/pdftex.py +108 -0
  158. data/lib/libv8/scons/engine/SCons/Tool/qt.py +336 -0
  159. data/lib/libv8/scons/engine/SCons/Tool/rmic.py +120 -0
  160. data/lib/libv8/scons/engine/SCons/Tool/rpcgen.py +70 -0
  161. data/lib/libv8/scons/engine/SCons/Tool/rpm.py +132 -0
  162. data/lib/libv8/scons/engine/SCons/Tool/sgiar.py +68 -0
  163. data/lib/libv8/scons/engine/SCons/Tool/sgic++.py +58 -0
  164. data/lib/libv8/scons/engine/SCons/Tool/sgicc.py +53 -0
  165. data/lib/libv8/scons/engine/SCons/Tool/sgilink.py +63 -0
  166. data/lib/libv8/scons/engine/SCons/Tool/sunar.py +67 -0
  167. data/lib/libv8/scons/engine/SCons/Tool/sunc++.py +142 -0
  168. data/lib/libv8/scons/engine/SCons/Tool/suncc.py +58 -0
  169. data/lib/libv8/scons/engine/SCons/Tool/sunf77.py +63 -0
  170. data/lib/libv8/scons/engine/SCons/Tool/sunf90.py +64 -0
  171. data/lib/libv8/scons/engine/SCons/Tool/sunf95.py +64 -0
  172. data/lib/libv8/scons/engine/SCons/Tool/sunlink.py +77 -0
  173. data/lib/libv8/scons/engine/SCons/Tool/swig.py +182 -0
  174. data/lib/libv8/scons/engine/SCons/Tool/tar.py +73 -0
  175. data/lib/libv8/scons/engine/SCons/Tool/tex.py +813 -0
  176. data/lib/libv8/scons/engine/SCons/Tool/textfile.py +175 -0
  177. data/lib/libv8/scons/engine/SCons/Tool/tlib.py +53 -0
  178. data/lib/libv8/scons/engine/SCons/Tool/wix.py +99 -0
  179. data/lib/libv8/scons/engine/SCons/Tool/yacc.py +130 -0
  180. data/lib/libv8/scons/engine/SCons/Tool/zip.py +99 -0
  181. data/lib/libv8/scons/engine/SCons/Util.py +1492 -0
  182. data/lib/libv8/scons/engine/SCons/Variables/BoolVariable.py +89 -0
  183. data/lib/libv8/scons/engine/SCons/Variables/EnumVariable.py +103 -0
  184. data/lib/libv8/scons/engine/SCons/Variables/ListVariable.py +135 -0
  185. data/lib/libv8/scons/engine/SCons/Variables/PackageVariable.py +106 -0
  186. data/lib/libv8/scons/engine/SCons/Variables/PathVariable.py +147 -0
  187. data/lib/libv8/scons/engine/SCons/Variables/__init__.py +312 -0
  188. data/lib/libv8/scons/engine/SCons/Warnings.py +246 -0
  189. data/lib/libv8/scons/engine/SCons/__init__.py +49 -0
  190. data/lib/libv8/scons/engine/SCons/compat/__init__.py +237 -0
  191. data/lib/libv8/scons/engine/SCons/compat/_scons_builtins.py +150 -0
  192. data/lib/libv8/scons/engine/SCons/compat/_scons_collections.py +45 -0
  193. data/lib/libv8/scons/engine/SCons/compat/_scons_dbm.py +45 -0
  194. data/lib/libv8/scons/engine/SCons/compat/_scons_hashlib.py +76 -0
  195. data/lib/libv8/scons/engine/SCons/compat/_scons_io.py +45 -0
  196. data/lib/libv8/scons/engine/SCons/compat/_scons_sets.py +563 -0
  197. data/lib/libv8/scons/engine/SCons/compat/_scons_subprocess.py +1281 -0
  198. data/lib/libv8/scons/engine/SCons/cpp.py +589 -0
  199. data/lib/libv8/scons/engine/SCons/dblite.py +251 -0
  200. data/lib/libv8/scons/engine/SCons/exitfuncs.py +77 -0
  201. data/lib/libv8/scons/os_spawnv_fix.diff +83 -0
  202. data/lib/libv8/scons/scons-time.1 +1017 -0
  203. data/lib/libv8/scons/scons.1 +15219 -0
  204. data/lib/libv8/scons/sconsign.1 +208 -0
  205. data/lib/libv8/scons/script/scons +196 -0
  206. data/lib/libv8/scons/script/scons-time +1544 -0
  207. data/lib/libv8/scons/script/scons.bat +31 -0
  208. data/lib/libv8/scons/script/sconsign +513 -0
  209. data/lib/libv8/scons/setup.cfg +6 -0
  210. data/lib/libv8/scons/setup.py +425 -0
  211. data/lib/libv8/v8/.gitignore +35 -0
  212. data/lib/libv8/v8/AUTHORS +44 -0
  213. data/lib/libv8/v8/ChangeLog +2839 -0
  214. data/lib/libv8/v8/LICENSE +52 -0
  215. data/lib/libv8/v8/LICENSE.strongtalk +29 -0
  216. data/lib/libv8/v8/LICENSE.v8 +26 -0
  217. data/lib/libv8/v8/LICENSE.valgrind +45 -0
  218. data/lib/libv8/v8/SConstruct +1478 -0
  219. data/lib/libv8/v8/build/README.txt +49 -0
  220. data/lib/libv8/v8/build/all.gyp +18 -0
  221. data/lib/libv8/v8/build/armu.gypi +32 -0
  222. data/lib/libv8/v8/build/common.gypi +144 -0
  223. data/lib/libv8/v8/build/gyp_v8 +145 -0
  224. data/lib/libv8/v8/include/v8-debug.h +395 -0
  225. data/lib/libv8/v8/include/v8-preparser.h +117 -0
  226. data/lib/libv8/v8/include/v8-profiler.h +505 -0
  227. data/lib/libv8/v8/include/v8-testing.h +104 -0
  228. data/lib/libv8/v8/include/v8.h +4124 -0
  229. data/lib/libv8/v8/include/v8stdint.h +53 -0
  230. data/lib/libv8/v8/preparser/SConscript +38 -0
  231. data/lib/libv8/v8/preparser/preparser-process.cc +379 -0
  232. data/lib/libv8/v8/src/SConscript +368 -0
  233. data/lib/libv8/v8/src/accessors.cc +767 -0
  234. data/lib/libv8/v8/src/accessors.h +123 -0
  235. data/lib/libv8/v8/src/allocation-inl.h +49 -0
  236. data/lib/libv8/v8/src/allocation.cc +122 -0
  237. data/lib/libv8/v8/src/allocation.h +143 -0
  238. data/lib/libv8/v8/src/api.cc +5845 -0
  239. data/lib/libv8/v8/src/api.h +574 -0
  240. data/lib/libv8/v8/src/apinatives.js +110 -0
  241. data/lib/libv8/v8/src/apiutils.h +73 -0
  242. data/lib/libv8/v8/src/arguments.h +118 -0
  243. data/lib/libv8/v8/src/arm/assembler-arm-inl.h +353 -0
  244. data/lib/libv8/v8/src/arm/assembler-arm.cc +2661 -0
  245. data/lib/libv8/v8/src/arm/assembler-arm.h +1375 -0
  246. data/lib/libv8/v8/src/arm/builtins-arm.cc +1658 -0
  247. data/lib/libv8/v8/src/arm/code-stubs-arm.cc +6398 -0
  248. data/lib/libv8/v8/src/arm/code-stubs-arm.h +673 -0
  249. data/lib/libv8/v8/src/arm/codegen-arm.cc +52 -0
  250. data/lib/libv8/v8/src/arm/codegen-arm.h +91 -0
  251. data/lib/libv8/v8/src/arm/constants-arm.cc +152 -0
  252. data/lib/libv8/v8/src/arm/constants-arm.h +775 -0
  253. data/lib/libv8/v8/src/arm/cpu-arm.cc +120 -0
  254. data/lib/libv8/v8/src/arm/debug-arm.cc +317 -0
  255. data/lib/libv8/v8/src/arm/deoptimizer-arm.cc +754 -0
  256. data/lib/libv8/v8/src/arm/disasm-arm.cc +1506 -0
  257. data/lib/libv8/v8/src/arm/frames-arm.cc +45 -0
  258. data/lib/libv8/v8/src/arm/frames-arm.h +168 -0
  259. data/lib/libv8/v8/src/arm/full-codegen-arm.cc +4375 -0
  260. data/lib/libv8/v8/src/arm/ic-arm.cc +1562 -0
  261. data/lib/libv8/v8/src/arm/lithium-arm.cc +2206 -0
  262. data/lib/libv8/v8/src/arm/lithium-arm.h +2348 -0
  263. data/lib/libv8/v8/src/arm/lithium-codegen-arm.cc +4526 -0
  264. data/lib/libv8/v8/src/arm/lithium-codegen-arm.h +403 -0
  265. data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.cc +305 -0
  266. data/lib/libv8/v8/src/arm/lithium-gap-resolver-arm.h +84 -0
  267. data/lib/libv8/v8/src/arm/macro-assembler-arm.cc +3163 -0
  268. data/lib/libv8/v8/src/arm/macro-assembler-arm.h +1126 -0
  269. data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.cc +1287 -0
  270. data/lib/libv8/v8/src/arm/regexp-macro-assembler-arm.h +253 -0
  271. data/lib/libv8/v8/src/arm/simulator-arm.cc +3424 -0
  272. data/lib/libv8/v8/src/arm/simulator-arm.h +431 -0
  273. data/lib/libv8/v8/src/arm/stub-cache-arm.cc +4243 -0
  274. data/lib/libv8/v8/src/array.js +1366 -0
  275. data/lib/libv8/v8/src/assembler.cc +1207 -0
  276. data/lib/libv8/v8/src/assembler.h +858 -0
  277. data/lib/libv8/v8/src/ast-inl.h +112 -0
  278. data/lib/libv8/v8/src/ast.cc +1146 -0
  279. data/lib/libv8/v8/src/ast.h +2188 -0
  280. data/lib/libv8/v8/src/atomicops.h +167 -0
  281. data/lib/libv8/v8/src/atomicops_internals_arm_gcc.h +145 -0
  282. data/lib/libv8/v8/src/atomicops_internals_mips_gcc.h +169 -0
  283. data/lib/libv8/v8/src/atomicops_internals_x86_gcc.cc +133 -0
  284. data/lib/libv8/v8/src/atomicops_internals_x86_gcc.h +287 -0
  285. data/lib/libv8/v8/src/atomicops_internals_x86_macosx.h +301 -0
  286. data/lib/libv8/v8/src/atomicops_internals_x86_msvc.h +203 -0
  287. data/lib/libv8/v8/src/bignum-dtoa.cc +655 -0
  288. data/lib/libv8/v8/src/bignum-dtoa.h +81 -0
  289. data/lib/libv8/v8/src/bignum.cc +768 -0
  290. data/lib/libv8/v8/src/bignum.h +140 -0
  291. data/lib/libv8/v8/src/bootstrapper.cc +2184 -0
  292. data/lib/libv8/v8/src/bootstrapper.h +188 -0
  293. data/lib/libv8/v8/src/builtins.cc +1707 -0
  294. data/lib/libv8/v8/src/builtins.h +371 -0
  295. data/lib/libv8/v8/src/bytecodes-irregexp.h +105 -0
  296. data/lib/libv8/v8/src/cached-powers.cc +177 -0
  297. data/lib/libv8/v8/src/cached-powers.h +65 -0
  298. data/lib/libv8/v8/src/char-predicates-inl.h +94 -0
  299. data/lib/libv8/v8/src/char-predicates.h +67 -0
  300. data/lib/libv8/v8/src/checks.cc +110 -0
  301. data/lib/libv8/v8/src/checks.h +296 -0
  302. data/lib/libv8/v8/src/circular-queue-inl.h +53 -0
  303. data/lib/libv8/v8/src/circular-queue.cc +122 -0
  304. data/lib/libv8/v8/src/circular-queue.h +103 -0
  305. data/lib/libv8/v8/src/code-stubs.cc +267 -0
  306. data/lib/libv8/v8/src/code-stubs.h +1011 -0
  307. data/lib/libv8/v8/src/code.h +70 -0
  308. data/lib/libv8/v8/src/codegen.cc +231 -0
  309. data/lib/libv8/v8/src/codegen.h +84 -0
  310. data/lib/libv8/v8/src/compilation-cache.cc +540 -0
  311. data/lib/libv8/v8/src/compilation-cache.h +287 -0
  312. data/lib/libv8/v8/src/compiler.cc +786 -0
  313. data/lib/libv8/v8/src/compiler.h +312 -0
  314. data/lib/libv8/v8/src/contexts.cc +347 -0
  315. data/lib/libv8/v8/src/contexts.h +391 -0
  316. data/lib/libv8/v8/src/conversions-inl.h +106 -0
  317. data/lib/libv8/v8/src/conversions.cc +1131 -0
  318. data/lib/libv8/v8/src/conversions.h +135 -0
  319. data/lib/libv8/v8/src/counters.cc +93 -0
  320. data/lib/libv8/v8/src/counters.h +254 -0
  321. data/lib/libv8/v8/src/cpu-profiler-inl.h +101 -0
  322. data/lib/libv8/v8/src/cpu-profiler.cc +609 -0
  323. data/lib/libv8/v8/src/cpu-profiler.h +302 -0
  324. data/lib/libv8/v8/src/cpu.h +69 -0
  325. data/lib/libv8/v8/src/d8-debug.cc +367 -0
  326. data/lib/libv8/v8/src/d8-debug.h +158 -0
  327. data/lib/libv8/v8/src/d8-posix.cc +695 -0
  328. data/lib/libv8/v8/src/d8-readline.cc +130 -0
  329. data/lib/libv8/v8/src/d8-windows.cc +42 -0
  330. data/lib/libv8/v8/src/d8.cc +803 -0
  331. data/lib/libv8/v8/src/d8.gyp +91 -0
  332. data/lib/libv8/v8/src/d8.h +235 -0
  333. data/lib/libv8/v8/src/d8.js +2798 -0
  334. data/lib/libv8/v8/src/data-flow.cc +66 -0
  335. data/lib/libv8/v8/src/data-flow.h +205 -0
  336. data/lib/libv8/v8/src/date.js +1103 -0
  337. data/lib/libv8/v8/src/dateparser-inl.h +127 -0
  338. data/lib/libv8/v8/src/dateparser.cc +178 -0
  339. data/lib/libv8/v8/src/dateparser.h +266 -0
  340. data/lib/libv8/v8/src/debug-agent.cc +447 -0
  341. data/lib/libv8/v8/src/debug-agent.h +129 -0
  342. data/lib/libv8/v8/src/debug-debugger.js +2569 -0
  343. data/lib/libv8/v8/src/debug.cc +3165 -0
  344. data/lib/libv8/v8/src/debug.h +1057 -0
  345. data/lib/libv8/v8/src/deoptimizer.cc +1256 -0
  346. data/lib/libv8/v8/src/deoptimizer.h +602 -0
  347. data/lib/libv8/v8/src/disasm.h +80 -0
  348. data/lib/libv8/v8/src/disassembler.cc +343 -0
  349. data/lib/libv8/v8/src/disassembler.h +58 -0
  350. data/lib/libv8/v8/src/diy-fp.cc +58 -0
  351. data/lib/libv8/v8/src/diy-fp.h +117 -0
  352. data/lib/libv8/v8/src/double.h +238 -0
  353. data/lib/libv8/v8/src/dtoa.cc +103 -0
  354. data/lib/libv8/v8/src/dtoa.h +85 -0
  355. data/lib/libv8/v8/src/execution.cc +849 -0
  356. data/lib/libv8/v8/src/execution.h +297 -0
  357. data/lib/libv8/v8/src/extensions/experimental/break-iterator.cc +250 -0
  358. data/lib/libv8/v8/src/extensions/experimental/break-iterator.h +89 -0
  359. data/lib/libv8/v8/src/extensions/experimental/collator.cc +218 -0
  360. data/lib/libv8/v8/src/extensions/experimental/collator.h +69 -0
  361. data/lib/libv8/v8/src/extensions/experimental/experimental.gyp +94 -0
  362. data/lib/libv8/v8/src/extensions/experimental/i18n-extension.cc +78 -0
  363. data/lib/libv8/v8/src/extensions/experimental/i18n-extension.h +54 -0
  364. data/lib/libv8/v8/src/extensions/experimental/i18n-locale.cc +112 -0
  365. data/lib/libv8/v8/src/extensions/experimental/i18n-locale.h +60 -0
  366. data/lib/libv8/v8/src/extensions/experimental/i18n-utils.cc +43 -0
  367. data/lib/libv8/v8/src/extensions/experimental/i18n-utils.h +49 -0
  368. data/lib/libv8/v8/src/extensions/experimental/i18n.js +180 -0
  369. data/lib/libv8/v8/src/extensions/experimental/language-matcher.cc +251 -0
  370. data/lib/libv8/v8/src/extensions/experimental/language-matcher.h +95 -0
  371. data/lib/libv8/v8/src/extensions/externalize-string-extension.cc +141 -0
  372. data/lib/libv8/v8/src/extensions/externalize-string-extension.h +50 -0
  373. data/lib/libv8/v8/src/extensions/gc-extension.cc +58 -0
  374. data/lib/libv8/v8/src/extensions/gc-extension.h +49 -0
  375. data/lib/libv8/v8/src/factory.cc +1222 -0
  376. data/lib/libv8/v8/src/factory.h +442 -0
  377. data/lib/libv8/v8/src/fast-dtoa.cc +736 -0
  378. data/lib/libv8/v8/src/fast-dtoa.h +83 -0
  379. data/lib/libv8/v8/src/fixed-dtoa.cc +405 -0
  380. data/lib/libv8/v8/src/fixed-dtoa.h +55 -0
  381. data/lib/libv8/v8/src/flag-definitions.h +560 -0
  382. data/lib/libv8/v8/src/flags.cc +551 -0
  383. data/lib/libv8/v8/src/flags.h +79 -0
  384. data/lib/libv8/v8/src/frames-inl.h +247 -0
  385. data/lib/libv8/v8/src/frames.cc +1243 -0
  386. data/lib/libv8/v8/src/frames.h +870 -0
  387. data/lib/libv8/v8/src/full-codegen.cc +1374 -0
  388. data/lib/libv8/v8/src/full-codegen.h +771 -0
  389. data/lib/libv8/v8/src/func-name-inferrer.cc +92 -0
  390. data/lib/libv8/v8/src/func-name-inferrer.h +111 -0
  391. data/lib/libv8/v8/src/gdb-jit.cc +1555 -0
  392. data/lib/libv8/v8/src/gdb-jit.h +143 -0
  393. data/lib/libv8/v8/src/global-handles.cc +665 -0
  394. data/lib/libv8/v8/src/global-handles.h +284 -0
  395. data/lib/libv8/v8/src/globals.h +325 -0
  396. data/lib/libv8/v8/src/handles-inl.h +177 -0
  397. data/lib/libv8/v8/src/handles.cc +987 -0
  398. data/lib/libv8/v8/src/handles.h +382 -0
  399. data/lib/libv8/v8/src/hashmap.cc +230 -0
  400. data/lib/libv8/v8/src/hashmap.h +123 -0
  401. data/lib/libv8/v8/src/heap-inl.h +704 -0
  402. data/lib/libv8/v8/src/heap-profiler.cc +1173 -0
  403. data/lib/libv8/v8/src/heap-profiler.h +397 -0
  404. data/lib/libv8/v8/src/heap.cc +5930 -0
  405. data/lib/libv8/v8/src/heap.h +2268 -0
  406. data/lib/libv8/v8/src/hydrogen-instructions.cc +1769 -0
  407. data/lib/libv8/v8/src/hydrogen-instructions.h +3971 -0
  408. data/lib/libv8/v8/src/hydrogen.cc +6239 -0
  409. data/lib/libv8/v8/src/hydrogen.h +1202 -0
  410. data/lib/libv8/v8/src/ia32/assembler-ia32-inl.h +446 -0
  411. data/lib/libv8/v8/src/ia32/assembler-ia32.cc +2487 -0
  412. data/lib/libv8/v8/src/ia32/assembler-ia32.h +1144 -0
  413. data/lib/libv8/v8/src/ia32/builtins-ia32.cc +1621 -0
  414. data/lib/libv8/v8/src/ia32/code-stubs-ia32.cc +6198 -0
  415. data/lib/libv8/v8/src/ia32/code-stubs-ia32.h +517 -0
  416. data/lib/libv8/v8/src/ia32/codegen-ia32.cc +265 -0
  417. data/lib/libv8/v8/src/ia32/codegen-ia32.h +79 -0
  418. data/lib/libv8/v8/src/ia32/cpu-ia32.cc +88 -0
  419. data/lib/libv8/v8/src/ia32/debug-ia32.cc +312 -0
  420. data/lib/libv8/v8/src/ia32/deoptimizer-ia32.cc +774 -0
  421. data/lib/libv8/v8/src/ia32/disasm-ia32.cc +1628 -0
  422. data/lib/libv8/v8/src/ia32/frames-ia32.cc +45 -0
  423. data/lib/libv8/v8/src/ia32/frames-ia32.h +142 -0
  424. data/lib/libv8/v8/src/ia32/full-codegen-ia32.cc +4338 -0
  425. data/lib/libv8/v8/src/ia32/ic-ia32.cc +1597 -0
  426. data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.cc +4461 -0
  427. data/lib/libv8/v8/src/ia32/lithium-codegen-ia32.h +375 -0
  428. data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.cc +475 -0
  429. data/lib/libv8/v8/src/ia32/lithium-gap-resolver-ia32.h +110 -0
  430. data/lib/libv8/v8/src/ia32/lithium-ia32.cc +2261 -0
  431. data/lib/libv8/v8/src/ia32/lithium-ia32.h +2396 -0
  432. data/lib/libv8/v8/src/ia32/macro-assembler-ia32.cc +2136 -0
  433. data/lib/libv8/v8/src/ia32/macro-assembler-ia32.h +775 -0
  434. data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.cc +1263 -0
  435. data/lib/libv8/v8/src/ia32/regexp-macro-assembler-ia32.h +216 -0
  436. data/lib/libv8/v8/src/ia32/simulator-ia32.cc +30 -0
  437. data/lib/libv8/v8/src/ia32/simulator-ia32.h +74 -0
  438. data/lib/libv8/v8/src/ia32/stub-cache-ia32.cc +3847 -0
  439. data/lib/libv8/v8/src/ic-inl.h +130 -0
  440. data/lib/libv8/v8/src/ic.cc +2577 -0
  441. data/lib/libv8/v8/src/ic.h +736 -0
  442. data/lib/libv8/v8/src/inspector.cc +63 -0
  443. data/lib/libv8/v8/src/inspector.h +62 -0
  444. data/lib/libv8/v8/src/interpreter-irregexp.cc +659 -0
  445. data/lib/libv8/v8/src/interpreter-irregexp.h +49 -0
  446. data/lib/libv8/v8/src/isolate-inl.h +50 -0
  447. data/lib/libv8/v8/src/isolate.cc +1869 -0
  448. data/lib/libv8/v8/src/isolate.h +1382 -0
  449. data/lib/libv8/v8/src/json-parser.cc +504 -0
  450. data/lib/libv8/v8/src/json-parser.h +161 -0
  451. data/lib/libv8/v8/src/json.js +342 -0
  452. data/lib/libv8/v8/src/jsregexp.cc +5385 -0
  453. data/lib/libv8/v8/src/jsregexp.h +1492 -0
  454. data/lib/libv8/v8/src/list-inl.h +212 -0
  455. data/lib/libv8/v8/src/list.h +174 -0
  456. data/lib/libv8/v8/src/lithium-allocator-inl.h +142 -0
  457. data/lib/libv8/v8/src/lithium-allocator.cc +2123 -0
  458. data/lib/libv8/v8/src/lithium-allocator.h +630 -0
  459. data/lib/libv8/v8/src/lithium.cc +190 -0
  460. data/lib/libv8/v8/src/lithium.h +597 -0
  461. data/lib/libv8/v8/src/liveedit-debugger.js +1082 -0
  462. data/lib/libv8/v8/src/liveedit.cc +1691 -0
  463. data/lib/libv8/v8/src/liveedit.h +180 -0
  464. data/lib/libv8/v8/src/liveobjectlist-inl.h +126 -0
  465. data/lib/libv8/v8/src/liveobjectlist.cc +2589 -0
  466. data/lib/libv8/v8/src/liveobjectlist.h +322 -0
  467. data/lib/libv8/v8/src/log-inl.h +59 -0
  468. data/lib/libv8/v8/src/log-utils.cc +428 -0
  469. data/lib/libv8/v8/src/log-utils.h +231 -0
  470. data/lib/libv8/v8/src/log.cc +1993 -0
  471. data/lib/libv8/v8/src/log.h +476 -0
  472. data/lib/libv8/v8/src/macro-assembler.h +120 -0
  473. data/lib/libv8/v8/src/macros.py +178 -0
  474. data/lib/libv8/v8/src/mark-compact.cc +3143 -0
  475. data/lib/libv8/v8/src/mark-compact.h +506 -0
  476. data/lib/libv8/v8/src/math.js +264 -0
  477. data/lib/libv8/v8/src/messages.cc +179 -0
  478. data/lib/libv8/v8/src/messages.h +113 -0
  479. data/lib/libv8/v8/src/messages.js +1096 -0
  480. data/lib/libv8/v8/src/mips/assembler-mips-inl.h +312 -0
  481. data/lib/libv8/v8/src/mips/assembler-mips.cc +1960 -0
  482. data/lib/libv8/v8/src/mips/assembler-mips.h +1138 -0
  483. data/lib/libv8/v8/src/mips/builtins-mips.cc +1628 -0
  484. data/lib/libv8/v8/src/mips/code-stubs-mips.cc +6656 -0
  485. data/lib/libv8/v8/src/mips/code-stubs-mips.h +682 -0
  486. data/lib/libv8/v8/src/mips/codegen-mips.cc +52 -0
  487. data/lib/libv8/v8/src/mips/codegen-mips.h +98 -0
  488. data/lib/libv8/v8/src/mips/constants-mips.cc +352 -0
  489. data/lib/libv8/v8/src/mips/constants-mips.h +739 -0
  490. data/lib/libv8/v8/src/mips/cpu-mips.cc +96 -0
  491. data/lib/libv8/v8/src/mips/debug-mips.cc +308 -0
  492. data/lib/libv8/v8/src/mips/deoptimizer-mips.cc +91 -0
  493. data/lib/libv8/v8/src/mips/disasm-mips.cc +1050 -0
  494. data/lib/libv8/v8/src/mips/frames-mips.cc +47 -0
  495. data/lib/libv8/v8/src/mips/frames-mips.h +219 -0
  496. data/lib/libv8/v8/src/mips/full-codegen-mips.cc +4388 -0
  497. data/lib/libv8/v8/src/mips/ic-mips.cc +1580 -0
  498. data/lib/libv8/v8/src/mips/lithium-codegen-mips.h +65 -0
  499. data/lib/libv8/v8/src/mips/lithium-mips.h +307 -0
  500. data/lib/libv8/v8/src/mips/macro-assembler-mips.cc +4056 -0
  501. data/lib/libv8/v8/src/mips/macro-assembler-mips.h +1214 -0
  502. data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.cc +1251 -0
  503. data/lib/libv8/v8/src/mips/regexp-macro-assembler-mips.h +252 -0
  504. data/lib/libv8/v8/src/mips/simulator-mips.cc +2621 -0
  505. data/lib/libv8/v8/src/mips/simulator-mips.h +401 -0
  506. data/lib/libv8/v8/src/mips/stub-cache-mips.cc +4285 -0
  507. data/lib/libv8/v8/src/mirror-debugger.js +2382 -0
  508. data/lib/libv8/v8/src/mksnapshot.cc +328 -0
  509. data/lib/libv8/v8/src/natives.h +64 -0
  510. data/lib/libv8/v8/src/objects-debug.cc +738 -0
  511. data/lib/libv8/v8/src/objects-inl.h +4323 -0
  512. data/lib/libv8/v8/src/objects-printer.cc +829 -0
  513. data/lib/libv8/v8/src/objects-visiting.cc +148 -0
  514. data/lib/libv8/v8/src/objects-visiting.h +424 -0
  515. data/lib/libv8/v8/src/objects.cc +10585 -0
  516. data/lib/libv8/v8/src/objects.h +6838 -0
  517. data/lib/libv8/v8/src/parser.cc +4997 -0
  518. data/lib/libv8/v8/src/parser.h +765 -0
  519. data/lib/libv8/v8/src/platform-cygwin.cc +779 -0
  520. data/lib/libv8/v8/src/platform-freebsd.cc +826 -0
  521. data/lib/libv8/v8/src/platform-linux.cc +1149 -0
  522. data/lib/libv8/v8/src/platform-macos.cc +830 -0
  523. data/lib/libv8/v8/src/platform-nullos.cc +479 -0
  524. data/lib/libv8/v8/src/platform-openbsd.cc +640 -0
  525. data/lib/libv8/v8/src/platform-posix.cc +424 -0
  526. data/lib/libv8/v8/src/platform-solaris.cc +762 -0
  527. data/lib/libv8/v8/src/platform-tls-mac.h +62 -0
  528. data/lib/libv8/v8/src/platform-tls-win32.h +62 -0
  529. data/lib/libv8/v8/src/platform-tls.h +50 -0
  530. data/lib/libv8/v8/src/platform-win32.cc +2021 -0
  531. data/lib/libv8/v8/src/platform.h +667 -0
  532. data/lib/libv8/v8/src/preparse-data-format.h +62 -0
  533. data/lib/libv8/v8/src/preparse-data.cc +183 -0
  534. data/lib/libv8/v8/src/preparse-data.h +225 -0
  535. data/lib/libv8/v8/src/preparser-api.cc +220 -0
  536. data/lib/libv8/v8/src/preparser.cc +1450 -0
  537. data/lib/libv8/v8/src/preparser.h +493 -0
  538. data/lib/libv8/v8/src/prettyprinter.cc +1493 -0
  539. data/lib/libv8/v8/src/prettyprinter.h +223 -0
  540. data/lib/libv8/v8/src/profile-generator-inl.h +128 -0
  541. data/lib/libv8/v8/src/profile-generator.cc +3098 -0
  542. data/lib/libv8/v8/src/profile-generator.h +1126 -0
  543. data/lib/libv8/v8/src/property.cc +105 -0
  544. data/lib/libv8/v8/src/property.h +365 -0
  545. data/lib/libv8/v8/src/proxy.js +83 -0
  546. data/lib/libv8/v8/src/regexp-macro-assembler-irregexp-inl.h +78 -0
  547. data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.cc +471 -0
  548. data/lib/libv8/v8/src/regexp-macro-assembler-irregexp.h +142 -0
  549. data/lib/libv8/v8/src/regexp-macro-assembler-tracer.cc +373 -0
  550. data/lib/libv8/v8/src/regexp-macro-assembler-tracer.h +104 -0
  551. data/lib/libv8/v8/src/regexp-macro-assembler.cc +267 -0
  552. data/lib/libv8/v8/src/regexp-macro-assembler.h +243 -0
  553. data/lib/libv8/v8/src/regexp-stack.cc +111 -0
  554. data/lib/libv8/v8/src/regexp-stack.h +147 -0
  555. data/lib/libv8/v8/src/regexp.js +483 -0
  556. data/lib/libv8/v8/src/rewriter.cc +360 -0
  557. data/lib/libv8/v8/src/rewriter.h +50 -0
  558. data/lib/libv8/v8/src/runtime-profiler.cc +489 -0
  559. data/lib/libv8/v8/src/runtime-profiler.h +201 -0
  560. data/lib/libv8/v8/src/runtime.cc +12227 -0
  561. data/lib/libv8/v8/src/runtime.h +652 -0
  562. data/lib/libv8/v8/src/runtime.js +649 -0
  563. data/lib/libv8/v8/src/safepoint-table.cc +256 -0
  564. data/lib/libv8/v8/src/safepoint-table.h +270 -0
  565. data/lib/libv8/v8/src/scanner-base.cc +952 -0
  566. data/lib/libv8/v8/src/scanner-base.h +670 -0
  567. data/lib/libv8/v8/src/scanner.cc +345 -0
  568. data/lib/libv8/v8/src/scanner.h +146 -0
  569. data/lib/libv8/v8/src/scopeinfo.cc +646 -0
  570. data/lib/libv8/v8/src/scopeinfo.h +254 -0
  571. data/lib/libv8/v8/src/scopes.cc +1150 -0
  572. data/lib/libv8/v8/src/scopes.h +507 -0
  573. data/lib/libv8/v8/src/serialize.cc +1574 -0
  574. data/lib/libv8/v8/src/serialize.h +589 -0
  575. data/lib/libv8/v8/src/shell.h +55 -0
  576. data/lib/libv8/v8/src/simulator.h +43 -0
  577. data/lib/libv8/v8/src/small-pointer-list.h +163 -0
  578. data/lib/libv8/v8/src/smart-pointer.h +109 -0
  579. data/lib/libv8/v8/src/snapshot-common.cc +83 -0
  580. data/lib/libv8/v8/src/snapshot-empty.cc +54 -0
  581. data/lib/libv8/v8/src/snapshot.h +91 -0
  582. data/lib/libv8/v8/src/spaces-inl.h +529 -0
  583. data/lib/libv8/v8/src/spaces.cc +3145 -0
  584. data/lib/libv8/v8/src/spaces.h +2369 -0
  585. data/lib/libv8/v8/src/splay-tree-inl.h +310 -0
  586. data/lib/libv8/v8/src/splay-tree.h +205 -0
  587. data/lib/libv8/v8/src/string-search.cc +41 -0
  588. data/lib/libv8/v8/src/string-search.h +568 -0
  589. data/lib/libv8/v8/src/string-stream.cc +592 -0
  590. data/lib/libv8/v8/src/string-stream.h +191 -0
  591. data/lib/libv8/v8/src/string.js +994 -0
  592. data/lib/libv8/v8/src/strtod.cc +440 -0
  593. data/lib/libv8/v8/src/strtod.h +40 -0
  594. data/lib/libv8/v8/src/stub-cache.cc +1965 -0
  595. data/lib/libv8/v8/src/stub-cache.h +924 -0
  596. data/lib/libv8/v8/src/third_party/valgrind/valgrind.h +3925 -0
  597. data/lib/libv8/v8/src/token.cc +63 -0
  598. data/lib/libv8/v8/src/token.h +288 -0
  599. data/lib/libv8/v8/src/type-info.cc +507 -0
  600. data/lib/libv8/v8/src/type-info.h +272 -0
  601. data/lib/libv8/v8/src/unbound-queue-inl.h +95 -0
  602. data/lib/libv8/v8/src/unbound-queue.h +69 -0
  603. data/lib/libv8/v8/src/unicode-inl.h +238 -0
  604. data/lib/libv8/v8/src/unicode.cc +1624 -0
  605. data/lib/libv8/v8/src/unicode.h +280 -0
  606. data/lib/libv8/v8/src/uri.js +408 -0
  607. data/lib/libv8/v8/src/utils-inl.h +48 -0
  608. data/lib/libv8/v8/src/utils.cc +371 -0
  609. data/lib/libv8/v8/src/utils.h +800 -0
  610. data/lib/libv8/v8/src/v8-counters.cc +62 -0
  611. data/lib/libv8/v8/src/v8-counters.h +314 -0
  612. data/lib/libv8/v8/src/v8.cc +213 -0
  613. data/lib/libv8/v8/src/v8.h +131 -0
  614. data/lib/libv8/v8/src/v8checks.h +64 -0
  615. data/lib/libv8/v8/src/v8dll-main.cc +44 -0
  616. data/lib/libv8/v8/src/v8globals.h +512 -0
  617. data/lib/libv8/v8/src/v8memory.h +82 -0
  618. data/lib/libv8/v8/src/v8natives.js +1310 -0
  619. data/lib/libv8/v8/src/v8preparserdll-main.cc +39 -0
  620. data/lib/libv8/v8/src/v8threads.cc +464 -0
  621. data/lib/libv8/v8/src/v8threads.h +165 -0
  622. data/lib/libv8/v8/src/v8utils.h +319 -0
  623. data/lib/libv8/v8/src/variables.cc +114 -0
  624. data/lib/libv8/v8/src/variables.h +167 -0
  625. data/lib/libv8/v8/src/version.cc +116 -0
  626. data/lib/libv8/v8/src/version.h +68 -0
  627. data/lib/libv8/v8/src/vm-state-inl.h +138 -0
  628. data/lib/libv8/v8/src/vm-state.h +71 -0
  629. data/lib/libv8/v8/src/win32-headers.h +96 -0
  630. data/lib/libv8/v8/src/x64/assembler-x64-inl.h +462 -0
  631. data/lib/libv8/v8/src/x64/assembler-x64.cc +3027 -0
  632. data/lib/libv8/v8/src/x64/assembler-x64.h +1633 -0
  633. data/lib/libv8/v8/src/x64/builtins-x64.cc +1520 -0
  634. data/lib/libv8/v8/src/x64/code-stubs-x64.cc +5132 -0
  635. data/lib/libv8/v8/src/x64/code-stubs-x64.h +514 -0
  636. data/lib/libv8/v8/src/x64/codegen-x64.cc +146 -0
  637. data/lib/libv8/v8/src/x64/codegen-x64.h +76 -0
  638. data/lib/libv8/v8/src/x64/cpu-x64.cc +88 -0
  639. data/lib/libv8/v8/src/x64/debug-x64.cc +319 -0
  640. data/lib/libv8/v8/src/x64/deoptimizer-x64.cc +815 -0
  641. data/lib/libv8/v8/src/x64/disasm-x64.cc +1832 -0
  642. data/lib/libv8/v8/src/x64/frames-x64.cc +45 -0
  643. data/lib/libv8/v8/src/x64/frames-x64.h +130 -0
  644. data/lib/libv8/v8/src/x64/full-codegen-x64.cc +4318 -0
  645. data/lib/libv8/v8/src/x64/ic-x64.cc +1608 -0
  646. data/lib/libv8/v8/src/x64/lithium-codegen-x64.cc +4267 -0
  647. data/lib/libv8/v8/src/x64/lithium-codegen-x64.h +367 -0
  648. data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.cc +320 -0
  649. data/lib/libv8/v8/src/x64/lithium-gap-resolver-x64.h +74 -0
  650. data/lib/libv8/v8/src/x64/lithium-x64.cc +2202 -0
  651. data/lib/libv8/v8/src/x64/lithium-x64.h +2333 -0
  652. data/lib/libv8/v8/src/x64/macro-assembler-x64.cc +3745 -0
  653. data/lib/libv8/v8/src/x64/macro-assembler-x64.h +1290 -0
  654. data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.cc +1398 -0
  655. data/lib/libv8/v8/src/x64/regexp-macro-assembler-x64.h +282 -0
  656. data/lib/libv8/v8/src/x64/simulator-x64.cc +27 -0
  657. data/lib/libv8/v8/src/x64/simulator-x64.h +72 -0
  658. data/lib/libv8/v8/src/x64/stub-cache-x64.cc +3610 -0
  659. data/lib/libv8/v8/src/zone-inl.h +140 -0
  660. data/lib/libv8/v8/src/zone.cc +196 -0
  661. data/lib/libv8/v8/src/zone.h +240 -0
  662. data/lib/libv8/v8/tools/codemap.js +265 -0
  663. data/lib/libv8/v8/tools/consarray.js +93 -0
  664. data/lib/libv8/v8/tools/csvparser.js +78 -0
  665. data/lib/libv8/v8/tools/disasm.py +92 -0
  666. data/lib/libv8/v8/tools/freebsd-tick-processor +10 -0
  667. data/lib/libv8/v8/tools/gc-nvp-trace-processor.py +342 -0
  668. data/lib/libv8/v8/tools/gcmole/README +62 -0
  669. data/lib/libv8/v8/tools/gcmole/gccause.lua +60 -0
  670. data/lib/libv8/v8/tools/gcmole/gcmole.cc +1261 -0
  671. data/lib/libv8/v8/tools/gcmole/gcmole.lua +378 -0
  672. data/lib/libv8/v8/tools/generate-ten-powers.scm +286 -0
  673. data/lib/libv8/v8/tools/grokdump.py +841 -0
  674. data/lib/libv8/v8/tools/gyp/v8.gyp +995 -0
  675. data/lib/libv8/v8/tools/js2c.py +364 -0
  676. data/lib/libv8/v8/tools/jsmin.py +280 -0
  677. data/lib/libv8/v8/tools/linux-tick-processor +35 -0
  678. data/lib/libv8/v8/tools/ll_prof.py +942 -0
  679. data/lib/libv8/v8/tools/logreader.js +185 -0
  680. data/lib/libv8/v8/tools/mac-nm +18 -0
  681. data/lib/libv8/v8/tools/mac-tick-processor +6 -0
  682. data/lib/libv8/v8/tools/oom_dump/README +31 -0
  683. data/lib/libv8/v8/tools/oom_dump/SConstruct +42 -0
  684. data/lib/libv8/v8/tools/oom_dump/oom_dump.cc +288 -0
  685. data/lib/libv8/v8/tools/presubmit.py +305 -0
  686. data/lib/libv8/v8/tools/process-heap-prof.py +120 -0
  687. data/lib/libv8/v8/tools/profile.js +751 -0
  688. data/lib/libv8/v8/tools/profile_view.js +219 -0
  689. data/lib/libv8/v8/tools/run-valgrind.py +77 -0
  690. data/lib/libv8/v8/tools/splaytree.js +316 -0
  691. data/lib/libv8/v8/tools/stats-viewer.py +468 -0
  692. data/lib/libv8/v8/tools/test.py +1510 -0
  693. data/lib/libv8/v8/tools/tickprocessor-driver.js +59 -0
  694. data/lib/libv8/v8/tools/tickprocessor.js +877 -0
  695. data/lib/libv8/v8/tools/utils.py +96 -0
  696. data/lib/libv8/v8/tools/visual_studio/README.txt +12 -0
  697. data/lib/libv8/v8/tools/windows-tick-processor.bat +30 -0
  698. data/lib/libv8/version.rb +4 -0
  699. data/libv8.gemspec +31 -0
  700. metadata +800 -0
@@ -0,0 +1,2318 @@
1
+ """SCons.Environment
2
+
3
+ Base class for construction Environments. These are
4
+ the primary objects used to communicate dependency and
5
+ construction information to the build engine.
6
+
7
+ Keyword arguments supplied when the construction Environment
8
+ is created are construction variables used to initialize the
9
+ Environment
10
+ """
11
+
12
+ #
13
+ # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
14
+ #
15
+ # Permission is hereby granted, free of charge, to any person obtaining
16
+ # a copy of this software and associated documentation files (the
17
+ # "Software"), to deal in the Software without restriction, including
18
+ # without limitation the rights to use, copy, modify, merge, publish,
19
+ # distribute, sublicense, and/or sell copies of the Software, and to
20
+ # permit persons to whom the Software is furnished to do so, subject to
21
+ # the following conditions:
22
+ #
23
+ # The above copyright notice and this permission notice shall be included
24
+ # in all copies or substantial portions of the Software.
25
+ #
26
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
27
+ # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
28
+ # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33
+
34
+ __revision__ = "src/engine/SCons/Environment.py 5134 2010/08/16 23:02:40 bdeegan"
35
+
36
+
37
+ import copy
38
+ import os
39
+ import sys
40
+ import re
41
+ import shlex
42
+ from collections import UserDict
43
+
44
+ import SCons.Action
45
+ import SCons.Builder
46
+ from SCons.Debug import logInstanceCreation
47
+ import SCons.Defaults
48
+ import SCons.Errors
49
+ import SCons.Memoize
50
+ import SCons.Node
51
+ import SCons.Node.Alias
52
+ import SCons.Node.FS
53
+ import SCons.Node.Python
54
+ import SCons.Platform
55
+ import SCons.SConf
56
+ import SCons.SConsign
57
+ import SCons.Subst
58
+ import SCons.Tool
59
+ import SCons.Util
60
+ import SCons.Warnings
61
+
62
+ class _Null(object):
63
+ pass
64
+
65
+ _null = _Null
66
+
67
+ _warn_copy_deprecated = True
68
+ _warn_source_signatures_deprecated = True
69
+ _warn_target_signatures_deprecated = True
70
+
71
+ CleanTargets = {}
72
+ CalculatorArgs = {}
73
+
74
+ semi_deepcopy = SCons.Util.semi_deepcopy
75
+
76
+ # Pull UserError into the global name space for the benefit of
77
+ # Environment().SourceSignatures(), which has some import statements
78
+ # which seem to mess up its ability to reference SCons directly.
79
+ UserError = SCons.Errors.UserError
80
+
81
+ def alias_builder(env, target, source):
82
+ pass
83
+
84
+ AliasBuilder = SCons.Builder.Builder(action = alias_builder,
85
+ target_factory = SCons.Node.Alias.default_ans.Alias,
86
+ source_factory = SCons.Node.FS.Entry,
87
+ multi = 1,
88
+ is_explicit = None,
89
+ name='AliasBuilder')
90
+
91
+ def apply_tools(env, tools, toolpath):
92
+ # Store the toolpath in the Environment.
93
+ if toolpath is not None:
94
+ env['toolpath'] = toolpath
95
+
96
+ if not tools:
97
+ return
98
+ # Filter out null tools from the list.
99
+ for tool in [_f for _f in tools if _f]:
100
+ if SCons.Util.is_List(tool) or isinstance(tool, tuple):
101
+ toolname = tool[0]
102
+ toolargs = tool[1] # should be a dict of kw args
103
+ tool = env.Tool(toolname, **toolargs)
104
+ else:
105
+ env.Tool(tool)
106
+
107
+ # These names are (or will be) controlled by SCons; users should never
108
+ # set or override them. This warning can optionally be turned off,
109
+ # but scons will still ignore the illegal variable names even if it's off.
110
+ reserved_construction_var_names = [
111
+ 'CHANGED_SOURCES',
112
+ 'CHANGED_TARGETS',
113
+ 'SOURCE',
114
+ 'SOURCES',
115
+ 'TARGET',
116
+ 'TARGETS',
117
+ 'UNCHANGED_SOURCES',
118
+ 'UNCHANGED_TARGETS',
119
+ ]
120
+
121
+ future_reserved_construction_var_names = [
122
+ #'HOST_OS',
123
+ #'HOST_ARCH',
124
+ #'HOST_CPU',
125
+ ]
126
+
127
+ def copy_non_reserved_keywords(dict):
128
+ result = semi_deepcopy(dict)
129
+ for k in result.keys():
130
+ if k in reserved_construction_var_names:
131
+ msg = "Ignoring attempt to set reserved variable `$%s'"
132
+ SCons.Warnings.warn(SCons.Warnings.ReservedVariableWarning, msg % k)
133
+ del result[k]
134
+ return result
135
+
136
+ def _set_reserved(env, key, value):
137
+ msg = "Ignoring attempt to set reserved variable `$%s'"
138
+ SCons.Warnings.warn(SCons.Warnings.ReservedVariableWarning, msg % key)
139
+
140
+ def _set_future_reserved(env, key, value):
141
+ env._dict[key] = value
142
+ msg = "`$%s' will be reserved in a future release and setting it will become ignored"
143
+ SCons.Warnings.warn(SCons.Warnings.FutureReservedVariableWarning, msg % key)
144
+
145
+ def _set_BUILDERS(env, key, value):
146
+ try:
147
+ bd = env._dict[key]
148
+ for k in bd.keys():
149
+ del bd[k]
150
+ except KeyError:
151
+ bd = BuilderDict(kwbd, env)
152
+ env._dict[key] = bd
153
+ for k, v in value.items():
154
+ if not SCons.Builder.is_a_Builder(v):
155
+ raise SCons.Errors.UserError('%s is not a Builder.' % repr(v))
156
+ bd.update(value)
157
+
158
+ def _del_SCANNERS(env, key):
159
+ del env._dict[key]
160
+ env.scanner_map_delete()
161
+
162
+ def _set_SCANNERS(env, key, value):
163
+ env._dict[key] = value
164
+ env.scanner_map_delete()
165
+
166
+ def _delete_duplicates(l, keep_last):
167
+ """Delete duplicates from a sequence, keeping the first or last."""
168
+ seen={}
169
+ result=[]
170
+ if keep_last: # reverse in & out, then keep first
171
+ l.reverse()
172
+ for i in l:
173
+ try:
174
+ if i not in seen:
175
+ result.append(i)
176
+ seen[i]=1
177
+ except TypeError:
178
+ # probably unhashable. Just keep it.
179
+ result.append(i)
180
+ if keep_last:
181
+ result.reverse()
182
+ return result
183
+
184
+
185
+
186
+ # The following is partly based on code in a comment added by Peter
187
+ # Shannon at the following page (there called the "transplant" class):
188
+ #
189
+ # ASPN : Python Cookbook : Dynamically added methods to a class
190
+ # http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/81732
191
+ #
192
+ # We had independently been using the idiom as BuilderWrapper, but
193
+ # factoring out the common parts into this base class, and making
194
+ # BuilderWrapper a subclass that overrides __call__() to enforce specific
195
+ # Builder calling conventions, simplified some of our higher-layer code.
196
+
197
+ class MethodWrapper(object):
198
+ """
199
+ A generic Wrapper class that associates a method (which can
200
+ actually be any callable) with an object. As part of creating this
201
+ MethodWrapper object an attribute with the specified (by default,
202
+ the name of the supplied method) is added to the underlying object.
203
+ When that new "method" is called, our __call__() method adds the
204
+ object as the first argument, simulating the Python behavior of
205
+ supplying "self" on method calls.
206
+
207
+ We hang on to the name by which the method was added to the underlying
208
+ base class so that we can provide a method to "clone" ourselves onto
209
+ a new underlying object being copied (without which we wouldn't need
210
+ to save that info).
211
+ """
212
+ def __init__(self, object, method, name=None):
213
+ if name is None:
214
+ name = method.__name__
215
+ self.object = object
216
+ self.method = method
217
+ self.name = name
218
+ setattr(self.object, name, self)
219
+
220
+ def __call__(self, *args, **kwargs):
221
+ nargs = (self.object,) + args
222
+ return self.method(*nargs, **kwargs)
223
+
224
+ def clone(self, new_object):
225
+ """
226
+ Returns an object that re-binds the underlying "method" to
227
+ the specified new object.
228
+ """
229
+ return self.__class__(new_object, self.method, self.name)
230
+
231
+ class BuilderWrapper(MethodWrapper):
232
+ """
233
+ A MethodWrapper subclass that that associates an environment with
234
+ a Builder.
235
+
236
+ This mainly exists to wrap the __call__() function so that all calls
237
+ to Builders can have their argument lists massaged in the same way
238
+ (treat a lone argument as the source, treat two arguments as target
239
+ then source, make sure both target and source are lists) without
240
+ having to have cut-and-paste code to do it.
241
+
242
+ As a bit of obsessive backwards compatibility, we also intercept
243
+ attempts to get or set the "env" or "builder" attributes, which were
244
+ the names we used before we put the common functionality into the
245
+ MethodWrapper base class. We'll keep this around for a while in case
246
+ people shipped Tool modules that reached into the wrapper (like the
247
+ Tool/qt.py module does, or did). There shouldn't be a lot attribute
248
+ fetching or setting on these, so a little extra work shouldn't hurt.
249
+ """
250
+ def __call__(self, target=None, source=_null, *args, **kw):
251
+ if source is _null:
252
+ source = target
253
+ target = None
254
+ if target is not None and not SCons.Util.is_List(target):
255
+ target = [target]
256
+ if source is not None and not SCons.Util.is_List(source):
257
+ source = [source]
258
+ return MethodWrapper.__call__(self, target, source, *args, **kw)
259
+
260
+ def __repr__(self):
261
+ return '<BuilderWrapper %s>' % repr(self.name)
262
+
263
+ def __str__(self):
264
+ return self.__repr__()
265
+
266
+ def __getattr__(self, name):
267
+ if name == 'env':
268
+ return self.object
269
+ elif name == 'builder':
270
+ return self.method
271
+ else:
272
+ raise AttributeError(name)
273
+
274
+ def __setattr__(self, name, value):
275
+ if name == 'env':
276
+ self.object = value
277
+ elif name == 'builder':
278
+ self.method = value
279
+ else:
280
+ self.__dict__[name] = value
281
+
282
+ # This allows a Builder to be executed directly
283
+ # through the Environment to which it's attached.
284
+ # In practice, we shouldn't need this, because
285
+ # builders actually get executed through a Node.
286
+ # But we do have a unit test for this, and can't
287
+ # yet rule out that it would be useful in the
288
+ # future, so leave it for now.
289
+ #def execute(self, **kw):
290
+ # kw['env'] = self.env
291
+ # self.builder.execute(**kw)
292
+
293
+ class BuilderDict(UserDict):
294
+ """This is a dictionary-like class used by an Environment to hold
295
+ the Builders. We need to do this because every time someone changes
296
+ the Builders in the Environment's BUILDERS dictionary, we must
297
+ update the Environment's attributes."""
298
+ def __init__(self, dict, env):
299
+ # Set self.env before calling the superclass initialization,
300
+ # because it will end up calling our other methods, which will
301
+ # need to point the values in this dictionary to self.env.
302
+ self.env = env
303
+ UserDict.__init__(self, dict)
304
+
305
+ def __semi_deepcopy__(self):
306
+ return self.__class__(self.data, self.env)
307
+
308
+ def __setitem__(self, item, val):
309
+ try:
310
+ method = getattr(self.env, item).method
311
+ except AttributeError:
312
+ pass
313
+ else:
314
+ self.env.RemoveMethod(method)
315
+ UserDict.__setitem__(self, item, val)
316
+ BuilderWrapper(self.env, val, item)
317
+
318
+ def __delitem__(self, item):
319
+ UserDict.__delitem__(self, item)
320
+ delattr(self.env, item)
321
+
322
+ def update(self, dict):
323
+ for i, v in dict.items():
324
+ self.__setitem__(i, v)
325
+
326
+
327
+
328
+ _is_valid_var = re.compile(r'[_a-zA-Z]\w*$')
329
+
330
+ def is_valid_construction_var(varstr):
331
+ """Return if the specified string is a legitimate construction
332
+ variable.
333
+ """
334
+ return _is_valid_var.match(varstr)
335
+
336
+
337
+
338
+ class SubstitutionEnvironment(object):
339
+ """Base class for different flavors of construction environments.
340
+
341
+ This class contains a minimal set of methods that handle contruction
342
+ variable expansion and conversion of strings to Nodes, which may or
343
+ may not be actually useful as a stand-alone class. Which methods
344
+ ended up in this class is pretty arbitrary right now. They're
345
+ basically the ones which we've empirically determined are common to
346
+ the different construction environment subclasses, and most of the
347
+ others that use or touch the underlying dictionary of construction
348
+ variables.
349
+
350
+ Eventually, this class should contain all the methods that we
351
+ determine are necessary for a "minimal" interface to the build engine.
352
+ A full "native Python" SCons environment has gotten pretty heavyweight
353
+ with all of the methods and Tools and construction variables we've
354
+ jammed in there, so it would be nice to have a lighter weight
355
+ alternative for interfaces that don't need all of the bells and
356
+ whistles. (At some point, we'll also probably rename this class
357
+ "Base," since that more reflects what we want this class to become,
358
+ but because we've released comments that tell people to subclass
359
+ Environment.Base to create their own flavors of construction
360
+ environment, we'll save that for a future refactoring when this
361
+ class actually becomes useful.)
362
+ """
363
+
364
+ if SCons.Memoize.use_memoizer:
365
+ __metaclass__ = SCons.Memoize.Memoized_Metaclass
366
+
367
+ def __init__(self, **kw):
368
+ """Initialization of an underlying SubstitutionEnvironment class.
369
+ """
370
+ if __debug__: logInstanceCreation(self, 'Environment.SubstitutionEnvironment')
371
+ self.fs = SCons.Node.FS.get_default_fs()
372
+ self.ans = SCons.Node.Alias.default_ans
373
+ self.lookup_list = SCons.Node.arg2nodes_lookups
374
+ self._dict = kw.copy()
375
+ self._init_special()
376
+ self.added_methods = []
377
+ #self._memo = {}
378
+
379
+ def _init_special(self):
380
+ """Initial the dispatch tables for special handling of
381
+ special construction variables."""
382
+ self._special_del = {}
383
+ self._special_del['SCANNERS'] = _del_SCANNERS
384
+
385
+ self._special_set = {}
386
+ for key in reserved_construction_var_names:
387
+ self._special_set[key] = _set_reserved
388
+ for key in future_reserved_construction_var_names:
389
+ self._special_set[key] = _set_future_reserved
390
+ self._special_set['BUILDERS'] = _set_BUILDERS
391
+ self._special_set['SCANNERS'] = _set_SCANNERS
392
+
393
+ # Freeze the keys of self._special_set in a list for use by
394
+ # methods that need to check. (Empirically, list scanning has
395
+ # gotten better than dict.has_key() in Python 2.5.)
396
+ self._special_set_keys = list(self._special_set.keys())
397
+
398
+ def __cmp__(self, other):
399
+ return cmp(self._dict, other._dict)
400
+
401
+ def __delitem__(self, key):
402
+ special = self._special_del.get(key)
403
+ if special:
404
+ special(self, key)
405
+ else:
406
+ del self._dict[key]
407
+
408
+ def __getitem__(self, key):
409
+ return self._dict[key]
410
+
411
+ def __setitem__(self, key, value):
412
+ # This is heavily used. This implementation is the best we have
413
+ # according to the timings in bench/env.__setitem__.py.
414
+ #
415
+ # The "key in self._special_set_keys" test here seems to perform
416
+ # pretty well for the number of keys we have. A hard-coded
417
+ # list works a little better in Python 2.5, but that has the
418
+ # disadvantage of maybe getting out of sync if we ever add more
419
+ # variable names. Using self._special_set.has_key() works a
420
+ # little better in Python 2.4, but is worse than this test.
421
+ # So right now it seems like a good trade-off, but feel free to
422
+ # revisit this with bench/env.__setitem__.py as needed (and
423
+ # as newer versions of Python come out).
424
+ if key in self._special_set_keys:
425
+ self._special_set[key](self, key, value)
426
+ else:
427
+ # If we already have the entry, then it's obviously a valid
428
+ # key and we don't need to check. If we do check, using a
429
+ # global, pre-compiled regular expression directly is more
430
+ # efficient than calling another function or a method.
431
+ if key not in self._dict \
432
+ and not _is_valid_var.match(key):
433
+ raise SCons.Errors.UserError("Illegal construction variable `%s'" % key)
434
+ self._dict[key] = value
435
+
436
+ def get(self, key, default=None):
437
+ """Emulates the get() method of dictionaries."""
438
+ return self._dict.get(key, default)
439
+
440
+ def has_key(self, key):
441
+ return key in self._dict
442
+
443
+ def __contains__(self, key):
444
+ return self._dict.__contains__(key)
445
+
446
+ def items(self):
447
+ return list(self._dict.items())
448
+
449
+ def arg2nodes(self, args, node_factory=_null, lookup_list=_null, **kw):
450
+ if node_factory is _null:
451
+ node_factory = self.fs.File
452
+ if lookup_list is _null:
453
+ lookup_list = self.lookup_list
454
+
455
+ if not args:
456
+ return []
457
+
458
+ args = SCons.Util.flatten(args)
459
+
460
+ nodes = []
461
+ for v in args:
462
+ if SCons.Util.is_String(v):
463
+ n = None
464
+ for l in lookup_list:
465
+ n = l(v)
466
+ if n is not None:
467
+ break
468
+ if n is not None:
469
+ if SCons.Util.is_String(n):
470
+ # n = self.subst(n, raw=1, **kw)
471
+ kw['raw'] = 1
472
+ n = self.subst(n, **kw)
473
+ if node_factory:
474
+ n = node_factory(n)
475
+ if SCons.Util.is_List(n):
476
+ nodes.extend(n)
477
+ else:
478
+ nodes.append(n)
479
+ elif node_factory:
480
+ # v = node_factory(self.subst(v, raw=1, **kw))
481
+ kw['raw'] = 1
482
+ v = node_factory(self.subst(v, **kw))
483
+ if SCons.Util.is_List(v):
484
+ nodes.extend(v)
485
+ else:
486
+ nodes.append(v)
487
+ else:
488
+ nodes.append(v)
489
+
490
+ return nodes
491
+
492
+ def gvars(self):
493
+ return self._dict
494
+
495
+ def lvars(self):
496
+ return {}
497
+
498
+ def subst(self, string, raw=0, target=None, source=None, conv=None, executor=None):
499
+ """Recursively interpolates construction variables from the
500
+ Environment into the specified string, returning the expanded
501
+ result. Construction variables are specified by a $ prefix
502
+ in the string and begin with an initial underscore or
503
+ alphabetic character followed by any number of underscores
504
+ or alphanumeric characters. The construction variable names
505
+ may be surrounded by curly braces to separate the name from
506
+ trailing characters.
507
+ """
508
+ gvars = self.gvars()
509
+ lvars = self.lvars()
510
+ lvars['__env__'] = self
511
+ if executor:
512
+ lvars.update(executor.get_lvars())
513
+ return SCons.Subst.scons_subst(string, self, raw, target, source, gvars, lvars, conv)
514
+
515
+ def subst_kw(self, kw, raw=0, target=None, source=None):
516
+ nkw = {}
517
+ for k, v in kw.items():
518
+ k = self.subst(k, raw, target, source)
519
+ if SCons.Util.is_String(v):
520
+ v = self.subst(v, raw, target, source)
521
+ nkw[k] = v
522
+ return nkw
523
+
524
+ def subst_list(self, string, raw=0, target=None, source=None, conv=None, executor=None):
525
+ """Calls through to SCons.Subst.scons_subst_list(). See
526
+ the documentation for that function."""
527
+ gvars = self.gvars()
528
+ lvars = self.lvars()
529
+ lvars['__env__'] = self
530
+ if executor:
531
+ lvars.update(executor.get_lvars())
532
+ return SCons.Subst.scons_subst_list(string, self, raw, target, source, gvars, lvars, conv)
533
+
534
+ def subst_path(self, path, target=None, source=None):
535
+ """Substitute a path list, turning EntryProxies into Nodes
536
+ and leaving Nodes (and other objects) as-is."""
537
+
538
+ if not SCons.Util.is_List(path):
539
+ path = [path]
540
+
541
+ def s(obj):
542
+ """This is the "string conversion" routine that we have our
543
+ substitutions use to return Nodes, not strings. This relies
544
+ on the fact that an EntryProxy object has a get() method that
545
+ returns the underlying Node that it wraps, which is a bit of
546
+ architectural dependence that we might need to break or modify
547
+ in the future in response to additional requirements."""
548
+ try:
549
+ get = obj.get
550
+ except AttributeError:
551
+ obj = SCons.Util.to_String_for_subst(obj)
552
+ else:
553
+ obj = get()
554
+ return obj
555
+
556
+ r = []
557
+ for p in path:
558
+ if SCons.Util.is_String(p):
559
+ p = self.subst(p, target=target, source=source, conv=s)
560
+ if SCons.Util.is_List(p):
561
+ if len(p) == 1:
562
+ p = p[0]
563
+ else:
564
+ # We have an object plus a string, or multiple
565
+ # objects that we need to smush together. No choice
566
+ # but to make them into a string.
567
+ p = ''.join(map(SCons.Util.to_String_for_subst, p))
568
+ else:
569
+ p = s(p)
570
+ r.append(p)
571
+ return r
572
+
573
+ subst_target_source = subst
574
+
575
+ def backtick(self, command):
576
+ import subprocess
577
+ # common arguments
578
+ kw = { 'stdin' : 'devnull',
579
+ 'stdout' : subprocess.PIPE,
580
+ 'stderr' : subprocess.PIPE,
581
+ 'universal_newlines' : True,
582
+ }
583
+ # if the command is a list, assume it's been quoted
584
+ # othewise force a shell
585
+ if not SCons.Util.is_List(command): kw['shell'] = True
586
+ # run constructed command
587
+ p = SCons.Action._subproc(self, command, **kw)
588
+ out,err = p.communicate()
589
+ status = p.wait()
590
+ if err:
591
+ sys.stderr.write(unicode(err))
592
+ if status:
593
+ raise OSError("'%s' exited %d" % (command, status))
594
+ return out
595
+
596
+ def AddMethod(self, function, name=None):
597
+ """
598
+ Adds the specified function as a method of this construction
599
+ environment with the specified name. If the name is omitted,
600
+ the default name is the name of the function itself.
601
+ """
602
+ method = MethodWrapper(self, function, name)
603
+ self.added_methods.append(method)
604
+
605
+ def RemoveMethod(self, function):
606
+ """
607
+ Removes the specified function's MethodWrapper from the
608
+ added_methods list, so we don't re-bind it when making a clone.
609
+ """
610
+ self.added_methods = [dm for dm in self.added_methods if not dm.method is function]
611
+
612
+ def Override(self, overrides):
613
+ """
614
+ Produce a modified environment whose variables are overriden by
615
+ the overrides dictionaries. "overrides" is a dictionary that
616
+ will override the variables of this environment.
617
+
618
+ This function is much more efficient than Clone() or creating
619
+ a new Environment because it doesn't copy the construction
620
+ environment dictionary, it just wraps the underlying construction
621
+ environment, and doesn't even create a wrapper object if there
622
+ are no overrides.
623
+ """
624
+ if not overrides: return self
625
+ o = copy_non_reserved_keywords(overrides)
626
+ if not o: return self
627
+ overrides = {}
628
+ merges = None
629
+ for key, value in o.items():
630
+ if key == 'parse_flags':
631
+ merges = value
632
+ else:
633
+ overrides[key] = SCons.Subst.scons_subst_once(value, self, key)
634
+ env = OverrideEnvironment(self, overrides)
635
+ if merges: env.MergeFlags(merges)
636
+ return env
637
+
638
+ def ParseFlags(self, *flags):
639
+ """
640
+ Parse the set of flags and return a dict with the flags placed
641
+ in the appropriate entry. The flags are treated as a typical
642
+ set of command-line flags for a GNU-like toolchain and used to
643
+ populate the entries in the dict immediately below. If one of
644
+ the flag strings begins with a bang (exclamation mark), it is
645
+ assumed to be a command and the rest of the string is executed;
646
+ the result of that evaluation is then added to the dict.
647
+ """
648
+ dict = {
649
+ 'ASFLAGS' : SCons.Util.CLVar(''),
650
+ 'CFLAGS' : SCons.Util.CLVar(''),
651
+ 'CCFLAGS' : SCons.Util.CLVar(''),
652
+ 'CPPDEFINES' : [],
653
+ 'CPPFLAGS' : SCons.Util.CLVar(''),
654
+ 'CPPPATH' : [],
655
+ 'FRAMEWORKPATH' : SCons.Util.CLVar(''),
656
+ 'FRAMEWORKS' : SCons.Util.CLVar(''),
657
+ 'LIBPATH' : [],
658
+ 'LIBS' : [],
659
+ 'LINKFLAGS' : SCons.Util.CLVar(''),
660
+ 'RPATH' : [],
661
+ }
662
+
663
+ def do_parse(arg):
664
+ # if arg is a sequence, recurse with each element
665
+ if not arg:
666
+ return
667
+
668
+ if not SCons.Util.is_String(arg):
669
+ for t in arg: do_parse(t)
670
+ return
671
+
672
+ # if arg is a command, execute it
673
+ if arg[0] == '!':
674
+ arg = self.backtick(arg[1:])
675
+
676
+ # utility function to deal with -D option
677
+ def append_define(name, dict = dict):
678
+ t = name.split('=')
679
+ if len(t) == 1:
680
+ dict['CPPDEFINES'].append(name)
681
+ else:
682
+ dict['CPPDEFINES'].append([t[0], '='.join(t[1:])])
683
+
684
+ # Loop through the flags and add them to the appropriate option.
685
+ # This tries to strike a balance between checking for all possible
686
+ # flags and keeping the logic to a finite size, so it doesn't
687
+ # check for some that don't occur often. It particular, if the
688
+ # flag is not known to occur in a config script and there's a way
689
+ # of passing the flag to the right place (by wrapping it in a -W
690
+ # flag, for example) we don't check for it. Note that most
691
+ # preprocessor options are not handled, since unhandled options
692
+ # are placed in CCFLAGS, so unless the preprocessor is invoked
693
+ # separately, these flags will still get to the preprocessor.
694
+ # Other options not currently handled:
695
+ # -iqoutedir (preprocessor search path)
696
+ # -u symbol (linker undefined symbol)
697
+ # -s (linker strip files)
698
+ # -static* (linker static binding)
699
+ # -shared* (linker dynamic binding)
700
+ # -symbolic (linker global binding)
701
+ # -R dir (deprecated linker rpath)
702
+ # IBM compilers may also accept -qframeworkdir=foo
703
+
704
+ params = shlex.split(arg)
705
+ append_next_arg_to = None # for multi-word args
706
+ for arg in params:
707
+ if append_next_arg_to:
708
+ if append_next_arg_to == 'CPPDEFINES':
709
+ append_define(arg)
710
+ elif append_next_arg_to == '-include':
711
+ t = ('-include', self.fs.File(arg))
712
+ dict['CCFLAGS'].append(t)
713
+ elif append_next_arg_to == '-isysroot':
714
+ t = ('-isysroot', arg)
715
+ dict['CCFLAGS'].append(t)
716
+ dict['LINKFLAGS'].append(t)
717
+ elif append_next_arg_to == '-arch':
718
+ t = ('-arch', arg)
719
+ dict['CCFLAGS'].append(t)
720
+ dict['LINKFLAGS'].append(t)
721
+ else:
722
+ dict[append_next_arg_to].append(arg)
723
+ append_next_arg_to = None
724
+ elif not arg[0] in ['-', '+']:
725
+ dict['LIBS'].append(self.fs.File(arg))
726
+ elif arg[:2] == '-L':
727
+ if arg[2:]:
728
+ dict['LIBPATH'].append(arg[2:])
729
+ else:
730
+ append_next_arg_to = 'LIBPATH'
731
+ elif arg[:2] == '-l':
732
+ if arg[2:]:
733
+ dict['LIBS'].append(arg[2:])
734
+ else:
735
+ append_next_arg_to = 'LIBS'
736
+ elif arg[:2] == '-I':
737
+ if arg[2:]:
738
+ dict['CPPPATH'].append(arg[2:])
739
+ else:
740
+ append_next_arg_to = 'CPPPATH'
741
+ elif arg[:4] == '-Wa,':
742
+ dict['ASFLAGS'].append(arg[4:])
743
+ dict['CCFLAGS'].append(arg)
744
+ elif arg[:4] == '-Wl,':
745
+ if arg[:11] == '-Wl,-rpath=':
746
+ dict['RPATH'].append(arg[11:])
747
+ elif arg[:7] == '-Wl,-R,':
748
+ dict['RPATH'].append(arg[7:])
749
+ elif arg[:6] == '-Wl,-R':
750
+ dict['RPATH'].append(arg[6:])
751
+ else:
752
+ dict['LINKFLAGS'].append(arg)
753
+ elif arg[:4] == '-Wp,':
754
+ dict['CPPFLAGS'].append(arg)
755
+ elif arg[:2] == '-D':
756
+ if arg[2:]:
757
+ append_define(arg[2:])
758
+ else:
759
+ append_next_arg_to = 'CPPDEFINES'
760
+ elif arg == '-framework':
761
+ append_next_arg_to = 'FRAMEWORKS'
762
+ elif arg[:14] == '-frameworkdir=':
763
+ dict['FRAMEWORKPATH'].append(arg[14:])
764
+ elif arg[:2] == '-F':
765
+ if arg[2:]:
766
+ dict['FRAMEWORKPATH'].append(arg[2:])
767
+ else:
768
+ append_next_arg_to = 'FRAMEWORKPATH'
769
+ elif arg == '-mno-cygwin':
770
+ dict['CCFLAGS'].append(arg)
771
+ dict['LINKFLAGS'].append(arg)
772
+ elif arg == '-mwindows':
773
+ dict['LINKFLAGS'].append(arg)
774
+ elif arg == '-pthread':
775
+ dict['CCFLAGS'].append(arg)
776
+ dict['LINKFLAGS'].append(arg)
777
+ elif arg[:5] == '-std=':
778
+ dict['CFLAGS'].append(arg) # C only
779
+ elif arg[0] == '+':
780
+ dict['CCFLAGS'].append(arg)
781
+ dict['LINKFLAGS'].append(arg)
782
+ elif arg in ['-include', '-isysroot', '-arch']:
783
+ append_next_arg_to = arg
784
+ else:
785
+ dict['CCFLAGS'].append(arg)
786
+
787
+ for arg in flags:
788
+ do_parse(arg)
789
+ return dict
790
+
791
+ def MergeFlags(self, args, unique=1, dict=None):
792
+ """
793
+ Merge the dict in args into the construction variables of this
794
+ env, or the passed-in dict. If args is not a dict, it is
795
+ converted into a dict using ParseFlags. If unique is not set,
796
+ the flags are appended rather than merged.
797
+ """
798
+
799
+ if dict is None:
800
+ dict = self
801
+ if not SCons.Util.is_Dict(args):
802
+ args = self.ParseFlags(args)
803
+ if not unique:
804
+ self.Append(**args)
805
+ return self
806
+ for key, value in args.items():
807
+ if not value:
808
+ continue
809
+ try:
810
+ orig = self[key]
811
+ except KeyError:
812
+ orig = value
813
+ else:
814
+ if not orig:
815
+ orig = value
816
+ elif value:
817
+ # Add orig and value. The logic here was lifted from
818
+ # part of env.Append() (see there for a lot of comments
819
+ # about the order in which things are tried) and is
820
+ # used mainly to handle coercion of strings to CLVar to
821
+ # "do the right thing" given (e.g.) an original CCFLAGS
822
+ # string variable like '-pipe -Wall'.
823
+ try:
824
+ orig = orig + value
825
+ except (KeyError, TypeError):
826
+ try:
827
+ add_to_orig = orig.append
828
+ except AttributeError:
829
+ value.insert(0, orig)
830
+ orig = value
831
+ else:
832
+ add_to_orig(value)
833
+ t = []
834
+ if key[-4:] == 'PATH':
835
+ ### keep left-most occurence
836
+ for v in orig:
837
+ if v not in t:
838
+ t.append(v)
839
+ else:
840
+ ### keep right-most occurence
841
+ orig.reverse()
842
+ for v in orig:
843
+ if v not in t:
844
+ t.insert(0, v)
845
+ self[key] = t
846
+ return self
847
+
848
+ # def MergeShellPaths(self, args, prepend=1):
849
+ # """
850
+ # Merge the dict in args into the shell environment in env['ENV'].
851
+ # Shell path elements are appended or prepended according to prepend.
852
+
853
+ # Uses Pre/AppendENVPath, so it always appends or prepends uniquely.
854
+
855
+ # Example: env.MergeShellPaths({'LIBPATH': '/usr/local/lib'})
856
+ # prepends /usr/local/lib to env['ENV']['LIBPATH'].
857
+ # """
858
+
859
+ # for pathname, pathval in args.items():
860
+ # if not pathval:
861
+ # continue
862
+ # if prepend:
863
+ # self.PrependENVPath(pathname, pathval)
864
+ # else:
865
+ # self.AppendENVPath(pathname, pathval)
866
+
867
+
868
+ def default_decide_source(dependency, target, prev_ni):
869
+ f = SCons.Defaults.DefaultEnvironment().decide_source
870
+ return f(dependency, target, prev_ni)
871
+
872
+ def default_decide_target(dependency, target, prev_ni):
873
+ f = SCons.Defaults.DefaultEnvironment().decide_target
874
+ return f(dependency, target, prev_ni)
875
+
876
+ def default_copy_from_cache(src, dst):
877
+ f = SCons.Defaults.DefaultEnvironment().copy_from_cache
878
+ return f(src, dst)
879
+
880
+ class Base(SubstitutionEnvironment):
881
+ """Base class for "real" construction Environments. These are the
882
+ primary objects used to communicate dependency and construction
883
+ information to the build engine.
884
+
885
+ Keyword arguments supplied when the construction Environment
886
+ is created are construction variables used to initialize the
887
+ Environment.
888
+ """
889
+
890
+ memoizer_counters = []
891
+
892
+ #######################################################################
893
+ # This is THE class for interacting with the SCons build engine,
894
+ # and it contains a lot of stuff, so we're going to try to keep this
895
+ # a little organized by grouping the methods.
896
+ #######################################################################
897
+
898
+ #######################################################################
899
+ # Methods that make an Environment act like a dictionary. These have
900
+ # the expected standard names for Python mapping objects. Note that
901
+ # we don't actually make an Environment a subclass of UserDict for
902
+ # performance reasons. Note also that we only supply methods for
903
+ # dictionary functionality that we actually need and use.
904
+ #######################################################################
905
+
906
+ def __init__(self,
907
+ platform=None,
908
+ tools=None,
909
+ toolpath=None,
910
+ variables=None,
911
+ parse_flags = None,
912
+ **kw):
913
+ """
914
+ Initialization of a basic SCons construction environment,
915
+ including setting up special construction variables like BUILDER,
916
+ PLATFORM, etc., and searching for and applying available Tools.
917
+
918
+ Note that we do *not* call the underlying base class
919
+ (SubsitutionEnvironment) initialization, because we need to
920
+ initialize things in a very specific order that doesn't work
921
+ with the much simpler base class initialization.
922
+ """
923
+ if __debug__: logInstanceCreation(self, 'Environment.Base')
924
+ self._memo = {}
925
+ self.fs = SCons.Node.FS.get_default_fs()
926
+ self.ans = SCons.Node.Alias.default_ans
927
+ self.lookup_list = SCons.Node.arg2nodes_lookups
928
+ self._dict = semi_deepcopy(SCons.Defaults.ConstructionEnvironment)
929
+ self._init_special()
930
+ self.added_methods = []
931
+
932
+ # We don't use AddMethod, or define these as methods in this
933
+ # class, because we *don't* want these functions to be bound
934
+ # methods. They need to operate independently so that the
935
+ # settings will work properly regardless of whether a given
936
+ # target ends up being built with a Base environment or an
937
+ # OverrideEnvironment or what have you.
938
+ self.decide_target = default_decide_target
939
+ self.decide_source = default_decide_source
940
+
941
+ self.copy_from_cache = default_copy_from_cache
942
+
943
+ self._dict['BUILDERS'] = BuilderDict(self._dict['BUILDERS'], self)
944
+
945
+ if platform is None:
946
+ platform = self._dict.get('PLATFORM', None)
947
+ if platform is None:
948
+ platform = SCons.Platform.Platform()
949
+ if SCons.Util.is_String(platform):
950
+ platform = SCons.Platform.Platform(platform)
951
+ self._dict['PLATFORM'] = str(platform)
952
+ platform(self)
953
+
954
+ self._dict['HOST_OS'] = self._dict.get('HOST_OS',None)
955
+ self._dict['HOST_ARCH'] = self._dict.get('HOST_ARCH',None)
956
+
957
+ # Now set defaults for TARGET_{OS|ARCH}
958
+ self._dict['TARGET_OS'] = self._dict.get('HOST_OS',None)
959
+ self._dict['TARGET_ARCH'] = self._dict.get('HOST_ARCH',None)
960
+
961
+
962
+ # Apply the passed-in and customizable variables to the
963
+ # environment before calling the tools, because they may use
964
+ # some of them during initialization.
965
+ if 'options' in kw:
966
+ # Backwards compatibility: they may stll be using the
967
+ # old "options" keyword.
968
+ variables = kw['options']
969
+ del kw['options']
970
+ self.Replace(**kw)
971
+ keys = list(kw.keys())
972
+ if variables:
973
+ keys = keys + list(variables.keys())
974
+ variables.Update(self)
975
+
976
+ save = {}
977
+ for k in keys:
978
+ try:
979
+ save[k] = self._dict[k]
980
+ except KeyError:
981
+ # No value may have been set if they tried to pass in a
982
+ # reserved variable name like TARGETS.
983
+ pass
984
+
985
+ SCons.Tool.Initializers(self)
986
+
987
+ if tools is None:
988
+ tools = self._dict.get('TOOLS', None)
989
+ if tools is None:
990
+ tools = ['default']
991
+ apply_tools(self, tools, toolpath)
992
+
993
+ # Now restore the passed-in and customized variables
994
+ # to the environment, since the values the user set explicitly
995
+ # should override any values set by the tools.
996
+ for key, val in save.items():
997
+ self._dict[key] = val
998
+
999
+ # Finally, apply any flags to be merged in
1000
+ if parse_flags: self.MergeFlags(parse_flags)
1001
+
1002
+ #######################################################################
1003
+ # Utility methods that are primarily for internal use by SCons.
1004
+ # These begin with lower-case letters.
1005
+ #######################################################################
1006
+
1007
+ def get_builder(self, name):
1008
+ """Fetch the builder with the specified name from the environment.
1009
+ """
1010
+ try:
1011
+ return self._dict['BUILDERS'][name]
1012
+ except KeyError:
1013
+ return None
1014
+
1015
+ def get_CacheDir(self):
1016
+ try:
1017
+ path = self._CacheDir_path
1018
+ except AttributeError:
1019
+ path = SCons.Defaults.DefaultEnvironment()._CacheDir_path
1020
+ try:
1021
+ if path == self._last_CacheDir_path:
1022
+ return self._last_CacheDir
1023
+ except AttributeError:
1024
+ pass
1025
+ cd = SCons.CacheDir.CacheDir(path)
1026
+ self._last_CacheDir_path = path
1027
+ self._last_CacheDir = cd
1028
+ return cd
1029
+
1030
+ def get_factory(self, factory, default='File'):
1031
+ """Return a factory function for creating Nodes for this
1032
+ construction environment.
1033
+ """
1034
+ name = default
1035
+ try:
1036
+ is_node = issubclass(factory, SCons.Node.FS.Base)
1037
+ except TypeError:
1038
+ # The specified factory isn't a Node itself--it's
1039
+ # most likely None, or possibly a callable.
1040
+ pass
1041
+ else:
1042
+ if is_node:
1043
+ # The specified factory is a Node (sub)class. Try to
1044
+ # return the FS method that corresponds to the Node's
1045
+ # name--that is, we return self.fs.Dir if they want a Dir,
1046
+ # self.fs.File for a File, etc.
1047
+ try: name = factory.__name__
1048
+ except AttributeError: pass
1049
+ else: factory = None
1050
+ if not factory:
1051
+ # They passed us None, or we picked up a name from a specified
1052
+ # class, so return the FS method. (Note that we *don't*
1053
+ # use our own self.{Dir,File} methods because that would
1054
+ # cause env.subst() to be called twice on the file name,
1055
+ # interfering with files that have $$ in them.)
1056
+ factory = getattr(self.fs, name)
1057
+ return factory
1058
+
1059
+ memoizer_counters.append(SCons.Memoize.CountValue('_gsm'))
1060
+
1061
+ def _gsm(self):
1062
+ try:
1063
+ return self._memo['_gsm']
1064
+ except KeyError:
1065
+ pass
1066
+
1067
+ result = {}
1068
+
1069
+ try:
1070
+ scanners = self._dict['SCANNERS']
1071
+ except KeyError:
1072
+ pass
1073
+ else:
1074
+ # Reverse the scanner list so that, if multiple scanners
1075
+ # claim they can scan the same suffix, earlier scanners
1076
+ # in the list will overwrite later scanners, so that
1077
+ # the result looks like a "first match" to the user.
1078
+ if not SCons.Util.is_List(scanners):
1079
+ scanners = [scanners]
1080
+ else:
1081
+ scanners = scanners[:] # copy so reverse() doesn't mod original
1082
+ scanners.reverse()
1083
+ for scanner in scanners:
1084
+ for k in scanner.get_skeys(self):
1085
+ if k and self['PLATFORM'] == 'win32':
1086
+ k = k.lower()
1087
+ result[k] = scanner
1088
+
1089
+ self._memo['_gsm'] = result
1090
+
1091
+ return result
1092
+
1093
+ def get_scanner(self, skey):
1094
+ """Find the appropriate scanner given a key (usually a file suffix).
1095
+ """
1096
+ if skey and self['PLATFORM'] == 'win32':
1097
+ skey = skey.lower()
1098
+ return self._gsm().get(skey)
1099
+
1100
+ def scanner_map_delete(self, kw=None):
1101
+ """Delete the cached scanner map (if we need to).
1102
+ """
1103
+ try:
1104
+ del self._memo['_gsm']
1105
+ except KeyError:
1106
+ pass
1107
+
1108
+ def _update(self, dict):
1109
+ """Update an environment's values directly, bypassing the normal
1110
+ checks that occur when users try to set items.
1111
+ """
1112
+ self._dict.update(dict)
1113
+
1114
+ def get_src_sig_type(self):
1115
+ try:
1116
+ return self.src_sig_type
1117
+ except AttributeError:
1118
+ t = SCons.Defaults.DefaultEnvironment().src_sig_type
1119
+ self.src_sig_type = t
1120
+ return t
1121
+
1122
+ def get_tgt_sig_type(self):
1123
+ try:
1124
+ return self.tgt_sig_type
1125
+ except AttributeError:
1126
+ t = SCons.Defaults.DefaultEnvironment().tgt_sig_type
1127
+ self.tgt_sig_type = t
1128
+ return t
1129
+
1130
+ #######################################################################
1131
+ # Public methods for manipulating an Environment. These begin with
1132
+ # upper-case letters. The essential characteristic of methods in
1133
+ # this section is that they do *not* have corresponding same-named
1134
+ # global functions. For example, a stand-alone Append() function
1135
+ # makes no sense, because Append() is all about appending values to
1136
+ # an Environment's construction variables.
1137
+ #######################################################################
1138
+
1139
+ def Append(self, **kw):
1140
+ """Append values to existing construction variables
1141
+ in an Environment.
1142
+ """
1143
+ kw = copy_non_reserved_keywords(kw)
1144
+ for key, val in kw.items():
1145
+ # It would be easier on the eyes to write this using
1146
+ # "continue" statements whenever we finish processing an item,
1147
+ # but Python 1.5.2 apparently doesn't let you use "continue"
1148
+ # within try:-except: blocks, so we have to nest our code.
1149
+ try:
1150
+ orig = self._dict[key]
1151
+ except KeyError:
1152
+ # No existing variable in the environment, so just set
1153
+ # it to the new value.
1154
+ self._dict[key] = val
1155
+ else:
1156
+ try:
1157
+ # Check if the original looks like a dictionary.
1158
+ # If it is, we can't just try adding the value because
1159
+ # dictionaries don't have __add__() methods, and
1160
+ # things like UserList will incorrectly coerce the
1161
+ # original dict to a list (which we don't want).
1162
+ update_dict = orig.update
1163
+ except AttributeError:
1164
+ try:
1165
+ # Most straightforward: just try to add them
1166
+ # together. This will work in most cases, when the
1167
+ # original and new values are of compatible types.
1168
+ self._dict[key] = orig + val
1169
+ except (KeyError, TypeError):
1170
+ try:
1171
+ # Check if the original is a list.
1172
+ add_to_orig = orig.append
1173
+ except AttributeError:
1174
+ # The original isn't a list, but the new
1175
+ # value is (by process of elimination),
1176
+ # so insert the original in the new value
1177
+ # (if there's one to insert) and replace
1178
+ # the variable with it.
1179
+ if orig:
1180
+ val.insert(0, orig)
1181
+ self._dict[key] = val
1182
+ else:
1183
+ # The original is a list, so append the new
1184
+ # value to it (if there's a value to append).
1185
+ if val:
1186
+ add_to_orig(val)
1187
+ else:
1188
+ # The original looks like a dictionary, so update it
1189
+ # based on what we think the value looks like.
1190
+ if SCons.Util.is_List(val):
1191
+ for v in val:
1192
+ orig[v] = None
1193
+ else:
1194
+ try:
1195
+ update_dict(val)
1196
+ except (AttributeError, TypeError, ValueError):
1197
+ if SCons.Util.is_Dict(val):
1198
+ for k, v in val.items():
1199
+ orig[k] = v
1200
+ else:
1201
+ orig[val] = None
1202
+ self.scanner_map_delete(kw)
1203
+
1204
+ # allow Dirs and strings beginning with # for top-relative
1205
+ # Note this uses the current env's fs (in self).
1206
+ def _canonicalize(self, path):
1207
+ if not SCons.Util.is_String(path): # typically a Dir
1208
+ path = str(path)
1209
+ if path and path[0] == '#':
1210
+ path = str(self.fs.Dir(path))
1211
+ return path
1212
+
1213
+ def AppendENVPath(self, name, newpath, envname = 'ENV',
1214
+ sep = os.pathsep, delete_existing=1):
1215
+ """Append path elements to the path 'name' in the 'ENV'
1216
+ dictionary for this environment. Will only add any particular
1217
+ path once, and will normpath and normcase all paths to help
1218
+ assure this. This can also handle the case where the env
1219
+ variable is a list instead of a string.
1220
+
1221
+ If delete_existing is 0, a newpath which is already in the path
1222
+ will not be moved to the end (it will be left where it is).
1223
+ """
1224
+
1225
+ orig = ''
1226
+ if envname in self._dict and name in self._dict[envname]:
1227
+ orig = self._dict[envname][name]
1228
+
1229
+ nv = SCons.Util.AppendPath(orig, newpath, sep, delete_existing,
1230
+ canonicalize=self._canonicalize)
1231
+
1232
+ if envname not in self._dict:
1233
+ self._dict[envname] = {}
1234
+
1235
+ self._dict[envname][name] = nv
1236
+
1237
+ def AppendUnique(self, delete_existing=0, **kw):
1238
+ """Append values to existing construction variables
1239
+ in an Environment, if they're not already there.
1240
+ If delete_existing is 1, removes existing values first, so
1241
+ values move to end.
1242
+ """
1243
+ kw = copy_non_reserved_keywords(kw)
1244
+ for key, val in kw.items():
1245
+ if SCons.Util.is_List(val):
1246
+ val = _delete_duplicates(val, delete_existing)
1247
+ if key not in self._dict or self._dict[key] in ('', None):
1248
+ self._dict[key] = val
1249
+ elif SCons.Util.is_Dict(self._dict[key]) and \
1250
+ SCons.Util.is_Dict(val):
1251
+ self._dict[key].update(val)
1252
+ elif SCons.Util.is_List(val):
1253
+ dk = self._dict[key]
1254
+ if not SCons.Util.is_List(dk):
1255
+ dk = [dk]
1256
+ if delete_existing:
1257
+ dk = [x for x in dk if x not in val]
1258
+ else:
1259
+ val = [x for x in val if x not in dk]
1260
+ self._dict[key] = dk + val
1261
+ else:
1262
+ dk = self._dict[key]
1263
+ if SCons.Util.is_List(dk):
1264
+ # By elimination, val is not a list. Since dk is a
1265
+ # list, wrap val in a list first.
1266
+ if delete_existing:
1267
+ dk = [x for x in dk if x not in val]
1268
+ self._dict[key] = dk + [val]
1269
+ else:
1270
+ if not val in dk:
1271
+ self._dict[key] = dk + [val]
1272
+ else:
1273
+ if delete_existing:
1274
+ dk = [x for x in dk if x not in val]
1275
+ self._dict[key] = dk + val
1276
+ self.scanner_map_delete(kw)
1277
+
1278
+ def Clone(self, tools=[], toolpath=None, parse_flags = None, **kw):
1279
+ """Return a copy of a construction Environment. The
1280
+ copy is like a Python "deep copy"--that is, independent
1281
+ copies are made recursively of each objects--except that
1282
+ a reference is copied when an object is not deep-copyable
1283
+ (like a function). There are no references to any mutable
1284
+ objects in the original Environment.
1285
+ """
1286
+ clone = copy.copy(self)
1287
+ clone._dict = semi_deepcopy(self._dict)
1288
+
1289
+ try:
1290
+ cbd = clone._dict['BUILDERS']
1291
+ except KeyError:
1292
+ pass
1293
+ else:
1294
+ clone._dict['BUILDERS'] = BuilderDict(cbd, clone)
1295
+
1296
+ # Check the methods added via AddMethod() and re-bind them to
1297
+ # the cloned environment. Only do this if the attribute hasn't
1298
+ # been overwritten by the user explicitly and still points to
1299
+ # the added method.
1300
+ clone.added_methods = []
1301
+ for mw in self.added_methods:
1302
+ if mw == getattr(self, mw.name):
1303
+ clone.added_methods.append(mw.clone(clone))
1304
+
1305
+ clone._memo = {}
1306
+
1307
+ # Apply passed-in variables before the tools
1308
+ # so the tools can use the new variables
1309
+ kw = copy_non_reserved_keywords(kw)
1310
+ new = {}
1311
+ for key, value in kw.items():
1312
+ new[key] = SCons.Subst.scons_subst_once(value, self, key)
1313
+ clone.Replace(**new)
1314
+
1315
+ apply_tools(clone, tools, toolpath)
1316
+
1317
+ # apply them again in case the tools overwrote them
1318
+ clone.Replace(**new)
1319
+
1320
+ # Finally, apply any flags to be merged in
1321
+ if parse_flags: clone.MergeFlags(parse_flags)
1322
+
1323
+ if __debug__: logInstanceCreation(self, 'Environment.EnvironmentClone')
1324
+ return clone
1325
+
1326
+ def Copy(self, *args, **kw):
1327
+ global _warn_copy_deprecated
1328
+ if _warn_copy_deprecated:
1329
+ msg = "The env.Copy() method is deprecated; use the env.Clone() method instead."
1330
+ SCons.Warnings.warn(SCons.Warnings.DeprecatedCopyWarning, msg)
1331
+ _warn_copy_deprecated = False
1332
+ return self.Clone(*args, **kw)
1333
+
1334
+ def _changed_build(self, dependency, target, prev_ni):
1335
+ if dependency.changed_state(target, prev_ni):
1336
+ return 1
1337
+ return self.decide_source(dependency, target, prev_ni)
1338
+
1339
+ def _changed_content(self, dependency, target, prev_ni):
1340
+ return dependency.changed_content(target, prev_ni)
1341
+
1342
+ def _changed_source(self, dependency, target, prev_ni):
1343
+ target_env = dependency.get_build_env()
1344
+ type = target_env.get_tgt_sig_type()
1345
+ if type == 'source':
1346
+ return target_env.decide_source(dependency, target, prev_ni)
1347
+ else:
1348
+ return target_env.decide_target(dependency, target, prev_ni)
1349
+
1350
+ def _changed_timestamp_then_content(self, dependency, target, prev_ni):
1351
+ return dependency.changed_timestamp_then_content(target, prev_ni)
1352
+
1353
+ def _changed_timestamp_newer(self, dependency, target, prev_ni):
1354
+ return dependency.changed_timestamp_newer(target, prev_ni)
1355
+
1356
+ def _changed_timestamp_match(self, dependency, target, prev_ni):
1357
+ return dependency.changed_timestamp_match(target, prev_ni)
1358
+
1359
+ def _copy_from_cache(self, src, dst):
1360
+ return self.fs.copy(src, dst)
1361
+
1362
+ def _copy2_from_cache(self, src, dst):
1363
+ return self.fs.copy2(src, dst)
1364
+
1365
+ def Decider(self, function):
1366
+ copy_function = self._copy2_from_cache
1367
+ if function in ('MD5', 'content'):
1368
+ if not SCons.Util.md5:
1369
+ raise UserError("MD5 signatures are not available in this version of Python.")
1370
+ function = self._changed_content
1371
+ elif function == 'MD5-timestamp':
1372
+ function = self._changed_timestamp_then_content
1373
+ elif function in ('timestamp-newer', 'make'):
1374
+ function = self._changed_timestamp_newer
1375
+ copy_function = self._copy_from_cache
1376
+ elif function == 'timestamp-match':
1377
+ function = self._changed_timestamp_match
1378
+ elif not callable(function):
1379
+ raise UserError("Unknown Decider value %s" % repr(function))
1380
+
1381
+ # We don't use AddMethod because we don't want to turn the
1382
+ # function, which only expects three arguments, into a bound
1383
+ # method, which would add self as an initial, fourth argument.
1384
+ self.decide_target = function
1385
+ self.decide_source = function
1386
+
1387
+ self.copy_from_cache = copy_function
1388
+
1389
+ def Detect(self, progs):
1390
+ """Return the first available program in progs.
1391
+ """
1392
+ if not SCons.Util.is_List(progs):
1393
+ progs = [ progs ]
1394
+ for prog in progs:
1395
+ path = self.WhereIs(prog)
1396
+ if path: return prog
1397
+ return None
1398
+
1399
+ def Dictionary(self, *args):
1400
+ if not args:
1401
+ return self._dict
1402
+ dlist = [self._dict[x] for x in args]
1403
+ if len(dlist) == 1:
1404
+ dlist = dlist[0]
1405
+ return dlist
1406
+
1407
+ def Dump(self, key = None):
1408
+ """
1409
+ Using the standard Python pretty printer, dump the contents of the
1410
+ scons build environment to stdout.
1411
+
1412
+ If the key passed in is anything other than None, then that will
1413
+ be used as an index into the build environment dictionary and
1414
+ whatever is found there will be fed into the pretty printer. Note
1415
+ that this key is case sensitive.
1416
+ """
1417
+ import pprint
1418
+ pp = pprint.PrettyPrinter(indent=2)
1419
+ if key:
1420
+ dict = self.Dictionary(key)
1421
+ else:
1422
+ dict = self.Dictionary()
1423
+ return pp.pformat(dict)
1424
+
1425
+ def FindIxes(self, paths, prefix, suffix):
1426
+ """
1427
+ Search a list of paths for something that matches the prefix and suffix.
1428
+
1429
+ paths - the list of paths or nodes.
1430
+ prefix - construction variable for the prefix.
1431
+ suffix - construction variable for the suffix.
1432
+ """
1433
+
1434
+ suffix = self.subst('$'+suffix)
1435
+ prefix = self.subst('$'+prefix)
1436
+
1437
+ for path in paths:
1438
+ dir,name = os.path.split(str(path))
1439
+ if name[:len(prefix)] == prefix and name[-len(suffix):] == suffix:
1440
+ return path
1441
+
1442
+ def ParseConfig(self, command, function=None, unique=1):
1443
+ """
1444
+ Use the specified function to parse the output of the command
1445
+ in order to modify the current environment. The 'command' can
1446
+ be a string or a list of strings representing a command and
1447
+ its arguments. 'Function' is an optional argument that takes
1448
+ the environment, the output of the command, and the unique flag.
1449
+ If no function is specified, MergeFlags, which treats the output
1450
+ as the result of a typical 'X-config' command (i.e. gtk-config),
1451
+ will merge the output into the appropriate variables.
1452
+ """
1453
+ if function is None:
1454
+ def parse_conf(env, cmd, unique=unique):
1455
+ return env.MergeFlags(cmd, unique)
1456
+ function = parse_conf
1457
+ if SCons.Util.is_List(command):
1458
+ command = ' '.join(command)
1459
+ command = self.subst(command)
1460
+ return function(self, self.backtick(command))
1461
+
1462
+ def ParseDepends(self, filename, must_exist=None, only_one=0):
1463
+ """
1464
+ Parse a mkdep-style file for explicit dependencies. This is
1465
+ completely abusable, and should be unnecessary in the "normal"
1466
+ case of proper SCons configuration, but it may help make
1467
+ the transition from a Make hierarchy easier for some people
1468
+ to swallow. It can also be genuinely useful when using a tool
1469
+ that can write a .d file, but for which writing a scanner would
1470
+ be too complicated.
1471
+ """
1472
+ filename = self.subst(filename)
1473
+ try:
1474
+ fp = open(filename, 'r')
1475
+ except IOError:
1476
+ if must_exist:
1477
+ raise
1478
+ return
1479
+ lines = SCons.Util.LogicalLines(fp).readlines()
1480
+ lines = [l for l in lines if l[0] != '#']
1481
+ tdlist = []
1482
+ for line in lines:
1483
+ try:
1484
+ target, depends = line.split(':', 1)
1485
+ except (AttributeError, ValueError):
1486
+ # Throws AttributeError if line isn't a string. Can throw
1487
+ # ValueError if line doesn't split into two or more elements.
1488
+ pass
1489
+ else:
1490
+ tdlist.append((target.split(), depends.split()))
1491
+ if only_one:
1492
+ targets = []
1493
+ for td in tdlist:
1494
+ targets.extend(td[0])
1495
+ if len(targets) > 1:
1496
+ raise SCons.Errors.UserError(
1497
+ "More than one dependency target found in `%s': %s"
1498
+ % (filename, targets))
1499
+ for target, depends in tdlist:
1500
+ self.Depends(target, depends)
1501
+
1502
+ def Platform(self, platform):
1503
+ platform = self.subst(platform)
1504
+ return SCons.Platform.Platform(platform)(self)
1505
+
1506
+ def Prepend(self, **kw):
1507
+ """Prepend values to existing construction variables
1508
+ in an Environment.
1509
+ """
1510
+ kw = copy_non_reserved_keywords(kw)
1511
+ for key, val in kw.items():
1512
+ # It would be easier on the eyes to write this using
1513
+ # "continue" statements whenever we finish processing an item,
1514
+ # but Python 1.5.2 apparently doesn't let you use "continue"
1515
+ # within try:-except: blocks, so we have to nest our code.
1516
+ try:
1517
+ orig = self._dict[key]
1518
+ except KeyError:
1519
+ # No existing variable in the environment, so just set
1520
+ # it to the new value.
1521
+ self._dict[key] = val
1522
+ else:
1523
+ try:
1524
+ # Check if the original looks like a dictionary.
1525
+ # If it is, we can't just try adding the value because
1526
+ # dictionaries don't have __add__() methods, and
1527
+ # things like UserList will incorrectly coerce the
1528
+ # original dict to a list (which we don't want).
1529
+ update_dict = orig.update
1530
+ except AttributeError:
1531
+ try:
1532
+ # Most straightforward: just try to add them
1533
+ # together. This will work in most cases, when the
1534
+ # original and new values are of compatible types.
1535
+ self._dict[key] = val + orig
1536
+ except (KeyError, TypeError):
1537
+ try:
1538
+ # Check if the added value is a list.
1539
+ add_to_val = val.append
1540
+ except AttributeError:
1541
+ # The added value isn't a list, but the
1542
+ # original is (by process of elimination),
1543
+ # so insert the the new value in the original
1544
+ # (if there's one to insert).
1545
+ if val:
1546
+ orig.insert(0, val)
1547
+ else:
1548
+ # The added value is a list, so append
1549
+ # the original to it (if there's a value
1550
+ # to append).
1551
+ if orig:
1552
+ add_to_val(orig)
1553
+ self._dict[key] = val
1554
+ else:
1555
+ # The original looks like a dictionary, so update it
1556
+ # based on what we think the value looks like.
1557
+ if SCons.Util.is_List(val):
1558
+ for v in val:
1559
+ orig[v] = None
1560
+ else:
1561
+ try:
1562
+ update_dict(val)
1563
+ except (AttributeError, TypeError, ValueError):
1564
+ if SCons.Util.is_Dict(val):
1565
+ for k, v in val.items():
1566
+ orig[k] = v
1567
+ else:
1568
+ orig[val] = None
1569
+ self.scanner_map_delete(kw)
1570
+
1571
+ def PrependENVPath(self, name, newpath, envname = 'ENV', sep = os.pathsep,
1572
+ delete_existing=1):
1573
+ """Prepend path elements to the path 'name' in the 'ENV'
1574
+ dictionary for this environment. Will only add any particular
1575
+ path once, and will normpath and normcase all paths to help
1576
+ assure this. This can also handle the case where the env
1577
+ variable is a list instead of a string.
1578
+
1579
+ If delete_existing is 0, a newpath which is already in the path
1580
+ will not be moved to the front (it will be left where it is).
1581
+ """
1582
+
1583
+ orig = ''
1584
+ if envname in self._dict and name in self._dict[envname]:
1585
+ orig = self._dict[envname][name]
1586
+
1587
+ nv = SCons.Util.PrependPath(orig, newpath, sep, delete_existing,
1588
+ canonicalize=self._canonicalize)
1589
+
1590
+ if envname not in self._dict:
1591
+ self._dict[envname] = {}
1592
+
1593
+ self._dict[envname][name] = nv
1594
+
1595
+ def PrependUnique(self, delete_existing=0, **kw):
1596
+ """Prepend values to existing construction variables
1597
+ in an Environment, if they're not already there.
1598
+ If delete_existing is 1, removes existing values first, so
1599
+ values move to front.
1600
+ """
1601
+ kw = copy_non_reserved_keywords(kw)
1602
+ for key, val in kw.items():
1603
+ if SCons.Util.is_List(val):
1604
+ val = _delete_duplicates(val, not delete_existing)
1605
+ if key not in self._dict or self._dict[key] in ('', None):
1606
+ self._dict[key] = val
1607
+ elif SCons.Util.is_Dict(self._dict[key]) and \
1608
+ SCons.Util.is_Dict(val):
1609
+ self._dict[key].update(val)
1610
+ elif SCons.Util.is_List(val):
1611
+ dk = self._dict[key]
1612
+ if not SCons.Util.is_List(dk):
1613
+ dk = [dk]
1614
+ if delete_existing:
1615
+ dk = [x for x in dk if x not in val]
1616
+ else:
1617
+ val = [x for x in val if x not in dk]
1618
+ self._dict[key] = val + dk
1619
+ else:
1620
+ dk = self._dict[key]
1621
+ if SCons.Util.is_List(dk):
1622
+ # By elimination, val is not a list. Since dk is a
1623
+ # list, wrap val in a list first.
1624
+ if delete_existing:
1625
+ dk = [x for x in dk if x not in val]
1626
+ self._dict[key] = [val] + dk
1627
+ else:
1628
+ if not val in dk:
1629
+ self._dict[key] = [val] + dk
1630
+ else:
1631
+ if delete_existing:
1632
+ dk = [x for x in dk if x not in val]
1633
+ self._dict[key] = val + dk
1634
+ self.scanner_map_delete(kw)
1635
+
1636
+ def Replace(self, **kw):
1637
+ """Replace existing construction variables in an Environment
1638
+ with new construction variables and/or values.
1639
+ """
1640
+ try:
1641
+ kwbd = kw['BUILDERS']
1642
+ except KeyError:
1643
+ pass
1644
+ else:
1645
+ kwbd = semi_deepcopy(kwbd)
1646
+ del kw['BUILDERS']
1647
+ self.__setitem__('BUILDERS', kwbd)
1648
+ kw = copy_non_reserved_keywords(kw)
1649
+ self._update(semi_deepcopy(kw))
1650
+ self.scanner_map_delete(kw)
1651
+
1652
+ def ReplaceIxes(self, path, old_prefix, old_suffix, new_prefix, new_suffix):
1653
+ """
1654
+ Replace old_prefix with new_prefix and old_suffix with new_suffix.
1655
+
1656
+ env - Environment used to interpolate variables.
1657
+ path - the path that will be modified.
1658
+ old_prefix - construction variable for the old prefix.
1659
+ old_suffix - construction variable for the old suffix.
1660
+ new_prefix - construction variable for the new prefix.
1661
+ new_suffix - construction variable for the new suffix.
1662
+ """
1663
+ old_prefix = self.subst('$'+old_prefix)
1664
+ old_suffix = self.subst('$'+old_suffix)
1665
+
1666
+ new_prefix = self.subst('$'+new_prefix)
1667
+ new_suffix = self.subst('$'+new_suffix)
1668
+
1669
+ dir,name = os.path.split(str(path))
1670
+ if name[:len(old_prefix)] == old_prefix:
1671
+ name = name[len(old_prefix):]
1672
+ if name[-len(old_suffix):] == old_suffix:
1673
+ name = name[:-len(old_suffix)]
1674
+ return os.path.join(dir, new_prefix+name+new_suffix)
1675
+
1676
+ def SetDefault(self, **kw):
1677
+ for k in kw.keys():
1678
+ if k in self._dict:
1679
+ del kw[k]
1680
+ self.Replace(**kw)
1681
+
1682
+ def _find_toolpath_dir(self, tp):
1683
+ return self.fs.Dir(self.subst(tp)).srcnode().abspath
1684
+
1685
+ def Tool(self, tool, toolpath=None, **kw):
1686
+ if SCons.Util.is_String(tool):
1687
+ tool = self.subst(tool)
1688
+ if toolpath is None:
1689
+ toolpath = self.get('toolpath', [])
1690
+ toolpath = list(map(self._find_toolpath_dir, toolpath))
1691
+ tool = SCons.Tool.Tool(tool, toolpath, **kw)
1692
+ tool(self)
1693
+
1694
+ def WhereIs(self, prog, path=None, pathext=None, reject=[]):
1695
+ """Find prog in the path.
1696
+ """
1697
+ if path is None:
1698
+ try:
1699
+ path = self['ENV']['PATH']
1700
+ except KeyError:
1701
+ pass
1702
+ elif SCons.Util.is_String(path):
1703
+ path = self.subst(path)
1704
+ if pathext is None:
1705
+ try:
1706
+ pathext = self['ENV']['PATHEXT']
1707
+ except KeyError:
1708
+ pass
1709
+ elif SCons.Util.is_String(pathext):
1710
+ pathext = self.subst(pathext)
1711
+ prog = self.subst(prog)
1712
+ path = SCons.Util.WhereIs(prog, path, pathext, reject)
1713
+ if path: return path
1714
+ return None
1715
+
1716
+ #######################################################################
1717
+ # Public methods for doing real "SCons stuff" (manipulating
1718
+ # dependencies, setting attributes on targets, etc.). These begin
1719
+ # with upper-case letters. The essential characteristic of methods
1720
+ # in this section is that they all *should* have corresponding
1721
+ # same-named global functions.
1722
+ #######################################################################
1723
+
1724
+ def Action(self, *args, **kw):
1725
+ def subst_string(a, self=self):
1726
+ if SCons.Util.is_String(a):
1727
+ a = self.subst(a)
1728
+ return a
1729
+ nargs = list(map(subst_string, args))
1730
+ nkw = self.subst_kw(kw)
1731
+ return SCons.Action.Action(*nargs, **nkw)
1732
+
1733
+ def AddPreAction(self, files, action):
1734
+ nodes = self.arg2nodes(files, self.fs.Entry)
1735
+ action = SCons.Action.Action(action)
1736
+ uniq = {}
1737
+ for executor in [n.get_executor() for n in nodes]:
1738
+ uniq[executor] = 1
1739
+ for executor in uniq.keys():
1740
+ executor.add_pre_action(action)
1741
+ return nodes
1742
+
1743
+ def AddPostAction(self, files, action):
1744
+ nodes = self.arg2nodes(files, self.fs.Entry)
1745
+ action = SCons.Action.Action(action)
1746
+ uniq = {}
1747
+ for executor in [n.get_executor() for n in nodes]:
1748
+ uniq[executor] = 1
1749
+ for executor in uniq.keys():
1750
+ executor.add_post_action(action)
1751
+ return nodes
1752
+
1753
+ def Alias(self, target, source=[], action=None, **kw):
1754
+ tlist = self.arg2nodes(target, self.ans.Alias)
1755
+ if not SCons.Util.is_List(source):
1756
+ source = [source]
1757
+ source = [_f for _f in source if _f]
1758
+
1759
+ if not action:
1760
+ if not source:
1761
+ # There are no source files and no action, so just
1762
+ # return a target list of classic Alias Nodes, without
1763
+ # any builder. The externally visible effect is that
1764
+ # this will make the wrapping Script.BuildTask class
1765
+ # say that there's "Nothing to be done" for this Alias,
1766
+ # instead of that it's "up to date."
1767
+ return tlist
1768
+
1769
+ # No action, but there are sources. Re-call all the target
1770
+ # builders to add the sources to each target.
1771
+ result = []
1772
+ for t in tlist:
1773
+ bld = t.get_builder(AliasBuilder)
1774
+ result.extend(bld(self, t, source))
1775
+ return result
1776
+
1777
+ nkw = self.subst_kw(kw)
1778
+ nkw.update({
1779
+ 'action' : SCons.Action.Action(action),
1780
+ 'source_factory' : self.fs.Entry,
1781
+ 'multi' : 1,
1782
+ 'is_explicit' : None,
1783
+ })
1784
+ bld = SCons.Builder.Builder(**nkw)
1785
+
1786
+ # Apply the Builder separately to each target so that the Aliases
1787
+ # stay separate. If we did one "normal" Builder call with the
1788
+ # whole target list, then all of the target Aliases would be
1789
+ # associated under a single Executor.
1790
+ result = []
1791
+ for t in tlist:
1792
+ # Calling the convert() method will cause a new Executor to be
1793
+ # created from scratch, so we have to explicitly initialize
1794
+ # it with the target's existing sources, plus our new ones,
1795
+ # so nothing gets lost.
1796
+ b = t.get_builder()
1797
+ if b is None or b is AliasBuilder:
1798
+ b = bld
1799
+ else:
1800
+ nkw['action'] = b.action + action
1801
+ b = SCons.Builder.Builder(**nkw)
1802
+ t.convert()
1803
+ result.extend(b(self, t, t.sources + source))
1804
+ return result
1805
+
1806
+ def AlwaysBuild(self, *targets):
1807
+ tlist = []
1808
+ for t in targets:
1809
+ tlist.extend(self.arg2nodes(t, self.fs.Entry))
1810
+ for t in tlist:
1811
+ t.set_always_build()
1812
+ return tlist
1813
+
1814
+ def BuildDir(self, *args, **kw):
1815
+ msg = """BuildDir() and the build_dir keyword have been deprecated;\n\tuse VariantDir() and the variant_dir keyword instead."""
1816
+ SCons.Warnings.warn(SCons.Warnings.DeprecatedBuildDirWarning, msg)
1817
+ if 'build_dir' in kw:
1818
+ kw['variant_dir'] = kw['build_dir']
1819
+ del kw['build_dir']
1820
+ return self.VariantDir(*args, **kw)
1821
+
1822
+ def Builder(self, **kw):
1823
+ nkw = self.subst_kw(kw)
1824
+ return SCons.Builder.Builder(**nkw)
1825
+
1826
+ def CacheDir(self, path):
1827
+ import SCons.CacheDir
1828
+ if path is not None:
1829
+ path = self.subst(path)
1830
+ self._CacheDir_path = path
1831
+
1832
+ def Clean(self, targets, files):
1833
+ global CleanTargets
1834
+ tlist = self.arg2nodes(targets, self.fs.Entry)
1835
+ flist = self.arg2nodes(files, self.fs.Entry)
1836
+ for t in tlist:
1837
+ try:
1838
+ CleanTargets[t].extend(flist)
1839
+ except KeyError:
1840
+ CleanTargets[t] = flist
1841
+
1842
+ def Configure(self, *args, **kw):
1843
+ nargs = [self]
1844
+ if args:
1845
+ nargs = nargs + self.subst_list(args)[0]
1846
+ nkw = self.subst_kw(kw)
1847
+ nkw['_depth'] = kw.get('_depth', 0) + 1
1848
+ try:
1849
+ nkw['custom_tests'] = self.subst_kw(nkw['custom_tests'])
1850
+ except KeyError:
1851
+ pass
1852
+ return SCons.SConf.SConf(*nargs, **nkw)
1853
+
1854
+ def Command(self, target, source, action, **kw):
1855
+ """Builds the supplied target files from the supplied
1856
+ source files using the supplied action. Action may
1857
+ be any type that the Builder constructor will accept
1858
+ for an action."""
1859
+ bkw = {
1860
+ 'action' : action,
1861
+ 'target_factory' : self.fs.Entry,
1862
+ 'source_factory' : self.fs.Entry,
1863
+ }
1864
+ try: bkw['source_scanner'] = kw['source_scanner']
1865
+ except KeyError: pass
1866
+ else: del kw['source_scanner']
1867
+ bld = SCons.Builder.Builder(**bkw)
1868
+ return bld(self, target, source, **kw)
1869
+
1870
+ def Depends(self, target, dependency):
1871
+ """Explicity specify that 'target's depend on 'dependency'."""
1872
+ tlist = self.arg2nodes(target, self.fs.Entry)
1873
+ dlist = self.arg2nodes(dependency, self.fs.Entry)
1874
+ for t in tlist:
1875
+ t.add_dependency(dlist)
1876
+ return tlist
1877
+
1878
+ def Dir(self, name, *args, **kw):
1879
+ """
1880
+ """
1881
+ s = self.subst(name)
1882
+ if SCons.Util.is_Sequence(s):
1883
+ result=[]
1884
+ for e in s:
1885
+ result.append(self.fs.Dir(e, *args, **kw))
1886
+ return result
1887
+ return self.fs.Dir(s, *args, **kw)
1888
+
1889
+ def NoClean(self, *targets):
1890
+ """Tags a target so that it will not be cleaned by -c"""
1891
+ tlist = []
1892
+ for t in targets:
1893
+ tlist.extend(self.arg2nodes(t, self.fs.Entry))
1894
+ for t in tlist:
1895
+ t.set_noclean()
1896
+ return tlist
1897
+
1898
+ def NoCache(self, *targets):
1899
+ """Tags a target so that it will not be cached"""
1900
+ tlist = []
1901
+ for t in targets:
1902
+ tlist.extend(self.arg2nodes(t, self.fs.Entry))
1903
+ for t in tlist:
1904
+ t.set_nocache()
1905
+ return tlist
1906
+
1907
+ def Entry(self, name, *args, **kw):
1908
+ """
1909
+ """
1910
+ s = self.subst(name)
1911
+ if SCons.Util.is_Sequence(s):
1912
+ result=[]
1913
+ for e in s:
1914
+ result.append(self.fs.Entry(e, *args, **kw))
1915
+ return result
1916
+ return self.fs.Entry(s, *args, **kw)
1917
+
1918
+ def Environment(self, **kw):
1919
+ return SCons.Environment.Environment(**self.subst_kw(kw))
1920
+
1921
+ def Execute(self, action, *args, **kw):
1922
+ """Directly execute an action through an Environment
1923
+ """
1924
+ action = self.Action(action, *args, **kw)
1925
+ result = action([], [], self)
1926
+ if isinstance(result, SCons.Errors.BuildError):
1927
+ errstr = result.errstr
1928
+ if result.filename:
1929
+ errstr = result.filename + ': ' + errstr
1930
+ sys.stderr.write("scons: *** %s\n" % errstr)
1931
+ return result.status
1932
+ else:
1933
+ return result
1934
+
1935
+ def File(self, name, *args, **kw):
1936
+ """
1937
+ """
1938
+ s = self.subst(name)
1939
+ if SCons.Util.is_Sequence(s):
1940
+ result=[]
1941
+ for e in s:
1942
+ result.append(self.fs.File(e, *args, **kw))
1943
+ return result
1944
+ return self.fs.File(s, *args, **kw)
1945
+
1946
+ def FindFile(self, file, dirs):
1947
+ file = self.subst(file)
1948
+ nodes = self.arg2nodes(dirs, self.fs.Dir)
1949
+ return SCons.Node.FS.find_file(file, tuple(nodes))
1950
+
1951
+ def Flatten(self, sequence):
1952
+ return SCons.Util.flatten(sequence)
1953
+
1954
+ def GetBuildPath(self, files):
1955
+ result = list(map(str, self.arg2nodes(files, self.fs.Entry)))
1956
+ if SCons.Util.is_List(files):
1957
+ return result
1958
+ else:
1959
+ return result[0]
1960
+
1961
+ def Glob(self, pattern, ondisk=True, source=False, strings=False):
1962
+ return self.fs.Glob(self.subst(pattern), ondisk, source, strings)
1963
+
1964
+ def Ignore(self, target, dependency):
1965
+ """Ignore a dependency."""
1966
+ tlist = self.arg2nodes(target, self.fs.Entry)
1967
+ dlist = self.arg2nodes(dependency, self.fs.Entry)
1968
+ for t in tlist:
1969
+ t.add_ignore(dlist)
1970
+ return tlist
1971
+
1972
+ def Literal(self, string):
1973
+ return SCons.Subst.Literal(string)
1974
+
1975
+ def Local(self, *targets):
1976
+ ret = []
1977
+ for targ in targets:
1978
+ if isinstance(targ, SCons.Node.Node):
1979
+ targ.set_local()
1980
+ ret.append(targ)
1981
+ else:
1982
+ for t in self.arg2nodes(targ, self.fs.Entry):
1983
+ t.set_local()
1984
+ ret.append(t)
1985
+ return ret
1986
+
1987
+ def Precious(self, *targets):
1988
+ tlist = []
1989
+ for t in targets:
1990
+ tlist.extend(self.arg2nodes(t, self.fs.Entry))
1991
+ for t in tlist:
1992
+ t.set_precious()
1993
+ return tlist
1994
+
1995
+ def Repository(self, *dirs, **kw):
1996
+ dirs = self.arg2nodes(list(dirs), self.fs.Dir)
1997
+ self.fs.Repository(*dirs, **kw)
1998
+
1999
+ def Requires(self, target, prerequisite):
2000
+ """Specify that 'prerequisite' must be built before 'target',
2001
+ (but 'target' does not actually depend on 'prerequisite'
2002
+ and need not be rebuilt if it changes)."""
2003
+ tlist = self.arg2nodes(target, self.fs.Entry)
2004
+ plist = self.arg2nodes(prerequisite, self.fs.Entry)
2005
+ for t in tlist:
2006
+ t.add_prerequisite(plist)
2007
+ return tlist
2008
+
2009
+ def Scanner(self, *args, **kw):
2010
+ nargs = []
2011
+ for arg in args:
2012
+ if SCons.Util.is_String(arg):
2013
+ arg = self.subst(arg)
2014
+ nargs.append(arg)
2015
+ nkw = self.subst_kw(kw)
2016
+ return SCons.Scanner.Base(*nargs, **nkw)
2017
+
2018
+ def SConsignFile(self, name=".sconsign", dbm_module=None):
2019
+ if name is not None:
2020
+ name = self.subst(name)
2021
+ if not os.path.isabs(name):
2022
+ name = os.path.join(str(self.fs.SConstruct_dir), name)
2023
+ if name:
2024
+ name = os.path.normpath(name)
2025
+ sconsign_dir = os.path.dirname(name)
2026
+ if sconsign_dir and not os.path.exists(sconsign_dir):
2027
+ self.Execute(SCons.Defaults.Mkdir(sconsign_dir))
2028
+ SCons.SConsign.File(name, dbm_module)
2029
+
2030
+ def SideEffect(self, side_effect, target):
2031
+ """Tell scons that side_effects are built as side
2032
+ effects of building targets."""
2033
+ side_effects = self.arg2nodes(side_effect, self.fs.Entry)
2034
+ targets = self.arg2nodes(target, self.fs.Entry)
2035
+
2036
+ for side_effect in side_effects:
2037
+ if side_effect.multiple_side_effect_has_builder():
2038
+ raise SCons.Errors.UserError("Multiple ways to build the same target were specified for: %s" % str(side_effect))
2039
+ side_effect.add_source(targets)
2040
+ side_effect.side_effect = 1
2041
+ self.Precious(side_effect)
2042
+ for target in targets:
2043
+ target.side_effects.append(side_effect)
2044
+ return side_effects
2045
+
2046
+ def SourceCode(self, entry, builder):
2047
+ """Arrange for a source code builder for (part of) a tree."""
2048
+ msg = """SourceCode() has been deprecated and there is no replacement.
2049
+ \tIf you need this function, please contact dev@scons.tigris.org."""
2050
+ SCons.Warnings.warn(SCons.Warnings.DeprecatedSourceCodeWarning, msg)
2051
+ entries = self.arg2nodes(entry, self.fs.Entry)
2052
+ for entry in entries:
2053
+ entry.set_src_builder(builder)
2054
+ return entries
2055
+
2056
+ def SourceSignatures(self, type):
2057
+ global _warn_source_signatures_deprecated
2058
+ if _warn_source_signatures_deprecated:
2059
+ msg = "The env.SourceSignatures() method is deprecated;\n" + \
2060
+ "\tconvert your build to use the env.Decider() method instead."
2061
+ SCons.Warnings.warn(SCons.Warnings.DeprecatedSourceSignaturesWarning, msg)
2062
+ _warn_source_signatures_deprecated = False
2063
+ type = self.subst(type)
2064
+ self.src_sig_type = type
2065
+ if type == 'MD5':
2066
+ if not SCons.Util.md5:
2067
+ raise UserError("MD5 signatures are not available in this version of Python.")
2068
+ self.decide_source = self._changed_content
2069
+ elif type == 'timestamp':
2070
+ self.decide_source = self._changed_timestamp_match
2071
+ else:
2072
+ raise UserError("Unknown source signature type '%s'" % type)
2073
+
2074
+ def Split(self, arg):
2075
+ """This function converts a string or list into a list of strings
2076
+ or Nodes. This makes things easier for users by allowing files to
2077
+ be specified as a white-space separated list to be split.
2078
+ The input rules are:
2079
+ - A single string containing names separated by spaces. These will be
2080
+ split apart at the spaces.
2081
+ - A single Node instance
2082
+ - A list containing either strings or Node instances. Any strings
2083
+ in the list are not split at spaces.
2084
+ In all cases, the function returns a list of Nodes and strings."""
2085
+ if SCons.Util.is_List(arg):
2086
+ return list(map(self.subst, arg))
2087
+ elif SCons.Util.is_String(arg):
2088
+ return self.subst(arg).split()
2089
+ else:
2090
+ return [self.subst(arg)]
2091
+
2092
+ def TargetSignatures(self, type):
2093
+ global _warn_target_signatures_deprecated
2094
+ if _warn_target_signatures_deprecated:
2095
+ msg = "The env.TargetSignatures() method is deprecated;\n" + \
2096
+ "\tconvert your build to use the env.Decider() method instead."
2097
+ SCons.Warnings.warn(SCons.Warnings.DeprecatedTargetSignaturesWarning, msg)
2098
+ _warn_target_signatures_deprecated = False
2099
+ type = self.subst(type)
2100
+ self.tgt_sig_type = type
2101
+ if type in ('MD5', 'content'):
2102
+ if not SCons.Util.md5:
2103
+ raise UserError("MD5 signatures are not available in this version of Python.")
2104
+ self.decide_target = self._changed_content
2105
+ elif type == 'timestamp':
2106
+ self.decide_target = self._changed_timestamp_match
2107
+ elif type == 'build':
2108
+ self.decide_target = self._changed_build
2109
+ elif type == 'source':
2110
+ self.decide_target = self._changed_source
2111
+ else:
2112
+ raise UserError("Unknown target signature type '%s'"%type)
2113
+
2114
+ def Value(self, value, built_value=None):
2115
+ """
2116
+ """
2117
+ return SCons.Node.Python.Value(value, built_value)
2118
+
2119
+ def VariantDir(self, variant_dir, src_dir, duplicate=1):
2120
+ variant_dir = self.arg2nodes(variant_dir, self.fs.Dir)[0]
2121
+ src_dir = self.arg2nodes(src_dir, self.fs.Dir)[0]
2122
+ self.fs.VariantDir(variant_dir, src_dir, duplicate)
2123
+
2124
+ def FindSourceFiles(self, node='.'):
2125
+ """ returns a list of all source files.
2126
+ """
2127
+ node = self.arg2nodes(node, self.fs.Entry)[0]
2128
+
2129
+ sources = []
2130
+ def build_source(ss):
2131
+ for s in ss:
2132
+ if isinstance(s, SCons.Node.FS.Dir):
2133
+ build_source(s.all_children())
2134
+ elif s.has_builder():
2135
+ build_source(s.sources)
2136
+ elif isinstance(s.disambiguate(), SCons.Node.FS.File):
2137
+ sources.append(s)
2138
+ build_source(node.all_children())
2139
+
2140
+ # THIS CODE APPEARS TO HAVE NO EFFECT
2141
+ # # get the final srcnode for all nodes, this means stripping any
2142
+ # # attached build node by calling the srcnode function
2143
+ # for file in sources:
2144
+ # srcnode = file.srcnode()
2145
+ # while srcnode != file.srcnode():
2146
+ # srcnode = file.srcnode()
2147
+
2148
+ # remove duplicates
2149
+ return list(set(sources))
2150
+
2151
+ def FindInstalledFiles(self):
2152
+ """ returns the list of all targets of the Install and InstallAs Builder.
2153
+ """
2154
+ from SCons.Tool import install
2155
+ if install._UNIQUE_INSTALLED_FILES is None:
2156
+ install._UNIQUE_INSTALLED_FILES = SCons.Util.uniquer_hashables(install._INSTALLED_FILES)
2157
+ return install._UNIQUE_INSTALLED_FILES
2158
+
2159
+ class OverrideEnvironment(Base):
2160
+ """A proxy that overrides variables in a wrapped construction
2161
+ environment by returning values from an overrides dictionary in
2162
+ preference to values from the underlying subject environment.
2163
+
2164
+ This is a lightweight (I hope) proxy that passes through most use of
2165
+ attributes to the underlying Environment.Base class, but has just
2166
+ enough additional methods defined to act like a real construction
2167
+ environment with overridden values. It can wrap either a Base
2168
+ construction environment, or another OverrideEnvironment, which
2169
+ can in turn nest arbitrary OverrideEnvironments...
2170
+
2171
+ Note that we do *not* call the underlying base class
2172
+ (SubsitutionEnvironment) initialization, because we get most of those
2173
+ from proxying the attributes of the subject construction environment.
2174
+ But because we subclass SubstitutionEnvironment, this class also
2175
+ has inherited arg2nodes() and subst*() methods; those methods can't
2176
+ be proxied because they need *this* object's methods to fetch the
2177
+ values from the overrides dictionary.
2178
+ """
2179
+
2180
+ def __init__(self, subject, overrides={}):
2181
+ if __debug__: logInstanceCreation(self, 'Environment.OverrideEnvironment')
2182
+ self.__dict__['__subject'] = subject
2183
+ self.__dict__['overrides'] = overrides
2184
+
2185
+ # Methods that make this class act like a proxy.
2186
+ def __getattr__(self, name):
2187
+ return getattr(self.__dict__['__subject'], name)
2188
+ def __setattr__(self, name, value):
2189
+ setattr(self.__dict__['__subject'], name, value)
2190
+
2191
+ # Methods that make this class act like a dictionary.
2192
+ def __getitem__(self, key):
2193
+ try:
2194
+ return self.__dict__['overrides'][key]
2195
+ except KeyError:
2196
+ return self.__dict__['__subject'].__getitem__(key)
2197
+ def __setitem__(self, key, value):
2198
+ if not is_valid_construction_var(key):
2199
+ raise SCons.Errors.UserError("Illegal construction variable `%s'" % key)
2200
+ self.__dict__['overrides'][key] = value
2201
+ def __delitem__(self, key):
2202
+ try:
2203
+ del self.__dict__['overrides'][key]
2204
+ except KeyError:
2205
+ deleted = 0
2206
+ else:
2207
+ deleted = 1
2208
+ try:
2209
+ result = self.__dict__['__subject'].__delitem__(key)
2210
+ except KeyError:
2211
+ if not deleted:
2212
+ raise
2213
+ result = None
2214
+ return result
2215
+ def get(self, key, default=None):
2216
+ """Emulates the get() method of dictionaries."""
2217
+ try:
2218
+ return self.__dict__['overrides'][key]
2219
+ except KeyError:
2220
+ return self.__dict__['__subject'].get(key, default)
2221
+ def has_key(self, key):
2222
+ try:
2223
+ self.__dict__['overrides'][key]
2224
+ return 1
2225
+ except KeyError:
2226
+ return key in self.__dict__['__subject']
2227
+ def __contains__(self, key):
2228
+ if self.__dict__['overrides'].__contains__(key):
2229
+ return 1
2230
+ return self.__dict__['__subject'].__contains__(key)
2231
+ def Dictionary(self):
2232
+ """Emulates the items() method of dictionaries."""
2233
+ d = self.__dict__['__subject'].Dictionary().copy()
2234
+ d.update(self.__dict__['overrides'])
2235
+ return d
2236
+ def items(self):
2237
+ """Emulates the items() method of dictionaries."""
2238
+ return list(self.Dictionary().items())
2239
+
2240
+ # Overridden private construction environment methods.
2241
+ def _update(self, dict):
2242
+ """Update an environment's values directly, bypassing the normal
2243
+ checks that occur when users try to set items.
2244
+ """
2245
+ self.__dict__['overrides'].update(dict)
2246
+
2247
+ def gvars(self):
2248
+ return self.__dict__['__subject'].gvars()
2249
+
2250
+ def lvars(self):
2251
+ lvars = self.__dict__['__subject'].lvars()
2252
+ lvars.update(self.__dict__['overrides'])
2253
+ return lvars
2254
+
2255
+ # Overridden public construction environment methods.
2256
+ def Replace(self, **kw):
2257
+ kw = copy_non_reserved_keywords(kw)
2258
+ self.__dict__['overrides'].update(semi_deepcopy(kw))
2259
+
2260
+ # The entry point that will be used by the external world
2261
+ # to refer to a construction environment. This allows the wrapper
2262
+ # interface to extend a construction environment for its own purposes
2263
+ # by subclassing SCons.Environment.Base and then assigning the
2264
+ # class to SCons.Environment.Environment.
2265
+
2266
+ Environment = Base
2267
+
2268
+ # An entry point for returning a proxy subclass instance that overrides
2269
+ # the subst*() methods so they don't actually perform construction
2270
+ # variable substitution. This is specifically intended to be the shim
2271
+ # layer in between global function calls (which don't want construction
2272
+ # variable substitution) and the DefaultEnvironment() (which would
2273
+ # substitute variables if left to its own devices)."""
2274
+ #
2275
+ # We have to wrap this in a function that allows us to delay definition of
2276
+ # the class until it's necessary, so that when it subclasses Environment
2277
+ # it will pick up whatever Environment subclass the wrapper interface
2278
+ # might have assigned to SCons.Environment.Environment.
2279
+
2280
+ def NoSubstitutionProxy(subject):
2281
+ class _NoSubstitutionProxy(Environment):
2282
+ def __init__(self, subject):
2283
+ self.__dict__['__subject'] = subject
2284
+ def __getattr__(self, name):
2285
+ return getattr(self.__dict__['__subject'], name)
2286
+ def __setattr__(self, name, value):
2287
+ return setattr(self.__dict__['__subject'], name, value)
2288
+ def raw_to_mode(self, dict):
2289
+ try:
2290
+ raw = dict['raw']
2291
+ except KeyError:
2292
+ pass
2293
+ else:
2294
+ del dict['raw']
2295
+ dict['mode'] = raw
2296
+ def subst(self, string, *args, **kwargs):
2297
+ return string
2298
+ def subst_kw(self, kw, *args, **kwargs):
2299
+ return kw
2300
+ def subst_list(self, string, *args, **kwargs):
2301
+ nargs = (string, self,) + args
2302
+ nkw = kwargs.copy()
2303
+ nkw['gvars'] = {}
2304
+ self.raw_to_mode(nkw)
2305
+ return SCons.Subst.scons_subst_list(*nargs, **nkw)
2306
+ def subst_target_source(self, string, *args, **kwargs):
2307
+ nargs = (string, self,) + args
2308
+ nkw = kwargs.copy()
2309
+ nkw['gvars'] = {}
2310
+ self.raw_to_mode(nkw)
2311
+ return SCons.Subst.scons_subst(*nargs, **nkw)
2312
+ return _NoSubstitutionProxy(subject)
2313
+
2314
+ # Local Variables:
2315
+ # tab-width:4
2316
+ # indent-tabs-mode:nil
2317
+ # End:
2318
+ # vim: set expandtab tabstop=4 shiftwidth=4: