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

外挂编程

开发平台:

Windows_Unix

  1. """scons.Node.Python
  2. Python nodes.
  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/Node/Python.py 3057 2008/06/09 22:21:00 knight"
  27. import SCons.Node
  28. class ValueNodeInfo(SCons.Node.NodeInfoBase):
  29.     current_version_id = 1
  30.     field_list = ['csig']
  31.     def str_to_node(self, s):
  32.         return Value(s)
  33. class ValueBuildInfo(SCons.Node.BuildInfoBase):
  34.     current_version_id = 1
  35. class Value(SCons.Node.Node):
  36.     """A class for Python variables, typically passed on the command line 
  37.     or generated by a script, but not from a file or some other source.
  38.     """
  39.     NodeInfo = ValueNodeInfo
  40.     BuildInfo = ValueBuildInfo
  41.     def __init__(self, value, built_value=None):
  42.         SCons.Node.Node.__init__(self)
  43.         self.value = value
  44.         if not built_value is None:
  45.             self.built_value = built_value
  46.     def str_for_display(self):
  47.         return repr(self.value)
  48.     def __str__(self):
  49.         return str(self.value)
  50.     def make_ready(self):
  51.         self.get_csig()
  52.     def build(self, **kw):
  53.         if not hasattr(self, 'built_value'):
  54.             apply (SCons.Node.Node.build, (self,), kw)
  55.     is_up_to_date = SCons.Node.Node.children_are_up_to_date
  56.     def is_under(self, dir):
  57.         # Make Value nodes get built regardless of 
  58.         # what directory scons was run from. Value nodes
  59.         # are outside the filesystem:
  60.         return 1
  61.     def write(self, built_value):
  62.         """Set the value of the node."""
  63.         self.built_value = built_value
  64.     def read(self):
  65.         """Return the value. If necessary, the value is built."""
  66.         self.build()
  67.         if not hasattr(self, 'built_value'):
  68.             self.built_value = self.value
  69.         return self.built_value
  70.     def get_contents(self):
  71.         """By the assumption that the node.built_value is a
  72.         deterministic product of the sources, the contents of a Value
  73.         are the concatenation of all the contents of its sources.  As
  74.         the value need not be built when get_contents() is called, we
  75.         cannot use the actual node.built_value."""
  76.         contents = str(self.value)
  77.         for kid in self.children(None):
  78.             contents = contents + kid.get_contents()
  79.         return contents
  80.     def changed_since_last_build(self, target, prev_ni):
  81.         cur_csig = self.get_csig()
  82.         try:
  83.             return cur_csig != prev_ni.csig
  84.         except AttributeError:
  85.             return 1
  86.     def get_csig(self, calc=None):
  87.         """Because we're a Python value node and don't have a real
  88.         timestamp, we get to ignore the calculator and just use the
  89.         value contents."""
  90.         try:
  91.             return self.ninfo.csig
  92.         except AttributeError:
  93.             pass
  94.         contents = self.get_contents()
  95.         self.get_ninfo().csig = contents
  96.         return contents