Blame dnf/conf/__init__.py

Packit Service 21c75c
# conf.py
Packit Service 21c75c
# dnf configuration classes.
Packit Service 21c75c
#
Packit Service 21c75c
# Copyright (C) 2012-2016 Red Hat, Inc.
Packit Service 21c75c
#
Packit Service 21c75c
# This copyrighted material is made available to anyone wishing to use,
Packit Service 21c75c
# modify, copy, or redistribute it subject to the terms and conditions of
Packit Service 21c75c
# the GNU General Public License v.2, or (at your option) any later version.
Packit Service 21c75c
# This program is distributed in the hope that it will be useful, but WITHOUT
Packit Service 21c75c
# ANY WARRANTY expressed or implied, including the implied warranties of
Packit Service 21c75c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit Service 21c75c
# Public License for more details.  You should have received a copy of the
Packit Service 21c75c
# GNU General Public License along with this program; if not, write to the
Packit Service 21c75c
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 21c75c
# 02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
Packit Service 21c75c
# source code or documentation are not subject to the GNU General Public
Packit Service 21c75c
# License and may only be used or replicated with the express permission of
Packit Service 21c75c
# Red Hat, Inc.
Packit Service 21c75c
#
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
"""
Packit Service 21c75c
The configuration classes and routines in yum are splattered over too many
Packit Service 21c75c
places, hard to change and debug. The new structure here will replace that. Its
Packit Service 21c75c
goal is to:
Packit Service 21c75c
Packit Service 21c75c
* accept configuration options from all three sources (the main config file,
Packit Service 21c75c
  repo config files, command line switches)
Packit Service 21c75c
* handle all the logic of storing those and producing related values.
Packit Service 21c75c
* returning configuration values.
Packit Service 21c75c
* optionally: asserting no value is overridden once it has been applied
Packit Service 21c75c
  somewhere (e.g. do not let a new repo be initialized with different global
Packit Service 21c75c
  cache path than an already existing one).
Packit Service 21c75c
Packit Service 21c75c
"""
Packit Service 21c75c
Packit Service 21c75c
from __future__ import absolute_import
Packit Service 21c75c
from __future__ import unicode_literals
Packit Service 21c75c
Packit Service 21c75c
from dnf.conf.config import PRIO_DEFAULT, PRIO_MAINCONFIG, PRIO_AUTOMATICCONFIG
Packit Service 21c75c
from dnf.conf.config import PRIO_REPOCONFIG, PRIO_PLUGINDEFAULT, PRIO_PLUGINCONFIG
Packit Service 21c75c
from dnf.conf.config import PRIO_COMMANDLINE, PRIO_RUNTIME
Packit Service 21c75c
Packit Service 21c75c
from dnf.conf.config import BaseConfig, MainConf, RepoConf
Packit Service 21c75c
Packit Service 21c75c
Conf = MainConf