Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 1 | /* -*- 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-tree-tracers.cc |
| 22 | |
| 23 | #include "ns3/core-module.h" |
| 24 | #include "ns3/network-module.h" |
| 25 | #include "ns3/ndnSIM-module.h" |
| 26 | |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 27 | namespace ns3 { |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 28 | |
| 29 | /** |
| 30 | * This scenario simulates a tree topology (using topology reader module) |
| 31 | * |
| 32 | * /------\ /------\ /------\ /------\ |
| 33 | * |leaf-1| |leaf-2| |leaf-3| |leaf-4| |
| 34 | * \------/ \------/ \------/ \------/ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 35 | * ^ ^ ^ ^ |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 36 | * | | | | |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 37 | * \ / \ / |
| 38 | * \ / \ / 10Mbps / 1ms |
| 39 | * \ / \ / |
| 40 | * | | | | |
| 41 | * v v v v |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 42 | * /-------\ /-------\ |
| 43 | * | rtr-1 | | rtr-2 | |
| 44 | * \-------/ \-------/ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 45 | * ^ ^ |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 46 | * | | |
| 47 | * \ / 10 Mpbs / 1ms |
| 48 | * +--------+ +--------+ |
| 49 | * | | |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 50 | * v v |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 51 | * /--------\ |
| 52 | * | root | |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 53 | * \--------/ |
| 54 | * |
| 55 | * |
| 56 | * To run scenario and see what is happening, use the following command: |
| 57 | * |
| 58 | * ./waf --run=ndn-tree-tracers |
| 59 | */ |
| 60 | |
| 61 | int |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 62 | main(int argc, char* argv[]) |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 63 | { |
| 64 | CommandLine cmd; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 65 | cmd.Parse(argc, argv); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 66 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 67 | AnnotatedTopologyReader topologyReader("", 1); |
| 68 | topologyReader.SetFileName("src/ndnSIM/examples/topologies/topo-tree.txt"); |
| 69 | topologyReader.Read(); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 70 | |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 71 | // Install NDN stack on all nodes |
| 72 | ndn::StackHelper ndnHelper; |
| 73 | ndnHelper.InstallAll(); |
| 74 | |
| 75 | // Choosing forwarding strategy |
| 76 | ndn::StrategyChoiceHelper::InstallAll("/prefix", "/localhost/nfd/strategy/best-route"); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 77 | |
| 78 | // Installing global routing interface on all nodes |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 79 | ndn::GlobalRoutingHelper ndnGlobalRoutingHelper; |
| 80 | ndnGlobalRoutingHelper.InstallAll(); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 81 | |
| 82 | // Getting containers for the consumer/producer |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 83 | Ptr<Node> consumers[4] = {Names::Find<Node>("leaf-1"), Names::Find<Node>("leaf-2"), |
| 84 | Names::Find<Node>("leaf-3"), Names::Find<Node>("leaf-4")}; |
| 85 | Ptr<Node> producer = Names::Find<Node>("root"); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 86 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 87 | for (int i = 0; i < 4; i++) { |
| 88 | ndn::AppHelper consumerHelper("ns3::ndn::ConsumerCbr"); |
| 89 | consumerHelper.SetAttribute("Frequency", StringValue("100")); // 100 interests a second |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 90 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 91 | // Each consumer will express unique interests /root/<leaf-name>/<seq-no> |
| 92 | consumerHelper.SetPrefix("/root/" + Names::FindName(consumers[i])); |
| 93 | consumerHelper.Install(consumers[i]); |
| 94 | } |
| 95 | |
| 96 | ndn::AppHelper producerHelper("ns3::ndn::Producer"); |
| 97 | producerHelper.SetAttribute("PayloadSize", StringValue("1024")); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 98 | |
| 99 | // Register /root prefix with global routing controller and |
| 100 | // install producer that will satisfy Interests in /root namespace |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 101 | ndnGlobalRoutingHelper.AddOrigins("/root", producer); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 102 | producerHelper.SetPrefix("/root"); |
| 103 | producerHelper.Install(producer); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 104 | |
| 105 | // Calculate and install FIBs |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 106 | ndn::GlobalRoutingHelper::CalculateRoutes(); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 107 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 108 | Simulator::Stop(Seconds(20.0)); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 109 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 110 | ndn::L3RateTracer::InstallAll("rate-trace.txt", Seconds(0.5)); |
| 111 | |
| 112 | Simulator::Run(); |
| 113 | Simulator::Destroy(); |
Alexander Afanasyev | 5931480 | 2012-11-26 14:56:04 -0800 | [diff] [blame] | 114 | |
| 115 | return 0; |
| 116 | } |
Spyridon Mastorakis | db8280f | 2014-11-21 20:00:17 -0800 | [diff] [blame^] | 117 | |
| 118 | } // namespace ns3 |
| 119 | |
| 120 | int |
| 121 | main(int argc, char* argv[]) |
| 122 | { |
| 123 | return ns3::main(argc, argv); |
| 124 | } |