blob: 29d16ae0ecf670a1189b0f0d1cb8b38e479666f8 [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 */
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080059class StrategyChoiceHelper {
60public:
61 static void
62 Install(const NodeContainer& c, const Name& namePrefix, const Name& strategy);
63
64 static void
65 Install(Ptr<Node> node, const Name& namePrefix, const Name& strategy);
66
67 static void
68 InstallAll(const Name& namePrefix, const Name& strategy);
69
70 template<class Strategy>
71 static void
72 Install(Ptr<Node> node, const Name& namePrefix);
73
74 template<class Strategy>
75 static void
76 Install(const NodeContainer& c, const Name& namePrefix);
77
78 template<class Strategy>
79 static void
80 InstallAll(const Name& namePrefix);
81
82private:
83 static void
84 sendCommand(const ControlParameters& parameters, Ptr<Node> node);
85};
86
87template<class Strategy>
88inline void
89StrategyChoiceHelper::Install(Ptr<Node> node, const Name& namePrefix)
90{
91 Ptr<L3Protocol> l3Protocol = node->GetObject<L3Protocol>();
92 NS_ASSERT(l3Protocol != nullptr);
93 NS_ASSERT(l3Protocol->getForwarder() != nullptr);
94
95 nfd::Forwarder& forwarder = *l3Protocol->getForwarder();
96 nfd::StrategyChoice& strategyChoice = forwarder.getStrategyChoice();
97
98 if (!strategyChoice.hasStrategy(Strategy::STRATEGY_NAME)) {
99 strategyChoice.install(make_shared<Strategy>(ref(forwarder)));
100 }
101
102 Install(node, namePrefix, Strategy::STRATEGY_NAME);
103}
104
105template<class Strategy>
106inline void
107StrategyChoiceHelper::Install(const NodeContainer& c, const Name& namePrefix)
108{
109 for (NodeContainer::Iterator i = c.Begin(); i != c.End(); ++i) {
110 Install<Strategy>(*i, namePrefix);
111 }
112}
113
114template<class Strategy>
115inline void
116StrategyChoiceHelper::InstallAll(const Name& namePrefix)
117{
118 Install<Strategy>(NodeContainer::GetGlobal(), namePrefix);
119}
120
121} // namespace ndn
122} // namespace ns3
123
124#endif // NDN_STRATEGY_CHOICE_HELPER_H