Source code for ats_utilities.config_setup.component_bundle

# -*- coding: UTF-8 -*-

'''
Module
    component_bundle.py
Copyright
    Copyright (C) 2017 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com>
    ats_utilities is free software: you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
    Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
    ats_utilities is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU General Public License for more details.
    You should have received a copy of the GNU General Public License along
    with this program. If not, see <http://www.gnu.org/licenses/>.
Info
    Defines component bundle dataclass for dependency grouping and management.
    Encapsulates config setup components to minimize constructor overhead.
'''

from dataclasses import dataclass
from ats_utilities.config_setup.ipro_config import IProConfig
from ats_utilities.config_setup.ipro_name import IProName
from ats_utilities.config_setup.itemplate_dir import ITemplateDir
from ats_utilities.context_bundle import ContextBundle
from ats_utilities.exceptions.ats_value_error import ATSValueError

__author__: str = 'Vladimir Roncevic'
__copyright__: str = '(C) 2026, https://vroncevic.github.io/ats_utilities'
__credits__: list[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__: str = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE'
__version__: str = '3.3.8'
__maintainer__: str = 'Vladimir Roncevic'
__email__: str = 'elektron.ronca@gmail.com'
__status__: str = 'Updated'


[docs] @dataclass class ConfigSetupComponentBundle: ''' Defines component bundle dataclass for dependency grouping and management. Encapsulates config setup components to minimize constructor overhead. It defines: :attributes: | pro_config - Project configuration mechanism (default None). | pro_name - Project name mechanism (default None). | template_dir - Project template directory mechanism (default None). | context_bundle - Context bundle for configuration utilities (default None). :methods: | validate - Validates that essential components are set. | merge - Merges non-None values from another bundle into this one. | to_dict - Converts the bundle attributes to a dictionary. ''' pro_config: IProConfig | None = None pro_name: IProName | None = None template_dir: ITemplateDir | None = None context_bundle: ContextBundle | None = None
[docs] def validate(self) -> None: ''' Validates that essential components are set. :return: None. :rtype: <None> :exceptions: ValueError ''' if self.pro_config is None: raise ATSValueError('Project configuration must be provided.') if self.pro_name is None: raise ATSValueError('Project name must be provided.') if self.template_dir is None: raise ATSValueError('Template directory must be provided.') if self.context_bundle is None: raise ATSValueError('Context bundle must be provided.')
[docs] def merge(self, other: 'ConfigSetupComponentBundle') -> None: ''' Merges non-None values from another bundle into this one. :param other: Another bundle to merge into this one. :type other: <ConfigSetupComponentBundle> :return: None. :rtype: <None> :exceptions: None.. ''' for field_name in self.__dataclass_fields__: other_value = getattr(other, field_name) if other_value is not None: setattr(self, field_name, other_value)
[docs] def to_dict(self) -> dict: ''' Converts the bundle attributes to a dictionary. :return: Dictionary representation of the bundle attributes. :rtype: <dict> :exceptions: None.. ''' return { name: value for name, value in self.__dict__.items() if not name.startswith('_') }