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
|
// 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/transactionlist.hpp"
#include "utils/string.hpp"
#include "libdnf5-cli/tty.hpp"
#include "libdnf5/transaction/transaction_history.hpp"
#include <json-c/json.h>
#include <libsmartcols/libsmartcols.h>
namespace libdnf5::cli::output {
void print_transaction_list(std::vector<libdnf5::transaction::Transaction> & ts_list) {
std::unordered_map<int64_t, int64_t> id_to_item_count;
if (!ts_list.empty()) {
libdnf5::transaction::TransactionHistory history(ts_list[0].get_base());
id_to_item_count = history.get_transaction_item_counts(ts_list);
}
std::unique_ptr<libscols_table, decltype(&scols_unref_table)> table(scols_new_table(), &scols_unref_table);
if (!libdnf5::cli::tty::is_interactive()) {
// Do not hard-code 80 as non-interactive screen width. Let libdnf5::cli::tty to decide
auto screen_width = size_t(libdnf5::cli::tty::get_width());
scols_table_set_termwidth(table.get(), screen_width);
// The below is necessary to make the libsmartcols' truncation work with non-interactive terminal
scols_table_set_termforce(table.get(), SCOLS_TERMFORCE_ALWAYS);
}
scols_table_new_column(table.get(), "ID", 0, SCOLS_FL_RIGHT);
scols_table_new_column(table.get(), "Command line", 0.7, SCOLS_FL_TRUNC);
scols_table_new_column(table.get(), "Date and time", 0, 0);
scols_table_new_column(table.get(), "Action(s)", 0, 0);
scols_table_new_column(table.get(), "Altered", 0, SCOLS_FL_RIGHT);
if (libdnf5::cli::tty::is_coloring_enabled()) {
scols_table_enable_colors(table.get(), 1);
}
for (auto & ts : ts_list) {
struct libscols_line * ln = scols_table_new_line(table.get(), NULL);
scols_line_set_data(ln, 0, std::to_string(ts.get_id()).c_str());
scols_line_set_data(ln, 1, ts.get_description().c_str());
scols_line_set_data(ln, 2, libdnf5::utils::string::format_epoch(ts.get_dt_start()).c_str());
// TODO(lukash) fill the Actions(s), if we even want them?
scols_line_set_data(ln, 3, "");
scols_line_set_data(ln, 4, std::to_string(id_to_item_count.at(ts.get_id())).c_str());
}
scols_print_table(table.get());
}
// [NOTE] When editing JSON output format, do not forget to update the docs at doc/commands/history.8.rst
void print_transaction_list_json(std::vector<libdnf5::transaction::Transaction> & ts_list) {
std::unordered_map<int64_t, int64_t> id_to_item_count;
if (!ts_list.empty()) {
libdnf5::transaction::TransactionHistory history(ts_list[0].get_base());
id_to_item_count = history.get_transaction_item_counts(ts_list);
}
json_object * json_transactions = json_object_new_array();
for (auto & ts : ts_list) {
json_object * json_transaction = json_object_new_object();
json_object_object_add(json_transaction, "id", json_object_new_int64(ts.get_id()));
json_object_object_add(json_transaction, "command_line", json_object_new_string(ts.get_description().c_str()));
json_object_object_add(json_transaction, "start_time", json_object_new_int64(ts.get_dt_start()));
json_object_object_add(json_transaction, "end_time", json_object_new_int64(ts.get_dt_end()));
json_object_object_add(json_transaction, "user_id", json_object_new_int64(ts.get_user_id()));
json_object_object_add(
json_transaction,
"status",
json_object_new_string(libdnf5::transaction::transaction_state_to_string(ts.get_state()).c_str()));
json_object_object_add(json_transaction, "releasever", json_object_new_string(ts.get_releasever().c_str()));
json_object_object_add(
json_transaction, "altered_count", json_object_new_int64(id_to_item_count.at(ts.get_id())));
json_object_array_add(json_transactions, json_transaction);
}
std::cout << json_object_to_json_string_ext(json_transactions, JSON_C_TO_STRING_PRETTY) << std::endl;
json_object_put(json_transactions);
}
} // namespace libdnf5::cli::output
|