aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2018-01-14 17:56:58 +0100
committerRenĂ© Korthaus <[email protected]>2018-01-14 17:56:58 +0100
commitd50d9afe6688c458530d5ecfa536e21756b4e2ca (patch)
tree9eb75238db82c77a51b5a241b7764c34bcfb1c51 /src/cli
parentfd9c081f7a1fa4c6a0fc8bf0eea2fd7d1a58cd27 (diff)
Simplify code
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/cli.h7
-rw-r--r--src/cli/utils.cpp53
2 files changed, 30 insertions, 30 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h
index 7ba54d370..26ead9081 100644
--- a/src/cli/cli.h
+++ b/src/cli/cli.h
@@ -160,12 +160,13 @@ class Command
Botan::RandomNumberGenerator& rng();
- typedef std::function<Command* ()> cmd_maker_fn;
- static std::map<std::string, cmd_maker_fn>& global_registry();
-
private:
void parse_spec();
+ typedef std::function<Command* ()> cmd_maker_fn;
+
+ static std::map<std::string, cmd_maker_fn>& global_registry();
+
// set in constructor
std::string m_spec;
diff --git a/src/cli/utils.cpp b/src/cli/utils.cpp
index 47c716ed5..62026d359 100644
--- a/src/cli/utils.cpp
+++ b/src/cli/utils.cpp
@@ -47,39 +47,31 @@ class Print_Help final : public Command
std::string help_text() const override
{
- const std::set<std::string> avail_commands =
- Botan::map_keys_as_set(Botan_CLI::Command::global_registry());
+ std::map<std::string, std::vector<std::unique_ptr<Command>>> grouped_commands;
+
+ auto reg_commands = Command::registered_cmds();
+ for(const auto& cmd_name : reg_commands)
+ {
+ auto cmd = Command::get_cmd(cmd_name);
+ if(cmd)
+ {
+ grouped_commands[cmd->group()].push_back(std::move(cmd));
+ }
+ }
const std::map<std::string, std::string> groups_description
-#if defined(BOTAN_HAS_AES) && defined(BOTAN_HAS_AEAD_MODES)
{ { "encryption", "Encryption" },
-#endif
-#if defined(BOTAN_HAS_COMPRESSION)
{ "compression", "Compression" },
-#endif
{ "hash", "Hash Functions" },
-#if defined(BOTAN_HAS_HMAC)
{ "hmac", "HMAC" },
-#endif
{ "numtheory", "Number Theory" },
-#if defined(BOTAN_HAS_BCRYPT)
{ "passhash", "Password Hashing" },
-#endif
-#if defined(BOTAN_HAS_PSK_DB) && defined(BOTAN_HAS_SQLITE3)
{ "psk", "PSK Database" },
-#endif
{ "pubkey", "Public Key Cryptography" },
-#if defined(BOTAN_HAS_TLS)
{ "tls", "TLS" },
-#endif
-#if defined(BOTAN_HAS_X509_CERTIFICATES)
{ "x509", "X.509" },
-#endif
{ "misc", "Miscellaneous" }
};
-
- const std::set<std::string> groups =
- Botan::map_keys_as_set(groups_description);
std::ostringstream oss;
@@ -87,16 +79,23 @@ class Print_Help final : public Command
oss << "All commands support --verbose --help --output= --error-output= --rng-type= --drbg-seed=\n\n";
oss << "Available commands:\n\n";
- for(auto& cmd_group : groups)
+ for(const auto& commands : grouped_commands)
{
- oss << groups_description.at(cmd_group) << ":\n";
- for(auto& cmd_name : avail_commands)
+ std::string desc = commands.first;
+ if(desc.empty())
{
- auto cmd = Botan_CLI::Command::get_cmd(cmd_name);
- if(cmd->group() == cmd_group)
- {
- oss << " " << std::setw(16) << std::left << cmd->cmd_name() << " " << cmd->description() << "\n";
- }
+ continue;
+ }
+
+ if(groups_description.find(commands.first) != groups_description.end())
+ {
+ desc = groups_description.at(commands.first);
+ }
+ oss << desc << ":\n";
+
+ for(auto& cmd : commands.second)
+ {
+ oss << " " << std::setw(16) << std::left << cmd->cmd_name() << " " << cmd->description() << "\n";
}
oss << "\n";
}