Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +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 | |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 26 | #ifndef NFD_TOOLS_NFDC_FACE_MODULE_HPP |
| 27 | #define NFD_TOOLS_NFDC_FACE_MODULE_HPP |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 28 | |
| 29 | #include "module.hpp" |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 30 | #include "command-parser.hpp" |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 31 | #include "format-helpers.hpp" |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | namespace tools { |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 35 | namespace nfdc { |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 36 | |
| 37 | using ndn::nfd::FaceStatus; |
| 38 | |
| 39 | /** \brief provides access to NFD face management |
| 40 | * \sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt |
| 41 | */ |
| 42 | class FaceModule : public Module, noncopyable |
| 43 | { |
| 44 | public: |
Junxiao Shi | 36e5429 | 2017-02-17 18:43:16 +0000 | [diff] [blame] | 45 | /** \brief register 'face list', 'face show', 'face create', 'face destroy' commands |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 46 | */ |
| 47 | static void |
| 48 | registerCommands(CommandParser& parser); |
| 49 | |
Junxiao Shi | 36e5429 | 2017-02-17 18:43:16 +0000 | [diff] [blame] | 50 | /** \brief the 'face list' command |
| 51 | */ |
| 52 | static void |
| 53 | list(ExecuteContext& ctx); |
| 54 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 55 | /** \brief the 'face show' command |
| 56 | */ |
| 57 | static void |
| 58 | show(ExecuteContext& ctx); |
| 59 | |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 60 | /** \brief the 'face create' command |
| 61 | */ |
| 62 | static void |
| 63 | create(ExecuteContext& ctx); |
| 64 | |
Junxiao Shi | 05dd444 | 2017-02-06 22:50:07 +0000 | [diff] [blame] | 65 | /** \brief the 'face destroy' command |
| 66 | */ |
| 67 | static void |
| 68 | destroy(ExecuteContext& ctx); |
| 69 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 70 | void |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 71 | fetchStatus(Controller& controller, |
Davide Pesavento | 87fc0f8 | 2018-04-11 23:43:51 -0400 | [diff] [blame] | 72 | const std::function<void()>& onSuccess, |
Junxiao Shi | 29b4128 | 2016-08-22 03:47:02 +0000 | [diff] [blame] | 73 | const Controller::DatasetFailCallback& onFailure, |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 74 | const CommandOptions& options) override; |
| 75 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 76 | void |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 77 | formatStatusXml(std::ostream& os) const override; |
| 78 | |
| 79 | /** \brief format a single status item as XML |
| 80 | * \param os output stream |
| 81 | * \param item status item |
| 82 | */ |
| 83 | void |
| 84 | formatItemXml(std::ostream& os, const FaceStatus& item) const; |
| 85 | |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 86 | void |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 87 | formatStatusText(std::ostream& os) const override; |
| 88 | |
| 89 | /** \brief format a single status item as text |
| 90 | * \param os output stream |
| 91 | * \param item status item |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 92 | * \param wantMultiLine use multi-line style |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 93 | */ |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 94 | static void |
| 95 | formatItemText(std::ostream& os, const FaceStatus& item, bool wantMultiLine); |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 96 | |
Eric Newberry | de33245 | 2018-01-30 11:45:32 -0700 | [diff] [blame] | 97 | /** \brief print face response parameters to specified ostream |
| 98 | * \param os output stream |
| 99 | * \param ia ItemAttributes used to format output |
| 100 | * \param resp response control parameters to print |
| 101 | */ |
| 102 | static void |
| 103 | printFaceParams(std::ostream& os, text::ItemAttributes& ia, const ControlParameters& resp); |
| 104 | |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 105 | private: |
| 106 | std::vector<FaceStatus> m_status; |
| 107 | }; |
| 108 | |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 109 | } // namespace nfdc |
Junxiao Shi | 38f4ce9 | 2016-08-04 10:01:52 +0000 | [diff] [blame] | 110 | } // namespace tools |
| 111 | } // namespace nfd |
| 112 | |
Junxiao Shi | 331ade7 | 2016-08-19 14:07:19 +0000 | [diff] [blame] | 113 | #endif // NFD_TOOLS_NFDC_FACE_MODULE_HPP |