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 | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Junxiao Shi | faf3eb0 | 2015-02-16 10:50:36 -0700 | [diff] [blame] | 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 | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 30 | #include "table/measurements-accessor.hpp" |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 33 | namespace fw { |
| 34 | |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 35 | /** \brief represents a forwarding strategy |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 36 | */ |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame^] | 37 | class Strategy : noncopyable |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 38 | { |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame^] | 39 | public: // registry |
| 40 | /** \brief register a strategy type |
| 41 | * \tparam S subclass of Strategy |
| 42 | * \param strategyName versioned strategy name |
| 43 | * \note It is permitted to register the same strategy type under multiple names, |
| 44 | * which is useful in tests and for creating aliases. |
| 45 | */ |
| 46 | template<typename S> |
| 47 | static void |
| 48 | registerType(const Name& strategyName = S::STRATEGY_NAME) |
| 49 | { |
| 50 | Registry& registry = getRegistry(); |
| 51 | BOOST_ASSERT(registry.count(strategyName) == 0); |
| 52 | registry[strategyName] = &make_unique<S, Forwarder&, const Name&>; |
| 53 | } |
| 54 | |
| 55 | /** \return whether a strategy instance can be created from \p strategyName |
| 56 | * \param strategyName strategy name, may contain version |
| 57 | * \todo #3868 may contain parameters |
| 58 | * \note This function finds a strategy type using same rules as \p create , |
| 59 | * but does not attempt to construct an instance. |
| 60 | */ |
| 61 | static bool |
| 62 | canCreate(const Name& strategyName); |
| 63 | |
| 64 | /** \return a strategy instance created from \p strategyName, |
| 65 | * \retval nullptr if !canCreate(strategyName) |
| 66 | * \todo #3868 throw std::invalid_argument strategy type constructor |
| 67 | * does not accept specified version or parameters |
| 68 | */ |
| 69 | static unique_ptr<Strategy> |
| 70 | create(const Name& strategyName, Forwarder& forwarder); |
| 71 | |
| 72 | /** \return registered versioned strategy names |
| 73 | */ |
| 74 | static std::set<Name> |
| 75 | listRegistered(); |
| 76 | |
| 77 | public: // constructor, destructor, strategy name |
Junxiao Shi | e93d6a3 | 2014-09-07 16:13:22 -0700 | [diff] [blame] | 78 | /** \brief construct a strategy instance |
| 79 | * \param forwarder a reference to the Forwarder, used to enable actions and accessors. |
| 80 | * Strategy subclasses should pass this reference, |
| 81 | * and should not keep a reference themselves. |
| 82 | * \param name the strategy Name. |
| 83 | * It's recommended to include a version number as the last component. |
| 84 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 85 | Strategy(Forwarder& forwarder, const Name& name); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 86 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 87 | virtual |
| 88 | ~Strategy(); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 89 | |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 90 | /** \return a Name that represents the strategy program |
| 91 | */ |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 92 | const Name& |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 93 | getName() const |
| 94 | { |
| 95 | return m_name; |
| 96 | } |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 97 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 98 | public: // triggers |
| 99 | /** \brief trigger after Interest is received |
| 100 | * |
| 101 | * The Interest: |
| 102 | * - does not violate Scope |
| 103 | * - is not looped |
| 104 | * - cannot be satisfied by ContentStore |
| 105 | * - is under a namespace managed by this strategy |
| 106 | * |
| 107 | * The strategy should decide whether and where to forward this Interest. |
| 108 | * - If the strategy decides to forward this Interest, |
| 109 | * invoke this->sendInterest one or more times, either now or shortly after |
| 110 | * - If strategy concludes that this Interest cannot be forwarded, |
Junxiao Shi | 09498f0 | 2014-02-26 19:41:08 -0700 | [diff] [blame] | 111 | * invoke this->rejectPendingInterest so that PIT entry will be deleted shortly |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 112 | * |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 113 | * \warning The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior |
| 114 | * may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>. |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 115 | */ |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 116 | virtual void |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 117 | afterReceiveInterest(const Face& inFace, const Interest& interest, |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 118 | const shared_ptr<pit::Entry>& pitEntry) = 0; |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 119 | |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 120 | /** \brief trigger before PIT entry is satisfied |
| 121 | * |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 122 | * This trigger is invoked when an incoming Data satisfies the PIT entry. |
| 123 | * It can be invoked even if the PIT entry has already been satisfied. |
| 124 | * |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 125 | * In this base class this method does nothing. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 126 | * |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 127 | * \warning The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior |
| 128 | * may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>. |
Junxiao Shi | 22be22c | 2014-02-16 22:53:48 -0700 | [diff] [blame] | 129 | */ |
| 130 | virtual void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 131 | beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry, |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 132 | const Face& inFace, const Data& data); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 133 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 134 | /** \brief trigger before PIT entry expires |
| 135 | * |
| 136 | * PIT entry expires when InterestLifetime has elapsed for all InRecords, |
| 137 | * and it is not satisfied by an incoming Data. |
| 138 | * |
| 139 | * This trigger is not invoked for PIT entry already satisfied. |
| 140 | * |
| 141 | * In this base class this method does nothing. |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 142 | * |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 143 | * \warning The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior |
| 144 | * may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>, |
| 145 | * although this isn't useful here because PIT entry would be deleted shortly after. |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 146 | */ |
| 147 | virtual void |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 148 | beforeExpirePendingInterest(const shared_ptr<pit::Entry>& pitEntry); |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 149 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 150 | /** \brief trigger after Nack is received |
| 151 | * |
| 152 | * This trigger is invoked when an incoming Nack is received in response to |
| 153 | * an forwarded Interest. |
| 154 | * The Nack has been confirmed to be a response to the last Interest forwarded |
| 155 | * to that upstream, i.e. the PIT out-record exists and has a matching Nonce. |
| 156 | * The NackHeader has been recorded in the PIT out-record. |
| 157 | * |
| 158 | * In this base class this method does nothing. |
| 159 | * |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 160 | * \warning The strategy must not retain shared_ptr<pit::Entry>, otherwise undefined behavior |
| 161 | * may occur. However, the strategy is allowed to store weak_ptr<pit::Entry>. |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 162 | */ |
| 163 | virtual void |
| 164 | afterReceiveNack(const Face& inFace, const lp::Nack& nack, |
Junxiao Shi | 15e98b0 | 2016-08-12 11:21:44 +0000 | [diff] [blame] | 165 | const shared_ptr<pit::Entry>& pitEntry); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 166 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 167 | protected: // actions |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 168 | /** \brief send Interest to outFace |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 169 | * \param pitEntry PIT entry |
| 170 | * \param outFace face through which to send out the Interest |
Junxiao Shi | c5f651f | 2016-11-17 22:58:12 +0000 | [diff] [blame] | 171 | * \param interest the Interest packet |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 172 | */ |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 173 | VIRTUAL_WITH_TESTS void |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 174 | sendInterest(const shared_ptr<pit::Entry>& pitEntry, Face& outFace, |
Junxiao Shi | c5f651f | 2016-11-17 22:58:12 +0000 | [diff] [blame] | 175 | const Interest& interest) |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 176 | { |
Junxiao Shi | c5f651f | 2016-11-17 22:58:12 +0000 | [diff] [blame] | 177 | m_forwarder.onOutgoingInterest(pitEntry, outFace, interest); |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 178 | } |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 179 | |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 180 | /** \brief decide that a pending Interest cannot be forwarded |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 181 | * \param pitEntry PIT entry |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 182 | * |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 183 | * This shall not be called if the pending Interest has been |
| 184 | * forwarded earlier, and does not need to be resent now. |
| 185 | */ |
Junxiao Shi | 727ed29 | 2014-02-19 23:26:45 -0700 | [diff] [blame] | 186 | VIRTUAL_WITH_TESTS void |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 187 | rejectPendingInterest(const shared_ptr<pit::Entry>& pitEntry) |
| 188 | { |
| 189 | m_forwarder.onInterestReject(pitEntry); |
| 190 | } |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 191 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 192 | /** \brief send Nack to outFace |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 193 | * \param pitEntry PIT entry |
| 194 | * \param outFace face through which to send out the Nack |
| 195 | * \param header Nack header |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 196 | * |
| 197 | * The outFace must have a PIT in-record, otherwise this method has no effect. |
| 198 | */ |
| 199 | VIRTUAL_WITH_TESTS void |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 200 | sendNack(const shared_ptr<pit::Entry>& pitEntry, const Face& outFace, |
| 201 | const lp::NackHeader& header) |
| 202 | { |
| 203 | m_forwarder.onOutgoingNack(pitEntry, outFace, header); |
| 204 | } |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 205 | |
| 206 | /** \brief send Nack to every face that has an in-record, |
| 207 | * except those in \p exceptFaces |
Alexander Afanasyev | b755e9d | 2015-10-20 17:35:51 -0500 | [diff] [blame] | 208 | * \param pitEntry PIT entry |
| 209 | * \param header NACK header |
| 210 | * \param exceptFaces list of faces that should be excluded from sending Nacks |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 211 | * \note This is not an action, but a helper that invokes the sendNack action. |
| 212 | */ |
| 213 | void |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 214 | sendNacks(const shared_ptr<pit::Entry>& pitEntry, const lp::NackHeader& header, |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 215 | std::initializer_list<const Face*> exceptFaces = std::initializer_list<const Face*>()); |
| 216 | |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 217 | protected: // accessors |
Junxiao Shi | cf0f3ce | 2016-09-02 13:01:59 +0000 | [diff] [blame] | 218 | /** \brief performs a FIB lookup, considering Link object if present |
| 219 | */ |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 220 | const fib::Entry& |
Junxiao Shi | cf0f3ce | 2016-09-02 13:01:59 +0000 | [diff] [blame] | 221 | lookupFib(const pit::Entry& pitEntry) const; |
Junxiao Shi | 8d84314 | 2016-07-11 22:42:42 +0000 | [diff] [blame] | 222 | |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 223 | MeasurementsAccessor& |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 224 | getMeasurements() |
| 225 | { |
| 226 | return m_measurements; |
| 227 | } |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 228 | |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 229 | Face* |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 230 | getFace(FaceId id) const |
| 231 | { |
| 232 | return m_forwarder.getFace(id); |
| 233 | } |
Junxiao Shi | 2d9bdc8 | 2014-03-02 20:55:42 -0700 | [diff] [blame] | 234 | |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 235 | const FaceTable& |
Junxiao Shi | b9420cf | 2016-08-13 04:38:52 +0000 | [diff] [blame] | 236 | getFaceTable() const |
| 237 | { |
| 238 | return m_forwarder.getFaceTable(); |
| 239 | } |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 240 | |
| 241 | protected: // accessors |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 242 | signal::Signal<FaceTable, Face&>& afterAddFace; |
| 243 | signal::Signal<FaceTable, Face&>& beforeRemoveFace; |
Junxiao Shi | 49e11e7 | 2014-12-14 19:46:05 -0700 | [diff] [blame] | 244 | |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame^] | 245 | private: // registry |
| 246 | typedef std::function<unique_ptr<Strategy>(Forwarder& forwarder, const Name& strategyName)> CreateFunc; |
| 247 | typedef std::map<Name, CreateFunc> Registry; // indexed by strategy name |
| 248 | |
| 249 | static Registry& |
| 250 | getRegistry(); |
| 251 | |
| 252 | static Registry::const_iterator |
| 253 | find(const Name& strategyName); |
| 254 | |
| 255 | private: // instance fields |
Junxiao Shi | bb5105f | 2014-03-03 12:06:45 -0700 | [diff] [blame] | 256 | Name m_name; |
| 257 | |
Junxiao Shi | 679e927 | 2014-02-15 20:10:21 -0700 | [diff] [blame] | 258 | /** \brief reference to the forwarder |
| 259 | * |
| 260 | * Triggers can access forwarder indirectly via actions. |
| 261 | */ |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 262 | Forwarder& m_forwarder; |
Junxiao Shi | dbe7173 | 2014-02-21 22:23:28 -0700 | [diff] [blame] | 263 | |
| 264 | MeasurementsAccessor m_measurements; |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 265 | }; |
| 266 | |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 267 | } // namespace fw |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 268 | } // namespace nfd |
| 269 | |
Junxiao Shi | c34d167 | 2016-12-09 15:57:59 +0000 | [diff] [blame^] | 270 | /** \brief registers a strategy |
| 271 | * |
| 272 | * This macro should appear once in .cpp of each strategy. |
| 273 | */ |
| 274 | #define NFD_REGISTER_STRATEGY(S) \ |
| 275 | static class NfdAuto ## S ## StrategyRegistrationClass \ |
| 276 | { \ |
| 277 | public: \ |
| 278 | NfdAuto ## S ## StrategyRegistrationClass() \ |
| 279 | { \ |
| 280 | ::nfd::fw::Strategy::registerType<S>(); \ |
| 281 | } \ |
| 282 | } g_nfdAuto ## S ## StrategyRegistrationVariable |
| 283 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 284 | #endif // NFD_DAEMON_FW_STRATEGY_HPP |