/* * Copyright (C) 2018 Red Hat, Inc. * * Licensed under the GNU Lesser General Public License Version 2.1 * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _LIBDNF_CONFIG_MAIN_HPP #define _LIBDNF_CONFIG_MAIN_HPP #ifdef LIBDNF_UNSTABLE_API #include "Config.hpp" #include "OptionBool.hpp" #include "OptionEnum.hpp" #include "OptionNumber.hpp" #include "OptionPath.hpp" #include "OptionSeconds.hpp" #include "OptionString.hpp" #include "OptionStringList.hpp" #include namespace libdnf { /** * @class ConfigMain * * @brief Holds configuration options needed for libdnf * */ class ConfigMain : public Config { public: ConfigMain(); ~ConfigMain(); OptionNumber & debuglevel(); OptionNumber & errorlevel(); OptionString & installroot(); OptionString & config_file_path(); OptionBool & plugins(); OptionStringList & pluginpath(); OptionStringList & pluginconfpath(); OptionString & persistdir(); OptionBool & transformdb(); OptionNumber & recent(); OptionBool & reset_nice(); OptionString & system_cachedir(); OptionBool & cacheonly(); OptionBool & keepcache(); OptionString & logdir(); OptionStringList & varsdir(); OptionStringList & reposdir(); OptionBool & debug_solver(); OptionStringList & installonlypkgs(); OptionStringList & group_package_types(); /* NOTE: If you set this to 2, then because it keeps the current kernel it means if you ever install an "old" kernel it'll get rid of the newest one so you probably want to use 3 as a minimum ... if you turn it on. */ OptionNumber & installonly_limit(); OptionStringList & tsflags(); OptionBool & assumeyes(); OptionBool & assumeno(); OptionBool & check_config_file_age(); OptionBool & defaultyes(); OptionBool & diskspacecheck(); OptionBool & localpkg_gpgcheck(); OptionBool & gpgkey_dns_verification(); OptionBool & obsoletes(); OptionBool & showdupesfromrepos(); OptionBool & exit_on_lock(); OptionSeconds & metadata_timer_sync(); OptionStringList & disable_excludes(); OptionEnum & multilib_policy(); // :api OptionBool & best(); // :api OptionBool & install_weak_deps(); OptionString & bugtracker_url(); OptionBool & zchunk(); OptionEnum & color(); OptionString & color_list_installed_older(); OptionString & color_list_installed_newer(); OptionString & color_list_installed_reinstall(); OptionString & color_list_installed_extra(); OptionString & color_list_available_upgrade(); OptionString & color_list_available_downgrade(); OptionString & color_list_available_reinstall(); OptionString & color_list_available_install(); OptionString & color_update_installed(); OptionString & color_update_local(); OptionString & color_update_remote(); OptionString & color_search_match(); OptionBool & history_record(); OptionStringList & history_record_packages(); OptionString & rpmverbosity(); OptionBool & strict(); // :api OptionBool & skip_broken(); // :yum-compatibility OptionBool & autocheck_running_kernel(); // :yum-compatibility OptionBool & clean_requirements_on_remove(); OptionEnum & history_list_view(); OptionBool & upgrade_group_objects_upgrade(); OptionPath & destdir(); OptionString & comment(); OptionBool & downloadonly(); OptionBool & ignorearch(); OptionString & module_platform_id(); // Repo main config OptionNumber & retries(); OptionString & cachedir(); OptionBool & fastestmirror(); OptionStringList & excludepkgs(); OptionStringList & includepkgs(); OptionString & proxy(); OptionString & proxy_username(); OptionString & proxy_password(); OptionEnum & proxy_auth_method(); OptionStringList & protected_packages(); OptionString & username(); OptionString & password(); OptionBool & gpgcheck(); OptionBool & repo_gpgcheck(); OptionBool & enabled(); OptionBool & enablegroups(); OptionNumber & bandwidth(); OptionNumber & minrate(); OptionEnum & ip_resolve(); OptionNumber & throttle(); OptionSeconds & timeout(); OptionNumber & max_parallel_downloads(); OptionSeconds & metadata_expire(); OptionString & sslcacert(); OptionBool & sslverify(); OptionString & sslclientcert(); OptionString & sslclientkey(); OptionBool & deltarpm(); OptionNumber & deltarpm_percentage(); private: class Impl; std::unique_ptr pImpl; }; } #endif #endif