blob: fb82addd8111a46b92dd7119bc1d5239b7189811 [file] [log] [blame]
Junxiao Shif3c07812014-03-11 21:48:49 -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 Shi82e7f582014-09-07 15:15:40 -070024 */
Junxiao Shif3c07812014-03-11 21:48:49 -070025
Junxiao Shi82e7f582014-09-07 15:15:40 -070026#ifndef NFD_TESTS_DAEMON_FW_DUMMY_STRATEGY_HPP
27#define NFD_TESTS_DAEMON_FW_DUMMY_STRATEGY_HPP
Junxiao Shif3c07812014-03-11 21:48:49 -070028
29#include "fw/strategy.hpp"
30
31namespace nfd {
32namespace tests {
33
34/** \brief strategy for unit testing
35 *
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000036 * Triggers are recorded but do nothing.
37 *
38 * DummyStrategy registers itself as /dummy-strategy/<max-version>, so that it can be instantiated
39 * with any version number. Aliases can be created with \p registerAs function.
Junxiao Shif3c07812014-03-11 21:48:49 -070040 */
41class DummyStrategy : public fw::Strategy
42{
43public:
Junxiao Shi18739c42016-12-22 08:03:00 +000044 static void
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000045 registerAs(const Name& strategyName);
Junxiao Shi18739c42016-12-22 08:03:00 +000046
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000047 static Name
48 getStrategyName(uint64_t version = std::numeric_limits<uint64_t>::max());
49
50 /** \brief constructor
51 *
52 * \p name is recorded unchanged as \p getInstanceName() , and will not automatically
53 * gain a version number when instantiated without a version number.
54 */
55 explicit
56 DummyStrategy(Forwarder& forwarder, const Name& name = getStrategyName());
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070057
Junxiao Shi5e5e4452015-09-24 16:56:52 -070058 /** \brief after receive Interest trigger
59 *
Junxiao Shia6350d92016-11-22 14:22:25 +000060 * If \p interestOutFace is not null, Interest is forwarded to that face via send Interest action;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070061 * otherwise, reject pending Interest action is invoked.
62 */
Junxiao Shi18739c42016-12-22 08:03:00 +000063 void
Junxiao Shi15e98b02016-08-12 11:21:44 +000064 afterReceiveInterest(const Face& inFace, const Interest& interest,
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000065 const shared_ptr<pit::Entry>& pitEntry) override;
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070066
Junxiao Shi18739c42016-12-22 08:03:00 +000067 void
Junxiao Shi15e98b02016-08-12 11:21:44 +000068 beforeSatisfyInterest(const shared_ptr<pit::Entry>& pitEntry,
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000069 const Face& inFace, const Data& data) override;
Junxiao Shif3c07812014-03-11 21:48:49 -070070
Junxiao Shi18739c42016-12-22 08:03:00 +000071 void
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000072 beforeExpirePendingInterest(const shared_ptr<pit::Entry>& pitEntry) override;
Junxiao Shif3c07812014-03-11 21:48:49 -070073
Junxiao Shi18739c42016-12-22 08:03:00 +000074 void
Junxiao Shi15e98b02016-08-12 11:21:44 +000075 afterReceiveNack(const Face& inFace, const lp::Nack& nack,
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000076 const shared_ptr<pit::Entry>& pitEntry) override;
77
78protected:
79 /** \brief register an alias
80 * \tparam S subclass of DummyStrategy
81 */
82 template<typename S>
83 static void
84 registerAsImpl(const Name& strategyName)
Junxiao Shi5e5e4452015-09-24 16:56:52 -070085 {
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000086 if (!fw::Strategy::canCreate(strategyName)) {
87 fw::Strategy::registerType<S>(strategyName);
88 }
Junxiao Shi5e5e4452015-09-24 16:56:52 -070089 }
90
Junxiao Shif3c07812014-03-11 21:48:49 -070091public:
Junxiao Shi0355e9f2015-09-02 07:24:53 -070092 int afterReceiveInterest_count;
Junxiao Shi0355e9f2015-09-02 07:24:53 -070093 int beforeSatisfyInterest_count;
94 int beforeExpirePendingInterest_count;
Junxiao Shi5e5e4452015-09-24 16:56:52 -070095 int afterReceiveNack_count;
Junxiao Shi15e98b02016-08-12 11:21:44 +000096
97 shared_ptr<Face> interestOutFace;
Junxiao Shif3c07812014-03-11 21:48:49 -070098};
99
Junxiao Shi7f566dd2016-12-27 02:28:31 +0000100/** \brief DummyStrategy with specific version
101 */
102template<uint64_t VERSION>
103class VersionedDummyStrategy : public DummyStrategy
104{
105public:
106 static void
107 registerAs(const Name& strategyName)
108 {
109 DummyStrategy::registerAsImpl<VersionedDummyStrategy<VERSION>>(strategyName);
110 }
111
112 static Name
113 getStrategyName()
114 {
115 return DummyStrategy::getStrategyName(VERSION);
116 }
117
118 /** \brief constructor
119 *
120 * The strategy instance name is taken from \p name ; if it does not contain a version component,
121 * \p VERSION will be appended.
122 */
123 explicit
124 VersionedDummyStrategy(Forwarder& forwarder, const Name& name = getStrategyName())
125 : DummyStrategy(forwarder, Strategy::makeInstanceName(name, getStrategyName()))
126 {
127 }
128};
129
Junxiao Shif3c07812014-03-11 21:48:49 -0700130} // namespace tests
131} // namespace nfd
132
Junxiao Shi82e7f582014-09-07 15:15:40 -0700133#endif // NFD_TESTS_DAEMON_FW_DUMMY_STRATEGY_HPP