Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | 7f20d6e | 2017-01-16 14:43:58 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 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 | |
Davide Pesavento | 7f20d6e | 2017-01-16 14:43:58 -0500 | [diff] [blame] | 25 | #include "face-traits.hpp" |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 26 | #include "../../util/time.hpp" |
| 27 | |
| 28 | namespace ndn { |
| 29 | namespace nfd { |
| 30 | |
| 31 | /** |
| 32 | * \ingroup management |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 33 | * \brief represents an item in NFD Face dataset |
| 34 | * \sa https://redmine.named-data.net/projects/nfd/wiki/FaceMgmt#Face-Dataset |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 35 | */ |
| 36 | class FaceStatus : public FaceTraits<FaceStatus> |
| 37 | { |
| 38 | public: |
| 39 | FaceStatus(); |
| 40 | |
| 41 | explicit |
| 42 | FaceStatus(const Block& block); |
| 43 | |
| 44 | /** \brief prepend FaceStatus to the encoder |
| 45 | */ |
| 46 | template<encoding::Tag TAG> |
| 47 | size_t |
| 48 | wireEncode(EncodingImpl<TAG>& encoder) const; |
| 49 | |
| 50 | /** \brief encode FaceStatus |
| 51 | */ |
| 52 | const Block& |
| 53 | wireEncode() const; |
| 54 | |
| 55 | /** \brief decode FaceStatus |
| 56 | */ |
| 57 | void |
| 58 | wireDecode(const Block& wire); |
| 59 | |
| 60 | public: // getters & setters |
| 61 | bool |
| 62 | hasExpirationPeriod() const |
| 63 | { |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 64 | return !!m_expirationPeriod; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 67 | time::milliseconds |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 68 | getExpirationPeriod() const |
| 69 | { |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 70 | BOOST_ASSERT(hasExpirationPeriod()); |
| 71 | return *m_expirationPeriod; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | FaceStatus& |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 75 | setExpirationPeriod(time::milliseconds expirationPeriod); |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 76 | |
Davide Pesavento | 156c1ea | 2017-03-19 16:09:33 -0400 | [diff] [blame] | 77 | FaceStatus& |
| 78 | unsetExpirationPeriod(); |
| 79 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 80 | uint64_t |
| 81 | getNInInterests() const |
| 82 | { |
| 83 | return m_nInInterests; |
| 84 | } |
| 85 | |
| 86 | FaceStatus& |
| 87 | setNInInterests(uint64_t nInInterests); |
| 88 | |
| 89 | uint64_t |
Junxiao Shi | 9a53d78 | 2017-04-04 20:09:57 +0000 | [diff] [blame] | 90 | getNInData() const |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 91 | { |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 92 | return m_nInData; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | FaceStatus& |
Junxiao Shi | 9a53d78 | 2017-04-04 20:09:57 +0000 | [diff] [blame] | 96 | setNInData(uint64_t nInData); |
| 97 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 98 | uint64_t |
| 99 | getNInNacks() const |
| 100 | { |
| 101 | return m_nInNacks; |
| 102 | } |
| 103 | |
| 104 | FaceStatus& |
| 105 | setNInNacks(uint64_t nInNacks); |
| 106 | |
| 107 | uint64_t |
| 108 | getNOutInterests() const |
| 109 | { |
| 110 | return m_nOutInterests; |
| 111 | } |
| 112 | |
| 113 | FaceStatus& |
| 114 | setNOutInterests(uint64_t nOutInterests); |
| 115 | |
| 116 | uint64_t |
Junxiao Shi | 9a53d78 | 2017-04-04 20:09:57 +0000 | [diff] [blame] | 117 | getNOutData() const |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 118 | { |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 119 | return m_nOutData; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | FaceStatus& |
Junxiao Shi | 9a53d78 | 2017-04-04 20:09:57 +0000 | [diff] [blame] | 123 | setNOutData(uint64_t nOutData); |
| 124 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 125 | uint64_t |
| 126 | getNOutNacks() const |
| 127 | { |
| 128 | return m_nOutNacks; |
| 129 | } |
| 130 | |
| 131 | FaceStatus& |
| 132 | setNOutNacks(uint64_t nOutNacks); |
| 133 | |
| 134 | uint64_t |
| 135 | getNInBytes() const |
| 136 | { |
| 137 | return m_nInBytes; |
| 138 | } |
| 139 | |
| 140 | FaceStatus& |
| 141 | setNInBytes(uint64_t nInBytes); |
| 142 | |
| 143 | uint64_t |
| 144 | getNOutBytes() const |
| 145 | { |
| 146 | return m_nOutBytes; |
| 147 | } |
| 148 | |
| 149 | FaceStatus& |
| 150 | setNOutBytes(uint64_t nOutBytes); |
| 151 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 152 | private: |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 153 | optional<time::milliseconds> m_expirationPeriod; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 154 | uint64_t m_nInInterests; |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 155 | uint64_t m_nInData; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 156 | uint64_t m_nInNacks; |
| 157 | uint64_t m_nOutInterests; |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 158 | uint64_t m_nOutData; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 159 | uint64_t m_nOutNacks; |
| 160 | uint64_t m_nInBytes; |
| 161 | uint64_t m_nOutBytes; |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 162 | }; |
| 163 | |
Davide Pesavento | 4ec7a5a | 2017-02-07 23:13:39 -0500 | [diff] [blame] | 164 | bool |
| 165 | operator==(const FaceStatus& a, const FaceStatus& b); |
| 166 | |
| 167 | inline bool |
| 168 | operator!=(const FaceStatus& a, const FaceStatus& b) |
| 169 | { |
| 170 | return !(a == b); |
| 171 | } |
| 172 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 173 | std::ostream& |
| 174 | operator<<(std::ostream& os, const FaceStatus& status); |
| 175 | |
| 176 | } // namespace nfd |
| 177 | } // namespace ndn |
| 178 | |
| 179 | #endif // NDN_MGMT_NFD_FACE_STATUS_HPP |