NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
face-status.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2018 Regents of the University of California.
4  *
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_FACE_STATUS_HPP
23 #define NDN_MGMT_NFD_FACE_STATUS_HPP
24 
25 #include "face-traits.hpp"
26 #include "../../util/time.hpp"
27 
28 namespace ndn {
29 namespace nfd {
30 
36 class FaceStatus : public FaceTraits<FaceStatus>
37 {
38 public:
39  FaceStatus();
40 
41  explicit
42  FaceStatus(const Block& block);
43 
46  template<encoding::Tag TAG>
47  size_t
48  wireEncode(EncodingImpl<TAG>& encoder) const;
49 
52  const Block&
53  wireEncode() const;
54 
57  void
58  wireDecode(const Block& wire);
59 
60 public: // getters & setters
61  bool
63  {
64  return !!m_expirationPeriod;
65  }
66 
67  time::milliseconds
69  {
70  BOOST_ASSERT(hasExpirationPeriod());
71  return *m_expirationPeriod;
72  }
73 
74  FaceStatus&
75  setExpirationPeriod(time::milliseconds expirationPeriod);
76 
77  FaceStatus&
79 
80  bool
82  {
83  return !!m_baseCongestionMarkingInterval;
84  }
85 
86  time::nanoseconds
88  {
89  BOOST_ASSERT(hasBaseCongestionMarkingInterval());
90  return *m_baseCongestionMarkingInterval;
91  }
92 
93  FaceStatus&
94  setBaseCongestionMarkingInterval(time::nanoseconds interval);
95 
96  FaceStatus&
98 
99  bool
101  {
102  return !!m_defaultCongestionThreshold;
103  }
104 
107  uint64_t
109  {
110  BOOST_ASSERT(hasDefaultCongestionThreshold());
111  return *m_defaultCongestionThreshold;
112  }
113 
116  FaceStatus&
117  setDefaultCongestionThreshold(uint64_t threshold);
118 
119  FaceStatus&
121 
122  uint64_t
124  {
125  return m_nInInterests;
126  }
127 
128  FaceStatus&
129  setNInInterests(uint64_t nInInterests);
130 
131  uint64_t
132  getNInData() const
133  {
134  return m_nInData;
135  }
136 
137  FaceStatus&
138  setNInData(uint64_t nInData);
139 
140  uint64_t
141  getNInNacks() const
142  {
143  return m_nInNacks;
144  }
145 
146  FaceStatus&
147  setNInNacks(uint64_t nInNacks);
148 
149  uint64_t
151  {
152  return m_nOutInterests;
153  }
154 
155  FaceStatus&
156  setNOutInterests(uint64_t nOutInterests);
157 
158  uint64_t
159  getNOutData() const
160  {
161  return m_nOutData;
162  }
163 
164  FaceStatus&
165  setNOutData(uint64_t nOutData);
166 
167  uint64_t
168  getNOutNacks() const
169  {
170  return m_nOutNacks;
171  }
172 
173  FaceStatus&
174  setNOutNacks(uint64_t nOutNacks);
175 
176  uint64_t
177  getNInBytes() const
178  {
179  return m_nInBytes;
180  }
181 
182  FaceStatus&
183  setNInBytes(uint64_t nInBytes);
184 
185  uint64_t
186  getNOutBytes() const
187  {
188  return m_nOutBytes;
189  }
190 
191  FaceStatus&
192  setNOutBytes(uint64_t nOutBytes);
193 
194 private:
195  optional<time::milliseconds> m_expirationPeriod;
196  optional<time::nanoseconds> m_baseCongestionMarkingInterval;
197  optional<uint64_t> m_defaultCongestionThreshold;
198  uint64_t m_nInInterests;
199  uint64_t m_nInData;
200  uint64_t m_nInNacks;
201  uint64_t m_nOutInterests;
202  uint64_t m_nOutData;
203  uint64_t m_nOutNacks;
204  uint64_t m_nInBytes;
205  uint64_t m_nOutBytes;
206 };
207 
209 
210 bool
211 operator==(const FaceStatus& a, const FaceStatus& b);
212 
213 inline bool
214 operator!=(const FaceStatus& a, const FaceStatus& b)
215 {
216  return !(a == b);
217 }
218 
219 std::ostream&
220 operator<<(std::ostream& os, const FaceStatus& status);
221 
222 } // namespace nfd
223 } // namespace ndn
224 
225 #endif // NDN_MGMT_NFD_FACE_STATUS_HPP
void wireDecode(const Block &wire)
decode FaceStatus
uint64_t getNOutInterests() const
time::milliseconds getExpirationPeriod() const
Definition: face-status.hpp:68
Copyright (c) 2011-2015 Regents of the University of California.
bool operator!=(const ChannelStatus &a, const ChannelStatus &b)
bool hasExpirationPeriod() const
Definition: face-status.hpp:62
uint64_t getNOutNacks() const
bool hasBaseCongestionMarkingInterval() const
Definition: face-status.hpp:81
uint64_t getNOutBytes() const
uint64_t getNInInterests() const
FaceStatus & unsetDefaultCongestionThreshold()
Represents a TLV element of NDN packet format.
Definition: block.hpp:42
FaceStatus & setNOutBytes(uint64_t nOutBytes)
FaceStatus & setNOutInterests(uint64_t nOutInterests)
uint64_t getNOutData() const
FaceStatus & setExpirationPeriod(time::milliseconds expirationPeriod)
FaceStatus & setNInInterests(uint64_t nInInterests)
uint64_t getNInBytes() const
FaceStatus & setNInBytes(uint64_t nInBytes)
FaceStatus & unsetBaseCongestionMarkingInterval()
FaceStatus & unsetExpirationPeriod()
FaceStatus & setNInNacks(uint64_t nInNacks)
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
FaceStatus & setNOutData(uint64_t nOutData)
bool operator==(const ChannelStatus &a, const ChannelStatus &b)
represents an item in NFD Face dataset
Definition: face-status.hpp:36
time::nanoseconds getBaseCongestionMarkingInterval() const
Definition: face-status.hpp:87
std::ostream & operator<<(std::ostream &os, FaceScope faceScope)
uint64_t getDefaultCongestionThreshold() const
get default congestion threshold (measured in bytes)
FaceStatus & setBaseCongestionMarkingInterval(time::nanoseconds interval)
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS(ChannelStatus)
uint64_t getNInData() const
FaceStatus & setNOutNacks(uint64_t nOutNacks)
provides getters and setters for face information fields
Definition: face-traits.hpp:37
const Block & wireEncode() const
encode FaceStatus
Definition: face-status.cpp:93
FaceStatus & setNInData(uint64_t nInData)
bool hasDefaultCongestionThreshold() const
FaceStatus & setDefaultCongestionThreshold(uint64_t threshold)
set default congestion threshold (measured in bytes)
uint64_t getNInNacks() const