blob: 1f7393aec9358aec13475bc326bdb4d657fa8733 [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/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, 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
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::tools::nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000034
35using ndn::nfd::FaceStatus;
36
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040037/** \brief Provides access to NFD face management.
Junxiao Shi38f4ce92016-08-04 10:01:52 +000038 * \sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
39 */
40class FaceModule : public Module, noncopyable
41{
42public:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040043 /** \brief Register 'face list', 'face show', 'face create', 'face destroy' commands.
Junxiao Shi1f481fa2017-01-26 15:14:43 +000044 */
45 static void
46 registerCommands(CommandParser& parser);
47
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040048 /** \brief The 'face list' command.
Junxiao Shi36e54292017-02-17 18:43:16 +000049 */
50 static void
51 list(ExecuteContext& ctx);
52
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040053 /** \brief The 'face show' command.
Junxiao Shi1f481fa2017-01-26 15:14:43 +000054 */
55 static void
56 show(ExecuteContext& ctx);
57
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040058 /** \brief The 'face create' command.
Junxiao Shi1d7fef52017-02-02 05:33:14 +000059 */
60 static void
61 create(ExecuteContext& ctx);
62
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040063 /** \brief The 'face destroy' command.
Junxiao Shi05dd4442017-02-06 22:50:07 +000064 */
65 static void
66 destroy(ExecuteContext& ctx);
67
Junxiao Shi1f481fa2017-01-26 15:14:43 +000068 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000069 fetchStatus(Controller& controller,
Davide Pesavento87fc0f82018-04-11 23:43:51 -040070 const std::function<void()>& onSuccess,
Junxiao Shi29b41282016-08-22 03:47:02 +000071 const Controller::DatasetFailCallback& onFailure,
Junxiao Shi38f4ce92016-08-04 10:01:52 +000072 const CommandOptions& options) override;
73
Junxiao Shi1f481fa2017-01-26 15:14:43 +000074 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000075 formatStatusXml(std::ostream& os) const override;
76
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040077 /** \brief Format a single status item as XML.
Junxiao Shi38f4ce92016-08-04 10:01:52 +000078 * \param os output stream
79 * \param item status item
80 */
81 void
82 formatItemXml(std::ostream& os, const FaceStatus& item) const;
83
Junxiao Shi1f481fa2017-01-26 15:14:43 +000084 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000085 formatStatusText(std::ostream& os) const override;
86
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040087 /** \brief Format a single status item as text.
Junxiao Shi38f4ce92016-08-04 10:01:52 +000088 * \param os output stream
89 * \param item status item
Junxiao Shi1f481fa2017-01-26 15:14:43 +000090 * \param wantMultiLine use multi-line style
Junxiao Shi38f4ce92016-08-04 10:01:52 +000091 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000092 static void
93 formatItemText(std::ostream& os, const FaceStatus& item, bool wantMultiLine);
Junxiao Shi38f4ce92016-08-04 10:01:52 +000094
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040095 /** \brief Print face action success message to specified ostream.
Eric Newberryd656aff2020-04-03 00:30:38 -070096 * \param os output stream
97 * \param actionSummary description of action taken
98 * \param resp response control parameters to print
99 */
100 static void
101 printSuccess(std::ostream& os, const std::string& actionSummary, const ControlParameters& resp);
102
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400103 /** \brief Print face response parameters to specified ostream.
Eric Newberryde332452018-01-30 11:45:32 -0700104 * \param os output stream
105 * \param ia ItemAttributes used to format output
106 * \param resp response control parameters to print
107 */
108 static void
109 printFaceParams(std::ostream& os, text::ItemAttributes& ia, const ControlParameters& resp);
110
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000111private:
112 std::vector<FaceStatus> m_status;
113};
114
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400115} // namespace nfd::tools::nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000116
Junxiao Shi331ade72016-08-19 14:07:19 +0000117#endif // NFD_TOOLS_NFDC_FACE_MODULE_HPP