blob: 9a504a6a8253b61b0c946a1936774fc5720192db [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 Pesavento40641272023-03-16 13:31:12 -04003 * Copyright (c) 2014-2023, 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 Pesavento40641272023-03-16 13:31:12 -040033#include <ndn-cxx/mgmt/nfd/face-status.hpp>
34
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035namespace nfd::tools::nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000036
37using ndn::nfd::FaceStatus;
38
Davide Pesavento63b3ae82023-03-24 23:53:24 -040039/**
40 * \brief Provides access to NFD face management.
41 * \sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt
Junxiao Shi38f4ce92016-08-04 10:01:52 +000042 */
Davide Pesavento40641272023-03-16 13:31:12 -040043class FaceModule : public Module, boost::noncopyable
Junxiao Shi38f4ce92016-08-04 10:01:52 +000044{
45public:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040046 /** \brief Register 'face list', 'face show', 'face create', 'face destroy' commands.
Junxiao Shi1f481fa2017-01-26 15:14:43 +000047 */
48 static void
49 registerCommands(CommandParser& parser);
50
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040051 /** \brief The 'face list' command.
Junxiao Shi36e54292017-02-17 18:43:16 +000052 */
53 static void
54 list(ExecuteContext& ctx);
55
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040056 /** \brief The 'face show' command.
Junxiao Shi1f481fa2017-01-26 15:14:43 +000057 */
58 static void
59 show(ExecuteContext& ctx);
60
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040061 /** \brief The 'face create' command.
Junxiao Shi1d7fef52017-02-02 05:33:14 +000062 */
63 static void
64 create(ExecuteContext& ctx);
65
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040066 /** \brief The 'face destroy' command.
Junxiao Shi05dd4442017-02-06 22:50:07 +000067 */
68 static void
69 destroy(ExecuteContext& ctx);
70
Junxiao Shi1f481fa2017-01-26 15:14:43 +000071 void
Davide Pesavento63b3ae82023-03-24 23:53:24 -040072 fetchStatus(ndn::nfd::Controller& controller,
Davide Pesavento87fc0f82018-04-11 23:43:51 -040073 const std::function<void()>& onSuccess,
Davide Pesavento63b3ae82023-03-24 23:53:24 -040074 const ndn::nfd::DatasetFailureCallback& onFailure,
Junxiao Shi38f4ce92016-08-04 10:01:52 +000075 const CommandOptions& options) override;
76
Junxiao Shi1f481fa2017-01-26 15:14:43 +000077 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000078 formatStatusXml(std::ostream& os) const override;
79
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040080 /** \brief Format a single status item as XML.
Junxiao Shi38f4ce92016-08-04 10:01:52 +000081 * \param os output stream
82 * \param item status item
83 */
84 void
85 formatItemXml(std::ostream& os, const FaceStatus& item) const;
86
Junxiao Shi1f481fa2017-01-26 15:14:43 +000087 void
Junxiao Shi38f4ce92016-08-04 10:01:52 +000088 formatStatusText(std::ostream& os) const override;
89
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040090 /** \brief Format a single status item as text.
Junxiao Shi38f4ce92016-08-04 10:01:52 +000091 * \param os output stream
92 * \param item status item
Junxiao Shi1f481fa2017-01-26 15:14:43 +000093 * \param wantMultiLine use multi-line style
Junxiao Shi38f4ce92016-08-04 10:01:52 +000094 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000095 static void
96 formatItemText(std::ostream& os, const FaceStatus& item, bool wantMultiLine);
Junxiao Shi38f4ce92016-08-04 10:01:52 +000097
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040098 /** \brief Print face action success message to specified ostream.
Eric Newberryd656aff2020-04-03 00:30:38 -070099 * \param os output stream
100 * \param actionSummary description of action taken
101 * \param resp response control parameters to print
102 */
103 static void
104 printSuccess(std::ostream& os, const std::string& actionSummary, const ControlParameters& resp);
105
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400106 /** \brief Print face response parameters to specified ostream.
Eric Newberryde332452018-01-30 11:45:32 -0700107 * \param os output stream
108 * \param ia ItemAttributes used to format output
109 * \param resp response control parameters to print
110 */
111 static void
112 printFaceParams(std::ostream& os, text::ItemAttributes& ia, const ControlParameters& resp);
113
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000114private:
115 std::vector<FaceStatus> m_status;
116};
117
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400118} // namespace nfd::tools::nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000119
Junxiao Shi331ade72016-08-19 14:07:19 +0000120#endif // NFD_TOOLS_NFDC_FACE_MODULE_HPP