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
|
// 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/>.
#include "libdnf5-cli/output/advisorysummary.hpp"
#include "key_value_table.hpp"
#include <iostream>
namespace libdnf5::cli::output {
void print_advisorysummary_table(const libdnf5::advisory::AdvisoryQuery & advisories, const std::string & mode) {
KeyValueTable output_table;
std::cout << mode << " advisory information summary:" << std::endl;
libdnf5::advisory::AdvisoryQuery bugfixes{advisories};
bugfixes.filter_type("bugfix");
libdnf5::advisory::AdvisoryQuery enhancements{advisories};
enhancements.filter_type("enhancement");
libdnf5::advisory::AdvisoryQuery securities{advisories};
securities.filter_type("security");
libdnf5::advisory::AdvisoryQuery security_critical{securities};
security_critical.filter_severity("Critical");
libdnf5::advisory::AdvisoryQuery security_important{securities};
security_important.filter_severity("Important");
libdnf5::advisory::AdvisoryQuery security_moderate{securities};
security_moderate.filter_severity("Moderate");
libdnf5::advisory::AdvisoryQuery security_low{securities};
security_low.filter_severity("Low");
libdnf5::advisory::AdvisoryQuery security_other{securities};
security_other -= security_critical;
security_other -= security_important;
security_other -= security_moderate;
security_other -= security_low;
libdnf5::advisory::AdvisoryQuery others{advisories};
others -= bugfixes;
others -= enhancements;
others -= securities;
auto security_row = output_table.add_line("Security", securities.size(), nullptr);
output_table.add_line("Critical", security_critical.size(), nullptr, security_row);
output_table.add_line("Important", security_important.size(), nullptr, security_row);
output_table.add_line("Moderate", security_moderate.size(), nullptr, security_row);
output_table.add_line("Low", security_low.size(), nullptr, security_row);
output_table.add_line("Other", security_other.size(), nullptr, security_row);
output_table.add_line("Bugfix", bugfixes.size(), nullptr);
output_table.add_line("Enhancement", enhancements.size(), nullptr);
output_table.add_line("Other", others.size(), nullptr);
output_table.print();
}
} // namespace libdnf5::cli::output
|