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

外挂编程

开发平台:

Windows_Unix

  1. """engine.SCons.Variables.PackageVariable
  2. This file defines the option type for SCons implementing 'package
  3. activation'.
  4. To be used whenever a 'package' may be enabled/disabled and the
  5. package path may be specified.
  6. Usage example:
  7.   Examples:
  8.       x11=no   (disables X11 support)
  9.       x11=yes  (will search for the package installation dir)
  10.       x11=/usr/local/X11 (will check this path for existance)
  11.   To replace autoconf's --with-xxx=yyy 
  12.   opts = Variables()
  13.   opts.Add(PackageVariable('x11',
  14.                          'use X11 installed here (yes = search some places',
  15.                          'yes'))
  16.   ...
  17.   if env['x11'] == True:
  18.       dir = ... search X11 in some standard places ...
  19.       env['x11'] = dir 
  20.   if env['x11']:
  21.       ... build with x11 ...
  22. """
  23. #
  24. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  25. #
  26. # Permission is hereby granted, free of charge, to any person obtaining
  27. # a copy of this software and associated documentation files (the
  28. # "Software"), to deal in the Software without restriction, including
  29. # without limitation the rights to use, copy, modify, merge, publish,
  30. # distribute, sublicense, and/or sell copies of the Software, and to
  31. # permit persons to whom the Software is furnished to do so, subject to
  32. # the following conditions:
  33. #
  34. # The above copyright notice and this permission notice shall be included
  35. # in all copies or substantial portions of the Software.
  36. #
  37. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  38. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  39. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  40. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  41. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  42. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  43. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  44. #
  45. __revision__ = "src/engine/SCons/Variables/PackageVariable.py 3057 2008/06/09 22:21:00 knight"
  46. __all__ = ['PackageVariable',]
  47. import string
  48. import SCons.compat
  49. import SCons.Errors
  50. __enable_strings  = ('1', 'yes', 'true',  'on', 'enable', 'search')
  51. __disable_strings = ('0', 'no',  'false', 'off', 'disable')
  52. def _converter(val):
  53.     """
  54.     """
  55.     lval = string.lower(val)
  56.     if lval in __enable_strings: return True
  57.     if lval in __disable_strings: return False
  58.     #raise ValueError("Invalid value for boolean option: %s" % val)
  59.     return val
  60. def _validator(key, val, env, searchfunc):
  61.     # NB: searchfunc is currenty undocumented and unsupported
  62.     """
  63.     """
  64.     # todo: write validator, check for path
  65.     import os
  66.     if env[key] is True:
  67.         if searchfunc:
  68.             env[key] = searchfunc(key, val)
  69.     elif env[key] and not os.path.exists(val):
  70.         raise SCons.Errors.UserError(
  71.             'Path does not exist for option %s: %s' % (key, val))
  72. def PackageVariable(key, help, default, searchfunc=None):
  73.     # NB: searchfunc is currenty undocumented and unsupported
  74.     """
  75.     The input parameters describe a 'package list' option, thus they
  76.     are returned with the correct converter and validator appended. The
  77.     result is usable for input to opts.Add() .
  78.     A 'package list' option may either be 'all', 'none' or a list of
  79.     package names (seperated by space).
  80.     """
  81.     help = string.join(
  82.         (help, '( yes | no | /path/to/%s )' % key),
  83.         'n    ')
  84.     return (key, help, default,
  85.             lambda k, v, e, f=searchfunc: _validator(k,v,e,f),
  86.             _converter)