Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014 Regents of the University of California, |
| 4 | * 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 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 24 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 25 | #ifndef NFD_DAEMON_FACE_LOCAL_FACE_HPP |
| 26 | #define NFD_DAEMON_FACE_LOCAL_FACE_HPP |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 27 | |
| 28 | #include "face.hpp" |
Alexander Afanasyev | 4a77136 | 2014-04-24 21:29:33 -0700 | [diff] [blame] | 29 | #include <ndn-cxx/management/nfd-control-parameters.hpp> |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 33 | using ndn::nfd::LocalControlFeature; |
| 34 | using ndn::nfd::LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID; |
| 35 | using ndn::nfd::LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID; |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 36 | |
| 37 | /** \brief represents a face |
| 38 | */ |
| 39 | class LocalFace : public Face |
| 40 | { |
| 41 | public: |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 42 | LocalFace(const FaceUri& remoteUri, const FaceUri& localUri); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 43 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 44 | /** \brief get whether any LocalControlHeader feature is enabled |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 45 | * |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 46 | * \returns true if any feature is enabled. |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 47 | */ |
| 48 | bool |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 49 | isLocalControlHeaderEnabled() const; |
| 50 | |
| 51 | /** \brief get whether a specific LocalControlHeader feature is enabled |
| 52 | * |
| 53 | * \param feature The feature. |
| 54 | * \returns true if the specified feature is enabled. |
| 55 | */ |
| 56 | bool |
| 57 | isLocalControlHeaderEnabled(LocalControlFeature feature) const; |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 58 | |
| 59 | /** \brief enable or disable a LocalControlHeader feature |
| 60 | * |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 61 | * \param feature The feature. Cannot be LOCAL_CONTROL_FEATURE_ANY |
| 62 | * or LOCAL_CONTROL_FEATURE_MAX |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 63 | */ |
| 64 | void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 65 | setLocalControlHeaderFeature(LocalControlFeature feature, bool enabled = true); |
| 66 | |
| 67 | public: |
| 68 | |
| 69 | static const size_t LOCAL_CONTROL_FEATURE_MAX = 3; /// upper bound of LocalControlFeature enum |
| 70 | static const size_t LOCAL_CONTROL_FEATURE_ANY = 0; /// any feature |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 71 | |
| 72 | protected: |
| 73 | // statically overridden from Face |
| 74 | |
| 75 | /** \brief Decode block into Interest/Data, considering potential LocalControlHeader |
| 76 | * |
| 77 | * If LocalControlHeader is present, the encoded data is filtered out, based |
| 78 | * on enabled features on the face. |
| 79 | */ |
| 80 | bool |
| 81 | decodeAndDispatchInput(const Block& element); |
| 82 | |
| 83 | // LocalFace-specific methods |
| 84 | |
| 85 | /** \brief Check if LocalControlHeader needs to be included, taking into account |
| 86 | * both set parameters in supplied LocalControlHeader and features |
| 87 | * enabled on the local face. |
| 88 | */ |
| 89 | bool |
| 90 | isEmptyFilteredLocalControlHeader(const ndn::nfd::LocalControlHeader& header) const; |
| 91 | |
| 92 | /** \brief Create LocalControlHeader, considering enabled features |
| 93 | */ |
| 94 | template<class Packet> |
| 95 | Block |
| 96 | filterAndEncodeLocalControlHeader(const Packet& packet); |
| 97 | |
| 98 | private: |
| 99 | std::vector<bool> m_localControlHeaderFeatures; |
| 100 | }; |
| 101 | |
| 102 | inline |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 103 | LocalFace::LocalFace(const FaceUri& remoteUri, const FaceUri& localUri) |
| 104 | : Face(remoteUri, localUri, true) |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 105 | , m_localControlHeaderFeatures(LocalFace::LOCAL_CONTROL_FEATURE_MAX) |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 106 | { |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | inline bool |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 110 | LocalFace::isLocalControlHeaderEnabled() const |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 111 | { |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 112 | return m_localControlHeaderFeatures[LOCAL_CONTROL_FEATURE_ANY]; |
| 113 | } |
| 114 | |
| 115 | inline bool |
| 116 | LocalFace::isLocalControlHeaderEnabled(LocalControlFeature feature) const |
| 117 | { |
Alexander Afanasyev | 85b6b01 | 2014-04-21 18:12:57 -0700 | [diff] [blame] | 118 | BOOST_ASSERT(0 < feature && |
| 119 | static_cast<size_t>(feature) < m_localControlHeaderFeatures.size()); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 120 | return m_localControlHeaderFeatures[feature]; |
| 121 | } |
| 122 | |
| 123 | inline void |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 124 | LocalFace::setLocalControlHeaderFeature(LocalControlFeature feature, bool enabled/* = true*/) |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 125 | { |
Alexander Afanasyev | 85b6b01 | 2014-04-21 18:12:57 -0700 | [diff] [blame] | 126 | BOOST_ASSERT(0 < feature && |
| 127 | static_cast<size_t>(feature) < m_localControlHeaderFeatures.size()); |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 128 | |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 129 | m_localControlHeaderFeatures[feature] = enabled; |
| 130 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 131 | m_localControlHeaderFeatures[LOCAL_CONTROL_FEATURE_ANY] = |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 132 | std::find(m_localControlHeaderFeatures.begin() + 1, |
| 133 | m_localControlHeaderFeatures.end(), true) < |
| 134 | m_localControlHeaderFeatures.end(); |
| 135 | // 'find(..) < .end()' instead of 'find(..) != .end()' due to LLVM Bug 16816 |
| 136 | } |
| 137 | |
| 138 | inline bool |
| 139 | LocalFace::decodeAndDispatchInput(const Block& element) |
| 140 | { |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 141 | try { |
| 142 | const Block& payload = ndn::nfd::LocalControlHeader::getPayload(element); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 143 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 144 | // If received LocalControlHeader, but it is not enabled on the face |
| 145 | if ((&payload != &element) && !this->isLocalControlHeaderEnabled()) |
| 146 | return false; |
| 147 | |
| 148 | if (payload.type() == tlv::Interest) |
| 149 | { |
| 150 | shared_ptr<Interest> i = make_shared<Interest>(); |
| 151 | i->wireDecode(payload); |
| 152 | if (&payload != &element) |
| 153 | { |
| 154 | i->getLocalControlHeader().wireDecode(element, |
| 155 | false, |
| 156 | this->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID)); |
| 157 | } |
| 158 | |
| 159 | this->onReceiveInterest(*i); |
| 160 | } |
| 161 | else if (payload.type() == tlv::Data) |
| 162 | { |
| 163 | shared_ptr<Data> d = make_shared<Data>(); |
| 164 | d->wireDecode(payload); |
| 165 | |
| 166 | /// \todo Uncomment and correct the following when we have more |
| 167 | /// options in LocalControlHeader that apply for incoming |
| 168 | /// Data packets (if ever) |
| 169 | // if (&payload != &element) |
| 170 | // { |
| 171 | // |
| 172 | // d->getLocalControlHeader().wireDecode(element, |
| 173 | // false, |
| 174 | // false); |
| 175 | // } |
| 176 | |
| 177 | this->onReceiveData(*d); |
| 178 | } |
| 179 | else |
| 180 | return false; |
| 181 | |
| 182 | return true; |
| 183 | } |
| 184 | catch (tlv::Error&) { |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 185 | return false; |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 186 | } |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | inline bool |
| 190 | LocalFace::isEmptyFilteredLocalControlHeader(const ndn::nfd::LocalControlHeader& header) const |
| 191 | { |
| 192 | if (!this->isLocalControlHeaderEnabled()) |
| 193 | return true; |
| 194 | |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 195 | return header.empty(this->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID), |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 196 | false); |
| 197 | } |
| 198 | |
| 199 | template<class Packet> |
| 200 | inline Block |
| 201 | LocalFace::filterAndEncodeLocalControlHeader(const Packet& packet) |
| 202 | { |
| 203 | return packet.getLocalControlHeader().wireEncode(packet, |
Steve DiBenedetto | 7564d97 | 2014-03-24 14:28:46 -0600 | [diff] [blame] | 204 | this->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID), |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 205 | false); |
| 206 | } |
| 207 | |
| 208 | } // namespace nfd |
| 209 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 210 | #endif // NFD_DAEMON_FACE_LOCAL_FACE_HPP |