Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
| 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 | #include "command-parser.hpp" |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame^] | 27 | #include "format-helpers.hpp" |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 28 | #include <ndn-cxx/util/logger.hpp> |
| 29 | |
| 30 | namespace nfd { |
| 31 | namespace tools { |
| 32 | namespace nfdc { |
| 33 | |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame^] | 34 | NDN_LOG_INIT(nfdc.CommandParser); |
| 35 | |
| 36 | static_assert(std::is_same<std::underlying_type<AvailableIn>::type, |
| 37 | std::underlying_type<ParseMode>::type>::value, |
| 38 | "AvailableIn and ParseMode must be declared with same underlying type"); |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 39 | |
| 40 | std::ostream& |
| 41 | operator<<(std::ostream& os, AvailableIn modes) |
| 42 | { |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame^] | 43 | text::Separator sep("|"); |
| 44 | if ((modes & AVAILABLE_IN_ONE_SHOT) != 0) { |
| 45 | os << sep << "one-shot"; |
| 46 | } |
| 47 | if ((modes & AVAILABLE_IN_BATCH) != 0) { |
| 48 | os << sep << "batch"; |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame^] | 51 | if (sep.getCount() == 0) { |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 52 | os << "none"; |
| 53 | } |
| 54 | return os; |
| 55 | } |
| 56 | |
| 57 | std::ostream& |
| 58 | operator<<(std::ostream& os, ParseMode mode) |
| 59 | { |
| 60 | switch (mode) { |
| 61 | case ParseMode::ONE_SHOT: |
| 62 | return os << "one-shot"; |
| 63 | case ParseMode::BATCH: |
| 64 | return os << "batch"; |
| 65 | } |
| 66 | return os << static_cast<int>(mode); |
| 67 | } |
| 68 | |
| 69 | CommandParser& |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame^] | 70 | CommandParser::addCommand(const CommandDefinition& def, const ExecuteCommand& execute, |
| 71 | std::underlying_type<AvailableIn>::type modes) |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 72 | { |
| 73 | BOOST_ASSERT(modes != AVAILABLE_IN_NONE); |
Junxiao Shi | c143afe | 2016-09-20 13:04:51 +0000 | [diff] [blame^] | 74 | m_commands[{def.getNoun(), def.getVerb()}].reset( |
| 75 | new Command{def, execute, static_cast<AvailableIn>(modes)}); |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 76 | return *this; |
| 77 | } |
| 78 | |
| 79 | CommandParser& |
| 80 | CommandParser::addAlias(const std::string& noun, const std::string& verb, const std::string& verb2) |
| 81 | { |
| 82 | m_commands[{noun, verb2}] = m_commands.at({noun, verb}); |
| 83 | return *this; |
| 84 | } |
| 85 | |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 86 | std::tuple<std::string, std::string, CommandArguments, ExecuteCommand> |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 87 | CommandParser::parse(const std::vector<std::string>& tokens, ParseMode mode) const |
| 88 | { |
| 89 | BOOST_ASSERT(mode == ParseMode::ONE_SHOT); |
| 90 | |
| 91 | const std::string& noun = tokens.size() > 0 ? tokens[0] : ""; |
| 92 | const std::string& verb = tokens.size() > 1 ? tokens[1] : ""; |
| 93 | size_t nameLen = std::min<size_t>(2, tokens.size()); |
| 94 | |
| 95 | auto i = m_commands.find({noun, verb}); |
| 96 | if (i == m_commands.end()) { |
| 97 | if (verb.empty()) { |
| 98 | i = m_commands.find({noun, "list"}); |
| 99 | } |
| 100 | else { |
| 101 | // help, exit, quit, legacy nfdc commands |
| 102 | i = m_commands.find({noun, ""}); |
| 103 | } |
| 104 | nameLen = std::min<size_t>(1, tokens.size()); |
| 105 | } |
| 106 | if (i == m_commands.end() || (i->second->modes & static_cast<AvailableIn>(mode)) == 0) { |
| 107 | BOOST_THROW_EXCEPTION(Error("no such command: " + noun + " " + verb)); |
| 108 | } |
| 109 | |
| 110 | const CommandDefinition& def = i->second->def; |
| 111 | NDN_LOG_TRACE("found command " << def.getNoun() << " " << def.getVerb()); |
| 112 | |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 113 | return std::make_tuple(def.getNoun(), def.getVerb(), def.parse(tokens, nameLen), i->second->execute); |
Junxiao Shi | 64567bb | 2016-09-04 16:00:27 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | } // namespace nfdc |
| 117 | } // namespace tools |
| 118 | } // namespace nfd |