blob: f0e4f9da160a426e37b2597b1cb99c3ace15ee3d [file] [log] [blame]
Junxiao Shiae889382016-11-23 04:52:51 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shib347b7f2017-07-23 14:01:58 +00002/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shiae889382016-11-23 04:52:51 +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
26#include "status.hpp"
27#include "forwarder-general-module.hpp"
28#include "channel-module.hpp"
29#include "face-module.hpp"
30#include "fib-module.hpp"
31#include "rib-module.hpp"
Junxiao Shi3160a3f2018-01-09 21:25:15 +000032#include "cs-module.hpp"
Junxiao Shiae889382016-11-23 04:52:51 +000033#include "strategy-choice-module.hpp"
34
35#include <ndn-cxx/security/validator-null.hpp>
36
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040037namespace nfd::tools::nfdc {
Junxiao Shiae889382016-11-23 04:52:51 +000038
Junxiao Shi88a062d2017-01-26 03:10:05 +000039void
Junxiao Shiae889382016-11-23 04:52:51 +000040reportStatus(ExecuteContext& ctx, const StatusReportOptions& options)
41{
Junxiao Shiae889382016-11-23 04:52:51 +000042 StatusReport report;
43
44 if (options.wantForwarderGeneral) {
Alexander Afanasyev01bbd092017-08-14 23:56:19 +000045 report.sections.push_back(make_unique<ForwarderGeneralModule>());
Junxiao Shiae889382016-11-23 04:52:51 +000046 }
47
48 if (options.wantChannels) {
49 report.sections.push_back(make_unique<ChannelModule>());
50 }
51
52 if (options.wantFaces) {
53 report.sections.push_back(make_unique<FaceModule>());
54 }
55
56 if (options.wantFib) {
57 report.sections.push_back(make_unique<FibModule>());
58 }
59
60 if (options.wantRib) {
61 report.sections.push_back(make_unique<RibModule>());
62 }
63
Junxiao Shi3160a3f2018-01-09 21:25:15 +000064 if (options.wantCs) {
65 report.sections.push_back(make_unique<CsModule>());
66 }
67
Junxiao Shiae889382016-11-23 04:52:51 +000068 if (options.wantStrategyChoice) {
69 report.sections.push_back(make_unique<StrategyChoiceModule>());
70 }
71
Alexander Afanasyev01bbd092017-08-14 23:56:19 +000072 uint32_t code = report.collect(ctx.face, ctx.keyChain,
Alexander Afanasyeva1583702020-06-03 13:55:45 -040073 ndn::security::getAcceptAllValidator(),
Alexander Afanasyev01bbd092017-08-14 23:56:19 +000074 CommandOptions());
Junxiao Shiae889382016-11-23 04:52:51 +000075 if (code != 0) {
Junxiao Shi88a062d2017-01-26 03:10:05 +000076 ctx.exitCode = 1;
Junxiao Shiae889382016-11-23 04:52:51 +000077 // Give a simple error code for end user.
78 // Technical support personnel:
79 // 1. get the exact command from end user
80 // 2. code div 1000000 is zero-based section index
81 // 3. code mod 1000000 is a Controller.fetch error code
Junxiao Shi88a062d2017-01-26 03:10:05 +000082 ctx.err << "Error while collecting status report (" << code << ").\n";
Junxiao Shiae889382016-11-23 04:52:51 +000083 }
84
85 switch (options.output) {
86 case ReportFormat::XML:
Junxiao Shi88a062d2017-01-26 03:10:05 +000087 report.formatXml(ctx.out);
Junxiao Shiae889382016-11-23 04:52:51 +000088 break;
89 case ReportFormat::TEXT:
Junxiao Shi88a062d2017-01-26 03:10:05 +000090 report.formatText(ctx.out);
Junxiao Shiae889382016-11-23 04:52:51 +000091 break;
92 }
Junxiao Shiae889382016-11-23 04:52:51 +000093}
94
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040095/** \brief Single-section status command.
Junxiao Shiae889382016-11-23 04:52:51 +000096 */
Junxiao Shi88a062d2017-01-26 03:10:05 +000097static void
Junxiao Shiae889382016-11-23 04:52:51 +000098reportStatusSingleSection(ExecuteContext& ctx, bool StatusReportOptions::*wantSection)
99{
100 StatusReportOptions options;
101 options.*wantSection = true;
Junxiao Shi88a062d2017-01-26 03:10:05 +0000102 reportStatus(ctx, options);
Junxiao Shiae889382016-11-23 04:52:51 +0000103}
104
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400105/** \brief The 'status report' command.
Junxiao Shiae889382016-11-23 04:52:51 +0000106 */
Junxiao Shi88a062d2017-01-26 03:10:05 +0000107static void
Junxiao Shiae889382016-11-23 04:52:51 +0000108reportStatusComprehensive(ExecuteContext& ctx)
109{
110 StatusReportOptions options;
111 options.output = ctx.args.get<ReportFormat>("format", ReportFormat::TEXT);
Junxiao Shi3160a3f2018-01-09 21:25:15 +0000112 options.wantForwarderGeneral = options.wantChannels = options.wantFaces = options.wantFib =
113 options.wantRib = options.wantCs = options.wantStrategyChoice = true;
Junxiao Shi88a062d2017-01-26 03:10:05 +0000114 reportStatus(ctx, options);
Junxiao Shiae889382016-11-23 04:52:51 +0000115}
116
117void
118registerStatusCommands(CommandParser& parser)
119{
120 CommandDefinition defStatusReport("status", "report");
121 defStatusReport
Davide Pesavento2a588152018-02-19 18:10:03 -0500122 .setTitle("print full status report")
Junxiao Shiae889382016-11-23 04:52:51 +0000123 .addArg("format", ArgValueType::REPORT_FORMAT, Required::NO, Positional::YES);
124 parser.addCommand(defStatusReport, &reportStatusComprehensive);
125
126 CommandDefinition defStatusShow("status", "show");
127 defStatusShow
128 .setTitle("print general status");
Davide Pesavento412c9822021-07-02 00:21:05 -0400129 parser.addCommand(defStatusShow,
130 std::bind(&reportStatusSingleSection, _1, &StatusReportOptions::wantForwarderGeneral));
Davide Pesaventod2147442018-02-19 23:58:17 -0500131 parser.addAlias("status", "show", "");
Junxiao Shiae889382016-11-23 04:52:51 +0000132
Junxiao Shiae889382016-11-23 04:52:51 +0000133 CommandDefinition defChannelList("channel", "list");
134 defChannelList
135 .setTitle("print channel list");
Davide Pesavento412c9822021-07-02 00:21:05 -0400136 parser.addCommand(defChannelList,
137 std::bind(&reportStatusSingleSection, _1, &StatusReportOptions::wantChannels));
Davide Pesaventod2147442018-02-19 23:58:17 -0500138 parser.addAlias("channel", "list", "");
Junxiao Shiae889382016-11-23 04:52:51 +0000139
Junxiao Shiae889382016-11-23 04:52:51 +0000140 CommandDefinition defFibList("fib", "list");
141 defFibList
142 .setTitle("print FIB entries");
Davide Pesavento412c9822021-07-02 00:21:05 -0400143 parser.addCommand(defFibList,
144 std::bind(&reportStatusSingleSection, _1, &StatusReportOptions::wantFib));
Davide Pesaventod2147442018-02-19 23:58:17 -0500145 parser.addAlias("fib", "list", "");
Junxiao Shi3160a3f2018-01-09 21:25:15 +0000146
147 CommandDefinition defCsInfo("cs", "info");
148 defCsInfo
149 .setTitle("print CS information");
Davide Pesavento412c9822021-07-02 00:21:05 -0400150 parser.addCommand(defCsInfo,
151 std::bind(&reportStatusSingleSection, _1, &StatusReportOptions::wantCs));
Davide Pesaventod2147442018-02-19 23:58:17 -0500152 parser.addAlias("cs", "info", "");
Junxiao Shiae889382016-11-23 04:52:51 +0000153}
154
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400155} // namespace nfd::tools::nfdc