-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
129 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* | ||
Copyright Contributors to the libdnf project. | ||
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/>. | ||
*/ | ||
|
||
|
||
#ifndef LIBDNF_CLI_OUTPUT_MODULELIST_HPP | ||
#define LIBDNF_CLI_OUTPUT_MODULELIST_HPP | ||
|
||
#include "utils/string.hpp" | ||
|
||
#include "libdnf5-cli/tty.hpp" | ||
|
||
#include <libdnf5/module/module_item.hpp> | ||
#include <libsmartcols/libsmartcols.h> | ||
|
||
namespace libdnf5::cli::output { | ||
|
||
|
||
// module list table columns | ||
enum { COL_MODULE_NAME, COL_MODULE_STREAM, COL_MODULE_PROFILES, COL_MODULE_SUMMARY }; | ||
|
||
|
||
static struct libscols_table * create_modulelist_table() { | ||
struct libscols_table * table = scols_new_table(); | ||
if (libdnf5::cli::tty::is_interactive()) { | ||
scols_table_enable_colors(table, 1); | ||
} | ||
struct libscols_column * cl = scols_table_new_column(table, "Name", 20, 0); | ||
scols_column_set_cmpfunc(cl, scols_cmpstr_cells, NULL); | ||
scols_table_new_column(table, "Stream", 0.5, SCOLS_FL_TRUNC); | ||
scols_table_new_column(table, "Profiles", 0.5, SCOLS_FL_TRUNC); | ||
scols_table_new_column(table, "Summary", 0.5, SCOLS_FL_TRUNC); | ||
return table; | ||
} | ||
|
||
|
||
static void add_line_into_modulelist_table( | ||
struct libscols_table * table, | ||
const char * name, | ||
const char * stream, | ||
const char * profiles, | ||
const char * summary) { | ||
struct libscols_line * ln = scols_table_new_line(table, NULL); | ||
scols_line_set_data(ln, COL_MODULE_NAME, name); | ||
scols_line_set_data(ln, COL_MODULE_STREAM, stream); | ||
scols_line_set_data(ln, COL_MODULE_PROFILES, profiles); | ||
scols_line_set_data(ln, COL_MODULE_SUMMARY, summary); | ||
} | ||
|
||
|
||
template <class Query> | ||
void print_modulelist_table(Query & module_list) { | ||
// TODO(pkratoch): Sort the table | ||
struct libscols_table * table = create_modulelist_table(); | ||
std::set<std::pair<std::string, std::string>> name_stream_pairs; | ||
for (auto & module_item : module_list) { | ||
const std::string & name = module_item.get_name(); | ||
const std::string & stream = module_item.get_stream(); | ||
if (!name_stream_pairs.contains(make_pair(name, stream))) { | ||
// Get stream string (append [e] or [x] if needed) | ||
std::string stream_string = stream; | ||
const module::ModuleStatus & status = module_item.get_status(); | ||
if (status == module::ModuleStatus::ENABLED) { | ||
stream_string.append(" [e]"); | ||
} else if (status == module::ModuleStatus::DISABLED) { | ||
stream_string.append(" [x]"); | ||
} | ||
|
||
// Get profile strings (append [d] or [i] if needed) | ||
std::vector<std::string> profile_strings; | ||
for (auto profile : module_item.get_profiles()) { | ||
// TODO(pkratoch): Also show "[i]" for installed profiles | ||
// TODO(pkratoch): Make sure defaults are loaded | ||
profile_strings.push_back(profile.is_default() ? profile.get_name() + " [d]" : profile.get_name()); | ||
} | ||
|
||
add_line_into_modulelist_table( | ||
table, | ||
name.c_str(), | ||
stream_string.c_str(), | ||
utils::string::join(profile_strings, ", ").c_str(), | ||
module_item.get_summary().c_str()); | ||
name_stream_pairs.emplace(make_pair(name, stream)); | ||
} | ||
} | ||
scols_sort_table(table, scols_table_get_column(table, COL_MODULE_NAME)); | ||
scols_print_table(table); | ||
scols_unref_table(table); | ||
} | ||
|
||
|
||
} // namespace libdnf5::cli::output | ||
|
||
#endif // LIBDNF_CLI_OUTPUT_MODULELIST_HPP |