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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Common pathname manipulations, WindowsNT/95 version.
  5.  
  6. Instead of importing this module directly, import os and refer to this
  7. module as os.path.
  8. '''
  9. import os
  10. import stat
  11. import sys
  12. __all__ = [
  13.     'normcase',
  14.     'isabs',
  15.     'join',
  16.     'splitdrive',
  17.     'split',
  18.     'splitext',
  19.     'basename',
  20.     'dirname',
  21.     'commonprefix',
  22.     'getsize',
  23.     'getmtime',
  24.     'getatime',
  25.     'getctime',
  26.     'islink',
  27.     'exists',
  28.     'isdir',
  29.     'isfile',
  30.     'ismount',
  31.     'walk',
  32.     'expanduser',
  33.     'expandvars',
  34.     'normpath',
  35.     'abspath',
  36.     'splitunc',
  37.     'curdir',
  38.     'pardir',
  39.     'sep',
  40.     'pathsep',
  41.     'defpath',
  42.     'altsep',
  43.     'extsep',
  44.     'devnull',
  45.     'realpath',
  46.     'supports_unicode_filenames']
  47. curdir = '.'
  48. pardir = '..'
  49. extsep = '.'
  50. sep = '\\'
  51. pathsep = ';'
  52. altsep = '/'
  53. defpath = '.;C:\\bin'
  54. if 'ce' in sys.builtin_module_names:
  55.     defpath = '\\Windows'
  56. elif 'os2' in sys.builtin_module_names:
  57.     altsep = '/'
  58.  
  59. devnull = 'nul'
  60.  
  61. def normcase(s):
  62.     '''Normalize case of pathname.
  63.  
  64.     Makes all characters lowercase and all slashes into backslashes.'''
  65.     return s.replace('/', '\\').lower()
  66.  
  67.  
  68. def isabs(s):
  69.     '''Test whether a path is absolute'''
  70.     s = splitdrive(s)[1]
  71.     if s != '':
  72.         pass
  73.     return s[:1] in '/\\'
  74.  
  75.  
  76. def join(a, *p):
  77.     '''Join two or more pathname components, inserting "\\" as needed'''
  78.     path = a
  79.     for b in p:
  80.         b_wins = 0
  81.         if path == '':
  82.             b_wins = 1
  83.         elif isabs(b):
  84.             if path[1:2] != ':' or b[1:2] == ':':
  85.                 b_wins = 1
  86.             elif (len(path) > 3 or len(path) == 3) and path[-1] not in '/\\':
  87.                 b_wins = 1
  88.             
  89.         
  90.         if b_wins:
  91.             path = b
  92.             continue
  93.         if not len(path) > 0:
  94.             raise AssertionError
  95.         if path[-1] in '/\\':
  96.             if b and b[0] in '/\\':
  97.                 path += b[1:]
  98.             else:
  99.                 path += b
  100.         b[0] in '/\\'
  101.         if path[-1] == ':':
  102.             path += b
  103.             continue
  104.         if b:
  105.             if b[0] in '/\\':
  106.                 path += b
  107.             else:
  108.                 path += '\\' + b
  109.         b[0] in '/\\'
  110.         path += '\\'
  111.     
  112.     return path
  113.  
  114.  
  115. def splitdrive(p):
  116.     '''Split a pathname into drive and path specifiers. Returns a 2-tuple
  117. "(drive,path)";  either part may be empty'''
  118.     if p[1:2] == ':':
  119.         return (p[0:2], p[2:])
  120.     
  121.     return ('', p)
  122.  
  123.  
  124. def splitunc(p):
  125.     """Split a pathname into UNC mount point and relative path specifiers.
  126.  
  127.     Return a 2-tuple (unc, rest); either part may be empty.
  128.     If unc is not empty, it has the form '//host/mount' (or similar
  129.     using backslashes).  unc+rest is always the input path.
  130.     Paths containing drive letters never have an UNC part.
  131.     """
  132.     if p[1:2] == ':':
  133.         return ('', p)
  134.     
  135.     firstTwo = p[0:2]
  136.     if firstTwo == '//' or firstTwo == '\\\\':
  137.         normp = normcase(p)
  138.         index = normp.find('\\', 2)
  139.         if index == -1:
  140.             return ('', p)
  141.         
  142.         index = normp.find('\\', index + 1)
  143.         if index == -1:
  144.             index = len(p)
  145.         
  146.         return (p[:index], p[index:])
  147.     
  148.     return ('', p)
  149.  
  150.  
  151. def split(p):
  152.     '''Split a pathname.
  153.  
  154.     Return tuple (head, tail) where tail is everything after the final slash.
  155.     Either part may be empty.'''
  156.     (d, p) = splitdrive(p)
  157.     i = len(p)
  158.     while i and p[i - 1] not in '/\\':
  159.         i = i - 1
  160.     head = p[:i]
  161.     tail = p[i:]
  162.     head2 = head
  163.     while head2 and head2[-1] in '/\\':
  164.         head2 = head2[:-1]
  165.     if not head2:
  166.         pass
  167.     head = head
  168.     return (d + head, tail)
  169.  
  170.  
  171. def splitext(p):
  172.     '''Split the extension from a pathname.
  173.  
  174.     Extension is everything from the last dot to the end.
  175.     Return (root, ext), either part may be empty.'''
  176.     i = p.rfind('.')
  177.     if i <= max(p.rfind('/'), p.rfind('\\')):
  178.         return (p, '')
  179.     else:
  180.         return (p[:i], p[i:])
  181.  
  182.  
  183. def basename(p):
  184.     '''Returns the final component of a pathname'''
  185.     return split(p)[1]
  186.  
  187.  
  188. def dirname(p):
  189.     '''Returns the directory component of a pathname'''
  190.     return split(p)[0]
  191.  
  192.  
  193. def commonprefix(m):
  194.     '''Given a list of pathnames, returns the longest common leading component'''
  195.     if not m:
  196.         return ''
  197.     
  198.     prefix = m[0]
  199.     for item in m:
  200.         for i in range(len(prefix)):
  201.             if prefix[:i + 1] != item[:i + 1]:
  202.                 prefix = prefix[:i]
  203.                 if i == 0:
  204.                     return ''
  205.                 
  206.                 break
  207.                 continue
  208.         
  209.     
  210.     return prefix
  211.  
  212.  
  213. def getsize(filename):
  214.     '''Return the size of a file, reported by os.stat()'''
  215.     return os.stat(filename).st_size
  216.  
  217.  
  218. def getmtime(filename):
  219.     '''Return the last modification time of a file, reported by os.stat()'''
  220.     return os.stat(filename).st_mtime
  221.  
  222.  
  223. def getatime(filename):
  224.     '''Return the last access time of a file, reported by os.stat()'''
  225.     return os.stat(filename).st_atime
  226.  
  227.  
  228. def getctime(filename):
  229.     '''Return the creation time of a file, reported by os.stat().'''
  230.     return os.stat(filename).st_ctime
  231.  
  232.  
  233. def islink(path):
  234.     '''Test for symbolic link.  On WindowsNT/95 always returns false'''
  235.     return False
  236.  
  237.  
  238. def exists(path):
  239.     '''Test whether a path exists'''
  240.     
  241.     try:
  242.         st = os.stat(path)
  243.     except os.error:
  244.         return False
  245.  
  246.     return True
  247.  
  248. lexists = exists
  249.  
  250. def isdir(path):
  251.     '''Test whether a path is a directory'''
  252.     
  253.     try:
  254.         st = os.stat(path)
  255.     except os.error:
  256.         return False
  257.  
  258.     return stat.S_ISDIR(st.st_mode)
  259.  
  260.  
  261. def isfile(path):
  262.     '''Test whether a path is a regular file'''
  263.     
  264.     try:
  265.         st = os.stat(path)
  266.     except os.error:
  267.         return False
  268.  
  269.     return stat.S_ISREG(st.st_mode)
  270.  
  271.  
  272. def ismount(path):
  273.     '''Test whether a path is a mount point (defined as root of drive)'''
  274.     (unc, rest) = splitunc(path)
  275.     if unc:
  276.         return rest in ('', '/', '\\')
  277.     
  278.     p = splitdrive(path)[1]
  279.     if len(p) == 1:
  280.         pass
  281.     return p[0] in '/\\'
  282.  
  283.  
  284. def walk(top, func, arg):
  285.     """Directory tree walk with callback function.
  286.  
  287.     For each directory in the directory tree rooted at top (including top
  288.     itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
  289.     dirname is the name of the directory, and fnames a list of the names of
  290.     the files and subdirectories in dirname (excluding '.' and '..').  func
  291.     may modify the fnames list in-place (e.g. via del or slice assignment),
  292.     and walk will only recurse into the subdirectories whose names remain in
  293.     fnames; this can be used to implement a filter, or to impose a specific
  294.     order of visiting.  No semantics are defined for, or required of, arg,
  295.     beyond that arg is always passed to func.  It can be used, e.g., to pass
  296.     a filename pattern, or a mutable object designed to accumulate
  297.     statistics.  Passing None for arg is common."""
  298.     
  299.     try:
  300.         names = os.listdir(top)
  301.     except os.error:
  302.         return None
  303.  
  304.     func(arg, top, names)
  305.     exceptions = ('.', '..')
  306.     for name in names:
  307.         if name not in exceptions:
  308.             name = join(top, name)
  309.             if isdir(name):
  310.                 walk(name, func, arg)
  311.             
  312.         isdir(name)
  313.     
  314.  
  315.  
  316. def expanduser(path):
  317.     '''Expand ~ and ~user constructs.
  318.  
  319.     If user or $HOME is unknown, do nothing.'''
  320.     if path[:1] != '~':
  321.         return path
  322.     
  323.     i = 1
  324.     n = len(path)
  325.     while i < n and path[i] not in '/\\':
  326.         i = i + 1
  327.     if i == 1:
  328.         if 'HOME' in os.environ:
  329.             userhome = os.environ['HOME']
  330.         elif 'HOMEPATH' not in os.environ:
  331.             return path
  332.         else:
  333.             
  334.             try:
  335.                 drive = os.environ['HOMEDRIVE']
  336.             except KeyError:
  337.                 drive = ''
  338.  
  339.             userhome = join(drive, os.environ['HOMEPATH'])
  340.     else:
  341.         return path
  342.     return userhome + path[i:]
  343.  
  344.  
  345. def expandvars(path):
  346.     '''Expand shell variables of form $var and ${var}.
  347.  
  348.     Unknown variables are left unchanged.'''
  349.     if '$' not in path:
  350.         return path
  351.     
  352.     import string
  353.     varchars = string.ascii_letters + string.digits + '_-'
  354.     res = ''
  355.     index = 0
  356.     pathlen = len(path)
  357.     while index < pathlen:
  358.         c = path[index]
  359.         if c == "'":
  360.             path = path[index + 1:]
  361.             pathlen = len(path)
  362.             
  363.             try:
  364.                 index = path.index("'")
  365.                 res = res + "'" + path[:index + 1]
  366.             except ValueError:
  367.                 res = res + path
  368.                 index = pathlen - 1
  369.             except:
  370.                 None<EXCEPTION MATCH>ValueError
  371.             
  372.  
  373.         None<EXCEPTION MATCH>ValueError
  374.         if c == '$':
  375.             if path[index + 1:index + 2] == '$':
  376.                 res = res + c
  377.                 index = index + 1
  378.             elif path[index + 1:index + 2] == '{':
  379.                 path = path[index + 2:]
  380.                 pathlen = len(path)
  381.                 
  382.                 try:
  383.                     index = path.index('}')
  384.                     var = path[:index]
  385.                     if var in os.environ:
  386.                         res = res + os.environ[var]
  387.                 except ValueError:
  388.                     res = res + path
  389.                     index = pathlen - 1
  390.                 except:
  391.                     None<EXCEPTION MATCH>ValueError
  392.                 
  393.  
  394.             None<EXCEPTION MATCH>ValueError
  395.             var = ''
  396.             index = index + 1
  397.             c = path[index:index + 1]
  398.             while c != '' and c in varchars:
  399.                 var = var + c
  400.                 index = index + 1
  401.                 c = path[index:index + 1]
  402.             if var in os.environ:
  403.                 res = res + os.environ[var]
  404.             
  405.             if c != '':
  406.                 res = res + c
  407.             
  408.         else:
  409.             res = res + c
  410.         index = index + 1
  411.     return res
  412.  
  413.  
  414. def normpath(path):
  415.     '''Normalize path, eliminating double slashes, etc.'''
  416.     path = path.replace('/', '\\')
  417.     (prefix, path) = splitdrive(path)
  418.     if prefix == '':
  419.         while path[:1] == '\\':
  420.             prefix = prefix + '\\'
  421.             path = path[1:]
  422.     elif path.startswith('\\'):
  423.         prefix = prefix + '\\'
  424.         path = path.lstrip('\\')
  425.     
  426.     comps = path.split('\\')
  427.     i = 0
  428.     while i < len(comps):
  429.         if comps[i] in ('.', ''):
  430.             del comps[i]
  431.             continue
  432.         if comps[i] == '..':
  433.             if i > 0 and comps[i - 1] != '..':
  434.                 del comps[i - 1:i + 1]
  435.                 i -= 1
  436.             elif i == 0 and prefix.endswith('\\'):
  437.                 del comps[i]
  438.             else:
  439.                 i += 1
  440.         prefix.endswith('\\')
  441.         i += 1
  442.     if not prefix and not comps:
  443.         comps.append('.')
  444.     
  445.     return prefix + '\\'.join(comps)
  446.  
  447.  
  448. def abspath(path):
  449.     '''Return the absolute version of a path'''
  450.     global abspath
  451.     
  452.     try:
  453.         _getfullpathname = _getfullpathname
  454.         import nt
  455.     except ImportError:
  456.         
  457.         def _abspath(path):
  458.             if not isabs(path):
  459.                 path = join(os.getcwd(), path)
  460.             
  461.             return normpath(path)
  462.  
  463.         abspath = _abspath
  464.         return _abspath(path)
  465.  
  466.     if path:
  467.         
  468.         try:
  469.             path = _getfullpathname(path)
  470.         except WindowsError:
  471.             pass
  472.         except:
  473.             None<EXCEPTION MATCH>WindowsError
  474.         
  475.  
  476.     None<EXCEPTION MATCH>WindowsError
  477.     path = os.getcwd()
  478.     return normpath(path)
  479.  
  480. realpath = abspath
  481. if hasattr(sys, 'getwindowsversion'):
  482.     pass
  483. supports_unicode_filenames = sys.getwindowsversion()[3] >= 2
  484.