Skip to content

protobuf

frequenz.repo.config.protobuf ¤

Manages the configuration to generate files from the protobuf files.

Classes¤

frequenz.repo.config.protobuf.ProtobufConfig dataclass ¤

A configuration for the protobuf files.

The configuration can be loaded from the pyproject.toml file using the class method from_pyproject_toml().

Source code in frequenz/repo/config/protobuf.py
@dataclasses.dataclass(frozen=True, kw_only=True)
class ProtobufConfig:
    """A configuration for the protobuf files.

    The configuration can be loaded from the `pyproject.toml` file using the class
    method `from_pyproject_toml()`.
    """

    proto_path: str = "proto"
    """The path of the root directory containing the protobuf files."""

    proto_glob: str = "*.proto"
    """The glob pattern to use to find the protobuf files."""

    include_paths: Sequence[str] = (
        "submodules/api-common-protos",
        "submodules/frequenz-api-common/proto",
    )
    """The paths to add to the include path when compiling the protobuf files."""

    py_path: str = "py"
    """The path of the root directory where the Python files will be generated."""

    docs_path: str = "protobuf-reference"
    """The path of the root directory where the documentation files will be generated."""

    @classmethod
    def from_pyproject_toml(
        cls, path: str = "pyproject.toml", /, **defaults: Any
    ) -> Self:
        """Create a new configuration by loading the options from a `pyproject.toml` file.

        The options are read from the `[tool.frequenz-repo-config.protobuf]`
        section of the `pyproject.toml` file.

        Args:
            path: The path to the `pyproject.toml` file.
            **defaults: The default values for the options missing in the file.  If
                a default is missing too, then the default in this class will be used.

        Returns:
            The configuration.
        """
        try:
            with pathlib.Path(path).open("rb") as toml_file:
                pyproject_toml = tomllib.load(toml_file)
        except FileNotFoundError:
            return cls(**defaults)
        except (IOError, OSError) as err:
            _logger.warning("WARNING: Failed to load pyproject.toml: %s", err)
            return cls(**defaults)

        try:
            config = pyproject_toml["tool"]["frequenz-repo-config"]["protobuf"]
        except KeyError:
            return cls(**defaults)

        default = cls(**defaults)
        known_keys = frozenset(dataclasses.asdict(default).keys())
        config_keys = frozenset(config.keys())
        if unknown_keys := config_keys - known_keys:
            _logger.warning(
                "WARNING: There are some configuration keys in pyproject.toml we don't "
                "know about and will be ignored: %s",
                ", ".join(f"'{k}'" for k in unknown_keys),
            )

        attrs = dict(defaults, **{k: config[k] for k in (known_keys & config_keys)})
        return dataclasses.replace(default, **attrs)
Attributes¤
docs_path class-attribute instance-attribute ¤
docs_path: str = 'protobuf-reference'

The path of the root directory where the documentation files will be generated.

include_paths class-attribute instance-attribute ¤
include_paths: Sequence[str] = (
    "submodules/api-common-protos",
    "submodules/frequenz-api-common/proto",
)

The paths to add to the include path when compiling the protobuf files.

proto_glob class-attribute instance-attribute ¤
proto_glob: str = '*.proto'

The glob pattern to use to find the protobuf files.

proto_path class-attribute instance-attribute ¤
proto_path: str = 'proto'

The path of the root directory containing the protobuf files.

py_path class-attribute instance-attribute ¤
py_path: str = 'py'

The path of the root directory where the Python files will be generated.

Functions¤
from_pyproject_toml classmethod ¤
from_pyproject_toml(
    path: str = "pyproject.toml", /, **defaults: Any
) -> Self

Create a new configuration by loading the options from a pyproject.toml file.

The options are read from the [tool.frequenz-repo-config.protobuf] section of the pyproject.toml file.

PARAMETER DESCRIPTION
path

The path to the pyproject.toml file.

TYPE: str DEFAULT: 'pyproject.toml'

**defaults

The default values for the options missing in the file. If a default is missing too, then the default in this class will be used.

TYPE: Any DEFAULT: {}

RETURNS DESCRIPTION
Self

The configuration.

Source code in frequenz/repo/config/protobuf.py
@classmethod
def from_pyproject_toml(
    cls, path: str = "pyproject.toml", /, **defaults: Any
) -> Self:
    """Create a new configuration by loading the options from a `pyproject.toml` file.

    The options are read from the `[tool.frequenz-repo-config.protobuf]`
    section of the `pyproject.toml` file.

    Args:
        path: The path to the `pyproject.toml` file.
        **defaults: The default values for the options missing in the file.  If
            a default is missing too, then the default in this class will be used.

    Returns:
        The configuration.
    """
    try:
        with pathlib.Path(path).open("rb") as toml_file:
            pyproject_toml = tomllib.load(toml_file)
    except FileNotFoundError:
        return cls(**defaults)
    except (IOError, OSError) as err:
        _logger.warning("WARNING: Failed to load pyproject.toml: %s", err)
        return cls(**defaults)

    try:
        config = pyproject_toml["tool"]["frequenz-repo-config"]["protobuf"]
    except KeyError:
        return cls(**defaults)

    default = cls(**defaults)
    known_keys = frozenset(dataclasses.asdict(default).keys())
    config_keys = frozenset(config.keys())
    if unknown_keys := config_keys - known_keys:
        _logger.warning(
            "WARNING: There are some configuration keys in pyproject.toml we don't "
            "know about and will be ignored: %s",
            ", ".join(f"'{k}'" for k in unknown_keys),
        )

    attrs = dict(defaults, **{k: config[k] for k in (known_keys & config_keys)})
    return dataclasses.replace(default, **attrs)