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

外挂编程

开发平台:

Windows_Unix

  1. """engine.SCons.Variables.ListVariable
  2. This file defines the option type for SCons implementing 'lists'.
  3. A 'list' option may either be 'all', 'none' or a list of names
  4. separated by comma. After the option has been processed, the option
  5. value holds either the named list elements, all list elemens or no
  6. list elements at all.
  7. Usage example:
  8.   list_of_libs = Split('x11 gl qt ical')
  9.   opts = Variables()
  10.   opts.Add(ListVariable('shared',
  11.                       'libraries to build as shared libraries',
  12.                       'all',
  13.                       elems = list_of_libs))
  14.   ...
  15.   for lib in list_of_libs:
  16.      if lib in env['shared']:
  17.          env.SharedObject(...)
  18.      else:
  19.          env.Object(...)
  20. """
  21. #
  22. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  23. #
  24. # Permission is hereby granted, free of charge, to any person obtaining
  25. # a copy of this software and associated documentation files (the
  26. # "Software"), to deal in the Software without restriction, including
  27. # without limitation the rights to use, copy, modify, merge, publish,
  28. # distribute, sublicense, and/or sell copies of the Software, and to
  29. # permit persons to whom the Software is furnished to do so, subject to
  30. # the following conditions:
  31. #
  32. # The above copyright notice and this permission notice shall be included
  33. # in all copies or substantial portions of the Software.
  34. #
  35. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  36. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  37. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  38. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  39. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  40. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  41. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  42. #
  43. __revision__ = "src/engine/SCons/Variables/ListVariable.py 3057 2008/06/09 22:21:00 knight"
  44. # Know Bug: This should behave like a Set-Type, but does not really,
  45. # since elements can occur twice.
  46. __all__ = ['ListVariable',]
  47. import string
  48. import UserList
  49. import SCons.Util
  50. class _ListVariable(UserList.UserList):
  51.     def __init__(self, initlist=[], allowedElems=[]):
  52.         UserList.UserList.__init__(self, filter(None, initlist))
  53.         self.allowedElems = allowedElems[:]
  54.         self.allowedElems.sort()
  55.     def __cmp__(self, other):
  56.         raise NotImplementedError
  57.     def __eq__(self, other):
  58.         raise NotImplementedError
  59.     def __ge__(self, other):
  60.         raise NotImplementedError
  61.     def __gt__(self, other):
  62.         raise NotImplementedError
  63.     def __le__(self, other):
  64.         raise NotImplementedError
  65.     def __lt__(self, other):
  66.         raise NotImplementedError
  67.     def __str__(self):
  68.         if len(self) == 0:
  69.             return 'none'
  70.         self.data.sort()
  71.         if self.data == self.allowedElems:
  72.             return 'all'
  73.         else:
  74.             return string.join(self, ',')
  75.     def prepare_to_store(self):
  76.         return self.__str__()
  77. def _converter(val, allowedElems, mapdict):
  78.     """
  79.     """
  80.     if val == 'none':
  81.         val = []
  82.     elif val == 'all':
  83.         val = allowedElems
  84.     else:
  85.         val = filter(None, string.split(val, ','))
  86.         val = map(lambda v, m=mapdict: m.get(v, v), val)
  87.         notAllowed = filter(lambda v, aE=allowedElems: not v in aE, val)
  88.         if notAllowed:
  89.             raise ValueError("Invalid value(s) for option: %s" %
  90.                              string.join(notAllowed, ','))
  91.     return _ListVariable(val, allowedElems)
  92. ## def _validator(key, val, env):
  93. ##     """
  94. ##     """
  95. ##     # todo: write validater for pgk list
  96. ##     return 1
  97. def ListVariable(key, help, default, names, map={}):
  98.     """
  99.     The input parameters describe a 'package list' option, thus they
  100.     are returned with the correct converter and validater appended. The
  101.     result is usable for input to opts.Add() .
  102.     A 'package list' option may either be 'all', 'none' or a list of
  103.     package names (separated by space).
  104.     """
  105.     names_str = 'allowed names: %s' % string.join(names, ' ')
  106.     if SCons.Util.is_List(default):
  107.         default = string.join(default, ',')
  108.     help = string.join(
  109.         (help, '(all|none|comma-separated list of names)', names_str),
  110.         'n    ')
  111.     return (key, help, default,
  112.             None, #_validator,
  113.             lambda val, elems=names, m=map: _converter(val, elems, m))