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

外挂编程

开发平台:

Windows_Unix

  1. """SCons.Tool.Packaging
  2. SCons Packaging Tool.
  3. """
  4. #
  5. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  6. #
  7. # Permission is hereby granted, free of charge, to any person obtaining
  8. # a copy of this software and associated documentation files (the
  9. # "Software"), to deal in the Software without restriction, including
  10. # without limitation the rights to use, copy, modify, merge, publish,
  11. # distribute, sublicense, and/or sell copies of the Software, and to
  12. # permit persons to whom the Software is furnished to do so, subject to
  13. # the following conditions:
  14. #
  15. # The above copyright notice and this permission notice shall be included
  16. # in all copies or substantial portions of the Software.
  17. #
  18. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  19. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  20. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  21. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  22. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  23. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  24. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. #
  26. __revision__ = "src/engine/SCons/Tool/packaging/__init__.py 3057 2008/06/09 22:21:00 knight"
  27. import SCons.Environment
  28. from SCons.Variables import *
  29. from SCons.Errors import *
  30. from SCons.Util import is_List, make_path_relative
  31. from SCons.Warnings import warn, Warning
  32. import os, imp
  33. import SCons.Defaults
  34. __all__ = [ 'src_targz', 'src_tarbz2', 'src_zip', 'tarbz2', 'targz', 'zip', 'rpm', 'msi', 'ipk' ]
  35. #
  36. # Utility and Builder function
  37. #
  38. def Tag(env, target, source, *more_tags, **kw_tags):
  39.     """ Tag a file with the given arguments, just sets the accordingly named
  40.     attribute on the file object.
  41.     TODO: FIXME
  42.     """
  43.     if not target:
  44.         target=source
  45.         first_tag=None
  46.     else:
  47.         first_tag=source
  48.     if first_tag:
  49.         kw_tags[first_tag[0]] = ''
  50.     if len(kw_tags) == 0 and len(more_tags) == 0:
  51.         raise UserError, "No tags given."
  52.     # XXX: sanity checks
  53.     for x in more_tags:
  54.         kw_tags[x] = ''
  55.     if not SCons.Util.is_List(target):
  56.         target=[target]
  57.     else:
  58.         # hmm, sometimes the target list, is a list of a list
  59.         # make sure it is flattened prior to processing.
  60.         # TODO: perhaps some bug ?!?
  61.         target=env.Flatten(target)
  62.     for t in target:
  63.         for (k,v) in kw_tags.items():
  64.             # all file tags have to start with PACKAGING_, so we can later
  65.             # differentiate between "normal" object attributes and the
  66.             # packaging attributes. As the user should not be bothered with
  67.             # that, the prefix will be added here if missing.
  68.             #if not k.startswith('PACKAGING_'):
  69.             if k[:10] != 'PACKAGING_':
  70.                 k='PACKAGING_'+k
  71.             setattr(t, k, v)
  72. def Package(env, target=None, source=None, **kw):
  73.     """ Entry point for the package tool.
  74.     """
  75.     # check if we need to find the source files ourself
  76.     if not source:
  77.         source = env.FindInstalledFiles()
  78.     if len(source)==0:
  79.         raise UserError, "No source for Package() given"
  80.     # decide which types of packages shall be built. Can be defined through
  81.     # four mechanisms: command line argument, keyword argument,
  82.     # environment argument and default selection( zip or tar.gz ) in that
  83.     # order.
  84.     try: kw['PACKAGETYPE']=env['PACKAGETYPE']
  85.     except KeyError: pass
  86.     if not kw.get('PACKAGETYPE'):
  87.         from SCons.Script import GetOption
  88.         kw['PACKAGETYPE'] = GetOption('package_type')
  89.     if kw['PACKAGETYPE'] == None:
  90.         if env['BUILDERS'].has_key('Tar'):
  91.             kw['PACKAGETYPE']='targz'
  92.         elif env['BUILDERS'].has_key('Zip'):
  93.             kw['PACKAGETYPE']='zip'
  94.         else:
  95.             raise UserError, "No type for Package() given"
  96.     PACKAGETYPE=kw['PACKAGETYPE']
  97.     if not is_List(PACKAGETYPE):
  98.         PACKAGETYPE=string.split(PACKAGETYPE, ',')
  99.     # load the needed packagers.
  100.     def load_packager(type):
  101.         try:
  102.             file,path,desc=imp.find_module(type, __path__)
  103.             return imp.load_module(type, file, path, desc)
  104.         except ImportError, e:
  105.             raise EnvironmentError("packager %s not available: %s"%(type,str(e)))
  106.     packagers=map(load_packager, PACKAGETYPE)
  107.     # set up targets and the PACKAGEROOT
  108.     try:
  109.         # fill up the target list with a default target name until the PACKAGETYPE
  110.         # list is of the same size as the target list.
  111.         if not target: target = []
  112.         size_diff      = len(PACKAGETYPE)-len(target)
  113.         default_name   = "%(NAME)s-%(VERSION)s"
  114.         if size_diff>0:
  115.             default_target = default_name%kw
  116.             target.extend( [default_target]*size_diff )
  117.         if not kw.has_key('PACKAGEROOT'):
  118.             kw['PACKAGEROOT'] = default_name%kw
  119.     except KeyError, e:
  120.         raise SCons.Errors.UserError( "Missing Packagetag '%s'"%e.args[0] )
  121.     # setup the source files
  122.     source=env.arg2nodes(source, env.fs.Entry)
  123.     # call the packager to setup the dependencies.
  124.     targets=[]
  125.     try:
  126.         for packager in packagers:
  127.             t=[target.pop(0)]
  128.             t=apply(packager.package, [env,t,source], kw)
  129.             targets.extend(t)
  130.         assert( len(target) == 0 )
  131.     except KeyError, e:
  132.         raise SCons.Errors.UserError( "Missing Packagetag '%s' for %s packager"
  133.                                       % (e.args[0],packager.__name__) )
  134.     except TypeError, e:
  135.         # this exception means that a needed argument for the packager is
  136.         # missing. As our packagers get their "tags" as named function
  137.         # arguments we need to find out which one is missing.
  138.         from inspect import getargspec
  139.         args,varargs,varkw,defaults=getargspec(packager.package)
  140.         if defaults!=None:
  141.             args=args[:-len(defaults)] # throw away arguments with default values
  142.         map(args.remove, 'env target source'.split())
  143.         # now remove any args for which we have a value in kw.
  144.         #args=[x for x in args if not kw.has_key(x)]
  145.         args=filter(lambda x, kw=kw: not kw.has_key(x), args)
  146.         if len(args)==0:
  147.             raise # must be a different error, so reraise
  148.         elif len(args)==1:
  149.             raise SCons.Errors.UserError( "Missing Packagetag '%s' for %s packager"
  150.                                           % (args[0],packager.__name__) )
  151.         else:
  152.             raise SCons.Errors.UserError( "Missing Packagetags '%s' for %s packager"
  153.                                           % (", ".join(args),packager.__name__) )
  154.     target=env.arg2nodes(target, env.fs.Entry)
  155.     targets.extend(env.Alias( 'package', targets ))
  156.     return targets
  157. #
  158. # SCons tool initialization functions
  159. #
  160. added = None
  161. def generate(env):
  162.     from SCons.Script import AddOption
  163.     global added
  164.     if not added:
  165.         added = 1
  166.         AddOption('--package-type',
  167.                   dest='package_type',
  168.                   default=None,
  169.                   type="string",
  170.                   action="store",
  171.                   help='The type of package to create.')
  172.     try:
  173.         env['BUILDERS']['Package']
  174.         env['BUILDERS']['Tag']
  175.     except KeyError:
  176.         env['BUILDERS']['Package'] = Package
  177.         env['BUILDERS']['Tag'] = Tag
  178. def exists(env):
  179.     return 1
  180. # XXX
  181. def options(opts):
  182.     opts.AddVariables(
  183.         EnumVariable( 'PACKAGETYPE',
  184.                      'the type of package to create.',
  185.                      None, allowed_values=map( str, __all__ ),
  186.                      ignorecase=2
  187.                   )
  188.     )
  189. #
  190. # Internal utility functions
  191. #
  192. def copy_attr(f1, f2):
  193.     """ copies the special packaging file attributes from f1 to f2.
  194.     """
  195.     #pattrs = [x for x in dir(f1) if not hasattr(f2, x) and
  196.     #                                x.startswith('PACKAGING_')]
  197.     copyit = lambda x, f2=f2: not hasattr(f2, x) and x[:10] == 'PACKAGING_'
  198.     pattrs = filter(copyit, dir(f1))
  199.     for attr in pattrs:
  200.         setattr(f2, attr, getattr(f1, attr))
  201. def putintopackageroot(target, source, env, pkgroot, honor_install_location=1):
  202.     """ Uses the CopyAs builder to copy all source files to the directory given
  203.     in pkgroot.
  204.     If honor_install_location is set and the copied source file has an
  205.     PACKAGING_INSTALL_LOCATION attribute, the PACKAGING_INSTALL_LOCATION is
  206.     used as the new name of the source file under pkgroot.
  207.     The source file will not be copied if it is already under the the pkgroot
  208.     directory.
  209.     All attributes of the source file will be copied to the new file.
  210.     """
  211.     # make sure the packageroot is a Dir object.
  212.     if SCons.Util.is_String(pkgroot):  pkgroot=env.Dir(pkgroot)
  213.     if not SCons.Util.is_List(source): source=[source]
  214.     new_source = []
  215.     for file in source:
  216.         if SCons.Util.is_String(file): file = env.File(file)
  217.         if file.is_under(pkgroot):
  218.             new_source.append(file)
  219.         else:
  220.             if hasattr(file, 'PACKAGING_INSTALL_LOCATION') and
  221.                        honor_install_location:
  222.                 new_name=make_path_relative(file.PACKAGING_INSTALL_LOCATION)
  223.             else:
  224.                 new_name=make_path_relative(file.get_path())
  225.             new_file=pkgroot.File(new_name)
  226.             new_file=env.CopyAs(new_file, file)[0]
  227.             copy_attr(file, new_file)
  228.             new_source.append(new_file)
  229.     return (target, new_source)
  230. def stripinstallbuilder(target, source, env):
  231.     """ strips the install builder action from the source list and stores
  232.     the final installation location as the "PACKAGING_INSTALL_LOCATION" of
  233.     the source of the source file. This effectively removes the final installed
  234.     files from the source list while remembering the installation location.
  235.     It also warns about files which have no install builder attached.
  236.     """
  237.     def has_no_install_location(file):
  238.         return not (file.has_builder() and
  239.             hasattr(file.builder, 'name') and
  240.             (file.builder.name=="InstallBuilder" or
  241.              file.builder.name=="InstallAsBuilder"))
  242.     if len(filter(has_no_install_location, source)):
  243.         warn(Warning, "there are files to package which have no
  244.         InstallBuilder attached, this might lead to irreproducible packages")
  245.     n_source=[]
  246.     for s in source:
  247.         if has_no_install_location(s):
  248.             n_source.append(s)
  249.         else:
  250.             for ss in s.sources:
  251.                 n_source.append(ss)
  252.                 copy_attr(s, ss)
  253.                 setattr(ss, 'PACKAGING_INSTALL_LOCATION', s.get_path())
  254.     return (target, n_source)