ats_utilities.checker.checker_reporter_bundle module

Module

checker_reporter_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 group simplification. Encapsulates checker reporter parameters to minimize constructor overhead.

class ats_utilities.checker.checker_reporter_bundle.CheckerReporterBundle(context: str | None = None, parameters_meta: list[tuple[str, str, Any]] | None = None, err_indices: list[int] | None = None, is_fmt_err: bool = False)[source]

Bases: object

Defines component bundle dataclass for dependency group simplification. Encapsulates checker reporter parameters to minimize constructor overhead.

It defines:

attributes:
context - Message context (default None).
parameters_meta - parameter name and parameter type (default None).
err_indices - Error set (default None).
is_fmt_err - Check for format error type (default False).
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.
context: str | None = None
err_indices: list[int] | None = None
is_fmt_err: bool = False
merge(other: CheckerReporterBundle) None[source]

Merges non-None values from another bundle into this one.

Parameters:

other (<CheckerReporterBundle>) – Another bundle to merge into this one.

Returns:

None.

Return type:

<None>

Exceptions:

None..

parameters_meta: list[tuple[str, str, Any]] | None = None
to_dict() dict[source]

Converts the bundle attributes to a dictionary.

Returns:

Dictionary representation of the bundle attributes.

Return type:

<dict>

Exceptions:

None..

validate() None[source]

Validates that essential components are set.

Returns:

None.

Return type:

<None>

Exceptions:

ValueError