Source code for craft_parts.features

# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright 2023 Canonical Ltd.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 3 as published by the Free Software Foundation.
#
# This program 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""Global features to be configured by the application."""

import contextlib
import dataclasses
import logging

from craft_parts.utils import Singleton

logger = logging.getLogger()


[docs]@dataclasses.dataclass(frozen=True) class Features(metaclass=Singleton): """Configurable craft-parts features. :cvar enable_overlay: Enables the overlay step. :cvar enable_partitions: Enables the usage of partitions. """ enable_overlay: bool = False enable_partitions: bool = False
[docs] @classmethod def reset(cls) -> None: """Delete stored class instance.""" logger.warning("deleting current features configuration") with contextlib.suppress(KeyError): del cls._instances[cls]