blob: 4f20e531b47cd2a11fe25bb6d656ec951bea0b26 [file] [log] [blame]
Junxiao Shi7357ef22016-09-07 02:39:37 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2016 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" // include this first, to ensure it compiles on its own.
26#include "../../encoding/block.hpp"
27#include "../../util/time.hpp"
28
29namespace ndn {
30namespace nfd {
31
32/**
33 * \ingroup management
34 * \brief represents Face status
35 * \sa http://redmine.named-data.net/projects/nfd/wiki/FaceMgmt#Face-Dataset
36 */
37class FaceStatus : public FaceTraits<FaceStatus>
38{
39public:
40 FaceStatus();
41
42 explicit
43 FaceStatus(const Block& block);
44
45 /** \brief prepend FaceStatus to the encoder
46 */
47 template<encoding::Tag TAG>
48 size_t
49 wireEncode(EncodingImpl<TAG>& encoder) const;
50
51 /** \brief encode FaceStatus
52 */
53 const Block&
54 wireEncode() const;
55
56 /** \brief decode FaceStatus
57 */
58 void
59 wireDecode(const Block& wire);
60
61public: // getters & setters
62 bool
63 hasExpirationPeriod() const
64 {
65 return m_hasExpirationPeriod;
66 }
67
68 const time::milliseconds&
69 getExpirationPeriod() const
70 {
71 BOOST_ASSERT(m_hasExpirationPeriod);
72 return m_expirationPeriod;
73 }
74
75 FaceStatus&
76 setExpirationPeriod(const time::milliseconds& expirationPeriod);
77
78 uint64_t
79 getNInInterests() const
80 {
81 return m_nInInterests;
82 }
83
84 FaceStatus&
85 setNInInterests(uint64_t nInInterests);
86
87 uint64_t
88 getNInDatas() const
89 {
90 return m_nInDatas;
91 }
92
93 FaceStatus&
94 setNInDatas(uint64_t nInDatas);
95
96 uint64_t
97 getNInNacks() const
98 {
99 return m_nInNacks;
100 }
101
102 FaceStatus&
103 setNInNacks(uint64_t nInNacks);
104
105 uint64_t
106 getNOutInterests() const
107 {
108 return m_nOutInterests;
109 }
110
111 FaceStatus&
112 setNOutInterests(uint64_t nOutInterests);
113
114 uint64_t
115 getNOutDatas() const
116 {
117 return m_nOutDatas;
118 }
119
120 FaceStatus&
121 setNOutDatas(uint64_t nOutDatas);
122
123 uint64_t
124 getNOutNacks() const
125 {
126 return m_nOutNacks;
127 }
128
129 FaceStatus&
130 setNOutNacks(uint64_t nOutNacks);
131
132 uint64_t
133 getNInBytes() const
134 {
135 return m_nInBytes;
136 }
137
138 FaceStatus&
139 setNInBytes(uint64_t nInBytes);
140
141 uint64_t
142 getNOutBytes() const
143 {
144 return m_nOutBytes;
145 }
146
147 FaceStatus&
148 setNOutBytes(uint64_t nOutBytes);
149
150protected:
151 void
152 wireReset() const;
153
154private:
155 time::milliseconds m_expirationPeriod;
156 bool m_hasExpirationPeriod;
157 uint64_t m_nInInterests;
158 uint64_t m_nInDatas;
159 uint64_t m_nInNacks;
160 uint64_t m_nOutInterests;
161 uint64_t m_nOutDatas;
162 uint64_t m_nOutNacks;
163 uint64_t m_nInBytes;
164 uint64_t m_nOutBytes;
Junxiao Shi7357ef22016-09-07 02:39:37 +0000165
166 mutable Block m_wire;
167};
168
169std::ostream&
170operator<<(std::ostream& os, const FaceStatus& status);
171
172} // namespace nfd
173} // namespace ndn
174
175#endif // NDN_MGMT_NFD_FACE_STATUS_HPP