blob: 9dce67a6dac40bd5f8d8982c0480917c7735428e [file] [log] [blame]
Junxiao Shi64567bb2016-09-04 16:00:27 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry84d3adc2017-08-09 23:31:40 -04002/*
Davide Pesavento8b663a92018-11-21 22:57:20 -05003 * Copyright (c) 2014-2018, 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#include "command-definition.hpp"
Davide Pesavento8b663a92018-11-21 22:57:20 -050027
Junxiao Shi64567bb2016-09-04 16:00:27 +000028#include <ndn-cxx/util/logger.hpp>
29
30namespace nfd {
31namespace tools {
32namespace nfdc {
33
Junxiao Shic143afe2016-09-20 13:04:51 +000034NDN_LOG_INIT(nfdc.CommandDefinition);
Junxiao Shi64567bb2016-09-04 16:00:27 +000035
36std::ostream&
37operator<<(std::ostream& os, ArgValueType vt)
38{
39 switch (vt) {
40 case ArgValueType::NONE:
41 return os << "none";
42 case ArgValueType::ANY:
43 return os << "any";
Eric Newberry84d3adc2017-08-09 23:31:40 -040044 case ArgValueType::BOOLEAN:
45 return os << "boolean";
Junxiao Shi64567bb2016-09-04 16:00:27 +000046 case ArgValueType::UNSIGNED:
47 return os << "non-negative integer";
48 case ArgValueType::STRING:
49 return os << "string";
50 case ArgValueType::REPORT_FORMAT:
51 return os << "ReportFormat";
52 case ArgValueType::NAME:
53 return os << "Name";
54 case ArgValueType::FACE_URI:
55 return os << "FaceUri";
56 case ArgValueType::FACE_ID_OR_URI:
57 return os << "FaceId or FaceUri";
58 case ArgValueType::FACE_PERSISTENCY:
59 return os << "FacePersistency";
Junxiao Shi8eda6822017-04-12 02:53:14 +000060 case ArgValueType::ROUTE_ORIGIN:
61 return os << "RouteOrigin";
Junxiao Shi64567bb2016-09-04 16:00:27 +000062 }
63 return os << static_cast<int>(vt);
64}
65
66static std::string
67getMetavarFromType(ArgValueType vt)
68{
69 switch (vt) {
70 case ArgValueType::NONE:
71 return "";
72 case ArgValueType::ANY:
73 return "args";
Eric Newberry84d3adc2017-08-09 23:31:40 -040074 case ArgValueType::BOOLEAN:
75 return "bool";
Junxiao Shi64567bb2016-09-04 16:00:27 +000076 case ArgValueType::UNSIGNED:
77 return "uint";
78 case ArgValueType::STRING:
79 return "str";
80 case ArgValueType::REPORT_FORMAT:
81 return "fmt";
82 case ArgValueType::NAME:
83 return "name";
84 case ArgValueType::FACE_URI:
85 return "uri";
86 case ArgValueType::FACE_ID_OR_URI:
87 return "face";
88 case ArgValueType::FACE_PERSISTENCY:
89 return "persistency";
Junxiao Shi8eda6822017-04-12 02:53:14 +000090 case ArgValueType::ROUTE_ORIGIN:
91 return "origin";
Junxiao Shi64567bb2016-09-04 16:00:27 +000092 }
93 BOOST_ASSERT(false);
94 return "";
95}
96
97CommandDefinition::CommandDefinition(const std::string& noun, const std::string& verb)
98 : m_noun(noun)
99 , m_verb(verb)
100{
101}
102
103CommandDefinition::~CommandDefinition() = default;
104
105CommandDefinition&
106CommandDefinition::addArg(const std::string& name, ArgValueType valueType,
107 Required isRequired, Positional allowPositional,
108 const std::string& metavar)
109{
110 bool isNew = m_args.emplace(name,
111 Arg{name, valueType, static_cast<bool>(isRequired),
112 metavar.empty() ? getMetavarFromType(valueType) : metavar}).second;
Junxiao Shi737c43c2016-09-14 02:51:44 +0000113 BOOST_VERIFY(isNew);
Junxiao Shi64567bb2016-09-04 16:00:27 +0000114
115 if (static_cast<bool>(isRequired)) {
116 m_requiredArgs.insert(name);
117 }
118
119 if (static_cast<bool>(allowPositional)) {
120 BOOST_ASSERT(valueType != ArgValueType::NONE);
121 m_positionalArgs.push_back(name);
122 }
123 else {
124 BOOST_ASSERT(valueType != ArgValueType::ANY);
125 }
126
127 return *this;
128}
129
130CommandArguments
131CommandDefinition::parse(const std::vector<std::string>& tokens, size_t start) const
132{
133 CommandArguments ca;
134
135 size_t positionalArgIndex = 0;
136 for (size_t i = start; i < tokens.size(); ++i) {
137 const std::string& token = tokens[i];
138
139 // try to parse as named argument
140 auto namedArg = m_args.find(token);
141 if (namedArg != m_args.end() && namedArg->second.valueType != ArgValueType::ANY) {
142 NDN_LOG_TRACE(token << " is a named argument");
143 const Arg& arg = namedArg->second;
144 if (arg.valueType == ArgValueType::NONE) {
145 ca[arg.name] = true;
Eric Newberry84d3adc2017-08-09 23:31:40 -0400146 NDN_LOG_TRACE(token << " is a no-param argument");
Junxiao Shi64567bb2016-09-04 16:00:27 +0000147 }
148 else if (i + 1 >= tokens.size()) {
149 BOOST_THROW_EXCEPTION(Error(arg.name + ": " + arg.metavar + " is missing"));
150 }
151 else {
152 const std::string& valueToken = tokens[++i];
153 NDN_LOG_TRACE(arg.name << " has value " << valueToken);
154 try {
155 ca[arg.name] = this->parseValue(arg.valueType, valueToken);
156 }
157 catch (const std::exception& e) {
158 NDN_LOG_TRACE(valueToken << " cannot be parsed as " << arg.valueType);
159 BOOST_THROW_EXCEPTION(Error(arg.name + ": cannot parse '" + valueToken + "' as " +
160 arg.metavar + " (" + e.what() + ")"));
161 }
162 NDN_LOG_TRACE(valueToken << " is parsed as " << arg.valueType);
163 }
164
165 // disallow positional arguments after named argument
166 positionalArgIndex = m_positionalArgs.size();
167 continue;
168 }
169
170 // try to parse as positional argument
171 for (; positionalArgIndex < m_positionalArgs.size(); ++positionalArgIndex) {
172 const Arg& arg = m_args.at(m_positionalArgs[positionalArgIndex]);
173
174 if (arg.valueType == ArgValueType::ANY) {
175 std::vector<std::string> values;
176 std::copy(tokens.begin() + i, tokens.end(), std::back_inserter(values));
177 ca[arg.name] = values;
178 NDN_LOG_TRACE((tokens.size() - i) << " tokens are consumed for " << arg.name);
179 i = tokens.size();
180 break;
181 }
182
183 try {
184 ca[arg.name] = this->parseValue(arg.valueType, token);
185 NDN_LOG_TRACE(token << " is parsed as value for " << arg.name);
186 break;
187 }
188 catch (const std::exception& e) {
189 if (arg.isRequired) { // the current token must be parsed as the value for arg
190 NDN_LOG_TRACE(token << " cannot be parsed as value for " << arg.name);
191 BOOST_THROW_EXCEPTION(Error("cannot parse '" + token + "' as an argument name or as " +
192 arg.metavar + " for " + arg.name + " (" + e.what() + ")"));
193 }
194 else {
195 // the current token may be a value for next positional argument
196 NDN_LOG_TRACE(token << " cannot be parsed as value for " << arg.name);
197 }
198 }
199 }
200
201 if (positionalArgIndex >= m_positionalArgs.size()) {
202 // for loop has reached the end without finding a match,
203 // which means token is not accepted as a value for positional argument
204 BOOST_THROW_EXCEPTION(Error("cannot parse '" + token + "' as an argument name"));
205 }
206
207 // token is accepted; don't parse as the same positional argument again
208 ++positionalArgIndex;
209 }
210
211 for (const std::string& argName : m_requiredArgs) {
212 if (ca.count(argName) == 0) {
213 BOOST_THROW_EXCEPTION(Error(argName + ": required argument is missing"));
214 }
215 }
216
217 return ca;
218}
219
Eric Newberry84d3adc2017-08-09 23:31:40 -0400220static bool
221parseBoolean(const std::string& s)
222{
223 if (s == "on" || s == "true" || s == "enabled" || s == "yes" || s == "1") {
224 return true;
225 }
226 if (s == "off" || s == "false" || s == "disabled" || s == "no" || s == "0") {
227 return false;
228 }
229 BOOST_THROW_EXCEPTION(std::invalid_argument("unrecognized boolean value '" + s + "'"));
230}
231
Junxiao Shi215fd0b2017-01-28 19:01:04 +0000232static FacePersistency
Junxiao Shi64567bb2016-09-04 16:00:27 +0000233parseFacePersistency(const std::string& s)
234{
235 if (s == "persistent") {
Junxiao Shi215fd0b2017-01-28 19:01:04 +0000236 return FacePersistency::FACE_PERSISTENCY_PERSISTENT;
Junxiao Shi64567bb2016-09-04 16:00:27 +0000237 }
238 if (s == "permanent") {
Junxiao Shi215fd0b2017-01-28 19:01:04 +0000239 return FacePersistency::FACE_PERSISTENCY_PERMANENT;
Junxiao Shi64567bb2016-09-04 16:00:27 +0000240 }
Eric Newberry84d3adc2017-08-09 23:31:40 -0400241 BOOST_THROW_EXCEPTION(std::invalid_argument("unrecognized FacePersistency '" + s + "'"));
Junxiao Shi64567bb2016-09-04 16:00:27 +0000242}
243
Davide Pesavento8b663a92018-11-21 22:57:20 -0500244ndn::any
Junxiao Shi64567bb2016-09-04 16:00:27 +0000245CommandDefinition::parseValue(ArgValueType valueType, const std::string& token) const
246{
247 switch (valueType) {
248 case ArgValueType::NONE:
249 case ArgValueType::ANY:
250 BOOST_ASSERT(false);
Davide Pesavento8b663a92018-11-21 22:57:20 -0500251 return {};
Junxiao Shi64567bb2016-09-04 16:00:27 +0000252
Davide Pesavento8b663a92018-11-21 22:57:20 -0500253 case ArgValueType::BOOLEAN:
Eric Newberry84d3adc2017-08-09 23:31:40 -0400254 return parseBoolean(token);
Eric Newberry84d3adc2017-08-09 23:31:40 -0400255
Junxiao Shi64567bb2016-09-04 16:00:27 +0000256 case ArgValueType::UNSIGNED: {
257 // boost::lexical_cast<uint64_t> will accept negative number
258 int64_t v = boost::lexical_cast<int64_t>(token);
259 if (v < 0) {
Eric Newberry84d3adc2017-08-09 23:31:40 -0400260 BOOST_THROW_EXCEPTION(std::out_of_range("value '" + token + "' is negative"));
Junxiao Shi64567bb2016-09-04 16:00:27 +0000261 }
262 return static_cast<uint64_t>(v);
263 }
264
265 case ArgValueType::STRING:
266 return token;
267
268 case ArgValueType::REPORT_FORMAT:
269 return parseReportFormat(token);
270
271 case ArgValueType::NAME:
272 return Name(token);
273
274 case ArgValueType::FACE_URI:
Junxiao Shi215fd0b2017-01-28 19:01:04 +0000275 return FaceUri(token);
Junxiao Shi64567bb2016-09-04 16:00:27 +0000276
277 case ArgValueType::FACE_ID_OR_URI:
278 try {
279 return boost::lexical_cast<uint64_t>(token);
280 }
281 catch (const boost::bad_lexical_cast&) {
Junxiao Shi215fd0b2017-01-28 19:01:04 +0000282 return FaceUri(token);
Junxiao Shi64567bb2016-09-04 16:00:27 +0000283 }
284
285 case ArgValueType::FACE_PERSISTENCY:
286 return parseFacePersistency(token);
Junxiao Shi8eda6822017-04-12 02:53:14 +0000287
288 case ArgValueType::ROUTE_ORIGIN:
289 return boost::lexical_cast<RouteOrigin>(token);
Junxiao Shi64567bb2016-09-04 16:00:27 +0000290 }
291
292 BOOST_ASSERT(false);
Davide Pesavento8b663a92018-11-21 22:57:20 -0500293 return {};
Junxiao Shi64567bb2016-09-04 16:00:27 +0000294}
295
296} // namespace nfdc
297} // namespace tools
298} // namespace nfd