Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | e0bae0f | 2018-02-17 22:07:52 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NFD_TOOLS_NFDC_COMMAND_PARSER_HPP |
| 27 | #define NFD_TOOLS_NFDC_COMMAND_PARSER_HPP |
| 28 | |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 29 | #include "core/common.hpp" |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 30 | #include "command-definition.hpp" |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 31 | #include "execute-command.hpp" |
Davide Pesavento | e0bae0f | 2018-02-17 22:07:52 -0500 | [diff] [blame] | 32 | |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame] | 33 | #include <type_traits> |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 34 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 35 | namespace nfd::tools::nfdc { |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 36 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 37 | /** \brief Indicates which modes is a command allowed. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 38 | */ |
| 39 | enum AvailableIn : uint8_t { |
| 40 | AVAILABLE_IN_NONE = 0, |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame] | 41 | AVAILABLE_IN_ONE_SHOT = 1 << 0, ///< one-shot mode |
| 42 | AVAILABLE_IN_BATCH = 1 << 1, ///< batch mode |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 43 | AVAILABLE_IN_HELP = 1 << 7, ///< visible in help listing |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 44 | AVAILABLE_IN_ALL = 0xff |
| 45 | }; |
| 46 | |
| 47 | std::ostream& |
| 48 | operator<<(std::ostream& os, AvailableIn modes); |
| 49 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 50 | /** \brief Indicates which mode is the parser operated in. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 51 | */ |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame] | 52 | enum class ParseMode : uint8_t { |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 53 | ONE_SHOT = AVAILABLE_IN_ONE_SHOT, ///< one-shot mode |
| 54 | BATCH = AVAILABLE_IN_BATCH ///< batch mode |
| 55 | }; |
| 56 | |
| 57 | std::ostream& |
| 58 | operator<<(std::ostream& os, ParseMode mode); |
| 59 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 60 | /** \brief Parses a command. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 61 | */ |
Davide Pesavento | 2c9d2ca | 2024-01-27 16:36:51 -0500 | [diff] [blame] | 62 | class CommandParser : boost::noncopyable |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 63 | { |
| 64 | public: |
Davide Pesavento | e0bae0f | 2018-02-17 22:07:52 -0500 | [diff] [blame] | 65 | class NoSuchCommandError : public std::invalid_argument |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 66 | { |
| 67 | public: |
Davide Pesavento | e0bae0f | 2018-02-17 22:07:52 -0500 | [diff] [blame] | 68 | NoSuchCommandError(const std::string& noun, const std::string& verb) |
| 69 | : std::invalid_argument("No such command: " + noun + " " + verb) |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 70 | { |
| 71 | } |
| 72 | }; |
| 73 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 74 | /** \brief Add an available command. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 75 | * \param def command semantics definition |
| 76 | * \param execute a function to execute the command |
| 77 | * \param modes parse modes this command should be available in, must not be AVAILABLE_IN_NONE |
| 78 | */ |
| 79 | CommandParser& |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame] | 80 | addCommand(const CommandDefinition& def, const ExecuteCommand& execute, |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 81 | std::underlying_type_t<AvailableIn> modes = AVAILABLE_IN_ALL); |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 82 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 83 | /** \brief Add an alias "noun verb2" to existing command "noun verb". |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 84 | * \throw std::out_of_range "noun verb" does not exist |
| 85 | */ |
| 86 | CommandParser& |
| 87 | addAlias(const std::string& noun, const std::string& verb, const std::string& verb2); |
| 88 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 89 | /** \brief List known commands for help. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 90 | * \param noun if not empty, filter results by this noun |
| 91 | * \param mode include commands for the specified parse mode |
| 92 | * \return commands in insertion order |
| 93 | */ |
| 94 | std::vector<const CommandDefinition*> |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 95 | listCommands(std::string_view noun, ParseMode mode) const; |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 96 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 97 | /** \brief Parse a command line. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 98 | * \param tokens command line |
| 99 | * \param mode parser mode, must be ParseMode::ONE_SHOT, other modes are not implemented |
Davide Pesavento | e0bae0f | 2018-02-17 22:07:52 -0500 | [diff] [blame] | 100 | * \throw NoSuchCommandError command not found |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 101 | * \throw CommandDefinition::Error command arguments are invalid |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 102 | * \return noun, verb, arguments, execute function |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 103 | */ |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 104 | std::tuple<std::string, std::string, CommandArguments, ExecuteCommand> |
Davide Pesavento | 2a58815 | 2018-02-19 18:10:03 -0500 | [diff] [blame] | 105 | parse(const std::vector<std::string>& tokens, ParseMode mode) const; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 106 | |
| 107 | private: |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 108 | using CommandName = std::pair<std::string, std::string>; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 109 | |
| 110 | struct Command |
| 111 | { |
| 112 | CommandDefinition def; |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 113 | ExecuteCommand execute; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 114 | AvailableIn modes; |
| 115 | }; |
| 116 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 117 | /** \brief Map from command name or alias to command definition. |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame] | 118 | */ |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame] | 119 | using CommandContainer = std::map<CommandName, shared_ptr<Command>>; |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame] | 120 | CommandContainer m_commands; |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 121 | |
Davide Pesavento | aa9e3b2 | 2022-10-21 17:00:07 -0400 | [diff] [blame] | 122 | /** \brief Commands in insertion order. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 123 | */ |
| 124 | std::vector<CommandContainer::const_iterator> m_commandOrder; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 125 | }; |
| 126 | |
Davide Pesavento | a9b09b6 | 2022-06-04 14:07:25 -0400 | [diff] [blame] | 127 | void |
| 128 | registerCommands(CommandParser& parser); |
| 129 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 130 | } // namespace nfd::tools::nfdc |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 131 | |
| 132 | #endif // NFD_TOOLS_NFDC_COMMAND_PARSER_HPP |