1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
// Copyright Contributors to the DNF5 project.
// Copyright Contributors to the libdnf project.
// SPDX-License-Identifier: LGPL-2.1-or-later
//
// This file is part of libdnf: https://github.com/rpm-software-management/libdnf/
//
// Libdnf 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.
//
// Libdnf 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 libdnf. If not, see <https://www.gnu.org/licenses/>.
#ifndef LIBDNF5_COMPS_ENVIRONMENT_ENVIRONMENT_HPP
#define LIBDNF5_COMPS_ENVIRONMENT_ENVIRONMENT_HPP
#include "libdnf5/base/base_weak.hpp"
#include "libdnf5/defs.h"
#include "libdnf5/transaction/transaction_item_reason.hpp"
#include <set>
#include <string>
#include <vector>
namespace libdnf5::comps {
struct EnvironmentId {
public:
EnvironmentId() = default;
explicit EnvironmentId(int id) : id(id) {}
bool operator==(const EnvironmentId & other) const noexcept { return id == other.id; }
bool operator!=(const EnvironmentId & other) const noexcept { return id != other.id; }
// Corresponds to solvable id
int id{0};
};
// @replaces dnf:dnf/comps.py:class:Environment
class LIBDNF_API Environment {
public:
~Environment();
Environment(const Environment & src);
Environment & operator=(const Environment & src);
Environment(Environment && src) noexcept;
Environment & operator=(Environment && src) noexcept;
/// @return The `Base` object to which this object belongs.
/// @since 5.2.6
libdnf5::BaseWeakPtr get_base();
/// @return The Environment id.
/// @since 5.0
std::string get_environmentid() const;
/// @return The Environment name.
/// @since 5.0
std::string get_name() const;
/// @return The Environment description.
/// @since 5.0
std::string get_description() const;
/// @return The translated name of the Environment based on current locales.
/// If no translation is found, return untranslated name.
/// @since 5.0
//
// @replaces dnf:dnf/comps.py:attribute:Environment.ui_name
std::string get_translated_name(const char * lang) const;
std::string get_translated_name() const;
/// @return The translated description of the Environment based on current locales.
/// If no translation is found, return untranslated description.
/// @since 5.0
//
// @replaces dnf:dnf/comps.py:attribute:Environment.ui_description
std::string get_translated_description(const char * lang) const;
std::string get_translated_description() const;
/// @return The Environment display order.
/// @since 5.0
std::string get_order() const;
/// @return The Environment display order as an integer or INT_MAX if the order is invalid.
/// @since 5.2.12.1
int get_order_int() const;
/// @return std::vector of Group ids belonging to the Environment.
/// @since 5.0
//
// @replaces dnf:dnf/comps.py:attribute:Environment.mandatory_groups
std::vector<std::string> get_groups();
/// @return std::vector of optional Group ids belonging to the Environment.
/// @since 5.0
//
// @replaces dnf:dnf/comps.py:attribute:Environment.optional_groups
std::vector<std::string> get_optional_groups();
/// @return std::set of names of repositories that contain the Environment.
/// @since 5.0
//
// TODO(pkratoch): Either remove this method, or return a vector of the weak pointers to the repo objects
std::set<std::string> get_repos() const;
/// @return `true` if the Environment is installed (belongs to the \@System repo).
/// @since 5.0
bool get_installed() const;
/// @return Resolved reason why the Environment was installed.
/// Environments can be installed due to multiple reasons, only the most significant is returned.
/// @since 5.0
libdnf5::transaction::TransactionItemReason get_reason() const;
/// Merge the Environment with another one.
/// @since 5.0
Environment & operator+=(const Environment & rhs);
// Environments are the same if they have the same environment_ids (libsolv solvable_ids) in the same order, and the same base.
bool operator==(const Environment & rhs) const noexcept;
bool operator!=(const Environment & rhs) const noexcept;
// Compare Environments by environmentid and then by repoids (the string ids, so that it's deterministic even when loaded in a different order).
bool operator<(const Environment & rhs) const;
/// Serialize the Environment into an xml file
/// @param path Path of the output xml file.
/// @exception utils::xml::XMLSaveError When saving of the file fails.
/// @since 5.0
void serialize(const std::string & path);
protected:
explicit Environment(const libdnf5::BaseWeakPtr & base);
explicit Environment(libdnf5::Base & base);
private:
friend class EnvironmentQuery;
LIBDNF_LOCAL void add_environment_id(const EnvironmentId & environment_id);
class LIBDNF_LOCAL Impl;
std::unique_ptr<Impl> p_impl;
};
} // namespace libdnf5::comps
#endif // LIBDNF5_COMPS_ENVIRONMENT_ENVIRONMENT_HPP
|