Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | faf3eb0 | 2015-02-16 10:50:36 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, 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 | * The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 25 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 26 | #ifndef NFD_DAEMON_FW_STRATEGY_HPP |
| 27 | #define NFD_DAEMON_FW_STRATEGY_HPP |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 28 | |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 29 | #include "forwarder.hpp" |
Junxiao Shi | faf3eb0 | 2015-02-16 10:50:36 -0700 | [diff] [blame] | 30 | #include "strategy-registry.hpp" |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 31 | #include "table/measurements-accessor.hpp" |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 34 | namespace fw { |
| 35 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 36 | /** \brief represents a forwarding strategy |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 37 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 38 | class Strategy : public enable_shared_from_this<Strategy>, noncopyable |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 39 | { |
| 40 | public: |
Junxiao Shi | e93d6a3 | 2014-09-07 16:13:22 -0700 | [diff] [blame] | 41 | /** \brief construct a strategy instance |
| 42 | * \param forwarder a reference to the Forwarder, used to enable actions and accessors. |
| 43 | * Strategy subclasses should pass this reference, |
| 44 | * and should not keep a reference themselves. |
| 45 | * \param name the strategy Name. |
| 46 | * It's recommended to include a version number as the last component. |
| 47 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 48 | Strategy(Forwarder& forwarder, const Name& name); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 49 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 50 | virtual |
| 51 | ~Strategy(); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 52 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 53 | /// a Name that represent the Strategy program |
| 54 | const Name& |
| 55 | getName() const; |
| 56 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 57 | public: // triggers |
| 58 | /** \brief trigger after Interest is received |
| 59 | * |
| 60 | * The Interest: |
| 61 | * - does not violate Scope |
| 62 | * - is not looped |
| 63 | * - cannot be satisfied by ContentStore |
| 64 | * - is under a namespace managed by this strategy |
| 65 | * |
| 66 | * The strategy should decide whether and where to forward this Interest. |
| 67 | * - If the strategy decides to forward this Interest, |
| 68 | * invoke this->sendInterest one or more times, either now or shortly after |
| 69 | * - If strategy concludes that this Interest cannot be forwarded, |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 70 | * invoke this->rejectPendingInterest so that PIT entry will be deleted shortly |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 71 | * |
| 72 | * \note The strategy is permitted to store a weak reference to fibEntry. |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 73 | * Do not store a shared reference, because FIB entry may be deleted at any moment. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 74 | * fibEntry is passed by value to allow obtaining a weak reference from it. |
| 75 | * \note The strategy is permitted to store a shared reference to pitEntry. |
| 76 | * pitEntry is passed by value to reflect this fact. |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 77 | */ |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 78 | virtual void |
| 79 | afterReceiveInterest(const Face& inFace, |
| 80 | const Interest& interest, |
| 81 | shared_ptr<fib::Entry> fibEntry, |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 82 | shared_ptr<pit::Entry> pitEntry) = 0; |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 83 | |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 84 | /** \brief trigger before PIT entry is satisfied |
| 85 | * |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 86 | * This trigger is invoked when an incoming Data satisfies the PIT entry. |
| 87 | * It can be invoked even if the PIT entry has already been satisfied. |
| 88 | * |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 89 | * In this base class this method does nothing. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 90 | * |
| 91 | * \note The strategy is permitted to store a shared reference to pitEntry. |
| 92 | * pitEntry is passed by value to reflect this fact. |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 93 | */ |
| 94 | virtual void |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 95 | beforeSatisfyInterest(shared_ptr<pit::Entry> pitEntry, |
| 96 | const Face& inFace, const Data& data); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 97 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 98 | /** \brief trigger before PIT entry expires |
| 99 | * |
| 100 | * PIT entry expires when InterestLifetime has elapsed for all InRecords, |
| 101 | * and it is not satisfied by an incoming Data. |
| 102 | * |
| 103 | * This trigger is not invoked for PIT entry already satisfied. |
| 104 | * |
| 105 | * In this base class this method does nothing. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 106 | * |
| 107 | * \note The strategy is permitted to store a shared reference to pitEntry. |
| 108 | * pitEntry is passed by value to reflect this fact. |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 109 | */ |
| 110 | virtual void |
| 111 | beforeExpirePendingInterest(shared_ptr<pit::Entry> pitEntry); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 112 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 113 | /** \brief trigger after Nack is received |
| 114 | * |
| 115 | * This trigger is invoked when an incoming Nack is received in response to |
| 116 | * an forwarded Interest. |
| 117 | * The Nack has been confirmed to be a response to the last Interest forwarded |
| 118 | * to that upstream, i.e. the PIT out-record exists and has a matching Nonce. |
| 119 | * The NackHeader has been recorded in the PIT out-record. |
| 120 | * |
| 121 | * In this base class this method does nothing. |
| 122 | * |
| 123 | * \note The strategy is permitted to store a weak reference to fibEntry. |
| 124 | * Do not store a shared reference, because PIT entry may be deleted at any moment. |
| 125 | * fibEntry is passed by value to allow obtaining a weak reference from it. |
| 126 | * \note The strategy is permitted to store a shared reference to pitEntry. |
| 127 | * pitEntry is passed by value to reflect this fact. |
| 128 | */ |
| 129 | virtual void |
| 130 | afterReceiveNack(const Face& inFace, const lp::Nack& nack, |
| 131 | shared_ptr<fib::Entry> fibEntry, shared_ptr<pit::Entry> pitEntry); |
| 132 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 133 | protected: // actions |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 134 | /** \brief send Interest to outFace |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 135 | * \param pitEntry PIT entry |
| 136 | * \param outFace face through which to send out the Interest |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 137 | * \param wantNewNonce if true, a new Nonce will be generated, |
| 138 | * rather than reusing a Nonce from one of the PIT in-records |
| 139 | */ |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 140 | VIRTUAL_WITH_TESTS void |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 141 | sendInterest(shared_ptr<pit::Entry> pitEntry, shared_ptr<Face> outFace, |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 142 | bool wantNewNonce = false); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 143 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 144 | /** \brief decide that a pending Interest cannot be forwarded |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 145 | * \param pitEntry PIT entry |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 146 | * |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 147 | * This shall not be called if the pending Interest has been |
| 148 | * forwarded earlier, and does not need to be resent now. |
| 149 | */ |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 150 | VIRTUAL_WITH_TESTS void |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 151 | rejectPendingInterest(shared_ptr<pit::Entry> pitEntry); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 152 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 153 | /** \brief send Nack to outFace |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 154 | * \param pitEntry PIT entry |
| 155 | * \param outFace face through which to send out the Nack |
| 156 | * \param header Nack header |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 157 | * |
| 158 | * The outFace must have a PIT in-record, otherwise this method has no effect. |
| 159 | */ |
| 160 | VIRTUAL_WITH_TESTS void |
| 161 | sendNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace, |
| 162 | const lp::NackHeader& header); |
| 163 | |
| 164 | /** \brief send Nack to every face that has an in-record, |
| 165 | * except those in \p exceptFaces |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 166 | * \param pitEntry PIT entry |
| 167 | * \param header NACK header |
| 168 | * \param exceptFaces list of faces that should be excluded from sending Nacks |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 169 | * \note This is not an action, but a helper that invokes the sendNack action. |
| 170 | */ |
| 171 | void |
| 172 | sendNacks(shared_ptr<pit::Entry> pitEntry, const lp::NackHeader& header, |
| 173 | std::initializer_list<const Face*> exceptFaces = std::initializer_list<const Face*>()); |
| 174 | |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 175 | protected: // accessors |
| 176 | MeasurementsAccessor& |
| 177 | getMeasurements(); |
| 178 | |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 179 | shared_ptr<Face> |
| 180 | getFace(FaceId id); |
| 181 | |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 182 | const FaceTable& |
| 183 | getFaceTable(); |
| 184 | |
| 185 | protected: // accessors |
| 186 | signal::Signal<FaceTable, shared_ptr<Face>>& afterAddFace; |
| 187 | signal::Signal<FaceTable, shared_ptr<Face>>& beforeRemoveFace; |
| 188 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 189 | private: |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 190 | Name m_name; |
| 191 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 192 | /** \brief reference to the forwarder |
| 193 | * |
| 194 | * Triggers can access forwarder indirectly via actions. |
| 195 | */ |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 196 | Forwarder& m_forwarder; |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 197 | |
| 198 | MeasurementsAccessor m_measurements; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 199 | }; |
| 200 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 201 | inline const Name& |
| 202 | Strategy::getName() const |
| 203 | { |
| 204 | return m_name; |
| 205 | } |
| 206 | |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 207 | inline void |
| 208 | Strategy::sendInterest(shared_ptr<pit::Entry> pitEntry, |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 209 | shared_ptr<Face> outFace, |
| 210 | bool wantNewNonce) |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 211 | { |
Junxiao Shi | d938a6b | 2014-05-11 23:40:29 -0700 | [diff] [blame] | 212 | m_forwarder.onOutgoingInterest(pitEntry, *outFace, wantNewNonce); |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | inline void |
| 216 | Strategy::rejectPendingInterest(shared_ptr<pit::Entry> pitEntry) |
| 217 | { |
| 218 | m_forwarder.onInterestReject(pitEntry); |
| 219 | } |
| 220 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 221 | inline void |
| 222 | Strategy::sendNack(shared_ptr<pit::Entry> pitEntry, const Face& outFace, |
| 223 | const lp::NackHeader& header) |
| 224 | { |
| 225 | m_forwarder.onOutgoingNack(pitEntry, outFace, header); |
| 226 | } |
| 227 | |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 228 | inline MeasurementsAccessor& |
| 229 | Strategy::getMeasurements() |
| 230 | { |
| 231 | return m_measurements; |
| 232 | } |
| 233 | |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 234 | inline shared_ptr<Face> |
| 235 | Strategy::getFace(FaceId id) |
| 236 | { |
| 237 | return m_forwarder.getFace(id); |
| 238 | } |
| 239 | |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 240 | inline const FaceTable& |
| 241 | Strategy::getFaceTable() |
| 242 | { |
| 243 | return m_forwarder.getFaceTable(); |
| 244 | } |
| 245 | |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 246 | } // namespace fw |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 247 | } // namespace nfd |
| 248 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 249 | #endif // NFD_DAEMON_FW_STRATEGY_HPP |