ansible-doctor/ansibledoctor/file_registry.py

55 lines
1.6 KiB
Python
Raw Normal View History

2019-10-07 08:52:00 +02:00
#!/usr/bin/env python3
2019-10-08 11:39:27 +02:00
"""File registry to encapsulate file system related operations."""
2019-10-07 08:52:00 +02:00
import glob
import os
2019-10-08 11:39:27 +02:00
import pathspec
from ansibledoctor.config import SingleConfig
from ansibledoctor.contstants import YAML_EXTENSIONS
from ansibledoctor.utils import SingleLog
2019-10-07 08:52:00 +02:00
class Registry:
2020-04-05 23:16:53 +02:00
"""Register all yaml files."""
2019-10-07 08:52:00 +02:00
_doc = {}
log = None
config = None
def __init__(self):
self._doc = []
self.config = SingleConfig()
self.log = SingleLog().logger
2019-10-07 08:52:00 +02:00
self._scan_for_yamls()
def get_files(self):
return self._doc
def _scan_for_yamls(self):
"""
Search for the yaml files in each project/role root and append to the corresponding object.
:param base: directory in witch we are searching
:return: None
"""
extensions = YAML_EXTENSIONS
base_dir = self.config.base_dir
role_name = os.path.basename(base_dir)
2019-10-08 11:30:31 +02:00
excludes = self.config.config.get("exclude_files")
excludespec = pathspec.PathSpec.from_lines("gitwildmatch", excludes)
2019-10-07 08:52:00 +02:00
self.log.debug(f"Scan for files: {base_dir}")
2019-10-07 08:52:00 +02:00
for extension in extensions:
pattern = os.path.join(base_dir, "**/*." + extension)
2019-10-08 11:30:31 +02:00
for filename in glob.iglob(pattern, recursive=True):
if not excludespec.match_file(filename):
2020-04-05 23:16:53 +02:00
self.log.debug(
f"Adding file to '{role_name}': {os.path.relpath(filename, base_dir)}"
2020-04-05 23:16:53 +02:00
)
2019-10-07 08:52:00 +02:00
self._doc.append(filename)
2019-10-08 11:30:31 +02:00
else:
self.log.debug(f"Excluding file: {os.path.relpath(filename, base_dir)}")