blob: 516eefd1d4e0eec46a1b1215d24e976a753cbcd1 [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev01bbd092017-08-14 23:56:19 +00002/*
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
26#include "forwarder-general-module.hpp"
27#include "format-helpers.hpp"
28
Davide Pesavento40641272023-03-16 13:31:12 -040029#include <ndn-cxx/mgmt/nfd/status-dataset.hpp>
Junxiao Shi7a36ac72018-03-21 15:23:22 +000030#include <ndn-cxx/util/indented-stream.hpp>
31
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::tools::nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000033
Junxiao Shi38f4ce92016-08-04 10:01:52 +000034void
35ForwarderGeneralModule::fetchStatus(Controller& controller,
Davide Pesavento87fc0f82018-04-11 23:43:51 -040036 const std::function<void()>& onSuccess,
Junxiao Shi29b41282016-08-22 03:47:02 +000037 const Controller::DatasetFailCallback& onFailure,
Junxiao Shi38f4ce92016-08-04 10:01:52 +000038 const CommandOptions& options)
39{
40 controller.fetch<ndn::nfd::ForwarderGeneralStatusDataset>(
41 [this, onSuccess] (const ForwarderStatus& result) {
42 m_status = result;
43 onSuccess();
44 },
45 onFailure, options);
46}
47
Davide Pesavento412c9822021-07-02 00:21:05 -040048static auto
Junxiao Shi38f4ce92016-08-04 10:01:52 +000049calculateUptime(const ForwarderStatus& status)
50{
51 return status.getCurrentTimestamp() - status.getStartTimestamp();
52}
53
Junxiao Shi38f4ce92016-08-04 10:01:52 +000054void
55ForwarderGeneralModule::formatStatusXml(std::ostream& os) const
56{
Junxiao Shi7a36ac72018-03-21 15:23:22 +000057 formatItemXml(os, m_status);
Junxiao Shi38f4ce92016-08-04 10:01:52 +000058}
59
60void
Junxiao Shi7a36ac72018-03-21 15:23:22 +000061ForwarderGeneralModule::formatItemXml(std::ostream& os, const ForwarderStatus& item)
Junxiao Shi38f4ce92016-08-04 10:01:52 +000062{
63 os << "<generalStatus>";
64
Junxiao Shi38f4ce92016-08-04 10:01:52 +000065 os << "<version>" << xml::Text{item.getNfdVersion()} << "</version>";
66 os << "<startTime>" << xml::formatTimestamp(item.getStartTimestamp()) << "</startTime>";
67 os << "<currentTime>" << xml::formatTimestamp(item.getCurrentTimestamp()) << "</currentTime>";
Eric Newberryde332452018-01-30 11:45:32 -070068 os << "<uptime>" << xml::formatDuration(time::duration_cast<time::seconds>(calculateUptime(item)))
69 << "</uptime>";
Junxiao Shi38f4ce92016-08-04 10:01:52 +000070
71 os << "<nNameTreeEntries>" << item.getNNameTreeEntries() << "</nNameTreeEntries>";
72 os << "<nFibEntries>" << item.getNFibEntries() << "</nFibEntries>";
73 os << "<nPitEntries>" << item.getNPitEntries() << "</nPitEntries>";
74 os << "<nMeasurementsEntries>" << item.getNMeasurementsEntries() << "</nMeasurementsEntries>";
75 os << "<nCsEntries>" << item.getNCsEntries() << "</nCsEntries>";
76
77 os << "<packetCounters>";
78 os << "<incomingPackets>"
79 << "<nInterests>" << item.getNInInterests() << "</nInterests>"
Junxiao Shif03d4792017-04-06 16:41:22 +000080 << "<nData>" << item.getNInData() << "</nData>"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000081 << "<nNacks>" << item.getNInNacks() << "</nNacks>"
82 << "</incomingPackets>";
83 os << "<outgoingPackets>"
84 << "<nInterests>" << item.getNOutInterests() << "</nInterests>"
Junxiao Shif03d4792017-04-06 16:41:22 +000085 << "<nData>" << item.getNOutData() << "</nData>"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000086 << "<nNacks>" << item.getNOutNacks() << "</nNacks>"
87 << "</outgoingPackets>";
88 os << "</packetCounters>";
89
Ju Pan7570e772018-10-27 03:33:58 +000090 os << "<nSatisfiedInterests>" << item.getNSatisfiedInterests() << "</nSatisfiedInterests>";
91 os << "<nUnsatisfiedInterests>" << item.getNUnsatisfiedInterests() << "</nUnsatisfiedInterests>";
92
Junxiao Shi38f4ce92016-08-04 10:01:52 +000093 os << "</generalStatus>";
94}
95
96void
97ForwarderGeneralModule::formatStatusText(std::ostream& os) const
98{
99 os << "General NFD status:\n";
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000100 ndn::util::IndentedStream indented(os, " ");
101 formatItemText(indented, m_status);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000102}
103
104void
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000105ForwarderGeneralModule::formatItemText(std::ostream& os, const ForwarderStatus& item)
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000106{
Ju Pan7570e772018-10-27 03:33:58 +0000107 text::ItemAttributes ia(true, 21);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000108
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000109 os << ia("version") << item.getNfdVersion()
110 << ia("startTime") << text::formatTimestamp(item.getStartTimestamp())
111 << ia("currentTime") << text::formatTimestamp(item.getCurrentTimestamp())
112 << ia("uptime") << text::formatDuration<time::seconds>(calculateUptime(item), true);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000113
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000114 os << ia("nNameTreeEntries") << item.getNNameTreeEntries()
115 << ia("nFibEntries") << item.getNFibEntries()
116 << ia("nPitEntries") << item.getNPitEntries()
117 << ia("nMeasurementsEntries") << item.getNMeasurementsEntries()
118 << ia("nCsEntries") << item.getNCsEntries();
119
120 os << ia("nInInterests") << item.getNInInterests()
121 << ia("nOutInterests") << item.getNOutInterests()
122 << ia("nInData") << item.getNInData()
123 << ia("nOutData") << item.getNOutData()
124 << ia("nInNacks") << item.getNInNacks()
Ju Pan7570e772018-10-27 03:33:58 +0000125 << ia("nOutNacks") << item.getNOutNacks()
126 << ia("nSatisfiedInterests") << item.getNSatisfiedInterests()
127 << ia("nUnsatisfiedInterests") << item.getNUnsatisfiedInterests();
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000128
129 os << ia.end();
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000130}
131
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400132} // namespace nfd::tools::nfdc