blob: 50c9d1359a2840bc646733c9a4a0b182d0958770 [file] [log] [blame]
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
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 *
18 * Author: Ilya Moiseenko <iliamo@cs.ucla.edu>
19 */
20
21#include <ctime>
22#include <sstream>
23
24#include "ns3/core-module.h"
25#include "ns3/network-module.h"
26#include "ns3/internet-module.h"
27#include "ns3/point-to-point-module.h"
28#include "ns3/applications-module.h"
29#include "ns3/ipv4-static-routing-helper.h"
30#include "ns3/ipv4-list-routing-helper.h"
31#include "ns3/annotated-topology-reader.h"
32#include <list>
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -080033#include "ns3/ccnx.h"
34#include "ns3/ipv4-global-routing-helper.h"
35#include "ns3/NDNabstraction-module.h"
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070036
37using namespace ns3;
38using namespace std;
39
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -080040NS_LOG_COMPONENT_DEFINE ("AnnotatedTopologyExample");
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070041
42int main (int argc, char *argv[])
43{
Alexander Afanasyev11453142011-11-25 16:13:33 -080044 Packet::EnableChecking();
45 Packet::EnablePrinting();
46 string input ("/Users/iliamo/ns3-abstract-ndn/ns-3.11/src/NDNabstraction/examples/simpletopology.txt");
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070047
Alexander Afanasyev11453142011-11-25 16:13:33 -080048 // Set up command line parameters used to control the experiment.
49 //CommandLine cmd;
50 //cmd.AddValue ("input", "Name of the input file.",
51 // input);
52 //cmd.Parse (argc, argv);
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070053
54
Alexander Afanasyev11453142011-11-25 16:13:33 -080055 // ------------------------------------------------------------
56 // -- Read topology data.
57 // --------------------------------------------
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070058
59
Alexander Afanasyev11453142011-11-25 16:13:33 -080060 Ptr<AnnotatedTopologyReader> reader = CreateObject<AnnotatedTopologyReader> ();
61 reader->SetFileName (input);
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -070062
Alexander Afanasyev11453142011-11-25 16:13:33 -080063 NodeContainer nodes;
64 if (reader != 0)
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070065 {
Alexander Afanasyev11453142011-11-25 16:13:33 -080066 nodes = reader->Read ();
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070067 }
68
Alexander Afanasyev11453142011-11-25 16:13:33 -080069 if (reader->LinksSize () == 0)
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070070 {
Alexander Afanasyev11453142011-11-25 16:13:33 -080071 NS_LOG_ERROR ("Problems reading the topology file. Failing.");
72 return -1;
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070073 }
74
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -080075
Alexander Afanasyev11453142011-11-25 16:13:33 -080076 for(uint32_t j=0; j<nodes.GetN(); j++)
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -080077 {
Alexander Afanasyev11453142011-11-25 16:13:33 -080078 uint32_t name = j+1;
79 std::stringstream ss;
80 ss<<name;
81 Names::Add (ss.str(), nodes.Get (j));
82 NS_LOG_INFO("Name = " << ss.str());
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -080083 }
84
Alexander Afanasyev11453142011-11-25 16:13:33 -080085 // ------------------------------------------------------------
86 // -- Create nodes and network stacks
87 // --------------------------------------------
88 NS_LOG_INFO ("creating internet stack");
89 InternetStackHelper stack;
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -070090
91
Alexander Afanasyev11453142011-11-25 16:13:33 -080092 //routing
93 //Ipv4StaticRoutingHelper staticRouting;
94 //Ipv4ListRoutingHelper listRH;
95 //listRH.Add (staticRouting, 0);
96 //stack.SetRoutingHelper (listRH); // has effect on the next Install ()
97 //stack.Install (nodes);
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -080098
Alexander Afanasyev11453142011-11-25 16:13:33 -080099 Ipv4GlobalRoutingHelper ipv4RoutingHelper;
100 // Ptr<Ipv4RoutingHelper> ipv4RoutingHelper = stack.GetRoutingHelper ();
101 stack.SetRoutingHelper (ipv4RoutingHelper);
102 stack.Install(nodes);
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700103
Alexander Afanasyev11453142011-11-25 16:13:33 -0800104 NS_LOG_INFO ("creating ip4 addresses");
105 Ipv4AddressHelper address;
106 address.SetBase ("10.0.0.0", "255.255.255.252");
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -0800107
Alexander Afanasyev11453142011-11-25 16:13:33 -0800108 // // Create router nodes, initialize routing database and set up the routing
109 // // tables in the nodes.
110 Ipv4GlobalRoutingHelper::PopulateRoutingTables ();
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -0800111
Alexander Afanasyev11453142011-11-25 16:13:33 -0800112 /*grid.AssignIpv4Addresses (
113 Ipv4AddressHelper("10.1.0.0", "255.255.255.0"),
114 Ipv4AddressHelper("10.2.0.0", "255.255.255.0")
115 );
116 */
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700117
Alexander Afanasyev11453142011-11-25 16:13:33 -0800118 int totlinks = reader->LinksSize ();
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700119
Ilya Moiseenko7dd43be2011-08-18 18:57:12 -0700120
Alexander Afanasyev11453142011-11-25 16:13:33 -0800121 ///*** applying settings
122 NS_LOG_INFO ("creating node containers");
123 NodeContainer* nc = new NodeContainer[totlinks];
124 TopologyReader::ConstLinksIterator iter;
125 int i = 0;
126 for ( iter = reader->LinksBegin (); iter != reader->LinksEnd (); iter++, i++ )
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700127 {
Alexander Afanasyev11453142011-11-25 16:13:33 -0800128 nc[i] = NodeContainer (iter->GetFromNode (), iter->GetToNode ());
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700129 }
130
Alexander Afanasyev11453142011-11-25 16:13:33 -0800131 NetDeviceContainer* ndc = new NetDeviceContainer[totlinks];
132 reader->ApplySettings(ndc,nc);
133 ///*** settings applied
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700134
Alexander Afanasyev11453142011-11-25 16:13:33 -0800135 NS_LOG_INFO("installing ccnx stack");
136 CcnxStackHelper ccnx;
137 ccnx.SetForwardingStrategy ("ns3::CcnxFloodingStrategy");
138 ccnx.EnableLimits (false);
139
140 Ptr<CcnxFaceContainer> cf = ccnx.Install (nodes);
Ilya Moiseenko2bd1bc32011-08-23 16:01:35 -0700141
Alexander Afanasyev11453142011-11-25 16:13:33 -0800142 NS_LOG_INFO ("Installing Applications");
143 CcnxConsumerHelper helper ("/3");
144 ApplicationContainer app = helper.Install (nodes.Get(1));
145 app.Start (Seconds (1.0));
146 app.Stop (Seconds (1000.05));
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -0800147
Alexander Afanasyev11453142011-11-25 16:13:33 -0800148 /*CcnxConsumerHelper helper2 ("/4");
149 ApplicationContainer app2 = helper2.Install(c.Get(5));
150 app2.Start (Seconds (1.0));
151 app2.Stop (Seconds (1000.05));
152 */
153 CcnxProducerHelper helper3 ("/3",120);
154 ApplicationContainer app3 = helper3.Install(nodes.Get(6));
155 app3.Start(Seconds(0.0));
156 app3.Stop(Seconds(1500.0));
157 /*
158 CcnxProducerHelper helper4 ("/4",150);
159 ApplicationContainer app4 = helper4.Install(c.Get(0));
160 app4.Start(Seconds(0.0));
161 app4.Stop(Seconds(1500.0));
162 */
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -0800163
Alexander Afanasyev11453142011-11-25 16:13:33 -0800164 NS_LOG_INFO("Routes");
165 ccnx.AddRoute("1","/3",0,1);
166 ccnx.AddRoute("3","/3",1,1);
167 ccnx.AddRoute("3","/3",2,2);
168 /*ccnx.AddRoute("4","/3",1,1);
Ilya Moiseenkoc3188b92011-11-15 17:57:00 -0800169 ccnx.AddRoute("5","/3",2,1);
Alexander Afanasyev11453142011-11-25 16:13:33 -0800170 */
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700171
Alexander Afanasyev11453142011-11-25 16:13:33 -0800172 // it creates little subnets, one for each couple of nodes.
173 NS_LOG_INFO ("creating ipv4 interfaces");
174 Ipv4InterfaceContainer* ipic = new Ipv4InterfaceContainer[totlinks];
175 for (int i = 0; i < totlinks; i++)
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700176 {
Alexander Afanasyev11453142011-11-25 16:13:33 -0800177 ipic[i] = address.Assign (ndc[i]);
178 address.NewNetwork ();
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700179 }
180
Alexander Afanasyev11453142011-11-25 16:13:33 -0800181 // ------------------------------------------------------------
182 // -- Run the simulation
183 // --------------------------------------------
184 NS_LOG_INFO ("Run Simulation.");
185 Simulator::Stop (Seconds (20));
186 Simulator::Run ();
187 Simulator::Destroy ();
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700188
Alexander Afanasyev11453142011-11-25 16:13:33 -0800189 delete[] ipic;
190 delete[] ndc;
191 delete[] nc;
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700192
Alexander Afanasyev11453142011-11-25 16:13:33 -0800193 NS_LOG_INFO ("Done.");
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700194
Alexander Afanasyev11453142011-11-25 16:13:33 -0800195 return 0;
Ilya Moiseenkof9a4fb42011-08-17 10:56:29 -0700196}