blob: e0d6b1b959e99beb45a6a7cd99ea56eeb90a7bce [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/*
Eric Newberryde332452018-01-30 11:45:32 -07003 * 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
26#include "forwarder-general-module.hpp"
27#include "format-helpers.hpp"
28
Junxiao Shi7a36ac72018-03-21 15:23:22 +000029#include <ndn-cxx/util/indented-stream.hpp>
30
Junxiao Shi38f4ce92016-08-04 10:01:52 +000031namespace nfd {
32namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000033namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000034
Junxiao Shi38f4ce92016-08-04 10:01:52 +000035void
36ForwarderGeneralModule::fetchStatus(Controller& controller,
Davide Pesavento87fc0f82018-04-11 23:43:51 -040037 const std::function<void()>& onSuccess,
Junxiao Shi29b41282016-08-22 03:47:02 +000038 const Controller::DatasetFailCallback& onFailure,
Junxiao Shi38f4ce92016-08-04 10:01:52 +000039 const CommandOptions& options)
40{
41 controller.fetch<ndn::nfd::ForwarderGeneralStatusDataset>(
42 [this, onSuccess] (const ForwarderStatus& result) {
43 m_status = result;
44 onSuccess();
45 },
46 onFailure, options);
47}
48
49static time::system_clock::Duration
50calculateUptime(const ForwarderStatus& status)
51{
52 return status.getCurrentTimestamp() - status.getStartTimestamp();
53}
54
Junxiao Shi38f4ce92016-08-04 10:01:52 +000055void
56ForwarderGeneralModule::formatStatusXml(std::ostream& os) const
57{
Junxiao Shi7a36ac72018-03-21 15:23:22 +000058 formatItemXml(os, m_status);
Junxiao Shi38f4ce92016-08-04 10:01:52 +000059}
60
61void
Junxiao Shi7a36ac72018-03-21 15:23:22 +000062ForwarderGeneralModule::formatItemXml(std::ostream& os, const ForwarderStatus& item)
Junxiao Shi38f4ce92016-08-04 10:01:52 +000063{
64 os << "<generalStatus>";
65
Junxiao Shi38f4ce92016-08-04 10:01:52 +000066 os << "<version>" << xml::Text{item.getNfdVersion()} << "</version>";
67 os << "<startTime>" << xml::formatTimestamp(item.getStartTimestamp()) << "</startTime>";
68 os << "<currentTime>" << xml::formatTimestamp(item.getCurrentTimestamp()) << "</currentTime>";
Eric Newberryde332452018-01-30 11:45:32 -070069 os << "<uptime>" << xml::formatDuration(time::duration_cast<time::seconds>(calculateUptime(item)))
70 << "</uptime>";
Junxiao Shi38f4ce92016-08-04 10:01:52 +000071
72 os << "<nNameTreeEntries>" << item.getNNameTreeEntries() << "</nNameTreeEntries>";
73 os << "<nFibEntries>" << item.getNFibEntries() << "</nFibEntries>";
74 os << "<nPitEntries>" << item.getNPitEntries() << "</nPitEntries>";
75 os << "<nMeasurementsEntries>" << item.getNMeasurementsEntries() << "</nMeasurementsEntries>";
76 os << "<nCsEntries>" << item.getNCsEntries() << "</nCsEntries>";
77
78 os << "<packetCounters>";
79 os << "<incomingPackets>"
80 << "<nInterests>" << item.getNInInterests() << "</nInterests>"
Junxiao Shif03d4792017-04-06 16:41:22 +000081 << "<nData>" << item.getNInData() << "</nData>"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000082 << "<nNacks>" << item.getNInNacks() << "</nNacks>"
83 << "</incomingPackets>";
84 os << "<outgoingPackets>"
85 << "<nInterests>" << item.getNOutInterests() << "</nInterests>"
Junxiao Shif03d4792017-04-06 16:41:22 +000086 << "<nData>" << item.getNOutData() << "</nData>"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000087 << "<nNacks>" << item.getNOutNacks() << "</nNacks>"
88 << "</outgoingPackets>";
89 os << "</packetCounters>";
90
91 os << "</generalStatus>";
92}
93
94void
95ForwarderGeneralModule::formatStatusText(std::ostream& os) const
96{
97 os << "General NFD status:\n";
Junxiao Shi7a36ac72018-03-21 15:23:22 +000098 ndn::util::IndentedStream indented(os, " ");
99 formatItemText(indented, m_status);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000100}
101
102void
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000103ForwarderGeneralModule::formatItemText(std::ostream& os, const ForwarderStatus& item)
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000104{
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000105 text::ItemAttributes ia(true, 20);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000106
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000107 os << ia("version") << item.getNfdVersion()
108 << ia("startTime") << text::formatTimestamp(item.getStartTimestamp())
109 << ia("currentTime") << text::formatTimestamp(item.getCurrentTimestamp())
110 << ia("uptime") << text::formatDuration<time::seconds>(calculateUptime(item), true);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000111
Junxiao Shi7a36ac72018-03-21 15:23:22 +0000112 os << ia("nNameTreeEntries") << item.getNNameTreeEntries()
113 << ia("nFibEntries") << item.getNFibEntries()
114 << ia("nPitEntries") << item.getNPitEntries()
115 << ia("nMeasurementsEntries") << item.getNMeasurementsEntries()
116 << ia("nCsEntries") << item.getNCsEntries();
117
118 os << ia("nInInterests") << item.getNInInterests()
119 << ia("nOutInterests") << item.getNOutInterests()
120 << ia("nInData") << item.getNInData()
121 << ia("nOutData") << item.getNOutData()
122 << ia("nInNacks") << item.getNInNacks()
123 << ia("nOutNacks") << item.getNOutNacks();
124
125 os << ia.end();
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000126}
127
Junxiao Shi331ade72016-08-19 14:07:19 +0000128} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000129} // namespace tools
130} // namespace nfd