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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Common operations on Posix pathnames.
  5.  
  6. Instead of importing this module directly, import os and refer to
  7. this module as os.path.  The "os.path" name is an alias for this
  8. module on Posix systems; on other systems (e.g. Mac, Windows),
  9. os.path provides the same operations in a manner specific to that
  10. platform, and is an alias to another module (e.g. macpath, ntpath).
  11.  
  12. Some of this can actually be useful on non-Posix systems too, e.g.
  13. for manipulation of the pathname component of URLs.
  14. '''
  15. import os
  16. import stat
  17. __all__ = [
  18.     'normcase',
  19.     'isabs',
  20.     'join',
  21.     'splitdrive',
  22.     'split',
  23.     'splitext',
  24.     'basename',
  25.     'dirname',
  26.     'commonprefix',
  27.     'getsize',
  28.     'getmtime',
  29.     'getatime',
  30.     'getctime',
  31.     'islink',
  32.     'exists',
  33.     'isdir',
  34.     'isfile',
  35.     'ismount',
  36.     'walk',
  37.     'expanduser',
  38.     'expandvars',
  39.     'normpath',
  40.     'abspath',
  41.     'samefile',
  42.     'sameopenfile',
  43.     'samestat',
  44.     'curdir',
  45.     'pardir',
  46.     'sep',
  47.     'pathsep',
  48.     'defpath',
  49.     'altsep',
  50.     'extsep',
  51.     'devnull',
  52.     'realpath',
  53.     'supports_unicode_filenames']
  54. curdir = '.'
  55. pardir = '..'
  56. extsep = '.'
  57. sep = '/'
  58. pathsep = ':'
  59. defpath = ':/bin:/usr/bin'
  60. altsep = None
  61. devnull = '/dev/null'
  62.  
  63. def normcase(s):
  64.     '''Normalize case of pathname.  Has no effect under Posix'''
  65.     return s
  66.  
  67.  
  68. def isabs(s):
  69.     '''Test whether a path is absolute'''
  70.     return s.startswith('/')
  71.  
  72.  
  73. def join(a, *p):
  74.     """Join two or more pathname components, inserting '/' as needed"""
  75.     path = a
  76.     for b in p:
  77.         if b.startswith('/'):
  78.             path = b
  79.             continue
  80.         if path == '' or path.endswith('/'):
  81.             path += b
  82.             continue
  83.         path += '/' + b
  84.     
  85.     return path
  86.  
  87.  
  88. def split(p):
  89.     '''Split a pathname.  Returns tuple "(head, tail)" where "tail" is
  90.     everything after the final slash.  Either part may be empty.'''
  91.     i = p.rfind('/') + 1
  92.     head = p[:i]
  93.     tail = p[i:]
  94.     if head and head != '/' * len(head):
  95.         head = head.rstrip('/')
  96.     
  97.     return (head, tail)
  98.  
  99.  
  100. def splitext(p):
  101.     '''Split the extension from a pathname.  Extension is everything from the
  102.     last dot to the end.  Returns "(root, ext)", either part may be empty.'''
  103.     i = p.rfind('.')
  104.     if i <= p.rfind('/'):
  105.         return (p, '')
  106.     else:
  107.         return (p[:i], p[i:])
  108.  
  109.  
  110. def splitdrive(p):
  111.     '''Split a pathname into drive and path. On Posix, drive is always
  112.     empty.'''
  113.     return ('', p)
  114.  
  115.  
  116. def basename(p):
  117.     '''Returns the final component of a pathname'''
  118.     return split(p)[1]
  119.  
  120.  
  121. def dirname(p):
  122.     '''Returns the directory component of a pathname'''
  123.     return split(p)[0]
  124.  
  125.  
  126. def commonprefix(m):
  127.     '''Given a list of pathnames, returns the longest common leading component'''
  128.     if not m:
  129.         return ''
  130.     
  131.     s1 = min(m)
  132.     s2 = max(m)
  133.     n = min(len(s1), len(s2))
  134.     for i in xrange(n):
  135.         if s1[i] != s2[i]:
  136.             return s1[:i]
  137.             continue
  138.     
  139.     return s1[:n]
  140.  
  141.  
  142. def getsize(filename):
  143.     '''Return the size of a file, reported by os.stat().'''
  144.     return os.stat(filename).st_size
  145.  
  146.  
  147. def getmtime(filename):
  148.     '''Return the last modification time of a file, reported by os.stat().'''
  149.     return os.stat(filename).st_mtime
  150.  
  151.  
  152. def getatime(filename):
  153.     '''Return the last access time of a file, reported by os.stat().'''
  154.     return os.stat(filename).st_atime
  155.  
  156.  
  157. def getctime(filename):
  158.     '''Return the metadata change time of a file, reported by os.stat().'''
  159.     return os.stat(filename).st_ctime
  160.  
  161.  
  162. def islink(path):
  163.     '''Test whether a path is a symbolic link'''
  164.     
  165.     try:
  166.         st = os.lstat(path)
  167.     except (os.error, AttributeError):
  168.         return False
  169.  
  170.     return stat.S_ISLNK(st.st_mode)
  171.  
  172.  
  173. def exists(path):
  174.     '''Test whether a path exists.  Returns False for broken symbolic links'''
  175.     
  176.     try:
  177.         st = os.stat(path)
  178.     except os.error:
  179.         return False
  180.  
  181.     return True
  182.  
  183.  
  184. def lexists(path):
  185.     '''Test whether a path exists.  Returns True for broken symbolic links'''
  186.     
  187.     try:
  188.         st = os.lstat(path)
  189.     except os.error:
  190.         return False
  191.  
  192.     return True
  193.  
  194.  
  195. def isdir(path):
  196.     '''Test whether a path is a directory'''
  197.     
  198.     try:
  199.         st = os.stat(path)
  200.     except os.error:
  201.         return False
  202.  
  203.     return stat.S_ISDIR(st.st_mode)
  204.  
  205.  
  206. def isfile(path):
  207.     '''Test whether a path is a regular file'''
  208.     
  209.     try:
  210.         st = os.stat(path)
  211.     except os.error:
  212.         return False
  213.  
  214.     return stat.S_ISREG(st.st_mode)
  215.  
  216.  
  217. def samefile(f1, f2):
  218.     '''Test whether two pathnames reference the same actual file'''
  219.     s1 = os.stat(f1)
  220.     s2 = os.stat(f2)
  221.     return samestat(s1, s2)
  222.  
  223.  
  224. def sameopenfile(fp1, fp2):
  225.     '''Test whether two open file objects reference the same file'''
  226.     s1 = os.fstat(fp1)
  227.     s2 = os.fstat(fp2)
  228.     return samestat(s1, s2)
  229.  
  230.  
  231. def samestat(s1, s2):
  232.     '''Test whether two stat buffers reference the same file'''
  233.     if s1.st_ino == s2.st_ino:
  234.         pass
  235.     return s1.st_dev == s2.st_dev
  236.  
  237.  
  238. def ismount(path):
  239.     '''Test whether a path is a mount point'''
  240.     
  241.     try:
  242.         s1 = os.stat(path)
  243.         s2 = os.stat(join(path, '..'))
  244.     except os.error:
  245.         return False
  246.  
  247.     dev1 = s1.st_dev
  248.     dev2 = s2.st_dev
  249.     if dev1 != dev2:
  250.         return True
  251.     
  252.     ino1 = s1.st_ino
  253.     ino2 = s2.st_ino
  254.     if ino1 == ino2:
  255.         return True
  256.     
  257.     return False
  258.  
  259.  
  260. def walk(top, func, arg):
  261.     """Directory tree walk with callback function.
  262.  
  263.     For each directory in the directory tree rooted at top (including top
  264.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  265.     dirname is the name of the directory, and fnames a list of the names of
  266.     the files and subdirectories in dirname (excluding '.' and '..').  func
  267.     may modify the fnames list in-place (e.g. via del or slice assignment),
  268.     and walk will only recurse into the subdirectories whose names remain in
  269.     fnames; this can be used to implement a filter, or to impose a specific
  270.     order of visiting.  No semantics are defined for, or required of, arg,
  271.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  272.     a filename pattern, or a mutable object designed to accumulate
  273.     statistics.  Passing None for arg is common."""
  274.     
  275.     try:
  276.         names = os.listdir(top)
  277.     except os.error:
  278.         return None
  279.  
  280.     func(arg, top, names)
  281.     for name in names:
  282.         name = join(top, name)
  283.         
  284.         try:
  285.             st = os.lstat(name)
  286.         except os.error:
  287.             continue
  288.  
  289.         if stat.S_ISDIR(st.st_mode):
  290.             walk(name, func, arg)
  291.             continue
  292.     
  293.  
  294.  
  295. def expanduser(path):
  296.     '''Expand ~ and ~user constructions.  If user or $HOME is unknown,
  297.     do nothing.'''
  298.     if not path.startswith('~'):
  299.         return path
  300.     
  301.     i = path.find('/', 1)
  302.     if i < 0:
  303.         i = len(path)
  304.     
  305.     if i == 1:
  306.         if 'HOME' not in os.environ:
  307.             import pwd
  308.             userhome = pwd.getpwuid(os.getuid()).pw_dir
  309.         else:
  310.             userhome = os.environ['HOME']
  311.     else:
  312.         import pwd
  313.         
  314.         try:
  315.             pwent = pwd.getpwnam(path[1:i])
  316.         except KeyError:
  317.             return path
  318.  
  319.         userhome = pwent.pw_dir
  320.     if userhome.endswith('/'):
  321.         i += 1
  322.     
  323.     return userhome + path[i:]
  324.  
  325. _varprog = None
  326.  
  327. def expandvars(path):
  328.     '''Expand shell variables of form $var and ${var}.  Unknown variables
  329.     are left unchanged.'''
  330.     global _varprog
  331.     if '$' not in path:
  332.         return path
  333.     
  334.     if not _varprog:
  335.         import re
  336.         _varprog = re.compile('\\$(\\w+|\\{[^}]*\\})')
  337.     
  338.     i = 0
  339.     while True:
  340.         m = _varprog.search(path, i)
  341.         if not m:
  342.             break
  343.         
  344.         (i, j) = m.span(0)
  345.         name = m.group(1)
  346.         if name.startswith('{') and name.endswith('}'):
  347.             name = name[1:-1]
  348.         
  349.         if name in os.environ:
  350.             tail = path[j:]
  351.             path = path[:i] + os.environ[name]
  352.             i = len(path)
  353.             path += tail
  354.             continue
  355.         i = j
  356.     return path
  357.  
  358.  
  359. def normpath(path):
  360.     '''Normalize path, eliminating double slashes, etc.'''
  361.     if path == '':
  362.         return '.'
  363.     
  364.     initial_slashes = path.startswith('/')
  365.     if initial_slashes and path.startswith('//') and not path.startswith('///'):
  366.         initial_slashes = 2
  367.     
  368.     comps = path.split('/')
  369.     new_comps = []
  370.     for comp in comps:
  371.         if comp in ('', '.'):
  372.             continue
  373.         
  374.         if not comp != '..':
  375.             if (not initial_slashes or not new_comps or new_comps) and new_comps[-1] == '..':
  376.                 new_comps.append(comp)
  377.                 continue
  378.         if new_comps:
  379.             new_comps.pop()
  380.             continue
  381.     
  382.     comps = new_comps
  383.     path = '/'.join(comps)
  384.     if initial_slashes:
  385.         path = '/' * initial_slashes + path
  386.     
  387.     if not path:
  388.         pass
  389.     return '.'
  390.  
  391.  
  392. def abspath(path):
  393.     '''Return an absolute path.'''
  394.     if not isabs(path):
  395.         path = join(os.getcwd(), path)
  396.     
  397.     return normpath(path)
  398.  
  399.  
  400. def realpath(filename):
  401.     '''Return the canonical path of the specified filename, eliminating any
  402. symbolic links encountered in the path.'''
  403.     if isabs(filename):
  404.         bits = [
  405.             '/'] + filename.split('/')[1:]
  406.     else:
  407.         bits = filename.split('/')
  408.     for i in range(2, len(bits) + 1):
  409.         component = join(*bits[0:i])
  410.         if islink(component):
  411.             resolved = _resolve_link(component)
  412.             if resolved is None:
  413.                 return abspath(join(*[
  414.                     component] + bits[i:]))
  415.             else:
  416.                 newpath = join(*[
  417.                     resolved] + bits[i:])
  418.                 return realpath(newpath)
  419.         resolved is None
  420.     
  421.     return abspath(filename)
  422.  
  423.  
  424. def _resolve_link(path):
  425.     """Internal helper function.  Takes a path and follows symlinks
  426.     until we either arrive at something that isn't a symlink, or
  427.     encounter a path we've seen before (meaning that there's a loop).
  428.     """
  429.     paths_seen = []
  430.     while islink(path):
  431.         if path in paths_seen:
  432.             return None
  433.         
  434.         paths_seen.append(path)
  435.         resolved = os.readlink(path)
  436.         if not isabs(resolved):
  437.             dir = dirname(path)
  438.             path = normpath(join(dir, resolved))
  439.             continue
  440.         path = normpath(resolved)
  441.     return path
  442.  
  443. supports_unicode_filenames = False
  444.