Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 2 | /* |
Junxiao Shi | 8eda682 | 2017-04-12 02:53:14 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, 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_DEFINITION_HPP |
| 27 | #define NFD_TOOLS_NFDC_COMMAND_DEFINITION_HPP |
| 28 | |
| 29 | #include "command-arguments.hpp" |
| 30 | |
| 31 | namespace nfd { |
| 32 | namespace tools { |
| 33 | namespace nfdc { |
| 34 | |
| 35 | /** \brief indicates argument value type |
| 36 | */ |
| 37 | enum class ArgValueType { |
| 38 | /** \brief boolean argument without value |
| 39 | * |
| 40 | * The argument appears in CommandArguments as bool value 'true'. |
| 41 | * It must not be declared as positional. |
| 42 | */ |
| 43 | NONE, |
| 44 | |
| 45 | /** \brief any arguments |
| 46 | * |
| 47 | * The argument appears in CommandArguments as std::vector<std::string>. |
| 48 | * It must be declared as positional, and will consume all subsequent tokens. |
| 49 | */ |
| 50 | ANY, |
| 51 | |
Eric Newberry | 84d3adc | 2017-08-09 23:31:40 -0400 | [diff] [blame] | 52 | /** \brief boolean |
| 53 | * |
| 54 | * The argument appears in CommandArguments as bool. |
| 55 | */ |
| 56 | BOOLEAN, |
| 57 | |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 58 | /** \brief non-negative integer |
| 59 | * |
| 60 | * The argument appears in CommandArguments as uint64_t. |
| 61 | * Acceptable input range is [0, std::numeric_limits<int64_t>::max()]. |
| 62 | */ |
| 63 | UNSIGNED, |
| 64 | |
| 65 | /** \brief arbitrary string |
| 66 | * |
| 67 | * The argument appears in CommandArguments as std::string. |
| 68 | */ |
| 69 | STRING, |
| 70 | |
| 71 | /** \brief report format 'xml' or 'text' |
| 72 | * |
| 73 | * The argument appears in CommandArguments as nfd::tools::nfdc::ReportFormat. |
| 74 | */ |
| 75 | REPORT_FORMAT, |
| 76 | |
| 77 | /** \brief Name prefix |
| 78 | * |
| 79 | * The argument appears in CommandArguments as ndn::Name. |
| 80 | */ |
| 81 | NAME, |
| 82 | |
| 83 | /** \brief FaceUri |
| 84 | * |
Junxiao Shi | 83be1da | 2017-06-30 13:37:37 +0000 | [diff] [blame] | 85 | * The argument appears in CommandArguments as ndn::FaceUri. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 86 | */ |
| 87 | FACE_URI, |
| 88 | |
| 89 | /** \brief FaceId or FaceUri |
| 90 | * |
Junxiao Shi | 83be1da | 2017-06-30 13:37:37 +0000 | [diff] [blame] | 91 | * The argument appears in CommandArguments as either uint64_t or ndn::FaceUri. |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 92 | */ |
| 93 | FACE_ID_OR_URI, |
| 94 | |
| 95 | /** \brief face persistency 'persistent' or 'permanent' |
| 96 | * |
| 97 | * The argument appears in CommandArguments as ndn::nfd::FacePersistency. |
| 98 | */ |
Junxiao Shi | 8eda682 | 2017-04-12 02:53:14 +0000 | [diff] [blame] | 99 | FACE_PERSISTENCY, |
| 100 | |
| 101 | /** \brief route origin |
| 102 | * |
| 103 | * The argument appears in CommandArguments as ndn::nfd::RouteOrigin. |
| 104 | */ |
| 105 | ROUTE_ORIGIN, |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | std::ostream& |
| 109 | operator<<(std::ostream& os, ArgValueType vt); |
| 110 | |
| 111 | /** \brief indicates whether an argument is required |
| 112 | */ |
| 113 | enum class Required { |
| 114 | NO = false, ///< argument is optional |
| 115 | YES = true ///< argument is required |
| 116 | }; |
| 117 | |
| 118 | /** \brief indicates whether an argument can be specified as positional |
| 119 | */ |
| 120 | enum class Positional { |
| 121 | NO = false, ///< argument must be named |
| 122 | YES = true ///< argument can be specified as positional |
| 123 | }; |
| 124 | |
| 125 | /** \brief declares semantics of a command |
| 126 | */ |
| 127 | class CommandDefinition |
| 128 | { |
| 129 | public: |
| 130 | class Error : public std::invalid_argument |
| 131 | { |
| 132 | public: |
| 133 | explicit |
| 134 | Error(const std::string& what) |
| 135 | : std::invalid_argument(what) |
| 136 | { |
| 137 | } |
| 138 | }; |
| 139 | |
| 140 | CommandDefinition(const std::string& noun, const std::string& verb); |
| 141 | |
| 142 | ~CommandDefinition(); |
| 143 | |
| 144 | const std::string |
| 145 | getNoun() const |
| 146 | { |
| 147 | return m_noun; |
| 148 | } |
| 149 | |
| 150 | const std::string |
| 151 | getVerb() const |
| 152 | { |
| 153 | return m_verb; |
| 154 | } |
| 155 | |
| 156 | public: // help |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 157 | /** \return one-line description |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 158 | */ |
| 159 | const std::string& |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 160 | getTitle() const |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 161 | { |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 162 | return m_title; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 165 | /** \brief set one-line description |
| 166 | * \param title one-line description, written in lower case |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 167 | */ |
| 168 | CommandDefinition& |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 169 | setTitle(const std::string& title) |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 170 | { |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 171 | m_title = title; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 172 | return *this; |
| 173 | } |
| 174 | |
| 175 | public: // arguments |
| 176 | /** \brief declare an argument |
| 177 | * \param name argument name, must be unique |
| 178 | * \param valueType argument value type |
| 179 | * \param isRequired whether the argument is required |
| 180 | * \param allowPositional whether the argument value can be specified as positional |
| 181 | * \param metavar displayed argument value placeholder |
| 182 | */ |
| 183 | CommandDefinition& |
| 184 | addArg(const std::string& name, ArgValueType valueType, |
| 185 | Required isRequired = Required::NO, |
| 186 | Positional allowPositional = Positional::NO, |
| 187 | const std::string& metavar = ""); |
| 188 | |
| 189 | /** \brief parse a command line |
| 190 | * \param tokens command line tokens |
| 191 | * \param start command line start position, after noun and verb |
| 192 | * \throw Error command line is invalid |
| 193 | */ |
| 194 | CommandArguments |
| 195 | parse(const std::vector<std::string>& tokens, size_t start = 0) const; |
| 196 | |
| 197 | private: |
| 198 | boost::any |
| 199 | parseValue(ArgValueType valueType, const std::string& token) const; |
| 200 | |
| 201 | private: |
| 202 | std::string m_noun; |
| 203 | std::string m_verb; |
| 204 | |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 205 | std::string m_title; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 206 | |
| 207 | struct Arg |
| 208 | { |
| 209 | std::string name; |
| 210 | ArgValueType valueType; |
| 211 | bool isRequired; |
| 212 | std::string metavar; |
| 213 | }; |
| 214 | typedef std::map<std::string, Arg> ArgMap; |
| 215 | ArgMap m_args; |
| 216 | std::set<std::string> m_requiredArgs; |
| 217 | std::vector<std::string> m_positionalArgs; |
| 218 | }; |
| 219 | |
| 220 | } // namespace nfdc |
| 221 | } // namespace tools |
| 222 | } // namespace nfd |
| 223 | |
| 224 | #endif // NFD_TOOLS_NFDC_COMMAND_DEFINITION_HPP |