home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Bureautique / gImageReader / gimagereader_0.9-1_win32.exe / bin / distutils / dep_util.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2011-03-24  |  3KB  |  81 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''distutils.dep_util
  5.  
  6. Utility functions for simple, timestamp-based dependency of files
  7. and groups of files; also, function based entirely on such
  8. timestamp dependency analysis.'''
  9. __revision__ = '$Id: dep_util.py 76746 2009-12-10 15:29:03Z tarek.ziade $'
  10. import os
  11. from distutils.errors import DistutilsFileError
  12.  
  13. def newer(source, target):
  14.     '''Tells if the target is newer than the source.
  15.  
  16.     Return true if \'source\' exists and is more recently modified than
  17.     \'target\', or if \'source\' exists and \'target\' doesn\'t.
  18.  
  19.     Return false if both exist and \'target\' is the same age or younger
  20.     than \'source\'. Raise DistutilsFileError if \'source\' does not exist.
  21.  
  22.     Note that this test is not very accurate: files created in the same second
  23.     will have the same "age".
  24.     '''
  25.     if not os.path.exists(source):
  26.         raise DistutilsFileError("file '%s' does not exist" % os.path.abspath(source))
  27.     if not os.path.exists(target):
  28.         return True
  29.     return None.stat(source).st_mtime > os.stat(target).st_mtime
  30.  
  31.  
  32. def newer_pairwise(sources, targets):
  33.     """Walk two filename lists in parallel, testing if each source is newer
  34.     than its corresponding target.  Return a pair of lists (sources,
  35.     targets) where source is newer than target, according to the semantics
  36.     of 'newer()'.
  37.     """
  38.     if len(sources) != len(targets):
  39.         raise ValueError, "'sources' and 'targets' must be same length"
  40.     n_sources = []
  41.     n_targets = []
  42.     for source, target in zip(sources, targets):
  43.         if newer(source, target):
  44.             n_sources.append(source)
  45.             n_targets.append(target)
  46.             continue
  47.     return (n_sources, n_targets)
  48.  
  49.  
  50. def newer_group(sources, target, missing = 'error'):
  51.     '''Return true if \'target\' is out-of-date with respect to any file
  52.     listed in \'sources\'.
  53.  
  54.     In other words, if \'target\' exists and is newer
  55.     than every file in \'sources\', return false; otherwise return true.
  56.     \'missing\' controls what we do when a source file is missing; the
  57.     default ("error") is to blow up with an OSError from inside \'stat()\';
  58.     if it is "ignore", we silently drop any missing source files; if it is
  59.     "newer", any missing source files make us assume that \'target\' is
  60.     out-of-date (this is handy in "dry-run" mode: it\'ll make you pretend to
  61.     carry out commands that wouldn\'t work because inputs are missing, but
  62.     that doesn\'t matter because you\'re not actually going to run the
  63.     commands).
  64.     '''
  65.     if not os.path.exists(target):
  66.         return True
  67.     target_mtime = None.stat(target).st_mtime
  68.     for source in sources:
  69.         if not os.path.exists(source):
  70.             if missing == 'error':
  71.                 pass
  72.             elif missing == 'ignore':
  73.                 continue
  74.             elif missing == 'newer':
  75.                 return True
  76.         if os.stat(source).st_mtime > target_mtime:
  77.             return True
  78.     
  79.     return False
  80.  
  81.