blob: 69c8bd45184fb7ca3f96e88bcefd01f0e8fd031a [file] [log] [blame]
Alexander Afanasyeve97c6072012-11-21 23:51:12 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011-2012 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: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
21// ndn-congestion-alt-topo-plugin.cc
22
23#include "ns3/core-module.h"
24#include "ns3/network-module.h"
25#include "ns3/ndnSIM-module.h"
26
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080027namespace ns3 {
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080028
29/**
30 *
31 * /------\ 0 0 /------\
32 * | c1 |<-----+ +----->| p1 |
33 * \------/ \ / \------/
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080034 * \ /-----\ /
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080035 * /------\ 0 \ +==>| r12 |<==+ / 0 /------\
36 * | c2 |<--+ \ / \-----/ \ / +-->| p2 |
37 * \------/ \ \ | | / / \------/
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080038 * \ | | 1Mbps links | | /
39 * \ 1 v0 v5 1v 2v 3 /
40 * +->/------\ /------\<-+
41 * 2| r1 |<===============>| r2 |4
42 * +->\------/4 0\------/<-+
43 * / 3^ ^5 \
44 * / | | \
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080045 * /------\ 0 / / \ \ 0 /------\
46 * | c3 |<--+ / \ +-->| p3 |
47 * \------/ / \ \------/
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080048 * / "All consumer-router and" \
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080049 * /------\ 0 / "router-producer links are" \ 0 /------\
50 * | c4 |<-----+ "10Mbps" +---->| p4 |
51 * \------/ \------/
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080052 *
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080053 * "Numbers near nodes denote face IDs. Face ID is assigned based on the order of link"
54 * "definitions in the topology file"
55 *
56 * To run scenario and see what is happening, use the following command:
57 *
58 * NS_LOG=ndn.Consumer:ndn.Producer ./waf --run=ndn-congestion-alt-topo-plugin
59 */
60
61int
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080062main(int argc, char* argv[])
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080063{
64 CommandLine cmd;
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080065 cmd.Parse(argc, argv);
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080066
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080067 AnnotatedTopologyReader topologyReader("", 1);
68 topologyReader.SetFileName("src/ndnSIM/examples/topologies/topo-11-node-two-bottlenecks.txt");
69 topologyReader.Read();
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080070
Alexander Afanasyev9fb2e3d2013-03-30 21:11:07 -070071 // Install NDN stack on all nodes
72 ndn::StackHelper ndnHelper;
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080073 ndnHelper.SetContentStoreChoice(false);
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080074 ndnHelper.SetContentStore("ns3::ndn::cs::Lru", "MaxSize",
75 "1"); // ! Attention ! If set to 0, then MaxSize is infinite
76 ndnHelper.InstallAll();
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080077
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -080078 // Set BestRoute strategy
79 ndn::StrategyChoiceHelper::InstallAll("/", "/localhost/nfd/strategy/best-route");
80
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080081 // Getting containers for the consumer/producer
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080082 Ptr<Node> consumers[4] = {Names::Find<Node>("c1"), Names::Find<Node>("c2"),
83 Names::Find<Node>("c3"), Names::Find<Node>("c4")};
84 Ptr<Node> producers[4] = {Names::Find<Node>("p1"), Names::Find<Node>("p2"),
85 Names::Find<Node>("p3"), Names::Find<Node>("p4")};
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080086
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080087 if (consumers[0] == 0 || consumers[1] == 0 || consumers[2] == 0 || consumers[3] == 0
88 || producers[0] == 0 || producers[1] == 0 || producers[2] == 0 || producers[3] == 0) {
89 NS_FATAL_ERROR("Error in topology: one nodes c1, c2, c3, c4, p1, p2, p3, or p4 is missing");
90 }
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080091
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080092 for (int i = 0; i < 4; i++) {
93 std::string prefix = "/data/" + Names::FindName(producers[i]);
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080094
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080095 /////////////////////////////////////////////////////////////////////////////////
96 // install consumer app on consumer node c_i to request data from producer p_i //
97 /////////////////////////////////////////////////////////////////////////////////
Alexander Afanasyeve97c6072012-11-21 23:51:12 -080098
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080099 ndn::AppHelper consumerHelper("ns3::ndn::ConsumerCbr");
100 consumerHelper.SetAttribute("Frequency", StringValue("10")); // 100 interests a second
101
102 consumerHelper.SetPrefix(prefix);
103 ApplicationContainer consumer = consumerHelper.Install(consumers[i]);
104 consumer.Start(Seconds(i)); // start consumers at 0s, 1s, 2s, 3s
105 consumer.Stop(Seconds(19 - i)); // stop consumers at 19s, 18s, 17s, 16s
106
107 ///////////////////////////////////////////////
108 // install producer app on producer node p_i //
109 ///////////////////////////////////////////////
110
111 ndn::AppHelper producerHelper("ns3::ndn::Producer");
112 producerHelper.SetAttribute("PayloadSize", StringValue("1024"));
113
114 // install producer that will satisfy Interests in /dst1 namespace
115 producerHelper.SetPrefix(prefix);
116 ApplicationContainer producer = producerHelper.Install(producers[i]);
117 // when Start/Stop time is not specified, the application is running throughout the simulation
118 }
Alexander Afanasyeve97c6072012-11-21 23:51:12 -0800119
120 // Manually configure FIB routes
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800121 ndn::FibHelper::AddRoute("c1", "/data", "n1", 1); // link to n1
122 ndn::FibHelper::AddRoute("c2", "/data", "n1", 1); // link to n1
123 ndn::FibHelper::AddRoute("c3", "/data", "n1", 1); // link to n1
124 ndn::FibHelper::AddRoute("c4", "/data", "n1", 1); // link to n1
Alexander Afanasyeve97c6072012-11-21 23:51:12 -0800125
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800126 ndn::FibHelper::AddRoute("n1", "/data", "n2", 1); // link to n2
127 ndn::FibHelper::AddRoute("n1", "/data", "n12", 2); // link to n12
Alexander Afanasyeve97c6072012-11-21 23:51:12 -0800128
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800129 ndn::FibHelper::AddRoute("n12", "/data", "n2", 1); // link to n2
Alexander Afanasyeve97c6072012-11-21 23:51:12 -0800130
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800131 ndn::FibHelper::AddRoute("n2", "/data/p1", "p1", 1); // link to p1
132 ndn::FibHelper::AddRoute("n2", "/data/p2", "p2", 1); // link to p2
133 ndn::FibHelper::AddRoute("n2", "/data/p3", "p3", 1); // link to p3
134 ndn::FibHelper::AddRoute("n2", "/data/p4", "p4", 1); // link to p4
Alexander Afanasyeve97c6072012-11-21 23:51:12 -0800135
136 // Schedule simulation time and run the simulation
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800137 Simulator::Stop(Seconds(20.0));
138 Simulator::Run();
139 Simulator::Destroy();
Alexander Afanasyeve97c6072012-11-21 23:51:12 -0800140
141 return 0;
142}
Spyridon Mastorakisdb8280f2014-11-21 20:00:17 -0800143
144
145} // namespace ns3
146
147int
148main(int argc, char* argv[])
149{
150 return ns3::main(argc, argv);
151}