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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Pathname and path-related operations for the Macintosh.'''
  5. import os
  6. from stat import *
  7. __all__ = [
  8.     'normcase',
  9.     'isabs',
  10.     'join',
  11.     'splitdrive',
  12.     'split',
  13.     'splitext',
  14.     'basename',
  15.     'dirname',
  16.     'commonprefix',
  17.     'getsize',
  18.     'getmtime',
  19.     'getatime',
  20.     'getctime',
  21.     'islink',
  22.     'exists',
  23.     'isdir',
  24.     'isfile',
  25.     'walk',
  26.     'expanduser',
  27.     'expandvars',
  28.     'normpath',
  29.     'abspath',
  30.     'curdir',
  31.     'pardir',
  32.     'sep',
  33.     'pathsep',
  34.     'defpath',
  35.     'altsep',
  36.     'extsep',
  37.     'devnull',
  38.     'realpath',
  39.     'supports_unicode_filenames']
  40. curdir = ':'
  41. pardir = '::'
  42. extsep = '.'
  43. sep = ':'
  44. pathsep = '\n'
  45. defpath = ':'
  46. altsep = None
  47. devnull = 'Dev:Null'
  48.  
  49. def normcase(path):
  50.     return path.lower()
  51.  
  52.  
  53. def isabs(s):
  54.     '''Return true if a path is absolute.
  55.     On the Mac, relative paths begin with a colon,
  56.     but as a special case, paths with no colons at all are also relative.
  57.     Anything else is absolute (the string up to the first colon is the
  58.     volume name).'''
  59.     if ':' in s:
  60.         pass
  61.     return s[0] != ':'
  62.  
  63.  
  64. def join(s, *p):
  65.     path = s
  66.     for t in p:
  67.         if not s or isabs(t):
  68.             path = t
  69.             continue
  70.         
  71.         if t[:1] == ':':
  72.             t = t[1:]
  73.         
  74.         if ':' not in path:
  75.             path = ':' + path
  76.         
  77.         if path[-1:] != ':':
  78.             path = path + ':'
  79.         
  80.         path = path + t
  81.     
  82.     return path
  83.  
  84.  
  85. def split(s):
  86.     '''Split a pathname into two parts: the directory leading up to the final
  87.     bit, and the basename (the filename, without colons, in that directory).
  88.     The result (s, t) is such that join(s, t) yields the original argument.'''
  89.     if ':' not in s:
  90.         return ('', s)
  91.     
  92.     colon = 0
  93.     for i in range(len(s)):
  94.         if s[i] == ':':
  95.             colon = i + 1
  96.             continue
  97.     
  98.     path = s[:colon - 1]
  99.     file = s[colon:]
  100.     if path and ':' not in path:
  101.         path = path + ':'
  102.     
  103.     return (path, file)
  104.  
  105.  
  106. def splitext(p):
  107.     '''Split a path into root and extension.
  108.     The extension is everything starting at the last dot in the last
  109.     pathname component; the root is everything before that.
  110.     It is always true that root + ext == p.'''
  111.     i = p.rfind('.')
  112.     if i <= p.rfind(':'):
  113.         return (p, '')
  114.     else:
  115.         return (p[:i], p[i:])
  116.  
  117.  
  118. def splitdrive(p):
  119.     """Split a pathname into a drive specification and the rest of the
  120.     path.  Useful on DOS/Windows/NT; on the Mac, the drive is always
  121.     empty (don't use the volume name -- it doesn't have the same
  122.     syntactic and semantic oddities as DOS drive letters, such as there
  123.     being a separate current directory per drive)."""
  124.     return ('', p)
  125.  
  126.  
  127. def dirname(s):
  128.     return split(s)[0]
  129.  
  130.  
  131. def basename(s):
  132.     return split(s)[1]
  133.  
  134.  
  135. def ismount(s):
  136.     if not isabs(s):
  137.         return False
  138.     
  139.     components = split(s)
  140.     if len(components) == 2:
  141.         pass
  142.     return components[1] == ''
  143.  
  144.  
  145. def isdir(s):
  146.     '''Return true if the pathname refers to an existing directory.'''
  147.     
  148.     try:
  149.         st = os.stat(s)
  150.     except os.error:
  151.         return 0
  152.  
  153.     return S_ISDIR(st.st_mode)
  154.  
  155.  
  156. def getsize(filename):
  157.     '''Return the size of a file, reported by os.stat().'''
  158.     return os.stat(filename).st_size
  159.  
  160.  
  161. def getmtime(filename):
  162.     '''Return the last modification time of a file, reported by os.stat().'''
  163.     return os.stat(filename).st_mtime
  164.  
  165.  
  166. def getatime(filename):
  167.     '''Return the last access time of a file, reported by os.stat().'''
  168.     return os.stat(filename).st_atime
  169.  
  170.  
  171. def islink(s):
  172.     '''Return true if the pathname refers to a symbolic link.'''
  173.     
  174.     try:
  175.         import Carbon.File as Carbon
  176.         return Carbon.File.ResolveAliasFile(s, 0)[2]
  177.     except:
  178.         return False
  179.  
  180.  
  181.  
  182. def isfile(s):
  183.     '''Return true if the pathname refers to an existing regular file.'''
  184.     
  185.     try:
  186.         st = os.stat(s)
  187.     except os.error:
  188.         return False
  189.  
  190.     return S_ISREG(st.st_mode)
  191.  
  192.  
  193. def getctime(filename):
  194.     '''Return the creation time of a file, reported by os.stat().'''
  195.     return os.stat(filename).st_ctime
  196.  
  197.  
  198. def exists(s):
  199.     '''Test whether a path exists.  Returns False for broken symbolic links'''
  200.     
  201.     try:
  202.         st = os.stat(s)
  203.     except os.error:
  204.         return False
  205.  
  206.     return True
  207.  
  208.  
  209. def lexists(path):
  210.     '''Test whether a path exists.  Returns True for broken symbolic links'''
  211.     
  212.     try:
  213.         st = os.lstat(path)
  214.     except os.error:
  215.         return False
  216.  
  217.     return True
  218.  
  219.  
  220. def commonprefix(m):
  221.     '''Given a list of pathnames, returns the longest common leading component'''
  222.     if not m:
  223.         return ''
  224.     
  225.     prefix = m[0]
  226.     for item in m:
  227.         for i in range(len(prefix)):
  228.             if prefix[:i + 1] != item[:i + 1]:
  229.                 prefix = prefix[:i]
  230.                 if i == 0:
  231.                     return ''
  232.                 
  233.                 break
  234.                 continue
  235.         
  236.     
  237.     return prefix
  238.  
  239.  
  240. def expandvars(path):
  241.     '''Dummy to retain interface-compatibility with other operating systems.'''
  242.     return path
  243.  
  244.  
  245. def expanduser(path):
  246.     '''Dummy to retain interface-compatibility with other operating systems.'''
  247.     return path
  248.  
  249.  
  250. class norm_error(Exception):
  251.     '''Path cannot be normalized'''
  252.     pass
  253.  
  254.  
  255. def normpath(s):
  256.     '''Normalize a pathname.  Will return the same result for
  257.     equivalent paths.'''
  258.     if ':' not in s:
  259.         return ':' + s
  260.     
  261.     comps = s.split(':')
  262.     i = 1
  263.     while i < len(comps) - 1:
  264.         if comps[i] == '' and comps[i - 1] != '':
  265.             if i > 1:
  266.                 del comps[i - 1:i + 1]
  267.                 i = i - 1
  268.             else:
  269.                 raise norm_error, 'Cannot use :: immediately after volume name'
  270.         i > 1
  271.         i = i + 1
  272.     s = ':'.join(comps)
  273.     if s[-1] == ':' and len(comps) > 2 and s != ':' * len(s):
  274.         s = s[:-1]
  275.     
  276.     return s
  277.  
  278.  
  279. def walk(top, func, arg):
  280.     """Directory tree walk with callback function.
  281.  
  282.     For each directory in the directory tree rooted at top (including top
  283.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  284.     dirname is the name of the directory, and fnames a list of the names of
  285.     the files and subdirectories in dirname (excluding '.' and '..').  func
  286.     may modify the fnames list in-place (e.g. via del or slice assignment),
  287.     and walk will only recurse into the subdirectories whose names remain in
  288.     fnames; this can be used to implement a filter, or to impose a specific
  289.     order of visiting.  No semantics are defined for, or required of, arg,
  290.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  291.     a filename pattern, or a mutable object designed to accumulate
  292.     statistics.  Passing None for arg is common."""
  293.     
  294.     try:
  295.         names = os.listdir(top)
  296.     except os.error:
  297.         return None
  298.  
  299.     func(arg, top, names)
  300.     for name in names:
  301.         name = join(top, name)
  302.         if isdir(name) and not islink(name):
  303.             walk(name, func, arg)
  304.             continue
  305.     
  306.  
  307.  
  308. def abspath(path):
  309.     '''Return an absolute path.'''
  310.     if not isabs(path):
  311.         path = join(os.getcwd(), path)
  312.     
  313.     return normpath(path)
  314.  
  315.  
  316. def realpath(path):
  317.     path = abspath(path)
  318.     
  319.     try:
  320.         import Carbon.File as Carbon
  321.     except ImportError:
  322.         return path
  323.  
  324.     if not path:
  325.         return path
  326.     
  327.     components = path.split(':')
  328.     path = components[0] + ':'
  329.     for c in components[1:]:
  330.         path = join(path, c)
  331.         path = Carbon.File.FSResolveAliasFile(path, 1)[0].as_pathname()
  332.     
  333.     return path
  334.  
  335. supports_unicode_filenames = False
  336.