-
Notifications
You must be signed in to change notification settings - Fork 93
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
7 changed files
with
171 additions
and
13 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
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,123 @@ | ||
/* | ||
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_MODULEINFO_HPP | ||
#define LIBDNF_CLI_OUTPUT_MODULEINFO_HPP | ||
|
||
#include "key_value_table.hpp" | ||
#include "utils/string.hpp" | ||
|
||
#include "libdnf5-cli/tty.hpp" | ||
|
||
#include <libdnf5/module/module_item.hpp> | ||
#include <libdnf5/module/module_sack.hpp> | ||
#include <libsmartcols/libsmartcols.h> | ||
|
||
#include <set> | ||
#include <string> | ||
|
||
namespace libdnf5::cli::output { | ||
|
||
|
||
class ModuleInfo : public KeyValueTable { | ||
public: | ||
template <typename ModuleItem> | ||
void add_module_item(ModuleItem & module_item); | ||
|
||
private: | ||
void add_multiline_value(const char * key, const std::vector<std::string> & multiline_value); | ||
}; | ||
|
||
|
||
void ModuleInfo::add_multiline_value(const char * key, const std::vector<std::string> & values) { | ||
if (values.empty()) { | ||
add_line(key, ""); | ||
return; | ||
} | ||
auto it = values.begin(); | ||
// put the first item at the same line as description | ||
add_line(key, it->c_str()); | ||
it++; | ||
|
||
// put the remaining items on separate lines | ||
for (; it != values.end(); it++) { | ||
add_line("", it->c_str()); | ||
} | ||
} | ||
|
||
std::vector<std::string> dependency_strings(std::vector<module::ModuleDependency> dependencies) { | ||
std::vector<std::string> dependency_strings; | ||
for (module::ModuleDependency & dependency : dependencies) { | ||
dependency_strings.push_back(dependency.to_string()); | ||
} | ||
return dependency_strings; | ||
} | ||
|
||
template <typename ModuleItem> | ||
void ModuleInfo::add_module_item(ModuleItem & module_item) { | ||
std::vector<std::string> profile_names; | ||
for (const module::ModuleProfile & profile : module_item.get_profiles()) { | ||
profile_names.push_back(profile.get_name() + (profile.is_default() ? " [d]" : "")); | ||
} | ||
|
||
std::vector<std::string> dependency_strings; | ||
for (module::ModuleDependency & dependency : module_item.get_module_dependencies()) { | ||
dependency_strings.push_back(dependency.to_string()); | ||
} | ||
|
||
// Get stream string (append [d] and [e] or [x] if needed) | ||
const module::ModuleStatus & status = module_item.get_status(); | ||
std::string stream_string = module_item.is_default() ? "[d]" : ""; | ||
if (status == module::ModuleStatus::ENABLED) { | ||
stream_string.append("[e]"); | ||
} else if (status == module::ModuleStatus::DISABLED) { | ||
stream_string.append("[x]"); | ||
} | ||
stream_string = stream_string.empty() ? module_item.get_stream() : module_item.get_stream() + " " + stream_string; | ||
|
||
add_line("Name", module_item.get_name()); | ||
add_line("Stream", stream_string); | ||
add_line("Version", module_item.get_version_str()); | ||
add_line("Context", module_item.get_context()); | ||
add_line("Architecture", module_item.get_arch()); | ||
add_line("Profiles", utils::string::join(profile_names, ", ")); | ||
add_line("Default profiles", utils::string::join(module_item.get_default_profiles(), ", ")); | ||
add_line("Repo", module_item.get_repo_id()); | ||
add_line("Summary", module_item.get_summary()); | ||
add_line("Description", module_item.get_description()); | ||
add_multiline_value("Requires", dependency_strings); | ||
add_multiline_value("Artifacts", module_item.get_artifacts()); | ||
} | ||
|
||
|
||
template <class Query> | ||
void print_moduleinfo_table(Query & module_list) { | ||
for (auto & module_item : module_list) { | ||
libdnf5::cli::output::ModuleInfo module_info; | ||
module_info.add_module_item(module_item); | ||
module_info.print(); | ||
std::cout << std::endl; | ||
} | ||
} | ||
|
||
|
||
} // namespace libdnf5::cli::output | ||
|
||
#endif // LIBDNF_CLI_OUTPUT_MODULEINFO_HPP |
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