blob: d690b0f81e81a6c1c4f416bf7a4b7b3c1b184765 [file] [log] [blame]
Junxiao Shid3c792f2014-01-30 00:46:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * 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 **/
Junxiao Shid3c792f2014-01-30 00:46:13 -070024
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070025#ifndef NFD_DAEMON_FW_STRATEGY_HPP
26#define NFD_DAEMON_FW_STRATEGY_HPP
Junxiao Shid3c792f2014-01-30 00:46:13 -070027
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070028#include "forwarder.hpp"
Junxiao Shidbe71732014-02-21 22:23:28 -070029#include "table/measurements-accessor.hpp"
Junxiao Shid3c792f2014-01-30 00:46:13 -070030
31namespace nfd {
Junxiao Shi8c8d2182014-01-30 22:33:00 -070032namespace fw {
33
Junxiao Shibb5105f2014-03-03 12:06:45 -070034/** \brief represents a forwarding strategy
Junxiao Shid3c792f2014-01-30 00:46:13 -070035 */
Junxiao Shibb5105f2014-03-03 12:06:45 -070036class Strategy : public enable_shared_from_this<Strategy>, noncopyable
Junxiao Shid3c792f2014-01-30 00:46:13 -070037{
38public:
Junxiao Shibb5105f2014-03-03 12:06:45 -070039 Strategy(Forwarder& forwarder, const Name& name);
Junxiao Shidbe71732014-02-21 22:23:28 -070040
Junxiao Shid3c792f2014-01-30 00:46:13 -070041 virtual
42 ~Strategy();
Junxiao Shidbe71732014-02-21 22:23:28 -070043
Junxiao Shibb5105f2014-03-03 12:06:45 -070044 /// a Name that represent the Strategy program
45 const Name&
46 getName() const;
47
Junxiao Shi679e9272014-02-15 20:10:21 -070048public: // triggers
49 /** \brief trigger after Interest is received
50 *
51 * The Interest:
52 * - does not violate Scope
53 * - is not looped
54 * - cannot be satisfied by ContentStore
55 * - is under a namespace managed by this strategy
56 *
57 * The strategy should decide whether and where to forward this Interest.
58 * - If the strategy decides to forward this Interest,
59 * invoke this->sendInterest one or more times, either now or shortly after
60 * - If strategy concludes that this Interest cannot be forwarded,
Junxiao Shi09498f02014-02-26 19:41:08 -070061 * invoke this->rejectPendingInterest so that PIT entry will be deleted shortly
Junxiao Shi679e9272014-02-15 20:10:21 -070062 */
Junxiao Shid3c792f2014-01-30 00:46:13 -070063 virtual void
64 afterReceiveInterest(const Face& inFace,
65 const Interest& interest,
66 shared_ptr<fib::Entry> fibEntry,
Junxiao Shi8c8d2182014-01-30 22:33:00 -070067 shared_ptr<pit::Entry> pitEntry) =0;
Junxiao Shidbe71732014-02-21 22:23:28 -070068
Junxiao Shi22be22c2014-02-16 22:53:48 -070069 /** \brief trigger before PIT entry is satisfied
70 *
71 * In this base class this method does nothing.
72 */
73 virtual void
74 beforeSatisfyPendingInterest(shared_ptr<pit::Entry> pitEntry,
75 const Face& inFace, const Data& data);
Junxiao Shidbe71732014-02-21 22:23:28 -070076
Junxiao Shi679e9272014-02-15 20:10:21 -070077 /** \brief trigger before PIT entry expires
78 *
79 * PIT entry expires when InterestLifetime has elapsed for all InRecords,
80 * and it is not satisfied by an incoming Data.
81 *
82 * This trigger is not invoked for PIT entry already satisfied.
83 *
84 * In this base class this method does nothing.
85 */
86 virtual void
87 beforeExpirePendingInterest(shared_ptr<pit::Entry> pitEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070088
Junxiao Shi22be22c2014-02-16 22:53:48 -070089// /** \brief trigger after FIB entry is being inserted
90// * and becomes managed by this strategy
91// *
92// * In this base class this method does nothing.
93// */
94// virtual void
95// afterAddFibEntry(shared_ptr<fib::Entry> fibEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070096//
Junxiao Shi22be22c2014-02-16 22:53:48 -070097// /** \brief trigger after FIB entry being managed by this strategy is updated
98// *
99// * In this base class this method does nothing.
100// */
101// virtual void
102// afterUpdateFibEntry(shared_ptr<fib::Entry> fibEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -0700103//
Junxiao Shi22be22c2014-02-16 22:53:48 -0700104// /** \brief trigger before FIB entry ceises to be managed by this strategy
105// * or is being deleted
106// *
107// * In this base class this method does nothing.
108// */
109// virtual void
110// beforeRemoveFibEntry(shared_ptr<fib::Entry> fibEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -0700111
Junxiao Shid3c792f2014-01-30 00:46:13 -0700112protected: // actions
113 /// send Interest to outFace
Junxiao Shi727ed292014-02-19 23:26:45 -0700114 VIRTUAL_WITH_TESTS void
Junxiao Shid3c792f2014-01-30 00:46:13 -0700115 sendInterest(shared_ptr<pit::Entry> pitEntry,
Junxiao Shid938a6b2014-05-11 23:40:29 -0700116 shared_ptr<Face> outFace,
117 bool wantNewNonce = false);
Junxiao Shidbe71732014-02-21 22:23:28 -0700118
Junxiao Shid3c792f2014-01-30 00:46:13 -0700119 /** \brief decide that a pending Interest cannot be forwarded
Junxiao Shi679e9272014-02-15 20:10:21 -0700120 *
Junxiao Shid3c792f2014-01-30 00:46:13 -0700121 * This shall not be called if the pending Interest has been
122 * forwarded earlier, and does not need to be resent now.
123 */
Junxiao Shi727ed292014-02-19 23:26:45 -0700124 VIRTUAL_WITH_TESTS void
Junxiao Shi09498f02014-02-26 19:41:08 -0700125 rejectPendingInterest(shared_ptr<pit::Entry> pitEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -0700126
127protected: // accessors
128 MeasurementsAccessor&
129 getMeasurements();
130
Junxiao Shi2d9bdc82014-03-02 20:55:42 -0700131 shared_ptr<Face>
132 getFace(FaceId id);
133
Junxiao Shid3c792f2014-01-30 00:46:13 -0700134private:
Junxiao Shibb5105f2014-03-03 12:06:45 -0700135 Name m_name;
136
Junxiao Shi679e9272014-02-15 20:10:21 -0700137 /** \brief reference to the forwarder
138 *
139 * Triggers can access forwarder indirectly via actions.
140 */
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700141 Forwarder& m_forwarder;
Junxiao Shidbe71732014-02-21 22:23:28 -0700142
143 MeasurementsAccessor m_measurements;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700144};
145
Junxiao Shibb5105f2014-03-03 12:06:45 -0700146inline const Name&
147Strategy::getName() const
148{
149 return m_name;
150}
151
Junxiao Shi2d9bdc82014-03-02 20:55:42 -0700152inline void
153Strategy::sendInterest(shared_ptr<pit::Entry> pitEntry,
Junxiao Shid938a6b2014-05-11 23:40:29 -0700154 shared_ptr<Face> outFace,
155 bool wantNewNonce)
Junxiao Shi2d9bdc82014-03-02 20:55:42 -0700156{
Junxiao Shid938a6b2014-05-11 23:40:29 -0700157 m_forwarder.onOutgoingInterest(pitEntry, *outFace, wantNewNonce);
Junxiao Shi2d9bdc82014-03-02 20:55:42 -0700158}
159
160inline void
161Strategy::rejectPendingInterest(shared_ptr<pit::Entry> pitEntry)
162{
163 m_forwarder.onInterestReject(pitEntry);
164}
165
Junxiao Shidbe71732014-02-21 22:23:28 -0700166inline MeasurementsAccessor&
167Strategy::getMeasurements()
168{
169 return m_measurements;
170}
171
Junxiao Shi2d9bdc82014-03-02 20:55:42 -0700172inline shared_ptr<Face>
173Strategy::getFace(FaceId id)
174{
175 return m_forwarder.getFace(id);
176}
177
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700178} // namespace fw
Junxiao Shid3c792f2014-01-30 00:46:13 -0700179} // namespace nfd
180
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700181#endif // NFD_DAEMON_FW_STRATEGY_HPP