blob: 74506e5bca701c03e5a41cdc8bf4b779f1459a47 [file] [log] [blame]
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -08004 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08005 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -08007 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08008 * 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.
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080011 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080012 * 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.
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080015 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080016 * 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 **/
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080019
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080020// ndn-grid-topo-plugin.cpp
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080021
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080022#include "ns3/core-module.h"
23#include "ns3/network-module.h"
24#include "ns3/ndnSIM-module.h"
25
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080026namespace ns3 {
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080027
28/**
29 * This scenario simulates a grid topology (using topology reader module)
30 *
31 * (consumer) -- ( ) ----- ( )
32 * | | |
33 * ( ) ------ ( ) ----- ( )
34 * | | |
35 * ( ) ------ ( ) -- (producer)
36 *
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080037 * All links are 1Mbps with propagation 10ms delay.
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080038 *
39 * FIB is populated using NdnGlobalRoutingHelper.
40 *
41 * Consumer requests data from producer with frequency 10 interests per second
42 * (interests contain constantly increasing sequence number).
43 *
44 * For every received interest, producer replies with a data packet, containing
45 * 1024 bytes of virtual payload.
46 *
47 * To run scenario and see what is happening, use the following command:
48 *
49 * NS_LOG=ndn.Consumer:ndn.Producer ./waf --run=ndn-grid-topo-plugin
50 */
51
52int
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080053main(int argc, char* argv[])
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080054{
55 CommandLine cmd;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080056 cmd.Parse(argc, argv);
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080057
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080058 AnnotatedTopologyReader topologyReader("", 25);
59 topologyReader.SetFileName("src/ndnSIM/examples/topologies/topo-grid-3x3.txt");
60 topologyReader.Read();
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080061
Alexander Afanasyev9fb2e3d2013-03-30 21:11:07 -070062 // Install NDN stack on all nodes
63 ndn::StackHelper ndnHelper;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080064 ndnHelper.InstallAll();
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080065
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080066 // Set BestRoute strategy
67 ndn::StrategyChoiceHelper::InstallAll("/", "/localhost/nfd/strategy/best-route");
68
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080069 // Installing global routing interface on all nodes
Alexander Afanasyev9fb2e3d2013-03-30 21:11:07 -070070 ndn::GlobalRoutingHelper ndnGlobalRoutingHelper;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080071 ndnGlobalRoutingHelper.InstallAll();
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080072
73 // Getting containers for the consumer/producer
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080074 Ptr<Node> producer = Names::Find<Node>("Node8");
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080075 NodeContainer consumerNodes;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080076 consumerNodes.Add(Names::Find<Node>("Node0"));
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080077
Alexander Afanasyev9fb2e3d2013-03-30 21:11:07 -070078 // Install NDN applications
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080079 std::string prefix = "/prefix";
80
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080081 ndn::AppHelper consumerHelper("ns3::ndn::ConsumerCbr");
82 consumerHelper.SetPrefix(prefix);
83 consumerHelper.SetAttribute("Frequency", StringValue("100")); // 100 interests a second
84 consumerHelper.Install(consumerNodes);
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080085
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080086 ndn::AppHelper producerHelper("ns3::ndn::Producer");
87 producerHelper.SetPrefix(prefix);
88 producerHelper.SetAttribute("PayloadSize", StringValue("1024"));
89 producerHelper.Install(producer);
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080090
91 // Add /prefix origins to ndn::GlobalRouter
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080092 ndnGlobalRoutingHelper.AddOrigins(prefix, producer);
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080093
94 // Calculate and install FIBs
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080095 ndn::GlobalRoutingHelper::CalculateRoutes();
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080096
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080097 Simulator::Stop(Seconds(20.0));
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -080098
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080099 Simulator::Run();
100 Simulator::Destroy();
Alexander Afanasyevaa1c4c32012-11-21 16:17:03 -0800101
102 return 0;
103}
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800104
105} // namespace ns3
106
107int
108main(int argc, char* argv[])
109{
110 return ns3::main(argc, argv);
111}