rcmpy.config.file
index
/home/vkottler/src/vkottler/workspace/rcmpy/rcmpy/config/file.py

A module implementing an interface for package-managed files.

 
Modules
       
sys

 
Classes
       
builtins.object
ManagedFile

 
class ManagedFile(builtins.object)
    ManagedFile(template: str, extra_templates: Set[str], directory: pathlib.Path, name: str, link: bool, executable: bool, condition: str, platforms: Set[str]) -> None
 
A data structure for managed files specified in the configuration data.
 
  Methods defined here:
__eq__(self, other)
Return self==value.
__init__(self, template: str, extra_templates: Set[str], directory: pathlib.Path, name: str, link: bool, executable: bool, condition: str, platforms: Set[str]) -> None
Initialize self.  See help(type(self)) for accurate signature.
__repr__(self)
Return repr(self).
evaluate(self, env: Dict[str, Any]) -> bool
Determine if this file should be handled.
update(self, source: pathlib.Path, logger: Union[logging.Logger, logging.LoggerAdapter[Any]]) -> None
Update this managed file based on the provided source file.
update_root(self, root: pathlib.Path) -> None
If the output directory is a relative path, update it to be an
absolute one based on the provided root directory.

Readonly properties defined here:
output
Get the full output path.
platform
Determine if the platform is correct for handling this file.
present
Determine if this file is currently present in the file system.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__annotations__ = {'condition': <class 'str'>, 'directory': <class 'pathlib.Path'>, 'executable': <class 'bool'>, 'extra_templates': typing.Set[str], 'link': <class 'bool'>, 'name': <class 'str'>, 'platforms': typing.Set[str], 'template': <class 'str'>}
__dataclass_fields__ = {'condition': Field(name='condition',type=<class 'str'>,defaul...appingproxy({}),kw_only=False,_field_type=_FIELD), 'directory': Field(name='directory',type=<class 'pathlib.Path...appingproxy({}),kw_only=False,_field_type=_FIELD), 'executable': Field(name='executable',type=<class 'bool'>,defa...appingproxy({}),kw_only=False,_field_type=_FIELD), 'extra_templates': Field(name='extra_templates',type=typing.Set[str...appingproxy({}),kw_only=False,_field_type=_FIELD), 'link': Field(name='link',type=<class 'bool'>,default=<d...appingproxy({}),kw_only=False,_field_type=_FIELD), 'name': Field(name='name',type=<class 'str'>,default=<da...appingproxy({}),kw_only=False,_field_type=_FIELD), 'platforms': Field(name='platforms',type=typing.Set[str],defa...appingproxy({}),kw_only=False,_field_type=_FIELD), 'template': Field(name='template',type=<class 'str'>,default...appingproxy({}),kw_only=False,_field_type=_FIELD)}
__dataclass_params__ = _DataclassParams(init=True,repr=True,eq=True,ord...rue,kw_only=False,slots=False,weakref_slot=False)
__hash__ = None
__match_args__ = ('template', 'extra_templates', 'directory', 'name', 'link', 'executable', 'condition', 'platforms')

 
Data
        Dict = typing.Dict
LoggerType = typing.Union[logging.Logger, logging.LoggerAdapter[typing.Any]]
Set = typing.Set