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
|
// 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/provides.hpp"
#include "key_value_table.hpp"
#include <libdnf5/common/sack/match_string.hpp>
#include <libsmartcols/libsmartcols.h>
#include <iostream>
namespace libdnf5::cli::output {
namespace {
void add_line_into_provides_table(struct libscols_table * table, const char * key, const char * value) {
struct libscols_line * ln = scols_table_new_line(table, nullptr);
scols_line_set_data(ln, 0, key);
scols_line_set_data(ln, 1, value);
}
struct libscols_table * create_provides_heading_table(IPackage & package) {
struct libscols_table * table = scols_new_table();
scols_table_enable_noheadings(table, 1);
scols_table_set_column_separator(table, " : ");
scols_table_new_column(table, "key", 5, 0);
struct libscols_column * cl = scols_table_new_column(table, "value", 10, SCOLS_FL_WRAP);
scols_column_set_safechars(cl, "\n");
scols_column_set_wrapfunc(cl, scols_wrapnl_chunksize, scols_wrapnl_nextchunk, nullptr);
add_line_into_provides_table(table, package.get_nevra().c_str(), package.get_summary().c_str());
return table;
}
struct libscols_table * create_provides_table(IPackage & package, const char * spec, int match) {
struct libscols_table * table = scols_new_table();
// don't print provides if don't match for at least one
if (!match) {
return table;
}
scols_table_enable_noheadings(table, 1);
scols_table_set_column_separator(table, " : ");
scols_table_new_column(table, "key", 5, 0);
struct libscols_column * cl = scols_table_new_column(table, "value", 10, SCOLS_FL_WRAP);
scols_column_set_safechars(cl, "\n");
scols_column_set_wrapfunc(cl, scols_wrapnl_chunksize, scols_wrapnl_nextchunk, nullptr);
add_line_into_provides_table(table, "Repo", package.get_repo_id().c_str());
add_line_into_provides_table(table, "Matched From", "");
switch (match) {
case ProvidesMatchedBy::PROVIDES: {
std::string spec_and_version =
package.get_name() + " = " + package.get_version() + "-" + package.get_release();
add_line_into_provides_table(table, "Provide", spec_and_version.c_str());
break;
}
case ProvidesMatchedBy::FILENAME: {
std::string pattern(spec);
for (const auto & file : package.get_files()) {
if (sack::match_string(file, sack::QueryCmp::GLOB, pattern)) {
add_line_into_provides_table(table, "Filename", file.c_str());
}
}
break;
}
case ProvidesMatchedBy::BINARY: {
std::string pattern(spec);
std::vector<std::string> prefix{"/bin/", "/sbin/", "/usr/bin/", "/usr/sbin/"};
for (const auto & file : package.get_files()) {
for (const auto & p : prefix) {
if (sack::match_string(file, sack::QueryCmp::GLOB, p + pattern)) {
add_line_into_provides_table(table, "Filename", file.c_str());
}
}
}
break;
}
}
return table;
}
} // namespace
void print_provides_table(IPackage & package, const char * spec, int match) {
auto table_head = create_provides_heading_table(package);
auto table = create_provides_table(package, spec, match);
scols_print_table(table_head);
scols_print_table(table);
scols_unref_table(table_head);
scols_unref_table(table);
std::cout << std::endl;
}
} // namespace libdnf5::cli::output
|