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
|
// Copyright Contributors to the DNF5 project.
// Copyright Contributors to the libdnf project.
// SPDX-License-Identifier: GPL-2.0-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 General Public License as published by
// the Free Software Foundation, either version 2 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with libdnf. If not, see <https://www.gnu.org/licenses/>.
#include "group.hpp"
#include "../../group.hpp"
#include "dbus.hpp"
#include <libdnf5/common/sack/query_cmp.hpp>
#include <libdnf5/comps/group/group.hpp>
#include <libdnf5/comps/group/query.hpp>
#include <sdbus-c++/sdbus-c++.h>
#include <optional>
#include <string>
void Group::dbus_register() {
auto dbus_object = session.get_dbus_object();
#ifdef SDBUS_CPP_VERSION_2
dbus_object
->addVTable(sdbus::MethodVTableItem{
sdbus::MethodName{"list"},
sdbus::Signature{"a{sv}"},
{"options"},
sdbus::Signature{"aa{sv}"},
{"groups"},
[this](sdbus::MethodCall call) -> void {
session.get_threads_manager().handle_method(*this, &Group::list, call, session.session_locale);
},
{}})
.forInterface(dnfdaemon::INTERFACE_GROUP);
#else
dbus_object->registerMethod(
dnfdaemon::INTERFACE_GROUP,
"list",
"a{sv}",
{"options"},
"aa{sv}",
{"groups"},
[this](sdbus::MethodCall call) -> void {
session.get_threads_manager().handle_method(*this, &Group::list, call, session.session_locale);
});
#endif
}
sdbus::MethodReply Group::list(sdbus::MethodCall & call) {
// read options from dbus call
dnfdaemon::KeyValueMap options;
call >> options;
session.fill_sack();
auto base = session.get_base();
libdnf5::comps::GroupQuery query(base->get_weak_ptr());
// patterns to search
const auto patterns =
dnfdaemon::key_value_map_get<std::vector<std::string>>(options, "patterns", std::vector<std::string>());
if (patterns.size() > 0) {
libdnf5::comps::GroupQuery patterns_query(base->get_weak_ptr(), true);
const auto match_group_id = dnfdaemon::key_value_map_get<bool>(options, "match_group_id", true);
if (match_group_id) {
libdnf5::comps::GroupQuery query_id(query);
query_id.filter_groupid(patterns, libdnf5::sack::QueryCmp::IGLOB);
patterns_query |= query_id;
}
const auto match_group_name = dnfdaemon::key_value_map_get<bool>(options, "match_group_name", false);
if (match_group_name) {
libdnf5::comps::GroupQuery query_name(query);
query_name.filter_name(patterns, libdnf5::sack::QueryCmp::IGLOB);
patterns_query |= query_name;
}
query = patterns_query;
}
// filter hidden groups
const auto with_hidden = dnfdaemon::key_value_map_get<bool>(options, "with_hidden", false);
if (!with_hidden) {
query.filter_uservisible(true);
}
const auto scope = dnfdaemon::key_value_map_get<std::string>(options, "scope", "all");
if (scope == "installed") {
query.filter_installed(true);
} else if (scope == "available") {
query.filter_installed(false);
} else if (scope == "all") {
// to remove duplicities in the output remove from query all available
// groups with the same groupid as any of the installed groups.
libdnf5::comps::GroupQuery query_installed(query);
query_installed.filter_installed(true);
std::vector<std::string> installed_ids;
for (const auto & grp : query_installed) {
installed_ids.emplace_back(grp.get_groupid());
}
libdnf5::comps::GroupQuery query_available(query);
query_available.filter_installed(false);
query_available.filter_groupid(installed_ids);
query -= query_available;
} else {
throw sdbus::Error(dnfdaemon::ERROR, fmt::format("Unsupported scope for group filtering \"{}\".", scope));
}
const auto contains_pkgs = dnfdaemon::key_value_map_get<std::vector<std::string>>(options, "contains_pkgs", {});
if (!contains_pkgs.empty()) {
query.filter_package_name(contains_pkgs, libdnf5::sack::QueryCmp::IGLOB);
}
// create reply from the query
dnfdaemon::KeyValueMapList out_groups;
std::vector<std::string> attributes =
dnfdaemon::key_value_map_get<std::vector<std::string>>(options, "attributes", std::vector<std::string>{});
// Get optional language for translations
std::optional<std::string> lang;
if (options.find("lang") != options.end()) {
lang = dnfdaemon::key_value_map_get<std::string>(options, "lang");
}
for (auto grp : query.list()) {
out_groups.push_back(group_to_map(grp, attributes, lang));
}
auto reply = call.createReply();
reply << out_groups;
return reply;
}
|