File: environmentinfo.cpp

package info (click to toggle)
dnf5 5.4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,960 kB
  • sloc: cpp: 94,312; python: 3,370; xml: 1,073; ruby: 600; sql: 250; ansic: 232; sh: 104; perl: 62; makefile: 30
file content (115 lines) | stat: -rw-r--r-- 4,388 bytes parent folder | download
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/environmentinfo.hpp"

#include "libdnf5-cli/tty.hpp"

// TODO(lukash) include from common in a public libdnf-cli header
#include "utils/string.hpp"

#include <libsmartcols/libsmartcols.h>


namespace libdnf5::cli::output {

namespace {

void add_line_into_environmentinfo_table(
    struct libscols_table * table, const char * key, const char * value, const char * color) {
    struct libscols_line * ln = scols_table_new_line(table, NULL);
    scols_line_set_data(ln, 0, key);
    scols_line_set_data(ln, 1, value);

    if (color && strcmp(color, "") != 0) {
        auto cell_value = scols_line_get_cell(ln, 1);
        scols_cell_set_color(cell_value, color);
    }
}


void add_line_into_environmentinfo_table(struct libscols_table * table, const char * key, const char * value) {
    add_line_into_environmentinfo_table(table, key, value, "");
}


void add_groups(struct libscols_table * table, std::vector<std::string> groups, const char * group_type_desc) {
    if (groups.empty()) {
        // don't even print the group type description
        return;
    }

    struct libscols_line * ln = scols_table_new_line(table, NULL);
    scols_line_set_data(ln, 0, group_type_desc);

    auto it = groups.begin();
    // put the first group at the same line as description
    scols_line_set_data(ln, 1, it->c_str());
    it++;

    // put the remaining group on separate lines
    for (; it != groups.end(); it++) {
        struct libscols_line * group_ln = scols_table_new_line(table, ln);
        scols_line_set_data(group_ln, 1, it->c_str());
    }
}


struct libscols_table * create_environmentinfo_table(IEnvironment & environment) {
    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", 20, SCOLS_FL_TREE);
    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);
    if (libdnf5::cli::tty::is_coloring_enabled()) {
        scols_table_enable_colors(table, true);
    }
    auto sy = scols_new_symbols();
    scols_symbols_set_branch(sy, "  ");
    scols_symbols_set_right(sy, "  ");
    scols_symbols_set_vertical(sy, "");
    scols_table_set_symbols(table, sy);
    scols_unref_symbols(sy);

    add_line_into_environmentinfo_table(table, "Id", environment.get_environmentid().c_str(), "bold");
    add_line_into_environmentinfo_table(table, "Name", environment.get_name().c_str());
    add_line_into_environmentinfo_table(table, "Description", environment.get_description().c_str());
    add_line_into_environmentinfo_table(table, "Order", environment.get_order().c_str());
    add_line_into_environmentinfo_table(table, "Installed", environment.get_installed() ? "True" : "False");
    add_line_into_environmentinfo_table(
        table, "Repositories", libdnf5::utils::string::join(environment.get_repos(), ", ").c_str());

    add_groups(table, environment.get_groups(), "Required groups");
    add_groups(table, environment.get_optional_groups(), "Optional groups");

    return table;
}

}  // namespace


void print_environmentinfo_table(IEnvironment & environment) {
    struct libscols_table * table = create_environmentinfo_table(environment);
    scols_print_table(table);
    scols_unref_table(table);
}

}  // namespace libdnf5::cli::output