blob: 29269e784c71f061d312f3104d572c6481da4492 [file] [log] [blame]
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
4 *
5 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
7 *
8 * ndnSIM is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 **/
19
20#ifndef NDN_STRATEGY_CHOICE_HELPER_H
21#define NDN_STRATEGY_CHOICE_HELPER_H
22
23#include "ns3/ndnSIM/model/ndn-common.hpp"
24
25#include "ns3/node.h"
26#include "ns3/ptr.h"
27#include "ns3/node-container.h"
28
29#include "ns3/ndnSIM/model/ndn-l3-protocol.hpp"
30#include "ns3/ndnSIM/NFD/daemon/mgmt/strategy-choice-manager.hpp"
31#include "ns3/ndnSIM/NFD/daemon/fw/available-strategies.hpp"
32
33namespace ndn {
34namespace nfd {
35class ControlParameters;
36} // namespace nfd
37} // namespace ndn
38
39namespace nfd {
40namespace fw {
41class Strategy;
42} // namespace fw
43} // namespace nfd
44
45
46namespace ns3 {
47namespace ndn {
48
49using ::ndn::nfd::ControlParameters;
50
Spyridon Mastorakis460f57c2014-12-17 00:44:14 -080051/**
52 * @ingroup ndn-helpers
53 * @brief NFD Strategy Choice Helper (FIB) helper
54 *
55 * The Strategy Choice helper interacts with the Strategy Choice manager of NFD by sending
56 * special Interest commands to the manager in order to specify the desired per-name
57 * prefix forwarding strategy for one, more or all the nodes of a topology.
58 */
Alexander Afanasyevc512dba2015-08-13 16:51:26 -070059class StrategyChoiceHelper
60{
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080061public:
Alexander Afanasyevc512dba2015-08-13 16:51:26 -070062 /**
63 * @brief Install a built-in strategy @p strategy on @p node for @namePrefix namespace
64 */
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080065 static void
66 Install(Ptr<Node> node, const Name& namePrefix, const Name& strategy);
67
Alexander Afanasyevc512dba2015-08-13 16:51:26 -070068 /**
69 * @brief Install a built-in strategy @p strategy on nodes in @p c container for
70 * @namePrefix namespace
71 */
72 static void
73 Install(const NodeContainer& c, const Name& namePrefix, const Name& strategy);
74
75 /**
76 * @brief Install a built-in strategy @p strategy on all nodes for @namePrefix namespace
77 */
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080078 static void
79 InstallAll(const Name& namePrefix, const Name& strategy);
80
Alexander Afanasyevc512dba2015-08-13 16:51:26 -070081 /**
82 * @brief Install a custom strategy on @p node for @namePrefix namespace
83 * @tparam Strategy Class name of the custom strategy
84 */
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080085 template<class Strategy>
86 static void
87 Install(Ptr<Node> node, const Name& namePrefix);
88
Alexander Afanasyevc512dba2015-08-13 16:51:26 -070089 /**
90 * @brief Install a custom strategy on nodes in @p c container for @namePrefix namespace
91 * @tparam Strategy Class name of the custom strategy
92 */
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080093 template<class Strategy>
94 static void
95 Install(const NodeContainer& c, const Name& namePrefix);
96
Alexander Afanasyevc512dba2015-08-13 16:51:26 -070097 /**
98 * @brief Install a custom strategy on all nodes for @namePrefix namespace
99 * @tparam Strategy Class name of the custom strategy
100 */
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -0800101 template<class Strategy>
102 static void
103 InstallAll(const Name& namePrefix);
104
105private:
106 static void
107 sendCommand(const ControlParameters& parameters, Ptr<Node> node);
108};
109
110template<class Strategy>
111inline void
112StrategyChoiceHelper::Install(Ptr<Node> node, const Name& namePrefix)
113{
114 Ptr<L3Protocol> l3Protocol = node->GetObject<L3Protocol>();
115 NS_ASSERT(l3Protocol != nullptr);
116 NS_ASSERT(l3Protocol->getForwarder() != nullptr);
117
118 nfd::Forwarder& forwarder = *l3Protocol->getForwarder();
119 nfd::StrategyChoice& strategyChoice = forwarder.getStrategyChoice();
120
121 if (!strategyChoice.hasStrategy(Strategy::STRATEGY_NAME)) {
122 strategyChoice.install(make_shared<Strategy>(ref(forwarder)));
123 }
124
125 Install(node, namePrefix, Strategy::STRATEGY_NAME);
126}
127
128template<class Strategy>
129inline void
130StrategyChoiceHelper::Install(const NodeContainer& c, const Name& namePrefix)
131{
132 for (NodeContainer::Iterator i = c.Begin(); i != c.End(); ++i) {
133 Install<Strategy>(*i, namePrefix);
134 }
135}
136
137template<class Strategy>
138inline void
139StrategyChoiceHelper::InstallAll(const Name& namePrefix)
140{
141 Install<Strategy>(NodeContainer::GetGlobal(), namePrefix);
142}
143
144} // namespace ndn
145} // namespace ns3
146
147#endif // NDN_STRATEGY_CHOICE_HELPER_H