swig.py.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:5k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.swig
  2. Tool-specific initialization for swig.
  3. There normally shouldn't be any need to import this module directly.
  4. It will usually be imported through the generic SCons.Tool.Tool()
  5. selection method.
  6. """
  7. #
  8. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  9. #
  10. # Permission is hereby granted, free of charge, to any person obtaining
  11. # a copy of this software and associated documentation files (the
  12. # "Software"), to deal in the Software without restriction, including
  13. # without limitation the rights to use, copy, modify, merge, publish,
  14. # distribute, sublicense, and/or sell copies of the Software, and to
  15. # permit persons to whom the Software is furnished to do so, subject to
  16. # the following conditions:
  17. #
  18. # The above copyright notice and this permission notice shall be included
  19. # in all copies or substantial portions of the Software.
  20. #
  21. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  22. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  23. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  24. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  25. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  26. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  27. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28. #
  29. __revision__ = "src/engine/SCons/Tool/swig.py 3057 2008/06/09 22:21:00 knight"
  30. import os.path
  31. import re
  32. import SCons.Action
  33. import SCons.Defaults
  34. import SCons.Scanner
  35. import SCons.Tool
  36. import SCons.Util
  37. SwigAction = SCons.Action.Action('$SWIGCOM', '$SWIGCOMSTR')
  38. def swigSuffixEmitter(env, source):
  39.     if '-c++' in SCons.Util.CLVar(env.subst("$SWIGFLAGS", source=source)):
  40.         return '$SWIGCXXFILESUFFIX'
  41.     else:
  42.         return '$SWIGCFILESUFFIX'
  43. # Match '%module test', as well as '%module(directors="1") test'
  44. _reModule = re.compile(r'%module(?:s*(.*))?s+(.+)')
  45. def _swigEmitter(target, source, env):
  46.     swigflags = env.subst("$SWIGFLAGS", target=target, source=source)
  47.     flags = SCons.Util.CLVar(swigflags)
  48.     for src in source:
  49.         src = str(src.rfile())
  50.         mnames = None
  51.         if "-python" in flags and "-noproxy" not in flags:
  52.             if mnames is None:
  53.                 mnames = _reModule.findall(open(src).read())
  54.             target.extend(map(lambda m, d=target[0].dir:
  55.                                      d.File(m + ".py"), mnames))
  56.         if "-java" in flags:
  57.             if mnames is None:
  58.                 mnames = _reModule.findall(open(src).read())
  59.             java_files = map(lambda m: [m + ".java", m + "JNI.java"], mnames)
  60.             java_files = SCons.Util.flatten(java_files)
  61.             outdir = env.subst('$SWIGOUTDIR', target=target, source=source)
  62.             if outdir:
  63.                  java_files = map(lambda j, o=outdir: os.path.join(o, j), java_files)
  64.             java_files = map(env.fs.File, java_files)
  65.             for jf in java_files:
  66.                 t_from_s = lambda t, p, s, x: t.dir
  67.                 SCons.Util.AddMethod(jf, t_from_s, 'target_from_source')
  68.             target.extend(java_files)
  69.     return (target, source)
  70. def generate(env):
  71.     """Add Builders and construction variables for swig to an Environment."""
  72.     c_file, cxx_file = SCons.Tool.createCFileBuilders(env)
  73.     c_file.suffix['.i'] = swigSuffixEmitter
  74.     cxx_file.suffix['.i'] = swigSuffixEmitter
  75.     c_file.add_action('.i', SwigAction)
  76.     c_file.add_emitter('.i', _swigEmitter)
  77.     cxx_file.add_action('.i', SwigAction)
  78.     cxx_file.add_emitter('.i', _swigEmitter)
  79.     java_file = SCons.Tool.CreateJavaFileBuilder(env)
  80.     java_file.suffix['.i'] = swigSuffixEmitter
  81.     java_file.add_action('.i', SwigAction)
  82.     java_file.add_emitter('.i', _swigEmitter)
  83.     env['SWIG']              = 'swig'
  84.     env['SWIGFLAGS']         = SCons.Util.CLVar('')
  85.     env['SWIGCFILESUFFIX']   = '_wrap$CFILESUFFIX'
  86.     env['SWIGCXXFILESUFFIX'] = '_wrap$CXXFILESUFFIX'
  87.     env['_SWIGOUTDIR']       = '${"-outdir " + str(SWIGOUTDIR)}'
  88.     env['SWIGPATH']          = []
  89.     env['SWIGINCPREFIX']     = '-I'
  90.     env['SWIGINCSUFFIX']     = ''
  91.     env['_SWIGINCFLAGS']     = '$( ${_concat(SWIGINCPREFIX, SWIGPATH, SWIGINCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)'
  92.     env['SWIGCOM']           = '$SWIG -o $TARGET ${_SWIGOUTDIR} ${_SWIGINCFLAGS} $SWIGFLAGS $SOURCES'
  93.     expr = '^[ t]*%[ t]*(?:include|import|extern)[ t]*(<|"?)([^>s"]+)(?:>|"?)'
  94.     scanner = SCons.Scanner.ClassicCPP("SWIGScan", ".i", "SWIGPATH", expr)
  95.     env.Append(SCANNERS = scanner)
  96. def exists(env):
  97.     return env.Detect(['swig'])