1992-03-31 14:54:35 -04:00
|
|
|
# Module 'posixpath' -- common operations on POSIX pathnames
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
import posix
|
1990-10-21 13:17:34 -03:00
|
|
|
import stat
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
|
1992-01-14 14:29:32 -04:00
|
|
|
# Normalize the case of a pathname. Trivial in Posix, string.lower on Mac.
|
|
|
|
# On MS-DOS this may also turn slashes into backslashes; however, other
|
|
|
|
# normalizations (such as optimizing '../' away) are not allowed
|
|
|
|
# (another function should be defined to do that).
|
|
|
|
|
|
|
|
def normcase(s):
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
# Return wheter a path is absolute.
|
|
|
|
# Trivial in Posix, harder on the Mac or MS-DOS.
|
|
|
|
|
|
|
|
def isabs(s):
|
|
|
|
return s[:1] == '/'
|
|
|
|
|
|
|
|
|
1991-08-16 10:27:58 -03:00
|
|
|
# Join two pathnames.
|
1992-01-14 14:29:32 -04:00
|
|
|
# Ignore the first part if the second part is absolute.
|
1991-08-16 10:27:58 -03:00
|
|
|
# Insert a '/' unless the first part is empty or already ends in '/'.
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1991-08-16 10:27:58 -03:00
|
|
|
def join(a, b):
|
1992-01-01 15:35:13 -04:00
|
|
|
if b[:1] == '/': return b
|
|
|
|
if a == '' or a[-1:] == '/': return a + b
|
1991-08-16 10:27:58 -03:00
|
|
|
# Note: join('x', '') returns 'x/'; is this what we want?
|
1990-10-13 16:23:40 -03:00
|
|
|
return a + '/' + b
|
|
|
|
|
|
|
|
|
1992-03-31 14:54:35 -04:00
|
|
|
# Split a path in head (everything up to the last '/') and tail (the
|
|
|
|
# rest). If the original path ends in '/' but is not the root, this
|
|
|
|
# '/' is stripped. After the trailing '/' is stripped, the invariant
|
|
|
|
# join(head, tail) == p holds.
|
|
|
|
# The resulting head won't end in '/' unless it is the root.
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def split(p):
|
1992-03-31 14:54:35 -04:00
|
|
|
if p[-1:] == '/' and p <> '/'*len(p):
|
|
|
|
while p[-1] == '/':
|
|
|
|
p = p[:-1]
|
1990-10-13 16:23:40 -03:00
|
|
|
head, tail = '', ''
|
|
|
|
for c in p:
|
|
|
|
tail = tail + c
|
1992-01-01 15:35:13 -04:00
|
|
|
if c == '/':
|
1990-10-13 16:23:40 -03:00
|
|
|
head, tail = head + tail, ''
|
1992-03-31 14:54:35 -04:00
|
|
|
if head[-1:] == '/' and head <> '/'*len(head):
|
|
|
|
while head[-1] == '/':
|
|
|
|
head = head[:-1]
|
1990-10-13 16:23:40 -03:00
|
|
|
return head, tail
|
|
|
|
|
|
|
|
|
1991-08-16 10:27:58 -03:00
|
|
|
# Split a path in root and extension.
|
|
|
|
# The extension is everything starting at the first dot in the last
|
|
|
|
# pathname component; the root is everything before that.
|
1992-01-14 14:29:32 -04:00
|
|
|
# It is always true that root + ext == p.
|
|
|
|
|
1991-08-16 10:27:58 -03:00
|
|
|
def splitext(p):
|
|
|
|
root, ext = '', ''
|
|
|
|
for c in p:
|
1992-01-01 15:35:13 -04:00
|
|
|
if c == '/':
|
1991-08-16 10:27:58 -03:00
|
|
|
root, ext = root + ext + c, ''
|
1992-01-01 15:35:13 -04:00
|
|
|
elif c == '.' or ext:
|
1991-08-16 10:27:58 -03:00
|
|
|
ext = ext + c
|
|
|
|
else:
|
|
|
|
root = root + c
|
|
|
|
return root, ext
|
|
|
|
|
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
# Return the tail (basename) part of a path.
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def basename(p):
|
|
|
|
return split(p)[1]
|
|
|
|
|
|
|
|
|
1992-11-05 06:43:02 -04:00
|
|
|
# Return the head (dirname) part of a path.
|
|
|
|
|
|
|
|
def dirname(p):
|
|
|
|
return split(p)[0]
|
|
|
|
|
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
# Return the longest prefix of all list elements.
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def commonprefix(m):
|
|
|
|
if not m: return ''
|
|
|
|
prefix = m[0]
|
|
|
|
for item in m:
|
|
|
|
for i in range(len(prefix)):
|
|
|
|
if prefix[:i+1] <> item[:i+1]:
|
|
|
|
prefix = prefix[:i]
|
1992-01-01 15:35:13 -04:00
|
|
|
if i == 0: return ''
|
1990-10-13 16:23:40 -03:00
|
|
|
break
|
|
|
|
return prefix
|
|
|
|
|
|
|
|
|
1992-01-14 14:29:32 -04:00
|
|
|
# Is a path a symbolic link?
|
|
|
|
# This will always return false on systems where posix.lstat doesn't exist.
|
|
|
|
|
|
|
|
def islink(path):
|
|
|
|
try:
|
|
|
|
st = posix.lstat(path)
|
|
|
|
except (posix.error, AttributeError):
|
|
|
|
return 0
|
|
|
|
return stat.S_ISLNK(st[stat.ST_MODE])
|
|
|
|
|
|
|
|
|
|
|
|
# Does a path exist?
|
|
|
|
# This is false for dangling symbolic links.
|
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def exists(path):
|
|
|
|
try:
|
|
|
|
st = posix.stat(path)
|
|
|
|
except posix.error:
|
|
|
|
return 0
|
|
|
|
return 1
|
|
|
|
|
|
|
|
|
|
|
|
# Is a path a posix directory?
|
1992-01-14 14:29:32 -04:00
|
|
|
# This follows symbolic links, so both islink() and isdir() can be true
|
|
|
|
# for the same path.
|
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def isdir(path):
|
|
|
|
try:
|
|
|
|
st = posix.stat(path)
|
|
|
|
except posix.error:
|
|
|
|
return 0
|
1990-10-21 13:17:34 -03:00
|
|
|
return stat.S_ISDIR(st[stat.ST_MODE])
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
|
1992-03-31 14:54:35 -04:00
|
|
|
# Is a path a regular file?
|
1992-01-14 14:29:32 -04:00
|
|
|
# This follows symbolic links, so both islink() and isdir() can be true
|
|
|
|
# for the same path.
|
|
|
|
|
|
|
|
def isfile(path):
|
1990-10-13 16:23:40 -03:00
|
|
|
try:
|
1992-01-14 14:29:32 -04:00
|
|
|
st = posix.stat(path)
|
|
|
|
except posix.error:
|
1990-10-13 16:23:40 -03:00
|
|
|
return 0
|
1992-01-14 14:29:32 -04:00
|
|
|
return stat.S_ISREG(st[stat.ST_MODE])
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
|
1991-11-12 11:37:40 -04:00
|
|
|
# Are two filenames really pointing to the same file?
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1991-11-12 11:37:40 -04:00
|
|
|
def samefile(f1, f2):
|
|
|
|
s1 = posix.stat(f1)
|
|
|
|
s2 = posix.stat(f2)
|
|
|
|
return samestat(s1, s2)
|
|
|
|
|
|
|
|
|
|
|
|
# Are two open files really referencing the same file?
|
|
|
|
# (Not necessarily the same file descriptor!)
|
|
|
|
# XXX Oops, posix.fstat() doesn't exist yet!
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1991-11-12 11:37:40 -04:00
|
|
|
def sameopenfile(fp1, fp2):
|
|
|
|
s1 = posix.fstat(fp1)
|
|
|
|
s2 = posix.fstat(fp2)
|
|
|
|
return samestat(s1, s2)
|
|
|
|
|
|
|
|
|
|
|
|
# Are two stat buffers (obtained from stat, fstat or lstat)
|
|
|
|
# describing the same file?
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1991-11-12 11:37:40 -04:00
|
|
|
def samestat(s1, s2):
|
1992-01-01 15:35:13 -04:00
|
|
|
return s1[stat.ST_INO] == s2[stat.ST_INO] and \
|
1992-05-06 08:36:49 -03:00
|
|
|
s1[stat.ST_DEV] == s2[stat.ST_DEV]
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Is a path a mount point?
|
1992-05-06 08:36:49 -03:00
|
|
|
# (Does this work for all UNIXes? Is it even guaranteed to work by POSIX?)
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def ismount(path):
|
1992-05-06 08:36:49 -03:00
|
|
|
try:
|
|
|
|
s1 = posix.stat(path)
|
|
|
|
s2 = posix.stat(join(path, '..'))
|
|
|
|
except posix.error:
|
|
|
|
return 0 # It doesn't exist -- so not a mount point :-)
|
|
|
|
dev1 = s1[stat.ST_DEV]
|
|
|
|
dev2 = s2[stat.ST_DEV]
|
|
|
|
if dev1 != dev2:
|
|
|
|
return 1 # path/.. on a different device as path
|
|
|
|
ino1 = s1[stat.ST_INO]
|
|
|
|
ino2 = s2[stat.ST_INO]
|
|
|
|
if ino1 == ino2:
|
|
|
|
return 1 # path/.. is the same i-node as path
|
|
|
|
return 0
|
1990-10-13 16:23:40 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Directory tree walk.
|
1992-01-14 14:29:32 -04:00
|
|
|
# For each directory under top (including top itself, but excluding
|
|
|
|
# '.' and '..'), func(arg, dirname, filenames) is called, where
|
|
|
|
# dirname is the name of the directory and filenames is the list
|
|
|
|
# files files (and subdirectories etc.) in the directory.
|
|
|
|
# The func may modify the filenames list, to implement a filter,
|
1990-10-13 16:23:40 -03:00
|
|
|
# or to impose a different order of visiting.
|
1992-01-14 14:29:32 -04:00
|
|
|
|
1990-10-13 16:23:40 -03:00
|
|
|
def walk(top, func, arg):
|
|
|
|
try:
|
|
|
|
names = posix.listdir(top)
|
|
|
|
except posix.error:
|
|
|
|
return
|
|
|
|
func(arg, top, names)
|
|
|
|
exceptions = ('.', '..')
|
|
|
|
for name in names:
|
|
|
|
if name not in exceptions:
|
1991-08-16 10:27:58 -03:00
|
|
|
name = join(top, name)
|
1990-10-13 16:23:40 -03:00
|
|
|
if isdir(name):
|
|
|
|
walk(name, func, arg)
|
1992-01-14 14:29:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Expand paths beginning with '~' or '~user'.
|
|
|
|
# '~' means $HOME; '~user' means that user's home directory.
|
|
|
|
# If the path doesn't begin with '~', or if the user or $HOME is unknown,
|
|
|
|
# the path is returned unchanged (leaving error reporting to whatever
|
|
|
|
# function is called with the expanded path as argument).
|
|
|
|
# See also module 'glob' for expansion of *, ? and [...] in pathnames.
|
|
|
|
# (A function should also be defined to do full *sh-style environment
|
|
|
|
# variable expansion.)
|
|
|
|
|
|
|
|
def expanduser(path):
|
|
|
|
if path[:1] <> '~':
|
|
|
|
return path
|
|
|
|
i, n = 1, len(path)
|
|
|
|
while i < n and path[i] <> '/':
|
|
|
|
i = i+1
|
|
|
|
if i == 1:
|
|
|
|
if not posix.environ.has_key('HOME'):
|
|
|
|
return path
|
|
|
|
userhome = posix.environ['HOME']
|
|
|
|
else:
|
|
|
|
import pwd
|
|
|
|
try:
|
|
|
|
pwent = pwd.getpwnam(path[1:i])
|
|
|
|
except KeyError:
|
|
|
|
return path
|
|
|
|
userhome = pwent[5]
|
|
|
|
return userhome + path[i:]
|
1992-08-09 10:54:50 -03:00
|
|
|
|
|
|
|
|
|
|
|
# Expand paths containing shell variable substitutions.
|
|
|
|
# This is done by piping it through the shell.
|
|
|
|
# Shell quoting characters (\ " ' `) are protected by a backslash.
|
|
|
|
# NB: a future version may avoid starting a subprocess and do the
|
|
|
|
# substitutions internally. This may slightly change the syntax
|
|
|
|
# for variables.
|
|
|
|
|
|
|
|
def expandvars(path):
|
|
|
|
if '$' not in path:
|
|
|
|
return path
|
|
|
|
q = ''
|
|
|
|
for c in path:
|
|
|
|
if c in ('\\', '"', '\'', '`'):
|
|
|
|
c = '\\' + c
|
|
|
|
q = q + c
|
|
|
|
d = '!'
|
|
|
|
if q == d:
|
|
|
|
d = '+'
|
|
|
|
p = posix.popen('cat <<' + d + '\n' + q + '\n' + d + '\n', 'r')
|
|
|
|
res = p.read()
|
|
|
|
del p
|
|
|
|
if res[-1:] == '\n':
|
|
|
|
res = res[:-1]
|
|
|
|
return res
|
1992-11-05 06:43:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
# Normalize a path, e.g. A//B, A/./B and A/foo/../B all become A/B.
|
|
|
|
# It should be understood that this may change the meaning of the path
|
|
|
|
# if it contains symbolic links!
|
|
|
|
|
|
|
|
def normpath(path):
|
|
|
|
import string
|
|
|
|
comps = string.splitfields(path, '/')
|
|
|
|
# If the path begins with '/', comps[0] is '', which we leave alone;
|
|
|
|
# we also leave leading multiple slashes alone for compatibility
|
|
|
|
# with certain networking naming schemes using //host/path
|
|
|
|
i = 0
|
|
|
|
while i < len(comps):
|
|
|
|
if comps[i] == '.':
|
|
|
|
del comps[i]
|
|
|
|
elif comps[i] == '..' and i > 0 and \
|
|
|
|
comps[i-1] not in ('', '..'):
|
|
|
|
del comps[i-1:i+1]
|
|
|
|
i = i-1
|
|
|
|
elif comps[i] == '' and i > 0 and comps[i-1] <> '':
|
|
|
|
del comps[i]
|
|
|
|
else:
|
|
|
|
i = i+1
|
|
|
|
# If the path is now empty, substitute '.'
|
|
|
|
if not comps:
|
|
|
|
comps.append('.')
|
|
|
|
return string.joinfields(comps, '/')
|