blob: 7e1b35c18acfb8f45481804e39c5bc1404e89704 [file] [log] [blame]
Junxiao Shi7357ef22016-09-07 02:39:37 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento25e3d8c2017-02-08 22:17:46 -05003 * Copyright (c) 2013-2017 Regents of the University of California.
Junxiao Shi7357ef22016-09-07 02:39:37 +00004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#ifndef NDN_MGMT_NFD_FORWARDER_STATUS_HPP
23#define NDN_MGMT_NFD_FORWARDER_STATUS_HPP
24
25#include "../../encoding/block.hpp"
26#include "../../util/time.hpp"
27
28namespace ndn {
29namespace nfd {
30
31/**
32 * \ingroup management
Davide Pesavento25e3d8c2017-02-08 22:17:46 -050033 * \brief represents NFD General Status dataset
34 * \sa https://redmine.named-data.net/projects/nfd/wiki/ForwarderStatus#General-Status-Dataset
Junxiao Shi7357ef22016-09-07 02:39:37 +000035 */
36class ForwarderStatus
37{
38public:
39 class Error : public tlv::Error
40 {
41 public:
42 explicit
43 Error(const std::string& what)
44 : tlv::Error(what)
45 {
46 }
47 };
48
49 ForwarderStatus();
50
51 explicit
52 ForwarderStatus(const Block& payload);
53
54 /** \brief prepend ForwarderStatus as a Content block to the encoder
55 *
Davide Pesavento25e3d8c2017-02-08 22:17:46 -050056 * The outermost Content element isn't part of ForwarderStatus structure.
Junxiao Shi7357ef22016-09-07 02:39:37 +000057 */
58 template<encoding::Tag TAG>
59 size_t
60 wireEncode(EncodingImpl<TAG>& encoder) const;
61
62 /** \brief encode ForwarderStatus as a Content block
63 *
Davide Pesavento25e3d8c2017-02-08 22:17:46 -050064 * The outermost Content element isn't part of ForwarderStatus structure.
Junxiao Shi7357ef22016-09-07 02:39:37 +000065 */
66 const Block&
67 wireEncode() const;
68
69 /** \brief decode ForwarderStatus from a Content block
70 *
Davide Pesavento25e3d8c2017-02-08 22:17:46 -050071 * The outermost Content element isn't part of ForwarderStatus structure.
Junxiao Shi7357ef22016-09-07 02:39:37 +000072 */
73 void
74 wireDecode(const Block& wire);
75
76public: // getters & setters
77 const std::string&
78 getNfdVersion() const
79 {
80 return m_nfdVersion;
81 }
82
83 ForwarderStatus&
84 setNfdVersion(const std::string& nfdVersion);
85
86 const time::system_clock::TimePoint&
87 getStartTimestamp() const
88 {
89 return m_startTimestamp;
90 }
91
92 ForwarderStatus&
93 setStartTimestamp(const time::system_clock::TimePoint& startTimestamp);
94
95 const time::system_clock::TimePoint&
96 getCurrentTimestamp() const
97 {
98 return m_currentTimestamp;
99 }
100
101 ForwarderStatus&
102 setCurrentTimestamp(const time::system_clock::TimePoint& currentTimestamp);
103
104 size_t
105 getNNameTreeEntries() const
106 {
107 return m_nNameTreeEntries;
108 }
109
110 ForwarderStatus&
111 setNNameTreeEntries(size_t nNameTreeEntries);
112
113 size_t
114 getNFibEntries() const
115 {
116 return m_nFibEntries;
117 }
118
119 ForwarderStatus&
120 setNFibEntries(size_t nFibEntries);
121
122 size_t
123 getNPitEntries() const
124 {
125 return m_nPitEntries;
126 }
127
128 ForwarderStatus&
129 setNPitEntries(size_t nPitEntries);
130
131 size_t
132 getNMeasurementsEntries() const
133 {
134 return m_nMeasurementsEntries;
135 }
136
137 ForwarderStatus&
138 setNMeasurementsEntries(size_t nMeasurementsEntries);
139
140 size_t
141 getNCsEntries() const
142 {
143 return m_nCsEntries;
144 }
145
146 ForwarderStatus&
147 setNCsEntries(size_t nCsEntries);
148
149 uint64_t
150 getNInInterests() const
151 {
152 return m_nInInterests;
153 }
154
155 ForwarderStatus&
156 setNInInterests(uint64_t nInInterests);
157
158 uint64_t
159 getNInDatas() const
160 {
161 return m_nInDatas;
162 }
163
164 ForwarderStatus&
165 setNInDatas(uint64_t nInDatas);
166
167 uint64_t
168 getNInNacks() const
169 {
170 return m_nInNacks;
171 }
172
173 ForwarderStatus&
174 setNInNacks(uint64_t nInNacks);
175
176 uint64_t
177 getNOutInterests() const
178 {
179 return m_nOutInterests;
180 }
181
182 ForwarderStatus&
183 setNOutInterests(uint64_t nOutInterests);
184
185 uint64_t
186 getNOutDatas() const
187 {
188 return m_nOutDatas;
189 }
190
191 ForwarderStatus&
192 setNOutDatas(uint64_t nOutDatas);
193
194 uint64_t
195 getNOutNacks() const
196 {
197 return m_nOutNacks;
198 }
199
200 ForwarderStatus&
201 setNOutNacks(uint64_t nOutNacks);
202
203private:
204 std::string m_nfdVersion;
205 time::system_clock::TimePoint m_startTimestamp;
206 time::system_clock::TimePoint m_currentTimestamp;
207 size_t m_nNameTreeEntries;
208 size_t m_nFibEntries;
209 size_t m_nPitEntries;
210 size_t m_nMeasurementsEntries;
211 size_t m_nCsEntries;
212 uint64_t m_nInInterests;
213 uint64_t m_nInDatas;
214 uint64_t m_nInNacks;
215 uint64_t m_nOutInterests;
216 uint64_t m_nOutDatas;
217 uint64_t m_nOutNacks;
218
219 mutable Block m_wire;
220};
221
Davide Pesavento25e3d8c2017-02-08 22:17:46 -0500222bool
223operator==(const ForwarderStatus& a, const ForwarderStatus& b);
224
225inline bool
226operator!=(const ForwarderStatus& a, const ForwarderStatus& b)
227{
228 return !(a == b);
229}
230
231std::ostream&
232operator<<(std::ostream& os, const ForwarderStatus& status);
233
Junxiao Shi7357ef22016-09-07 02:39:37 +0000234} // namespace nfd
235} // namespace ndn
236
237#endif // NDN_MGMT_NFD_FORWARDER_STATUS_HPP