blob: 3f284cf7b22d560be57d45f776b74447b866f219 [file] [log] [blame]
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07002/*
3 * Copyright (c) 2011 UCLA
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Alexander Afanasyev122f3782013-02-02 00:04:40 -080019 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070020 */
21
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070022#include "ns3/assert.h"
23#include "ns3/log.h"
24#include "ns3/object.h"
25#include "ns3/names.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070026#include "ns3/packet-socket-factory.h"
27#include "ns3/config.h"
28#include "ns3/simulator.h"
29#include "ns3/string.h"
30#include "ns3/net-device.h"
Alexander Afanasyeva8f5d882012-11-09 14:22:48 -080031#include "ns3/channel.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070032#include "ns3/callback.h"
33#include "ns3/node.h"
34#include "ns3/core-config.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080035#include "ns3/point-to-point-net-device.h"
36#include "ns3/point-to-point-helper.h"
Alexander Afanasyev122f3782013-02-02 00:04:40 -080037#include "ns3/callback.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080038
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070039#include "../model/ndn-net-device-face.h"
40#include "../model/ndn-l3-protocol.h"
Alexander Afanasyev11f7bb42012-07-09 17:06:30 -070041
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070042#include "ns3/ndn-forwarding-strategy.h"
43#include "ns3/ndn-fib.h"
44#include "ns3/ndn-pit.h"
45#include "ns3/ndn-name-components.h"
46#include "ns3/ndn-content-store.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080047
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080048#include "ns3/node-list.h"
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -070049// #include "ns3/loopback-net-device.h"
Alexander Afanasyevf9f4eb02011-12-16 01:51:14 -080050
Alexander Afanasyev11453142011-11-25 16:13:33 -080051#include "ns3/data-rate.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070052
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070053#include "ndn-face-container.h"
54#include "ndn-stack-helper.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070055
56#include <limits>
57#include <map>
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080058#include <boost/foreach.hpp>
Alexander Afanasyevb7626842012-01-12 13:43:33 -080059#include <boost/lexical_cast.hpp>
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080060
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070061NS_LOG_COMPONENT_DEFINE ("ndn.StackHelper");
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070062
63namespace ns3 {
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070064namespace ndn {
Alexander Afanasyev122f3782013-02-02 00:04:40 -080065
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070066StackHelper::StackHelper ()
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -080067 : m_limitsEnabled (false)
68 , m_needSetDefaultRoutes (false)
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070069{
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070070 m_ndnFactory. SetTypeId ("ns3::ndn::L3Protocol");
71 m_strategyFactory. SetTypeId ("ns3::ndn::fw::Flooding");
72 m_contentStoreFactory.SetTypeId ("ns3::ndn::cs::Lru");
73 m_fibFactory. SetTypeId ("ns3::ndn::fib::Default");
74 m_pitFactory. SetTypeId ("ns3::ndn::pit::Persistent");
Alexander Afanasyev122f3782013-02-02 00:04:40 -080075
76 m_netDeviceCallbacks.push_back (std::make_pair (PointToPointNetDevice::GetTypeId (), MakeCallback (&StackHelper::PointToPointNetDeviceCallback, this)));
77 // default callback will be fired if non of others callbacks fit or did the job
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070078}
Alexander Afanasyev122f3782013-02-02 00:04:40 -080079
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070080StackHelper::~StackHelper ()
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070081{
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070082}
83
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070084void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070085StackHelper::SetStackAttributes (const std::string &attr1, const std::string &value1,
86 const std::string &attr2, const std::string &value2,
87 const std::string &attr3, const std::string &value3,
88 const std::string &attr4, const std::string &value4)
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070089{
90 if (attr1 != "")
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070091 m_ndnFactory.Set (attr1, StringValue (value1));
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070092 if (attr2 != "")
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070093 m_ndnFactory.Set (attr2, StringValue (value2));
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070094 if (attr3 != "")
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070095 m_ndnFactory.Set (attr3, StringValue (value3));
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070096 if (attr4 != "")
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070097 m_ndnFactory.Set (attr4, StringValue (value4));
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -070098}
99
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800100void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700101StackHelper::SetForwardingStrategy (const std::string &strategy,
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800102 const std::string &attr1, const std::string &value1,
103 const std::string &attr2, const std::string &value2,
104 const std::string &attr3, const std::string &value3,
105 const std::string &attr4, const std::string &value4)
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700106{
Alexander Afanasyev11453142011-11-25 16:13:33 -0800107 m_strategyFactory.SetTypeId (strategy);
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700108 if (attr1 != "")
109 m_strategyFactory.Set (attr1, StringValue (value1));
110 if (attr2 != "")
111 m_strategyFactory.Set (attr2, StringValue (value2));
112 if (attr3 != "")
113 m_strategyFactory.Set (attr3, StringValue (value3));
114 if (attr4 != "")
115 m_strategyFactory.Set (attr4, StringValue (value4));
Alexander Afanasyev11453142011-11-25 16:13:33 -0800116}
117
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700118void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700119StackHelper::SetContentStore (const std::string &contentStore,
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800120 const std::string &attr1, const std::string &value1,
121 const std::string &attr2, const std::string &value2,
122 const std::string &attr3, const std::string &value3,
123 const std::string &attr4, const std::string &value4)
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700124{
125 m_contentStoreFactory.SetTypeId (contentStore);
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700126 if (attr1 != "")
127 m_contentStoreFactory.Set (attr1, StringValue (value1));
128 if (attr2 != "")
129 m_contentStoreFactory.Set (attr2, StringValue (value2));
130 if (attr3 != "")
131 m_contentStoreFactory.Set (attr3, StringValue (value3));
132 if (attr4 != "")
133 m_contentStoreFactory.Set (attr4, StringValue (value4));
134}
135
136void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700137StackHelper::SetPit (const std::string &pitClass,
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800138 const std::string &attr1, const std::string &value1,
139 const std::string &attr2, const std::string &value2,
140 const std::string &attr3, const std::string &value3,
141 const std::string &attr4, const std::string &value4)
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700142{
143 m_pitFactory.SetTypeId (pitClass);
144 if (attr1 != "")
145 m_pitFactory.Set (attr1, StringValue (value1));
146 if (attr2 != "")
147 m_pitFactory.Set (attr2, StringValue (value2));
148 if (attr3 != "")
149 m_pitFactory.Set (attr3, StringValue (value3));
150 if (attr4 != "")
151 m_pitFactory.Set (attr4, StringValue (value4));
152}
153
154void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700155StackHelper::SetFib (const std::string &fibClass,
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800156 const std::string &attr1, const std::string &value1,
157 const std::string &attr2, const std::string &value2,
158 const std::string &attr3, const std::string &value3,
159 const std::string &attr4, const std::string &value4)
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700160{
161 m_fibFactory.SetTypeId (fibClass);
162 if (attr1 != "")
163 m_fibFactory.Set (attr1, StringValue (value1));
164 if (attr2 != "")
165 m_fibFactory.Set (attr2, StringValue (value2));
166 if (attr3 != "")
167 m_fibFactory.Set (attr3, StringValue (value3));
168 if (attr4 != "")
169 m_fibFactory.Set (attr4, StringValue (value4));
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700170}
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800171
172void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700173StackHelper::SetDefaultRoutes (bool needSet)
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800174{
175 NS_LOG_FUNCTION (this << needSet);
176 m_needSetDefaultRoutes = needSet;
177}
178
Alexander Afanasyev11453142011-11-25 16:13:33 -0800179void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700180StackHelper::EnableLimits (bool enable/* = true*/,
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800181 Time avgRtt/*=Seconds(0.1)*/,
182 uint32_t avgContentObject/*=1100*/,
183 uint32_t avgInterest/*=40*/)
Alexander Afanasyev11453142011-11-25 16:13:33 -0800184{
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800185 NS_LOG_INFO ("EnableLimits: " << enable);
Alexander Afanasyev11453142011-11-25 16:13:33 -0800186 m_limitsEnabled = enable;
Alexander Afanasyev8f5a9bb2011-12-18 19:49:02 -0800187 m_avgRtt = avgRtt;
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800188 m_avgContentObjectSize = avgContentObject;
189 m_avgInterestSize = avgInterest;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700190}
191
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700192Ptr<FaceContainer>
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800193StackHelper::Install (const NodeContainer &c) const
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700194{
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700195 Ptr<FaceContainer> faces = Create<FaceContainer> ();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700196 for (NodeContainer::Iterator i = c.Begin (); i != c.End (); ++i)
197 {
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700198 faces->AddAll (Install (*i));
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700199 }
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700200 return faces;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700201}
202
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700203Ptr<FaceContainer>
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800204StackHelper::InstallAll () const
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700205{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700206 return Install (NodeContainer::GetGlobal ());
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700207}
208
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700209Ptr<FaceContainer>
210StackHelper::Install (Ptr<Node> node) const
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700211{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700212 // NS_ASSERT_MSG (m_forwarding, "SetForwardingHelper() should be set prior calling Install() method");
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700213 Ptr<FaceContainer> faces = Create<FaceContainer> ();
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800214
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700215 if (node->GetObject<L3Protocol> () != 0)
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700216 {
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800217 NS_FATAL_ERROR ("StackHelper::Install (): Installing "
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700218 "a NdnStack to a node with an existing Ndn object");
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700219 return 0;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700220 }
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700221
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700222 // Create L3Protocol
223 Ptr<L3Protocol> ndn = m_ndnFactory.Create<L3Protocol> ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700224
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700225 // Create and aggregate FIB
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700226 Ptr<Fib> fib = m_fibFactory.Create<Fib> ();
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700227 ndn->AggregateObject (fib);
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700228
229 // Create and aggregate PIT
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700230 ndn->AggregateObject (m_pitFactory.Create<Pit> ());
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800231
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700232 // Create and aggregate forwarding strategy
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700233 ndn->AggregateObject (m_strategyFactory.Create<ForwardingStrategy> ());
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700234
235 // Create and aggregate content store
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700236 ndn->AggregateObject (m_contentStoreFactory.Create<ContentStore> ());
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700237
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700238 // Aggregate L3Protocol on node
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700239 node->AggregateObject (ndn);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800240
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700241 for (uint32_t index=0; index < node->GetNDevices (); index++)
242 {
Alexander Afanasyev11453142011-11-25 16:13:33 -0800243 Ptr<NetDevice> device = node->GetDevice (index);
Alexander Afanasyev57bcbc32012-06-01 01:46:24 -0700244 // This check does not make sense: LoopbackNetDevice is installed only if IP stack is installed,
245 // Normally, ndnSIM works without IP stack, so no reason to check
246 // if (DynamicCast<LoopbackNetDevice> (device) != 0)
247 // continue; // don't create face for a LoopbackNetDevice
Alexander Afanasyev11453142011-11-25 16:13:33 -0800248
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800249 Ptr<NetDeviceFace> face;
250
251 for (std::list< std::pair<TypeId, NetDeviceFaceCreateCallback> >::const_iterator item = m_netDeviceCallbacks.begin ();
252 item != m_netDeviceCallbacks.end ();
253 item++)
254 {
255 if (device->GetInstanceTypeId () == item->first ||
256 device->GetInstanceTypeId ().IsChildOf (item->first))
257 {
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -0800258 face = item->second (node, ndn, device);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800259 if (face != 0)
260 break;
261 }
262 }
263 if (face == 0)
264 {
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -0800265 face = DefaultNetDeviceCallback (node, ndn, device);
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800266 }
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800267
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800268 if (m_needSetDefaultRoutes)
269 {
270 // default route with lowest priority possible
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800271 AddRoute (node, "/", StaticCast<Face> (face), std::numeric_limits<int32_t>::max ());
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800272 }
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800273
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -0700274 face->SetUp ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700275 faces->Add (face);
276 }
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800277
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700278 return faces;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700279}
280
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800281void
282StackHelper::AddNetDeviceFaceCreateCallback (TypeId netDeviceType, StackHelper::NetDeviceFaceCreateCallback callback)
283{
284 m_netDeviceCallbacks.push_back (std::make_pair (netDeviceType, callback));
285}
286
287
288Ptr<NetDeviceFace>
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -0800289StackHelper::DefaultNetDeviceCallback (Ptr<Node> node, Ptr<L3Protocol> ndn, Ptr<NetDevice> netDevice) const
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800290{
291 NS_LOG_DEBUG ("Creating default NetDeviceFace on node " << node->GetId ());
292
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -0800293 Ptr<NetDeviceFace> face = CreateObject<NetDeviceFace> (node, netDevice);
294
295 ndn->AddFace (face);
296 NS_LOG_LOGIC ("Node " << node->GetId () << ": added NetDeviceFace as face #" << *face);
297
298 return face;
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800299}
300
301Ptr<NetDeviceFace>
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -0800302StackHelper::PointToPointNetDeviceCallback (Ptr<Node> node, Ptr<L3Protocol> ndn, Ptr<NetDevice> device) const
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800303{
304 NS_LOG_DEBUG ("Creating point-to-point NetDeviceFace on node " << node->GetId ());
305
306 Ptr<NetDeviceFace> face = CreateObject<NetDeviceFace> (node, device);
307
Alexander Afanasyevc17e4bd2013-02-17 14:31:56 -0800308 ndn->AddFace (face);
309 NS_LOG_LOGIC ("Node " << node->GetId () << ": added NetDeviceFace as face #" << *face);
310
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800311 if (m_limitsEnabled)
312 {
313 Ptr<Limits> limits = face->GetObject<Limits> ();
314 if (limits == 0)
315 {
316 NS_FATAL_ERROR ("Limits are enabled, but the selected forwarding strategy does not support limits. Please revise your scenario");
317 exit (1);
318 }
319
320 NS_LOG_INFO ("Limits are enabled");
321 Ptr<PointToPointNetDevice> p2p = DynamicCast<PointToPointNetDevice> (device);
322 if (p2p != 0)
323 {
324 // Setup bucket filtering
325 // Assume that we know average data packet size, and this size is equal default size
326 // Set maximum buckets (averaging over 1 second)
327
328 DataRateValue dataRate; device->GetAttribute ("DataRate", dataRate);
329 TimeValue linkDelay; device->GetChannel ()->GetAttribute ("Delay", linkDelay);
330
331 NS_LOG_INFO("DataRate for this link is " << dataRate.Get());
332
333 double maxInterestPackets = 1.0 * dataRate.Get ().GetBitRate () / 8.0 / (m_avgContentObjectSize + m_avgInterestSize);
334 // NS_LOG_INFO ("Max packets per second: " << maxInterestPackets);
335 // NS_LOG_INFO ("Max burst: " << m_avgRtt.ToDouble (Time::S) * maxInterestPackets);
336 NS_LOG_INFO ("MaxLimit: " << (int)(m_avgRtt.ToDouble (Time::S) * maxInterestPackets));
337
338 // Set max to BDP
339 limits->SetLimits (maxInterestPackets, m_avgRtt.ToDouble (Time::S));
340 limits->SetLinkDelay (linkDelay.Get ().ToDouble (Time::S));
341 }
342 }
343
344 return face;
345}
346
347
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700348Ptr<FaceContainer>
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800349StackHelper::Install (const std::string &nodeName) const
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700350{
351 Ptr<Node> node = Names::Find<Node> (nodeName);
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700352 return Install (node);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700353}
354
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700355
356void
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800357StackHelper::AddRoute (Ptr<Node> node, const std::string &prefix, Ptr<Face> face, int32_t metric)
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800358{
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800359 NS_LOG_LOGIC ("[" << node->GetId () << "]$ route add " << prefix << " via " << *face << " metric " << metric);
360
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700361 Ptr<Fib> fib = node->GetObject<Fib> ();
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800362
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700363 NameComponentsValue prefixValue;
364 prefixValue.DeserializeFromString (prefix, MakeNameComponentsChecker ());
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800365 fib->Add (prefixValue.Get (), face, metric);
366}
367
368void
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800369StackHelper::AddRoute (Ptr<Node> node, const std::string &prefix, uint32_t faceId, int32_t metric)
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700370{
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700371 Ptr<L3Protocol> ndn = node->GetObject<L3Protocol> ();
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700372 NS_ASSERT_MSG (ndn != 0, "Ndn stack should be installed on the node");
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700373
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700374 Ptr<Face> face = ndn->GetFace (faceId);
Alexander Afanasyev8bedcaf2012-07-20 15:30:44 -0700375 NS_ASSERT_MSG (face != 0, "Face with ID [" << faceId << "] does not exist on node [" << node->GetId () << "]");
376
377 AddRoute (node, prefix, face, metric);
378}
379
380void
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800381StackHelper::AddRoute (const std::string &nodeName, const std::string &prefix, uint32_t faceId, int32_t metric)
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700382{
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700383 Ptr<Node> node = Names::Find<Node> (nodeName);
384 NS_ASSERT_MSG (node != 0, "Node [" << nodeName << "] does not exist");
Alexander Afanasyev122f3782013-02-02 00:04:40 -0800385
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700386 Ptr<L3Protocol> ndn = node->GetObject<L3Protocol> ();
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700387 NS_ASSERT_MSG (ndn != 0, "Ndn stack should be installed on the node");
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800388
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700389 Ptr<Face> face = ndn->GetFace (faceId);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800390 NS_ASSERT_MSG (face != 0, "Face with ID [" << faceId << "] does not exist on node [" << nodeName << "]");
391
392 AddRoute (node, prefix, face, metric);
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700393}
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800394
Alexander Afanasyevfd258262012-11-23 14:59:19 -0800395void
396StackHelper::AddRoute (Ptr<Node> node, const std::string &prefix, Ptr<Node> otherNode, int32_t metric)
397{
398 for (uint32_t deviceId = 0; deviceId < node->GetNDevices (); deviceId ++)
399 {
400 Ptr<PointToPointNetDevice> netDevice = DynamicCast<PointToPointNetDevice> (node->GetDevice (deviceId));
401 if (netDevice == 0)
402 continue;
403
404 Ptr<Channel> channel = netDevice->GetChannel ();
405 if (channel == 0)
406 continue;
407
408 if (channel->GetDevice (0)->GetNode () == otherNode ||
409 channel->GetDevice (1)->GetNode () == otherNode)
410 {
411 Ptr<L3Protocol> ndn = node->GetObject<L3Protocol> ();
412 NS_ASSERT_MSG (ndn != 0, "Ndn stack should be installed on the node");
413
414 Ptr<Face> face = ndn->GetFaceByNetDevice (netDevice);
415 NS_ASSERT_MSG (face != 0, "There is no face associated with the p2p link");
416
417 AddRoute (node, prefix, face, metric);
418
419 return;
420 }
421 }
422
423 NS_FATAL_ERROR ("Cannot add route: Node# " << node->GetId () << " and Node# " << otherNode->GetId () << " are not connected");
424}
425
426void
427StackHelper::AddRoute (const std::string &nodeName, const std::string &prefix, const std::string &otherNodeName, int32_t metric)
428{
429 Ptr<Node> node = Names::Find<Node> (nodeName);
430 NS_ASSERT_MSG (node != 0, "Node [" << nodeName << "] does not exist");
431
432 Ptr<Node> otherNode = Names::Find<Node> (otherNodeName);
433 NS_ASSERT_MSG (otherNode != 0, "Node [" << otherNodeName << "] does not exist");
434
435 AddRoute (node, prefix, otherNode, metric);
436}
437
438
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700439} // namespace ndn
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700440} // namespace ns3