blob: 3cef9074482d2b3309dd3cd945da6b655737a77c [file] [log] [blame]
Junxiao Shid3c792f2014-01-30 00:46:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventob84bd3a2016-04-22 02:21:45 +02003 * Copyright (c) 2014-2016, 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 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
38 afterReceiveInterest(const Face& inFace, const Interest& interest,
39 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.
Junxiao Shid3c792f2014-01-30 00:46:13 -070055 */
Junxiao Shi18739c42016-12-22 08:03:00 +000056class BestRouteStrategy : public BestRouteStrategyBase
Junxiao Shid3c792f2014-01-30 00:46:13 -070057{
58public:
Junxiao Shi15e98b02016-08-12 11:21:44 +000059 explicit
Junxiao Shi037f4ab2016-12-13 04:27:06 +000060 BestRouteStrategy(Forwarder& forwarder, const Name& name = getStrategyName());
61
62 static const Name&
63 getStrategyName();
Junxiao Shid3c792f2014-01-30 00:46:13 -070064};
65
Junxiao Shi8c8d2182014-01-30 22:33:00 -070066} // namespace fw
Junxiao Shid3c792f2014-01-30 00:46:13 -070067} // namespace nfd
68
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070069#endif // NFD_DAEMON_FW_BEST_ROUTE_STRATEGY_HPP