1997-04-02 01:47:11 -04:00
|
|
|
"""Filename globbing utility."""
|
1991-01-01 14:17:49 -04:00
|
|
|
|
1992-01-12 19:26:24 -04:00
|
|
|
import os
|
1991-01-01 14:17:49 -04:00
|
|
|
import fnmatch
|
1997-10-22 18:00:49 -03:00
|
|
|
import re
|
1991-01-01 14:17:49 -04:00
|
|
|
|
2005-01-08 09:13:19 -04:00
|
|
|
__all__ = ["glob", "iglob"]
|
1992-01-12 19:26:24 -04:00
|
|
|
|
1991-01-01 14:17:49 -04:00
|
|
|
def glob(pathname):
|
2001-01-14 19:47:14 -04:00
|
|
|
"""Return a list of paths matching a pathname pattern.
|
|
|
|
|
|
|
|
The pattern may contain simple shell-style wildcards a la fnmatch.
|
|
|
|
|
2005-01-08 09:13:19 -04:00
|
|
|
"""
|
|
|
|
return list(iglob(pathname))
|
|
|
|
|
|
|
|
def iglob(pathname):
|
|
|
|
"""Return a list of paths matching a pathname pattern.
|
|
|
|
|
|
|
|
The pattern may contain simple shell-style wildcards a la fnmatch.
|
|
|
|
|
2001-01-14 19:47:14 -04:00
|
|
|
"""
|
|
|
|
if not has_magic(pathname):
|
2004-08-30 07:19:56 -03:00
|
|
|
if os.path.lexists(pathname):
|
2005-01-08 09:13:19 -04:00
|
|
|
yield pathname
|
|
|
|
return
|
2001-01-14 19:47:14 -04:00
|
|
|
dirname, basename = os.path.split(pathname)
|
2001-06-06 03:24:38 -03:00
|
|
|
if not dirname:
|
2005-01-08 09:13:19 -04:00
|
|
|
for name in glob1(os.curdir, basename):
|
|
|
|
yield name
|
|
|
|
return
|
|
|
|
if has_magic(dirname):
|
|
|
|
dirs = iglob(dirname)
|
2001-01-14 19:47:14 -04:00
|
|
|
else:
|
2005-01-08 09:13:19 -04:00
|
|
|
dirs = [dirname]
|
|
|
|
if has_magic(basename):
|
|
|
|
glob_in_dir = glob1
|
2001-01-14 19:47:14 -04:00
|
|
|
else:
|
2005-01-08 09:13:19 -04:00
|
|
|
glob_in_dir = glob0
|
|
|
|
for dirname in dirs:
|
|
|
|
for name in glob_in_dir(dirname, basename):
|
|
|
|
yield os.path.join(dirname, name)
|
|
|
|
|
|
|
|
# These 2 helper functions non-recursively glob inside a literal directory.
|
|
|
|
# They return a list of basenames. `glob1` accepts a pattern while `glob0`
|
|
|
|
# takes a literal basename (so it only has to check for its existence).
|
1991-01-01 14:17:49 -04:00
|
|
|
|
|
|
|
def glob1(dirname, pattern):
|
2005-01-08 09:13:19 -04:00
|
|
|
if not dirname:
|
|
|
|
dirname = os.curdir
|
2001-01-14 19:47:14 -04:00
|
|
|
try:
|
|
|
|
names = os.listdir(dirname)
|
|
|
|
except os.error:
|
|
|
|
return []
|
2001-06-06 03:24:38 -03:00
|
|
|
if pattern[0]!='.':
|
|
|
|
names=filter(lambda x: x[0]!='.',names)
|
|
|
|
return fnmatch.filter(names,pattern)
|
1991-01-01 14:17:49 -04:00
|
|
|
|
2005-01-08 09:13:19 -04:00
|
|
|
def glob0(dirname, basename):
|
|
|
|
if basename == '':
|
|
|
|
# `os.path.split()` returns an empty basename for paths ending with a
|
|
|
|
# directory separator. 'q*x/' should match only directories.
|
2006-04-09 00:35:43 -03:00
|
|
|
if os.path.isdir(dirname):
|
2005-01-08 09:13:19 -04:00
|
|
|
return [basename]
|
|
|
|
else:
|
|
|
|
if os.path.lexists(os.path.join(dirname, basename)):
|
|
|
|
return [basename]
|
|
|
|
return []
|
|
|
|
|
1992-01-12 19:32:11 -04:00
|
|
|
|
1997-10-22 18:00:49 -03:00
|
|
|
magic_check = re.compile('[*?[]')
|
1992-01-12 19:32:11 -04:00
|
|
|
|
1991-01-01 14:17:49 -04:00
|
|
|
def has_magic(s):
|
2001-01-14 19:47:14 -04:00
|
|
|
return magic_check.search(s) is not None
|