blob: 6958fce9de03f676a768d074f462aa1196cd138e [file] [log] [blame]
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08003 * Copyright (c) 2011-2015 Regents of the University of California.
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -08004 *
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#include "ndn-strategy-choice-helper.hpp"
21
22#include "ns3/log.h"
23
24#include "ndn-stack-helper.hpp"
25
26namespace ns3 {
27namespace ndn {
28
29NS_LOG_COMPONENT_DEFINE("ndn.StrategyChoiceHelper");
30
31void
32StrategyChoiceHelper::sendCommand(const ControlParameters& parameters, Ptr<Node> node)
33{
34 NS_LOG_DEBUG("Strategy choice command was initialized");
35 Block encodedParameters(parameters.wireEncode());
36
37 Name commandName("/localhost/nfd/strategy-choice");
38 commandName.append("set");
39 commandName.append(encodedParameters);
40
41 shared_ptr<Interest> command(make_shared<Interest>(commandName));
Alexander Afanasyevdde1e812015-01-06 14:26:09 -080042 StackHelper::getKeyChain().sign(*command);
Alexander Afanasyevca3c67e2016-09-08 15:48:23 -070043
44 Ptr<L3Protocol> l3protocol = node->GetObject<L3Protocol>();
45 l3protocol->injectInterest(*command);
Spyridon Mastorakis592fcba2014-11-23 22:48:03 -080046}
47
48void
49StrategyChoiceHelper::Install(const NodeContainer& c, const Name& namePrefix, const Name& strategy)
50{
51 for (NodeContainer::Iterator i = c.Begin(); i != c.End(); ++i) {
52 Install(*i, namePrefix, strategy);
53 }
54}
55
56void
57StrategyChoiceHelper::Install(Ptr<Node> node, const Name& namePrefix, const Name& strategy)
58{
59 ControlParameters parameters;
60 parameters.setName(namePrefix);
61 NS_LOG_DEBUG("Node ID: " << node->GetId() << " with forwarding strategy " << strategy);
62 parameters.setStrategy(strategy);
63 sendCommand(parameters, node);
64}
65
66void
67StrategyChoiceHelper::InstallAll(const Name& namePrefix, const Name& strategy)
68{
69 Install(NodeContainer::GetGlobal(), namePrefix, strategy);
70}
71
72} // namespace ndn
73
74} // namespace ns