blob: 8083e746d9044275e0ad4be8af6c151ffda98985 [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberryde332452018-01-30 11:45:32 -07002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Junxiao Shi38f4ce92016-08-04 10:01:52 +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
Junxiao Shi331ade72016-08-19 14:07:19 +000026#ifndef NFD_TOOLS_NFDC_FACE_MODULE_HPP
27#define NFD_TOOLS_NFDC_FACE_MODULE_HPP
Junxiao Shi38f4ce92016-08-04 10:01:52 +000028
29#include "module.hpp"
Junxiao Shi1f481fa2017-01-26 15:14:43 +000030#include "command-parser.hpp"
Eric Newberryde332452018-01-30 11:45:32 -070031#include "format-helpers.hpp"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000032
33namespace nfd {
34namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000035namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000036
37using ndn::nfd::FaceStatus;
38
39/** \brief provides access to NFD face management
40 * \sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
41 */
42class FaceModule : public Module, noncopyable
43{
44public:
Junxiao Shi36e54292017-02-17 18:43:16 +000045 /** \brief register 'face list', 'face show', 'face create', 'face destroy' commands
Junxiao Shi1f481fa2017-01-26 15:14:43 +000046 */
47 static void
48 registerCommands(CommandParser& parser);
49
Junxiao Shi36e54292017-02-17 18:43:16 +000050 /** \brief the 'face list' command
51 */
52 static void
53 list(ExecuteContext& ctx);
54
Junxiao Shi1f481fa2017-01-26 15:14:43 +000055 /** \brief the 'face show' command
56 */
57 static void
58 show(ExecuteContext& ctx);
59
Junxiao Shi1d7fef52017-02-02 05:33:14 +000060 /** \brief the 'face create' command
61 */
62 static void
63 create(ExecuteContext& ctx);
64
Junxiao Shi05dd4442017-02-06 22:50:07 +000065 /** \brief the 'face destroy' command
66 */
67 static void
68 destroy(ExecuteContext& ctx);
69
Junxiao Shi1f481fa2017-01-26 15:14:43 +000070 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000071 fetchStatus(Controller& controller,
Davide Pesavento87fc0f82018-04-11 23:43:51 -040072 const std::function<void()>& onSuccess,
Junxiao Shi29b41282016-08-22 03:47:02 +000073 const Controller::DatasetFailCallback& onFailure,
Junxiao Shi38f4ce92016-08-04 10:01:52 +000074 const CommandOptions& options) override;
75
Junxiao Shi1f481fa2017-01-26 15:14:43 +000076 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000077 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 Shi1f481fa2017-01-26 15:14:43 +000086 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000087 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 Shi1f481fa2017-01-26 15:14:43 +000092 * \param wantMultiLine use multi-line style
Junxiao Shi38f4ce92016-08-04 10:01:52 +000093 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000094 static void
95 formatItemText(std::ostream& os, const FaceStatus& item, bool wantMultiLine);
Junxiao Shi38f4ce92016-08-04 10:01:52 +000096
Eric Newberryde332452018-01-30 11:45:32 -070097 /** \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 Shi38f4ce92016-08-04 10:01:52 +0000105private:
106 std::vector<FaceStatus> m_status;
107};
108
Junxiao Shi331ade72016-08-19 14:07:19 +0000109} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000110} // namespace tools
111} // namespace nfd
112
Junxiao Shi331ade72016-08-19 14:07:19 +0000113#endif // NFD_TOOLS_NFDC_FACE_MODULE_HPP