blob: e3cc60c021265c233e95c798af1c305334f9fa57 [file] [log] [blame]
Junxiao Shid3c792f2014-01-30 00:46:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
ashiqopuc7079482019-02-20 05:34:37 +00002/*
3 * Copyright (c) 2014-2019, Regents of the University of California,
Davide Pesaventob84bd3a2016-04-22 02:21:45 +02004 * 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 Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 Shi986b8492014-08-20 12:07:14 -070024 */
Junxiao Shid3c792f2014-01-30 00:46:13 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP
27#define NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP
Junxiao Shid3c792f2014-01-30 00:46:13 -070028
29#include "strategy.hpp"
30
31namespace nfd {
Junxiao Shi8c8d2182014-01-30 22:33:00 -070032namespace fw {
Junxiao Shid3c792f2014-01-30 00:46:13 -070033
Junxiao Shi18739c42016-12-22 08:03:00 +000034class BestRouteStrategyBase : public Strategy
35{
36public:
37 void
ashiqopuc7079482019-02-20 05:34:37 +000038 afterReceiveInterest(const FaceEndpoint& ingress, const Interest& interest,
Junxiao Shi18739c42016-12-22 08:03:00 +000039 const shared_ptr<pit::Entry>& pitEntry) override;
40
41protected:
42 BestRouteStrategyBase(Forwarder& forwarder);
43};
44
Junxiao Shi986b8492014-08-20 12:07:14 -070045/** \brief Best Route strategy version 1
46 *
47 * This strategy forwards a new Interest to the lowest-cost nexthop
48 * that is not same as the downstream, and does not violate scope.
49 * Subsequent similar Interests or consumer retransmissions are suppressed
50 * until after InterestLifetime expiry.
51 *
Junxiao Shi18739c42016-12-22 08:03:00 +000052 * \note This strategy is superceded by Best Route strategy version 2,
53 * which allows consumer retransmissions. This version is kept for
54 * comparison purposes and is not recommended for general usage.
ashiqopuc7079482019-02-20 05:34:37 +000055 *
56 * \note This strategy is not EndpointId-aware.
Junxiao Shid3c792f2014-01-30 00:46:13 -070057 */
Junxiao Shi18739c42016-12-22 08:03:00 +000058class BestRouteStrategy : public BestRouteStrategyBase
Junxiao Shid3c792f2014-01-30 00:46:13 -070059{
60public:
Junxiao Shi15e98b02016-08-12 11:21:44 +000061 explicit
Junxiao Shi037f4ab2016-12-13 04:27:06 +000062 BestRouteStrategy(Forwarder& forwarder, const Name& name = getStrategyName());
63
64 static const Name&
65 getStrategyName();
Junxiao Shid3c792f2014-01-30 00:46:13 -070066};
67
Junxiao Shi8c8d2182014-01-30 22:33:00 -070068} // namespace fw
Junxiao Shid3c792f2014-01-30 00:46:13 -070069} // namespace nfd
70
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070071#endif // NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP