mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00

## Filtered recursive walk Expanding a recursive `**` segment entails walking the entire directory tree, and so any subsequent pattern segments (except special segments) can be evaluated by filtering the expanded paths through a regex. For example, `glob.glob("foo/**/*.py", recursive=True)` recursively walks `foo/` with `os.scandir()`, and then filters paths through a regex based on "`**/*.py`, with no further filesystem access needed. This fixes an issue where `glob()` could return duplicate results. ## Tracking path existence We store a flag alongside each path indicating whether the path is guaranteed to exist. As we process the pattern: - Certain special pattern segments (`""`, `"."` and `".."`) leave the flag unchanged - Literal pattern segments (e.g. `foo/bar`) set the flag to false - Wildcard pattern segments (e.g. `*/*.py`) set the flag to true (because children are found via `os.scandir()`) - Recursive pattern segments (e.g. `**`) leave the flag unchanged for the root path, and set it to true for descendants discovered via `os.scandir()`. If the flag is false at the end, we call `lstat()` on each path to filter out missing paths. ## Minor speed-ups - Exclude paths that don't match a non-terminal non-recursive wildcard pattern _prior_ to calling `is_dir()`. - Use a stack rather than recursion to implement recursive wildcards. - This fixes a recursion error when globbing deep trees. - Pre-compile regular expressions and pre-join literal pattern segments. - Convert to/from `bytes` (a minor use-case) in `iglob()` rather than supporting `bytes` throughout. This particularly simplifies the code needed to handle relative bytes paths with `dir_fd`. - Avoid calling `os.path.join()`; instead we keep paths in a normalized form and append trailing slashes when needed. - Avoid calling `os.path.normcase()`; instead we use case-insensitive regex matching. ## Implementation notes Much of this functionality is already present in pathlib's implementation of globbing. The specific additions we make are: 1. Support for `dir_fd` 2. Support for `include_hidden` 3. Support for generating paths relative to `root_dir` This unifies the implementations of globbing in the `glob` and `pathlib` modules. Co-authored-by: Pieter Eendebak <pieter.eendebak@gmail.com> Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
508 lines
19 KiB
Python
508 lines
19 KiB
Python
"""Filename globbing utility."""
|
|
|
|
import os
|
|
import re
|
|
import fnmatch
|
|
import functools
|
|
import operator
|
|
import sys
|
|
|
|
|
|
__all__ = ["glob", "iglob", "escape", "translate"]
|
|
|
|
def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False,
|
|
include_hidden=False):
|
|
"""Return a list of paths matching a pathname pattern.
|
|
|
|
The pattern may contain simple shell-style wildcards a la
|
|
fnmatch. Unlike fnmatch, filenames starting with a
|
|
dot are special cases that are not matched by '*' and '?'
|
|
patterns by default.
|
|
|
|
If `include_hidden` is true, the patterns '*', '?', '**' will match hidden
|
|
directories.
|
|
|
|
If `recursive` is true, the pattern '**' will match any files and
|
|
zero or more directories and subdirectories.
|
|
"""
|
|
return list(iglob(pathname, root_dir=root_dir, dir_fd=dir_fd, recursive=recursive,
|
|
include_hidden=include_hidden))
|
|
|
|
def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False,
|
|
include_hidden=False):
|
|
"""Return an iterator which yields the paths matching a pathname pattern.
|
|
|
|
The pattern may contain simple shell-style wildcards a la
|
|
fnmatch. However, unlike fnmatch, filenames starting with a
|
|
dot are special cases that are not matched by '*' and '?'
|
|
patterns.
|
|
|
|
If recursive is true, the pattern '**' will match any files and
|
|
zero or more directories and subdirectories.
|
|
"""
|
|
sys.audit("glob.glob", pathname, recursive)
|
|
sys.audit("glob.glob/2", pathname, recursive, root_dir, dir_fd)
|
|
pathname = os.fspath(pathname)
|
|
if isinstance(pathname, bytes):
|
|
pathname = os.fsdecode(pathname)
|
|
if root_dir is not None:
|
|
root_dir = os.fsdecode(root_dir)
|
|
paths = _iglob(pathname, root_dir, dir_fd, recursive, include_hidden)
|
|
return map(os.fsencode, paths)
|
|
else:
|
|
return _iglob(pathname, root_dir, dir_fd, recursive, include_hidden)
|
|
|
|
def _iglob(pathname, root_dir, dir_fd, recursive, include_hidden):
|
|
if os.path.altsep:
|
|
pathname = pathname.replace(os.path.altsep, os.path.sep)
|
|
drive, root, tail = os.path.splitroot(pathname)
|
|
parts = tail.split(os.path.sep)[::-1] if tail else []
|
|
globber = _StringGlobber(recursive=recursive, include_hidden=include_hidden)
|
|
select = globber.selector(parts)
|
|
if drive:
|
|
root = drive + root
|
|
return select(root, dir_fd, root)
|
|
elif root:
|
|
return select(root, dir_fd, root, exists=True)
|
|
elif not root_dir:
|
|
return select(root, dir_fd, root, empty=True)
|
|
else:
|
|
root = os.path.join(root_dir, '')
|
|
root_len = len(root)
|
|
paths = select(root, dir_fd, root, empty=True)
|
|
return (path[root_len:] for path in paths)
|
|
|
|
_deprecated_function_message = (
|
|
"{name} is deprecated and will be removed in Python {remove}. Use "
|
|
"glob.glob and pass a directory to its root_dir argument instead."
|
|
)
|
|
|
|
def glob0(dirname, pattern):
|
|
import warnings
|
|
warnings._deprecated("glob.glob0", _deprecated_function_message, remove=(3, 15))
|
|
dirname = os.path.join(dirname, '')
|
|
select = _StringGlobber().literal_selector(pattern, [])
|
|
return [path[len(dirname):] for path in select(dirname)]
|
|
|
|
def glob1(dirname, pattern):
|
|
import warnings
|
|
warnings._deprecated("glob.glob1", _deprecated_function_message, remove=(3, 15))
|
|
dirname = os.path.join(dirname, '')
|
|
select = _StringGlobber().wildcard_selector(pattern, [])
|
|
return [path[len(dirname):] for path in select(dirname)]
|
|
|
|
magic_check = re.compile('([*?[])')
|
|
magic_check_bytes = re.compile(b'([*?[])')
|
|
|
|
def has_magic(s):
|
|
if isinstance(s, bytes):
|
|
match = magic_check_bytes.search(s)
|
|
else:
|
|
match = magic_check.search(s)
|
|
return match is not None
|
|
|
|
def escape(pathname):
|
|
"""Escape all special characters.
|
|
"""
|
|
# Escaping is done by wrapping any of "*?[" between square brackets.
|
|
# Metacharacters do not work in the drive part and shouldn't be escaped.
|
|
drive, pathname = os.path.splitdrive(pathname)
|
|
if isinstance(pathname, bytes):
|
|
pathname = magic_check_bytes.sub(br'[\1]', pathname)
|
|
else:
|
|
pathname = magic_check.sub(r'[\1]', pathname)
|
|
return drive + pathname
|
|
|
|
|
|
_special_parts = ('', '.', '..')
|
|
_dir_open_flags = os.O_RDONLY | getattr(os, 'O_DIRECTORY', 0)
|
|
_no_recurse_symlinks = object()
|
|
|
|
|
|
def translate(pat, *, recursive=False, include_hidden=False, seps=None):
|
|
"""Translate a pathname with shell wildcards to a regular expression.
|
|
|
|
If `recursive` is true, the pattern segment '**' will match any number of
|
|
path segments.
|
|
|
|
If `include_hidden` is true, wildcards can match path segments beginning
|
|
with a dot ('.').
|
|
|
|
If a sequence of separator characters is given to `seps`, they will be
|
|
used to split the pattern into segments and match path separators. If not
|
|
given, os.path.sep and os.path.altsep (where available) are used.
|
|
"""
|
|
if not seps:
|
|
if os.path.altsep:
|
|
seps = (os.path.sep, os.path.altsep)
|
|
else:
|
|
seps = os.path.sep
|
|
escaped_seps = ''.join(map(re.escape, seps))
|
|
any_sep = f'[{escaped_seps}]' if len(seps) > 1 else escaped_seps
|
|
not_sep = f'[^{escaped_seps}]'
|
|
if include_hidden:
|
|
one_last_segment = f'{not_sep}+'
|
|
one_segment = f'{one_last_segment}{any_sep}'
|
|
any_segments = f'(?:.+{any_sep})?'
|
|
any_last_segments = '.*'
|
|
else:
|
|
one_last_segment = f'[^{escaped_seps}.]{not_sep}*'
|
|
one_segment = f'{one_last_segment}{any_sep}'
|
|
any_segments = f'(?:{one_segment})*'
|
|
any_last_segments = f'{any_segments}(?:{one_last_segment})?'
|
|
|
|
results = []
|
|
parts = re.split(any_sep, pat)
|
|
last_part_idx = len(parts) - 1
|
|
for idx, part in enumerate(parts):
|
|
if part == '*':
|
|
results.append(one_segment if idx < last_part_idx else one_last_segment)
|
|
elif recursive and part == '**':
|
|
if idx < last_part_idx:
|
|
if parts[idx + 1] != '**':
|
|
results.append(any_segments)
|
|
else:
|
|
results.append(any_last_segments)
|
|
else:
|
|
if part:
|
|
if not include_hidden and part[0] in '*?':
|
|
results.append(r'(?!\.)')
|
|
results.extend(fnmatch._translate(part, f'{not_sep}*', not_sep)[0])
|
|
if idx < last_part_idx:
|
|
results.append(any_sep)
|
|
res = ''.join(results)
|
|
return fr'(?s:{res})\Z'
|
|
|
|
|
|
@functools.lru_cache(maxsize=1024)
|
|
def _compile_pattern(pat, sep, case_sensitive, recursive, include_hidden):
|
|
"""Compile given glob pattern to a re.Pattern object (observing case
|
|
sensitivity)."""
|
|
flags = re.NOFLAG if case_sensitive else re.IGNORECASE
|
|
regex = translate(pat, recursive=recursive,
|
|
include_hidden=include_hidden, seps=sep)
|
|
return re.compile(regex, flags=flags).match
|
|
|
|
|
|
class _GlobberBase:
|
|
"""Abstract class providing shell-style pattern matching and globbing.
|
|
"""
|
|
|
|
def __init__(self, sep=os.path.sep, case_sensitive=os.name != 'nt',
|
|
case_pedantic=False, recursive=False, include_hidden=False):
|
|
self.sep = sep
|
|
self.case_sensitive = case_sensitive
|
|
self.case_pedantic = case_pedantic
|
|
self.recursive = recursive
|
|
self.include_hidden = include_hidden
|
|
|
|
# Abstract methods
|
|
|
|
@staticmethod
|
|
def lexists(path):
|
|
"""Implements os.path.lexists().
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def lstat(path, dir_fd=None):
|
|
"""Implements os.lstat()
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def open(path, flags, dir_fd=None):
|
|
"""Implements os.open()
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def scandir(path):
|
|
"""Like os.scandir(), but generates (entry, name, path) tuples.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def scandir_cwd():
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def scandir_fd(fd, prefix):
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def close(fd):
|
|
"""Implements os.close().
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
@staticmethod
|
|
def concat_path(path, text):
|
|
"""Implements path concatenation.
|
|
"""
|
|
raise NotImplementedError
|
|
|
|
# High-level methods
|
|
|
|
def compile(self, pat):
|
|
return _compile_pattern(pat, self.sep, self.case_sensitive,
|
|
self.recursive, self.include_hidden)
|
|
|
|
def selector(self, parts):
|
|
"""Returns a function that selects from a given path, walking and
|
|
filtering according to the glob-style pattern parts in *parts*.
|
|
"""
|
|
if not parts:
|
|
return self.select_exists
|
|
part = parts.pop()
|
|
if self.recursive and part == '**':
|
|
selector = self.recursive_selector
|
|
elif part in _special_parts:
|
|
selector = self.special_selector
|
|
elif not self.case_pedantic and magic_check.search(part) is None:
|
|
selector = self.literal_selector
|
|
else:
|
|
selector = self.wildcard_selector
|
|
return selector(part, parts)
|
|
|
|
def special_selector(self, part, parts):
|
|
"""Returns a function that selects special children of the given path.
|
|
"""
|
|
if parts:
|
|
part += self.sep
|
|
select_next = self.selector(parts)
|
|
if not part:
|
|
return select_next
|
|
|
|
def select_special(path, dir_fd=None, rel_path=None, exists=False, empty=False):
|
|
path = self.concat_path(path, part)
|
|
if dir_fd is not None:
|
|
rel_path = self.concat_path(rel_path, part)
|
|
return select_next(path, dir_fd, rel_path, exists)
|
|
return select_special
|
|
|
|
def literal_selector(self, part, parts):
|
|
"""Returns a function that selects a literal descendant of a path.
|
|
"""
|
|
|
|
# Optimization: consume and join any subsequent literal parts here,
|
|
# rather than leaving them for the next selector. This reduces the
|
|
# number of string concatenation operations.
|
|
while parts and magic_check.search(parts[-1]) is None:
|
|
part += self.sep + parts.pop()
|
|
if parts:
|
|
part += self.sep
|
|
|
|
select_next = self.selector(parts)
|
|
|
|
def select_literal(path, dir_fd=None, rel_path=None, exists=False, empty=False):
|
|
path = self.concat_path(path, part)
|
|
if dir_fd is not None:
|
|
rel_path = self.concat_path(rel_path, part)
|
|
return select_next(path, dir_fd, rel_path)
|
|
return select_literal
|
|
|
|
def wildcard_selector(self, part, parts):
|
|
"""Returns a function that selects direct children of a given path,
|
|
filtering by pattern.
|
|
"""
|
|
|
|
match = None if self.include_hidden and part == '*' else self.compile(part)
|
|
dir_only = bool(parts)
|
|
if dir_only:
|
|
select_next = self.selector(parts)
|
|
|
|
def select_wildcard(path, dir_fd=None, rel_path=None, exists=False, empty=False):
|
|
close_fd = False
|
|
try:
|
|
if dir_fd is None:
|
|
fd = None
|
|
entries = self.scandir(path) if path else self.scandir_cwd()
|
|
elif not rel_path:
|
|
fd = dir_fd
|
|
entries = self.scandir_fd(fd, path)
|
|
else:
|
|
fd = self.open(rel_path, _dir_open_flags, dir_fd=dir_fd)
|
|
close_fd = True
|
|
entries = self.scandir_fd(fd, path)
|
|
except OSError:
|
|
pass
|
|
else:
|
|
for entry, entry_name, entry_path in entries:
|
|
if match is None or match(entry_name):
|
|
if dir_only:
|
|
try:
|
|
if not entry.is_dir():
|
|
continue
|
|
except OSError:
|
|
continue
|
|
entry_path = self.concat_path(entry_path, self.sep)
|
|
if fd is not None:
|
|
entry_name = entry_name + self.sep
|
|
yield from select_next(
|
|
entry_path, fd, entry_name, exists=True)
|
|
else:
|
|
# Optimization: directly yield the path if this is
|
|
# last pattern part.
|
|
yield entry_path
|
|
finally:
|
|
if close_fd:
|
|
self.close(fd)
|
|
return select_wildcard
|
|
|
|
def recursive_selector(self, part, parts):
|
|
"""Returns a function that selects a given path and all its children,
|
|
recursively, filtering by pattern.
|
|
"""
|
|
# Optimization: consume following '**' parts, which have no effect.
|
|
while parts and parts[-1] == '**':
|
|
parts.pop()
|
|
|
|
# Optimization: consume and join any following non-special parts here,
|
|
# rather than leaving them for the next selector. They're used to
|
|
# build a regular expression, which we use to filter the results of
|
|
# the recursive walk. As a result, non-special pattern segments
|
|
# following a '**' wildcard don't require additional filesystem access
|
|
# to expand.
|
|
follow_symlinks = self.recursive is not _no_recurse_symlinks
|
|
if follow_symlinks:
|
|
while parts and parts[-1] not in _special_parts:
|
|
part += self.sep + parts.pop()
|
|
|
|
match = None if self.include_hidden and part == '**' else self.compile(part)
|
|
dir_only = bool(parts)
|
|
select_next = self.selector(parts)
|
|
|
|
def select_recursive(path, dir_fd=None, rel_path=None, exists=False, empty=False):
|
|
match_pos = len(str(path))
|
|
if match is None or match(str(path), match_pos):
|
|
yield from select_next(path, dir_fd, rel_path, exists, empty)
|
|
stack = [(path, dir_fd, rel_path)]
|
|
try:
|
|
while stack:
|
|
yield from select_recursive_step(stack, match_pos)
|
|
finally:
|
|
# Close any file descriptors still on the stack.
|
|
while stack:
|
|
path, dir_fd, _rel_path = stack.pop()
|
|
if path is None:
|
|
try:
|
|
self.close(dir_fd)
|
|
except OSError:
|
|
pass
|
|
|
|
def select_recursive_step(stack, match_pos):
|
|
path, dir_fd, rel_path = stack.pop()
|
|
try:
|
|
if path is None:
|
|
self.close(dir_fd)
|
|
return
|
|
elif dir_fd is None:
|
|
fd = None
|
|
entries = self.scandir(path) if path else self.scandir_cwd()
|
|
elif not rel_path:
|
|
fd = dir_fd
|
|
entries = self.scandir_fd(fd, path)
|
|
else:
|
|
fd = self.open(rel_path, _dir_open_flags, dir_fd=dir_fd)
|
|
# Schedule the file descriptor to be closed next step.
|
|
stack.append((None, fd, None))
|
|
entries = self.scandir_fd(fd, path)
|
|
except OSError:
|
|
pass
|
|
else:
|
|
for entry, entry_name, entry_path in entries:
|
|
is_dir = False
|
|
try:
|
|
if entry.is_dir(follow_symlinks=follow_symlinks):
|
|
is_dir = True
|
|
except OSError:
|
|
pass
|
|
|
|
if is_dir or not dir_only:
|
|
entry_path_str = str(entry_path)
|
|
if dir_only:
|
|
entry_path = self.concat_path(entry_path, self.sep)
|
|
if fd is not None:
|
|
entry_name = entry_name + self.sep
|
|
if match is None or match(entry_path_str, match_pos):
|
|
if dir_only:
|
|
yield from select_next(
|
|
entry_path, fd, entry_name, exists=True)
|
|
else:
|
|
# Optimization: directly yield the path if this is
|
|
# last pattern part.
|
|
yield entry_path
|
|
if is_dir:
|
|
stack.append((entry_path, fd, entry_name))
|
|
|
|
return select_recursive
|
|
|
|
def select_exists(self, path, dir_fd=None, rel_path=None, exists=False, empty=False):
|
|
"""Yields the given path, if it exists. If *dir_fd* is given, we check
|
|
whether *rel_path* exists relative to the fd.
|
|
"""
|
|
if empty:
|
|
# Suppress initial path so iglob() doesn't yield the empty string.
|
|
pass
|
|
elif exists:
|
|
# Optimization: this path is already known to exist, e.g. because
|
|
# it was returned from os.scandir(), so we skip calling lstat().
|
|
yield path
|
|
elif dir_fd is not None:
|
|
try:
|
|
self.lstat(rel_path, dir_fd=dir_fd)
|
|
yield path
|
|
except OSError:
|
|
pass
|
|
elif self.lexists(path):
|
|
yield path
|
|
|
|
|
|
class _StringGlobber(_GlobberBase):
|
|
"""Provides shell-style pattern matching and globbing for string paths.
|
|
"""
|
|
lexists = staticmethod(os.path.lexists)
|
|
lstat = staticmethod(os.lstat)
|
|
open = staticmethod(os.open)
|
|
close = staticmethod(os.close)
|
|
concat_path = operator.add
|
|
|
|
@staticmethod
|
|
def scandir(path):
|
|
# We must close the scandir() object before proceeding to
|
|
# avoid exhausting file descriptors when globbing deep trees.
|
|
with os.scandir(path) as scandir_it:
|
|
entries = list(scandir_it)
|
|
return ((entry, entry.name, entry.path) for entry in entries)
|
|
|
|
@staticmethod
|
|
def scandir_cwd():
|
|
with os.scandir() as scandir_it:
|
|
entries = list(scandir_it)
|
|
# Suppress leading dot when scanning current directory.
|
|
return ((entry, entry.name, entry.name) for entry in entries)
|
|
|
|
@staticmethod
|
|
def scandir_fd(fd, prefix):
|
|
prefix = os.path.join(prefix, prefix[:0])
|
|
with os.scandir(fd) as scandir_it:
|
|
entries = list(scandir_it)
|
|
return ((entry, entry.name, prefix + entry.name) for entry in entries)
|
|
|
|
|
|
class _PathGlobber(_GlobberBase):
|
|
"""Provides shell-style pattern matching and globbing for pathlib paths.
|
|
"""
|
|
|
|
@staticmethod
|
|
def lexists(path):
|
|
return path.info.exists(follow_symlinks=False)
|
|
|
|
@staticmethod
|
|
def scandir(path):
|
|
return ((child.info, child.name, child) for child in path.iterdir())
|
|
|
|
@staticmethod
|
|
def concat_path(path, text):
|
|
return path.with_segments(str(path) + text)
|