blob: 52ba292bb0928cd94cb0c51c75bcfa3bb4798bc8 [file] [log] [blame]
Junxiao Shi64567bb2016-09-04 16:00:27 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoe0bae0f2018-02-17 22:07:52 -05002/*
Davide Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shi64567bb2016-09-04 16:00:27 +00004 * 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
29#include "command-definition.hpp"
Junxiao Shi737c43c2016-09-14 02:51:44 +000030#include "execute-command.hpp"
Davide Pesaventoe0bae0f2018-02-17 22:07:52 -050031
Junxiao Shic143afe2016-09-20 13:04:51 +000032#include <type_traits>
Junxiao Shi64567bb2016-09-04 16:00:27 +000033
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::tools::nfdc {
Junxiao Shi64567bb2016-09-04 16:00:27 +000035
36/** \brief indicates which modes is a command allowed
37 */
38enum AvailableIn : uint8_t {
39 AVAILABLE_IN_NONE = 0,
Junxiao Shic143afe2016-09-20 13:04:51 +000040 AVAILABLE_IN_ONE_SHOT = 1 << 0, ///< one-shot mode
41 AVAILABLE_IN_BATCH = 1 << 1, ///< batch mode
Junxiao Shi6c135622016-11-21 14:30:33 +000042 AVAILABLE_IN_HELP = 1 << 7, ///< visible in help listing
Junxiao Shi64567bb2016-09-04 16:00:27 +000043 AVAILABLE_IN_ALL = 0xff
44};
45
46std::ostream&
47operator<<(std::ostream& os, AvailableIn modes);
48
49/** \brief indicates which mode is the parser operated in
50 */
Junxiao Shic143afe2016-09-20 13:04:51 +000051enum class ParseMode : uint8_t {
Junxiao Shi64567bb2016-09-04 16:00:27 +000052 ONE_SHOT = AVAILABLE_IN_ONE_SHOT, ///< one-shot mode
53 BATCH = AVAILABLE_IN_BATCH ///< batch mode
54};
55
56std::ostream&
57operator<<(std::ostream& os, ParseMode mode);
58
59/** \brief parses a command
60 */
61class CommandParser : noncopyable
62{
63public:
Davide Pesaventoe0bae0f2018-02-17 22:07:52 -050064 class NoSuchCommandError : public std::invalid_argument
Junxiao Shi64567bb2016-09-04 16:00:27 +000065 {
66 public:
Davide Pesaventoe0bae0f2018-02-17 22:07:52 -050067 NoSuchCommandError(const std::string& noun, const std::string& verb)
68 : std::invalid_argument("No such command: " + noun + " " + verb)
Junxiao Shi64567bb2016-09-04 16:00:27 +000069 {
70 }
71 };
72
Junxiao Shi64567bb2016-09-04 16:00:27 +000073 /** \brief add an available command
74 * \param def command semantics definition
75 * \param execute a function to execute the command
76 * \param modes parse modes this command should be available in, must not be AVAILABLE_IN_NONE
77 */
78 CommandParser&
Junxiao Shic143afe2016-09-20 13:04:51 +000079 addCommand(const CommandDefinition& def, const ExecuteCommand& execute,
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040080 std::underlying_type_t<AvailableIn> modes = AVAILABLE_IN_ALL);
Junxiao Shi64567bb2016-09-04 16:00:27 +000081
82 /** \brief add an alias "noun verb2" to existing command "noun verb"
83 * \throw std::out_of_range "noun verb" does not exist
84 */
85 CommandParser&
86 addAlias(const std::string& noun, const std::string& verb, const std::string& verb2);
87
Junxiao Shi6c135622016-11-21 14:30:33 +000088 /** \brief list known commands for help
89 * \param noun if not empty, filter results by this noun
90 * \param mode include commands for the specified parse mode
91 * \return commands in insertion order
92 */
93 std::vector<const CommandDefinition*>
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040094 listCommands(std::string_view noun, ParseMode mode) const;
Junxiao Shi6c135622016-11-21 14:30:33 +000095
Junxiao Shi64567bb2016-09-04 16:00:27 +000096 /** \brief parse a command line
97 * \param tokens command line
98 * \param mode parser mode, must be ParseMode::ONE_SHOT, other modes are not implemented
Davide Pesaventoe0bae0f2018-02-17 22:07:52 -050099 * \throw NoSuchCommandError command not found
Junxiao Shi64567bb2016-09-04 16:00:27 +0000100 * \throw CommandDefinition::Error command arguments are invalid
Junxiao Shi737c43c2016-09-14 02:51:44 +0000101 * \return noun, verb, arguments, execute function
Junxiao Shi64567bb2016-09-04 16:00:27 +0000102 */
Junxiao Shi737c43c2016-09-14 02:51:44 +0000103 std::tuple<std::string, std::string, CommandArguments, ExecuteCommand>
Davide Pesavento2a588152018-02-19 18:10:03 -0500104 parse(const std::vector<std::string>& tokens, ParseMode mode) const;
Junxiao Shi64567bb2016-09-04 16:00:27 +0000105
106private:
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400107 using CommandName = std::pair<std::string, std::string>;
Junxiao Shi64567bb2016-09-04 16:00:27 +0000108
109 struct Command
110 {
111 CommandDefinition def;
Junxiao Shi737c43c2016-09-14 02:51:44 +0000112 ExecuteCommand execute;
Junxiao Shi64567bb2016-09-04 16:00:27 +0000113 AvailableIn modes;
114 };
115
Junxiao Shic143afe2016-09-20 13:04:51 +0000116 /** \brief map from command name or alias to command definition
117 */
Davide Pesaventob7bfcb92022-05-22 23:55:23 -0400118 using CommandContainer = std::map<CommandName, shared_ptr<Command>>;
Junxiao Shic143afe2016-09-20 13:04:51 +0000119 CommandContainer m_commands;
Junxiao Shi6c135622016-11-21 14:30:33 +0000120
121 /** \brief commands in insertion order
122 */
123 std::vector<CommandContainer::const_iterator> m_commandOrder;
Junxiao Shi64567bb2016-09-04 16:00:27 +0000124};
125
Davide Pesaventoa9b09b62022-06-04 14:07:25 -0400126void
127registerCommands(CommandParser& parser);
128
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400129} // namespace nfd::tools::nfdc
Junxiao Shi64567bb2016-09-04 16:00:27 +0000130
131#endif // NFD_TOOLS_NFDC_COMMAND_PARSER_HPP