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
|
// 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/repolist.hpp"
#include "libdnf5-cli/tty.hpp"
#include <json.h>
#include <libsmartcols/libsmartcols.h>
namespace libdnf5::cli::output {
namespace {
struct libscols_table * create_repolist_table(bool with_status) {
struct libscols_table * table = scols_new_table();
if (libdnf5::cli::tty::is_coloring_enabled()) {
scols_table_enable_colors(table, 1);
}
if (libdnf5::cli::tty::is_interactive()) {
scols_table_enable_maxout(table, 1);
}
struct libscols_column * cl = scols_table_new_column(table, "repo id", 0.4, 0);
scols_column_set_cmpfunc(cl, scols_cmpstr_cells, NULL);
scols_table_new_column(table, "repo name", 0.5, SCOLS_FL_TRUNC);
if (with_status) {
scols_table_new_column(table, "status", 0.1, SCOLS_FL_RIGHT);
}
return table;
}
void add_line_into_repolist_table(
struct libscols_table * table, bool with_status, const char * id, const char * descr, bool enabled) {
struct libscols_line * ln = scols_table_new_line(table, NULL);
scols_line_set_data(ln, COL_REPO_ID, id);
scols_line_set_data(ln, COL_REPO_NAME, descr);
if (with_status) {
scols_line_set_data(ln, COL_REPO_STATUS, enabled ? "enabled" : "disabled");
struct libscols_cell * cl = scols_line_get_cell(ln, COL_REPO_STATUS);
scols_cell_set_color(cl, enabled ? "green" : "red");
}
}
} // namespace
void print_repolist_table(const std::vector<std::unique_ptr<IRepo>> & repos, bool with_status, size_t sort_column) {
auto table = create_repolist_table(with_status);
for (const auto & repo : repos) {
add_line_into_repolist_table(
table,
with_status,
repo->get_id().c_str(),
repo->get_name().c_str(), //repo->get_config().get_name_option().get_value().c_str(),
repo->is_enabled());
}
auto cl = scols_table_get_column(table, sort_column);
scols_sort_table(table, cl);
scols_print_table(table);
scols_unref_table(table);
}
// [NOTE] When editing, do not forget to update the docs at docs/commands/repo.8.rst
void print_repolist_json([[maybe_unused]] const std::vector<std::unique_ptr<IRepo>> & repos) {
json_object * json_repos = json_object_new_array();
for (const auto & repo : repos) {
json_object * json_repo = json_object_new_object();
json_object_object_add(json_repo, "id", json_object_new_string(repo->get_id().c_str()));
json_object_object_add(json_repo, "name", json_object_new_string(repo->get_name().c_str()));
json_object_object_add(json_repo, "is_enabled", json_object_new_boolean(repo->is_enabled()));
json_object_array_add(json_repos, json_repo);
}
std::cout << json_object_to_json_string_ext(json_repos, JSON_C_TO_STRING_PRETTY) << std::endl;
json_object_put(json_repos);
}
} // namespace libdnf5::cli::output
|