blob: c1834134e9854385df1ef0cc8e1aa47f324f3706 [file] [log] [blame]
Ilya Moiseenkoc9266042011-11-02 17:49:21 -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 "ns3/core-module.h"
22#include "ns3/network-module.h"
23#include "ns3/point-to-point-module.h"
24#include "ns3/NDNabstraction-module.h"
Alexander Afanasyev176ed062011-11-15 23:49:22 -080025#include "ns3/point-to-point-grid.h"
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070026#include "ns3/ipv4-global-routing-helper.h"
Alexander Afanasyev9d313d42011-11-25 13:36:15 -080027#include "ns3/netanim-module.h"
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070028
29#include <iostream>
30#include <sstream>
31
32using namespace ns3;
33
34NS_LOG_COMPONENT_DEFINE ("CcnxGrid");
35
Alexander Afanasyev176ed062011-11-15 23:49:22 -080036uint32_t nGrid = 3;
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080037Time finishTime = Seconds (20.0);
Alexander Afanasyev176ed062011-11-15 23:49:22 -080038
39void PrintTime ()
40{
41 NS_LOG_INFO (Simulator::Now ());
42
43 Simulator::Schedule (Seconds (10.0), PrintTime);
44}
45
Alexander Afanasyev9d313d42011-11-25 13:36:15 -080046void PrintFIBs ()
47{
48 NS_LOG_INFO ("Outputing FIBs into [fibs.log]");
49 Ptr<OutputStreamWrapper> routingStream = Create<OutputStreamWrapper> ("fibs.log", std::ios::out);
50 for (NodeList::Iterator node = NodeList::Begin ();
51 node != NodeList::End ();
52 node++)
53 {
54 *routingStream->GetStream () << "Node " << (*node)->GetId () << "\n";
55
56 Ptr<CcnxFib> fib = (*node)->GetObject<CcnxFib> ();
57 NS_ASSERT_MSG (fib != 0, "Fire alarm");
58 *routingStream->GetStream () << *fib << "\n\n";
59 }
60}
61
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070062int
63main (int argc, char *argv[])
64{
Alexander Afanasyev176ed062011-11-15 23:49:22 -080065 Config::SetDefault ("ns3::PointToPointNetDevice::DataRate", StringValue ("1Mbps"));
66 Config::SetDefault ("ns3::PointToPointChannel::Delay", StringValue ("1ms"));
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080067 Config::SetDefault ("ns3::CcnxConsumer::OffTime", StringValue ("1s"));
Ilya Moiseenko82b8eea2011-11-02 23:08:47 -070068
Alexander Afanasyev176ed062011-11-15 23:49:22 -080069 Packet::EnableChecking();
70 Packet::EnablePrinting();
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070071
Alexander Afanasyev9d313d42011-11-25 13:36:15 -080072 std::string animationFile = "";
Alexander Afanasyev176ed062011-11-15 23:49:22 -080073 CommandLine cmd;
74 cmd.AddValue ("nGrid", "Number of grid nodes", nGrid);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080075 cmd.AddValue ("finish", "Finish time", finishTime);
Alexander Afanasyev9d313d42011-11-25 13:36:15 -080076 cmd.AddValue ("netanim", "NetAnim filename", animationFile);
Alexander Afanasyev176ed062011-11-15 23:49:22 -080077 cmd.Parse (argc, argv);
Alexander Afanasyev9d313d42011-11-25 13:36:15 -080078
Alexander Afanasyev176ed062011-11-15 23:49:22 -080079 PointToPointHelper p2p;
80
81 InternetStackHelper stack;
82 Ipv4GlobalRoutingHelper ipv4RoutingHelper ("ns3::Ipv4GlobalRoutingOrderedNexthops");
83 stack.SetRoutingHelper (ipv4RoutingHelper);
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070084
Alexander Afanasyev176ed062011-11-15 23:49:22 -080085 PointToPointGridHelper grid (nGrid, nGrid, p2p);
86 grid.BoundingBox(100,100,200,200);
87
88 // Install CCNx stack
89 NS_LOG_INFO ("Installing CCNx stack");
Alexander Afanasyev11453142011-11-25 16:13:33 -080090 CcnxStackHelper ccnxHelper;
91 ccnxHelper.SetForwardingStrategy ("ns3::CcnxFloodingStrategy");
92 ccnxHelper.EnableLimits (true);
Alexander Afanasyev176ed062011-11-15 23:49:22 -080093 ccnxHelper.InstallAll ();
94
95 // Install IP stack (necessary to populate FIB)
96 NS_LOG_INFO ("Installing IP stack");
97 grid.InstallStack (stack);
98 grid.AssignIpv4Addresses (
99 Ipv4AddressHelper("10.1.0.0", "255.255.255.0"),
100 Ipv4AddressHelper("10.2.0.0", "255.255.255.0")
101 );
102
103 Ptr<Node> producer = grid.GetNode (nGrid-1, nGrid-1);
104 NodeContainer consumerNodes;
105 consumerNodes.Add (grid.GetNode (0,0));
106
107 // Populate FIB based on IPv4 global routing controller
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800108 ccnxHelper.InstallFakeGlobalRoutes ();
109 ccnxHelper.InstallRouteTo (producer);
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800110
111 NS_LOG_INFO ("Installing Applications");
112 std::ostringstream prefix;
113 prefix << "/" << producer->GetId ();
114
115 CcnxConsumerHelper consumerHelper (prefix.str ());
116 ApplicationContainer consumers = consumerHelper.Install (consumerNodes);
117
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800118 // consumers.Start (Seconds (0.0));
119 // consumers.Stop (finishTime);
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700120
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800121 CcnxProducerHelper producerHelper (prefix.str (),120);
122 ApplicationContainer producers = producerHelper.Install (producer);
123
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800124 // producers.Start(Seconds(0.0));
125 // producers.Stop(finishTime);
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800126
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800127 Simulator::Schedule (Seconds (1.0), PrintFIBs);
128
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800129 Simulator::Schedule (Seconds (10.0), PrintTime);
130
131 // NS_LOG_INFO ("FIB dump:\n" << *c.Get(0)->GetObject<CcnxFib> ());
132 // NS_LOG_INFO ("FIB dump:\n" << *c.Get(1)->GetObject<CcnxFib> ());
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700133
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800134 Simulator::Stop (finishTime);
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800135
136 AnimationInterface *anim = 0;
137 if (animationFile != "")
138 {
139 anim = new AnimationInterface (animationFile);
140 anim->SetMobilityPollInterval (Seconds (1));
141 }
142
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800143 NS_LOG_INFO ("Run Simulation.");
144 Simulator::Run ();
145 Simulator::Destroy ();
146 NS_LOG_INFO ("Done!");
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800147
148 if (anim != 0)
149 delete anim;
150
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800151 return 0;
Alexander Afanasyev3ba44e52011-11-10 16:38:10 -0800152}