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

外挂编程

开发平台:

Windows_Unix

  1. #
  2. # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundation
  3. #
  4. # Permission is hereby granted, free of charge, to any person obtaining
  5. # a copy of this software and associated documentation files (the
  6. # "Software"), to deal in the Software without restriction, including
  7. # without limitation the rights to use, copy, modify, merge, publish,
  8. # distribute, sublicense, and/or sell copies of the Software, and to
  9. # permit persons to whom the Software is furnished to do so, subject to
  10. # the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included
  13. # in all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  16. # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  17. # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  19. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  20. # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  21. # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22. #
  23. __revision__ = "src/engine/SCons/compat/_scons_UserString.py 3057 2008/06/09 22:21:00 knight"
  24. __doc__ = """
  25. A user-defined wrapper around string objects
  26. This class is "borrowed" from the Python 2.2 UserString and modified
  27. slightly for use with SCons.  It is *NOT* guaranteed to be fully compliant
  28. with the standard UserString class from all later versions of Python.
  29. In particular, it does not necessarily contain all of the methods found
  30. in later versions.
  31. """
  32. import types
  33. StringType = types.StringType
  34. if hasattr(types, 'UnicodeType'):
  35.     UnicodeType = types.UnicodeType
  36.     def is_String(obj):
  37.         return type(obj) in (StringType, UnicodeType)
  38. else:
  39.     def is_String(obj):
  40.         return type(obj) is StringType
  41. class UserString:
  42.     def __init__(self, seq):
  43.         if is_String(seq):
  44.             self.data = seq
  45.         elif isinstance(seq, UserString):
  46.             self.data = seq.data[:]
  47.         else:
  48.             self.data = str(seq)
  49.     def __str__(self): return str(self.data)
  50.     def __repr__(self): return repr(self.data)
  51.     def __int__(self): return int(self.data)
  52.     def __long__(self): return long(self.data)
  53.     def __float__(self): return float(self.data)
  54.     def __complex__(self): return complex(self.data)
  55.     def __hash__(self): return hash(self.data)
  56.     def __cmp__(self, string):
  57.         if isinstance(string, UserString):
  58.             return cmp(self.data, string.data)
  59.         else:
  60.             return cmp(self.data, string)
  61.     def __contains__(self, char):
  62.         return char in self.data
  63.     def __len__(self): return len(self.data)
  64.     def __getitem__(self, index): return self.__class__(self.data[index])
  65.     def __getslice__(self, start, end):
  66.         start = max(start, 0); end = max(end, 0)
  67.         return self.__class__(self.data[start:end])
  68.     def __add__(self, other):
  69.         if isinstance(other, UserString):
  70.             return self.__class__(self.data + other.data)
  71.         elif is_String(other):
  72.             return self.__class__(self.data + other)
  73.         else:
  74.             return self.__class__(self.data + str(other))
  75.     def __radd__(self, other):
  76.         if is_String(other):
  77.             return self.__class__(other + self.data)
  78.         else:
  79.             return self.__class__(str(other) + self.data)
  80.     def __mul__(self, n):
  81.         return self.__class__(self.data*n)
  82.     __rmul__ = __mul__