mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-22 04:45:05 +00:00
optimize scantree
This commit is contained in:
parent
67d73fa401
commit
54765a5432
1 changed files with 22 additions and 10 deletions
|
@ -1084,7 +1084,11 @@ def scantree(path, # type: AnyStr
|
||||||
follow_symlinks=False, # type: bool
|
follow_symlinks=False, # type: bool
|
||||||
filter_kind=None, # type: Optional[bool]
|
filter_kind=None, # type: Optional[bool]
|
||||||
recurse=True, # type: bool
|
recurse=True, # type: bool
|
||||||
exclude_folders_with_files=None # type: Optional[List[AnyStr]]
|
exclude_folders_with_files=None, # type: Optional[List[AnyStr]]
|
||||||
|
internal_call=False, # type: bool
|
||||||
|
rc_exc=None, # type: List
|
||||||
|
rc_exc_dir=None, # type: List
|
||||||
|
rc_inc=None # type: List
|
||||||
):
|
):
|
||||||
# type: (...) -> Generator[DirEntry, None, None]
|
# type: (...) -> Generator[DirEntry, None, None]
|
||||||
"""Yield DirEntry objects for given path. Returns without yield if path fails sanity check
|
"""Yield DirEntry objects for given path. Returns without yield if path fails sanity check
|
||||||
|
@ -1097,8 +1101,13 @@ def scantree(path, # type: AnyStr
|
||||||
:param filter_kind: None to yield everything, True yields directories, False yields files
|
:param filter_kind: None to yield everything, True yields directories, False yields files
|
||||||
:param recurse: Recursively scan the tree
|
:param recurse: Recursively scan the tree
|
||||||
:param exclude_folders_with_files: exclude folder that contain the listed file(s)
|
:param exclude_folders_with_files: exclude folder that contain the listed file(s)
|
||||||
|
:param internal_call: internal use
|
||||||
|
:param rc_exc: internal use
|
||||||
|
:param rc_exc_dir: internal use
|
||||||
|
:param rc_inc: internal use
|
||||||
"""
|
"""
|
||||||
if isinstance(path, string_types) and path and os.path.isdir(path):
|
if isinstance(path, string_types) and path and os.path.isdir(path):
|
||||||
|
if not internal_call:
|
||||||
rc_exc, rc_exc_dir, rc_inc = [re.compile(rx % '|'.join(
|
rc_exc, rc_exc_dir, rc_inc = [re.compile(rx % '|'.join(
|
||||||
[x for x in (param, ([param], [])[None is param])[not isinstance(param, list)]]))
|
[x for x in (param, ([param], [])[None is param])[not isinstance(param, list)]]))
|
||||||
for rx, param in ((r'(?i)^(?:(?!%s).)*$', exclude), (r'(?i)^(?:(?!%s).)*$', exclude_dirs),
|
for rx, param in ((r'(?i)^(?:(?!%s).)*$', exclude), (r'(?i)^(?:(?!%s).)*$', exclude_dirs),
|
||||||
|
@ -1107,9 +1116,9 @@ def scantree(path, # type: AnyStr
|
||||||
is_dir = entry.is_dir(follow_symlinks=follow_symlinks)
|
is_dir = entry.is_dir(follow_symlinks=follow_symlinks)
|
||||||
is_file = entry.is_file(follow_symlinks=follow_symlinks)
|
is_file = entry.is_file(follow_symlinks=follow_symlinks)
|
||||||
no_filter = any([None is filter_kind, filter_kind and is_dir, not filter_kind and is_file])
|
no_filter = any([None is filter_kind, filter_kind and is_dir, not filter_kind and is_file])
|
||||||
if ((rc_exc.search(entry.name), True)[not exclude]
|
if ((not exclude or rc_exc.search(entry.name))
|
||||||
and (rc_exc_dir.search(entry.name), True)[not exclude_dirs or not is_dir]
|
and (not exclude_dirs or not is_dir or rc_exc_dir.search(entry.name))
|
||||||
and (rc_inc.search(entry.name), True)[not include]
|
and (not include or rc_inc.search(entry.name))
|
||||||
and (no_filter or (not filter_kind and is_dir and recurse))):
|
and (no_filter or (not filter_kind and is_dir and recurse))):
|
||||||
if is_dir and exclude_folders_with_files and any(os.path.isfile(os.path.join(entry.path, e_f))
|
if is_dir and exclude_folders_with_files and any(os.path.isfile(os.path.join(entry.path, e_f))
|
||||||
for e_f in exclude_folders_with_files):
|
for e_f in exclude_folders_with_files):
|
||||||
|
@ -1117,8 +1126,11 @@ def scantree(path, # type: AnyStr
|
||||||
f' "{", ".join(exclude_folders_with_files)}"')
|
f' "{", ".join(exclude_folders_with_files)}"')
|
||||||
continue
|
continue
|
||||||
if recurse and is_dir:
|
if recurse and is_dir:
|
||||||
for subentry in scantree(entry.path, exclude, exclude_dirs, include, follow_symlinks, filter_kind,
|
for subentry in scantree(
|
||||||
recurse):
|
path=entry.path, exclude=exclude, exclude_dirs=exclude_dirs, include=include,
|
||||||
|
follow_symlinks=follow_symlinks, filter_kind=filter_kind, recurse=recurse,
|
||||||
|
exclude_folders_with_files=exclude_folders_with_files, internal_call=True,
|
||||||
|
rc_exc=rc_exc, rc_exc_dir=rc_exc_dir, rc_inc=rc_inc):
|
||||||
yield subentry
|
yield subentry
|
||||||
if no_filter:
|
if no_filter:
|
||||||
yield entry
|
yield entry
|
||||||
|
|
Loading…
Reference in a new issue