| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (c) 2014 Regents of the University of California, |
| * Arizona Board of Regents, |
| * Colorado State University, |
| * University Pierre & Marie Curie, Sorbonne University, |
| * Washington University in St. Louis, |
| * Beijing Institute of Technology |
| * |
| * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| * See AUTHORS.md for complete list of NFD authors and contributors. |
| * |
| * NFD is free software: you can redistribute it and/or modify it under the terms |
| * of the GNU General Public License as published by the Free Software Foundation, |
| * either version 3 of the License, or (at your option) any later version. |
| * |
| * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| * PURPOSE. See the GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License along with |
| * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| **/ |
| |
| #ifndef NFD_TOOLS_NFDC_HPP |
| #define NFD_TOOLS_NFDC_HPP |
| |
| #include <ndn-cxx/face.hpp> |
| #include <ndn-cxx/management/controller.hpp> |
| #include <ndn-cxx/management/nfd-controller.hpp> |
| |
| namespace nfdc { |
| |
| using namespace ndn::nfd; |
| |
| class Nfdc : boost::noncopyable |
| { |
| public: |
| class Error : public std::runtime_error |
| { |
| public: |
| explicit |
| Error(const std::string& what) |
| : std::runtime_error(what) |
| { |
| } |
| }; |
| |
| explicit |
| Nfdc(ndn::Face& face); |
| |
| ~Nfdc(); |
| |
| bool |
| dispatch(const std::string& cmd); |
| |
| /** |
| * \brief Adds a name to a FIB entry after creating the attaced face. |
| * |
| * Create a new face for the given faceUri and use it when adding the given name to the fib |
| * |
| * |
| * cmd format: |
| * add name faceUri [cost] |
| * |
| */ |
| void |
| addName(); |
| /** |
| * \brief Adds a nexthop to a FIB entry. |
| * |
| * If the FIB entry does not exist, it is inserted automatically |
| * |
| * cmd format: |
| * name faceId [cost] |
| * |
| */ |
| void |
| fibAddNextHop(bool hasCost); |
| |
| /** |
| * \brief Removes a nexthop from an existing FIB entry |
| * |
| * If the last nexthop record in a FIB entry is removed, the FIB entry is also deleted |
| * |
| * cmd format: |
| * name faceId |
| * |
| */ |
| void |
| fibRemoveNextHop(); |
| |
| /** |
| * \brief create new face |
| * |
| * This command allows creation of UDP unicast and TCP faces only. |
| * |
| * cmd format: |
| * uri |
| * |
| */ |
| void |
| faceCreate(); |
| |
| /** |
| * \brief destroy a face |
| * |
| * cmd format: |
| * faceId |
| * |
| */ |
| void |
| faceDestroy(); |
| |
| /** |
| * \brief Set the strategy for a namespace |
| * |
| * |
| * cmd format: |
| * name strategy |
| * |
| */ |
| void |
| strategyChoiceSet(); |
| |
| /** |
| * \brief Unset the strategy for a namespace |
| * |
| * |
| * cmd format: |
| * name strategy |
| * |
| */ |
| void |
| strategyChoiceUnset(); |
| |
| private: |
| |
| void |
| onSuccess(const ControlParameters& parameters, |
| const std::string& message); |
| |
| void |
| onAddSuccess(const ControlParameters& parameters, |
| const std::string& message); |
| |
| void |
| onError(uint32_t code, const std::string& error, const std::string& message); |
| |
| void |
| fibAddNextHop(const std::string& name, const uint64_t faceId, bool hasCost); |
| |
| public: |
| const char* m_programName; |
| |
| // command parameters without leading 'cmd' component |
| const char** m_commandLineArguments; |
| int m_nOptions; |
| |
| private: |
| Controller m_controller; |
| }; |
| |
| } // namespace nfdc |
| |
| #endif // NFD_TOOLS_NFDC_HPP |