blob: beb50a915d4142cd74b24607ed64d19a07b2cc1f [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>
Alexander Afanasyeva514d632012-02-14 18:54:14 -080019 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070020 */
21
22#include "ns3/core-module.h"
23#include "ns3/network-module.h"
24#include "ns3/point-to-point-module.h"
Alexander Afanasyev4885eea2012-06-01 12:28:15 -070025#include "ns3/ndnSIM-module.h"
Alexander Afanasyev176ed062011-11-15 23:49:22 -080026#include "ns3/point-to-point-grid.h"
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070027
28using namespace ns3;
29
30NS_LOG_COMPONENT_DEFINE ("CcnxGrid");
31
Alexander Afanasyeva514d632012-02-14 18:54:14 -080032/**
33 * This scenario simulates a grid topology (using PointToPointGrid module)
34 *
35 * (consumer) -- ( ) ----- ( )
36 * | | |
37 * ( ) ------ ( ) ----- ( )
38 * | | |
39 * ( ) ------ ( ) -- (producer)
40 *
41 * Grid size could be specified using --nGrid parameter (default 3)
42 *
43 * All links are 1Mbps with propagation 10ms delay.
44 *
Alexander Afanasyev07b00632012-06-01 23:46:47 -070045 * FIB is populated using CcnxGlobalRoutingHelper.
Alexander Afanasyeva514d632012-02-14 18:54:14 -080046 *
47 * Consumer requests data from producer with frequency 10 interests per second
48 * (interests contain constantly increasing sequence number).
49 *
50 * For every received interest, producer replies with a data packet, containing
51 * 1024 bytes of virtual payload.
52 *
53 * Simulation time is 20 seconds, unless --finish parameter is specified
54 *
55 * To run scenario and see what is happening, use the following command:
56 *
57 * NS_LOG=CcnxSimple:CcnxConsumer ./waf --run=ccnx-grid
58 */
Alexander Afanasyev176ed062011-11-15 23:49:22 -080059
Alexander Afanasyev9d313d42011-11-25 13:36:15 -080060
Ilya Moiseenkoc9266042011-11-02 17:49:21 -070061int
62main (int argc, char *argv[])
63{
Alexander Afanasyev176ed062011-11-15 23:49:22 -080064 Config::SetDefault ("ns3::PointToPointNetDevice::DataRate", StringValue ("1Mbps"));
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080065 Config::SetDefault ("ns3::PointToPointChannel::Delay", StringValue ("10ms"));
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080066 Config::SetDefault ("ns3::DropTailQueue::MaxPackets", StringValue ("20"));
Alexander Afanasyeva514d632012-02-14 18:54:14 -080067
68 uint32_t nGrid = 3;
69 Time finishTime = Seconds (20.0);
Alexander Afanasyev23d2b542011-12-07 18:54:46 -080070
Alexander Afanasyev176ed062011-11-15 23:49:22 -080071 CommandLine cmd;
72 cmd.AddValue ("nGrid", "Number of grid nodes", nGrid);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080073 cmd.AddValue ("finish", "Finish time", finishTime);
Alexander Afanasyev176ed062011-11-15 23:49:22 -080074 cmd.Parse (argc, argv);
75
76 PointToPointHelper p2p;
77
Alexander Afanasyev176ed062011-11-15 23:49:22 -080078 PointToPointGridHelper grid (nGrid, nGrid, p2p);
79 grid.BoundingBox(100,100,200,200);
80
Alexander Afanasyevd8599792012-04-17 22:26:29 -070081 // Install CCNx stack on all nodes
82 NS_LOG_INFO ("Installing CCNx stack on all nodes");
Alexander Afanasyev11453142011-11-25 16:13:33 -080083 CcnxStackHelper ccnxHelper;
Alexander Afanasyeve55d1e32012-07-19 15:33:05 -070084 ccnxHelper.SetContentStore ("ns3::CcnxContentStoreLru",
Alexander Afanasyev9a989702012-06-29 17:44:00 -070085 "Size", "10");
Alexander Afanasyeve55d1e32012-07-19 15:33:05 -070086 // ccnxHelper.SetContentStore ("ns3::CcnxContentStoreRandom",
87 // "Size", "10");
88 // ccnxHelper.SetForwardingStrategy ("ns3::ndnSIM::BestRoute");
Alexander Afanasyev176ed062011-11-15 23:49:22 -080089 ccnxHelper.InstallAll ();
90
Alexander Afanasyevd8599792012-04-17 22:26:29 -070091 CcnxGlobalRoutingHelper ccnxGlobalRoutingHelper;
92 ccnxGlobalRoutingHelper.InstallAll ();
93
94 // Getting containers for the consumer/producer
Alexander Afanasyev176ed062011-11-15 23:49:22 -080095 Ptr<Node> producer = grid.GetNode (nGrid-1, nGrid-1);
96 NodeContainer consumerNodes;
97 consumerNodes.Add (grid.GetNode (0,0));
98
Alexander Afanasyevd8599792012-04-17 22:26:29 -070099 // Install CCNx applications
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800100 NS_LOG_INFO ("Installing Applications");
Alexander Afanasyevd8599792012-04-17 22:26:29 -0700101 std::string prefix = "/prefix";
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800102
Alexander Afanasyeve1a065d2012-01-10 15:55:14 -0800103 CcnxAppHelper consumerHelper ("ns3::CcnxConsumerCbr");
Alexander Afanasyevd8599792012-04-17 22:26:29 -0700104 consumerHelper.SetPrefix (prefix);
Alexander Afanasyeve55d1e32012-07-19 15:33:05 -0700105 consumerHelper.SetAttribute ("Frequency", StringValue ("100")); // 10 interests a second
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800106 ApplicationContainer consumers = consumerHelper.Install (consumerNodes);
107
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800108 CcnxAppHelper producerHelper ("ns3::CcnxProducer");
Alexander Afanasyevd8599792012-04-17 22:26:29 -0700109 producerHelper.SetPrefix (prefix);
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800110 producerHelper.SetAttribute ("PayloadSize", StringValue("1024"));
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800111 ApplicationContainer producers = producerHelper.Install (producer);
Alexander Afanasyevd8599792012-04-17 22:26:29 -0700112
113 // Add /prefix origins to CcnxGlobalRouter
114 ccnxGlobalRoutingHelper.AddOrigins (prefix, producer);
115
116 // Calculate and install FIBs
117 ccnxGlobalRoutingHelper.CalculateRoutes ();
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800118
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800119 Simulator::Stop (finishTime);
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700120
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800121 NS_LOG_INFO ("Run Simulation.");
122 Simulator::Run ();
Alexander Afanasyev9a989702012-06-29 17:44:00 -0700123
124 for (NodeList::Iterator node = NodeList::Begin ();
125 node != NodeList::End ();
126 node ++)
127 {
128 std::cout << "Node #" << (*node)->GetId () << std::endl;
129 (*node)->GetObject<CcnxContentStore> ()->Print (std::cout);
130 std::cout << std::endl;
131 }
132
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800133 Simulator::Destroy ();
134 NS_LOG_INFO ("Done!");
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700135
Alexander Afanasyev176ed062011-11-15 23:49:22 -0800136 return 0;
Alexander Afanasyev3ba44e52011-11-10 16:38:10 -0800137}