home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / System / shutil.pyc (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2005-11-09  |  6.6 KB  |  259 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """Utility functions for copying files and directory trees.
  5.  
  6. XXX The functions here don't copy the resource fork or other metadata on Mac.
  7.  
  8. """
  9. import os
  10. import sys
  11. import stat
  12. import exceptions
  13. from os.path import abspath
  14. __all__ = [
  15.     'copyfileobj',
  16.     'copyfile',
  17.     'copymode',
  18.     'copystat',
  19.     'copy',
  20.     'copy2',
  21.     'copytree',
  22.     'move',
  23.     'rmtree',
  24.     'Error']
  25.  
  26. class Error(exceptions.EnvironmentError):
  27.     pass
  28.  
  29.  
  30. def copyfileobj(fsrc, fdst, length = 16 * 1024):
  31.     '''copy data from file-like object fsrc to file-like object fdst'''
  32.     while None:
  33.         buf = fsrc.read(length)
  34.         if not buf:
  35.             break
  36.         
  37.  
  38.  
  39. def _samefile(src, dst):
  40.     if hasattr(os.path, 'samefile'):
  41.         
  42.         try:
  43.             return os.path.samefile(src, dst)
  44.         except OSError:
  45.             return False
  46.         except:
  47.             None<EXCEPTION MATCH>OSError
  48.         
  49.  
  50.     None<EXCEPTION MATCH>OSError
  51.     return os.path.normcase(os.path.abspath(src)) == os.path.normcase(os.path.abspath(dst))
  52.  
  53.  
  54. def copyfile(src, dst):
  55.     '''Copy data from src to dst'''
  56.     if _samefile(src, dst):
  57.         raise Error, '`%s` and `%s` are the same file' % (src, dst)
  58.     
  59.     fsrc = None
  60.     fdst = None
  61.     
  62.     try:
  63.         fsrc = open(src, 'rb')
  64.         fdst = open(dst, 'wb')
  65.         copyfileobj(fsrc, fdst)
  66.     finally:
  67.         if fdst:
  68.             fdst.close()
  69.         
  70.         if fsrc:
  71.             fsrc.close()
  72.         
  73.  
  74.  
  75.  
  76. def copymode(src, dst):
  77.     '''Copy mode bits from src to dst'''
  78.     if hasattr(os, 'chmod'):
  79.         st = os.stat(src)
  80.         mode = stat.S_IMODE(st.st_mode)
  81.         os.chmod(dst, mode)
  82.     
  83.  
  84.  
  85. def copystat(src, dst):
  86.     '''Copy all stat info (mode bits, atime and mtime) from src to dst'''
  87.     st = os.stat(src)
  88.     mode = stat.S_IMODE(st.st_mode)
  89.     if hasattr(os, 'utime'):
  90.         os.utime(dst, (st.st_atime, st.st_mtime))
  91.     
  92.     if hasattr(os, 'chmod'):
  93.         os.chmod(dst, mode)
  94.     
  95.  
  96.  
  97. def copy(src, dst):
  98.     '''Copy data and mode bits ("cp src dst").
  99.  
  100.     The destination may be a directory.
  101.  
  102.     '''
  103.     if os.path.isdir(dst):
  104.         dst = os.path.join(dst, os.path.basename(src))
  105.     
  106.     copyfile(src, dst)
  107.     copymode(src, dst)
  108.  
  109.  
  110. def copy2(src, dst):
  111.     '''Copy data and all stat info ("cp -p src dst").
  112.  
  113.     The destination may be a directory.
  114.  
  115.     '''
  116.     if os.path.isdir(dst):
  117.         dst = os.path.join(dst, os.path.basename(src))
  118.     
  119.     copyfile(src, dst)
  120.     copystat(src, dst)
  121.  
  122.  
  123. def copytree(src, dst, symlinks = False):
  124.     '''Recursively copy a directory tree using copy2().
  125.  
  126.     The destination directory must not already exist.
  127.     If exception(s) occur, an Error is raised with a list of reasons.
  128.  
  129.     If the optional symlinks flag is true, symbolic links in the
  130.     source tree result in symbolic links in the destination tree; if
  131.     it is false, the contents of the files pointed to by symbolic
  132.     links are copied.
  133.  
  134.     XXX Consider this example code rather than the ultimate tool.
  135.  
  136.     '''
  137.     names = os.listdir(src)
  138.     os.mkdir(dst)
  139.     errors = []
  140.     for name in names:
  141.         srcname = os.path.join(src, name)
  142.         dstname = os.path.join(dst, name)
  143.         
  144.         try:
  145.             if symlinks and os.path.islink(srcname):
  146.                 linkto = os.readlink(srcname)
  147.                 os.symlink(linkto, dstname)
  148.             elif os.path.isdir(srcname):
  149.                 copytree(srcname, dstname, symlinks)
  150.             else:
  151.                 copy2(srcname, dstname)
  152.         continue
  153.         except (IOError, os.error):
  154.             why = None
  155.             errors.append((srcname, dstname, why))
  156.             continue
  157.         
  158.  
  159.     
  160.     if errors:
  161.         raise Error, errors
  162.     
  163.  
  164.  
  165. def rmtree(path, ignore_errors = False, onerror = None):
  166.     '''Recursively delete a directory tree.
  167.  
  168.     If ignore_errors is set, errors are ignored; otherwise, if onerror
  169.     is set, it is called to handle the error with arguments (func,
  170.     path, exc_info) where func is os.listdir, os.remove, or os.rmdir;
  171.     path is the argument to that function that caused it to fail; and
  172.     exc_info is a tuple returned by sys.exc_info().  If ignore_errors
  173.     is false and onerror is None, an exception is raised.
  174.  
  175.     '''
  176.     if ignore_errors:
  177.         
  178.         def onerror(*args):
  179.             pass
  180.  
  181.     elif onerror is None:
  182.         
  183.         def onerror(*args):
  184.             raise 
  185.  
  186.     
  187.     names = []
  188.     
  189.     try:
  190.         names = os.listdir(path)
  191.     except os.error:
  192.         err = None
  193.         onerror(os.listdir, path, sys.exc_info())
  194.  
  195.     for name in names:
  196.         fullname = os.path.join(path, name)
  197.         
  198.         try:
  199.             mode = os.lstat(fullname).st_mode
  200.         except os.error:
  201.             mode = 0
  202.  
  203.         if stat.S_ISDIR(mode):
  204.             rmtree(fullname, ignore_errors, onerror)
  205.             continue
  206.         
  207.         try:
  208.             os.remove(fullname)
  209.         continue
  210.         except os.error:
  211.             err = None
  212.             onerror(os.remove, fullname, sys.exc_info())
  213.             continue
  214.         
  215.  
  216.     
  217.     
  218.     try:
  219.         os.rmdir(path)
  220.     except os.error:
  221.         None<EXCEPTION MATCH>os.error
  222.         None<EXCEPTION MATCH>os.error
  223.         onerror(os.rmdir, path, sys.exc_info())
  224.     except:
  225.         None<EXCEPTION MATCH>os.error
  226.  
  227.  
  228.  
  229. def move(src, dst):
  230.     '''Recursively move a file or directory to another location.
  231.  
  232.     If the destination is on our current filesystem, then simply use
  233.     rename.  Otherwise, copy src to the dst and then remove src.
  234.     A lot more could be done here...  A look at a mv.c shows a lot of
  235.     the issues this implementation glosses over.
  236.  
  237.     '''
  238.     
  239.     try:
  240.         os.rename(src, dst)
  241.     except OSError:
  242.         if os.path.isdir(src):
  243.             if destinsrc(src, dst):
  244.                 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  245.             
  246.             copytree(src, dst, symlinks = True)
  247.             rmtree(src)
  248.         else:
  249.             copy2(src, dst)
  250.             os.unlink(src)
  251.     except:
  252.         os.path.isdir(src)
  253.  
  254.  
  255.  
  256. def destinsrc(src, dst):
  257.     return abspath(dst).startswith(abspath(src))
  258.  
  259.