Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -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 | // custom-app.cc |
| 22 | |
| 23 | #include "custom-app.h" |
| 24 | #include "ns3/ptr.h" |
| 25 | #include "ns3/log.h" |
| 26 | #include "ns3/simulator.h" |
| 27 | #include "ns3/packet.h" |
| 28 | |
| 29 | #include "ns3/ndn-app-face.h" |
| 30 | #include "ns3/ndn-interest.h" |
| 31 | #include "ns3/ndn-content-object.h" |
| 32 | |
| 33 | #include "ns3/ndn-fib.h" |
| 34 | #include "ns3/random-variable.h" |
| 35 | |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 36 | NS_LOG_COMPONENT_DEFINE ("CustomApp"); |
| 37 | |
| 38 | namespace ns3 { |
| 39 | |
| 40 | NS_OBJECT_ENSURE_REGISTERED (CustomApp); |
| 41 | |
| 42 | // register NS-3 type |
| 43 | TypeId |
| 44 | CustomApp::GetTypeId () |
| 45 | { |
| 46 | static TypeId tid = TypeId ("CustomApp") |
| 47 | .SetParent<ndn::App> () |
| 48 | .AddConstructor<CustomApp> () |
| 49 | ; |
| 50 | return tid; |
| 51 | } |
| 52 | |
| 53 | // Processing upon start of the application |
| 54 | void |
| 55 | CustomApp::StartApplication () |
| 56 | { |
| 57 | // initialize ndn::App |
| 58 | ndn::App::StartApplication (); |
| 59 | |
| 60 | // Create a name components object for name ``/prefix/sub`` |
Alexander Afanasyev | cfdc14f | 2013-03-15 14:38:44 -0700 | [diff] [blame] | 61 | Ptr<ndn::Name> prefix = Create<ndn::Name> (); // now prefix contains ``/`` |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 62 | prefix->Add ("prefix"); // now prefix contains ``/prefix`` |
| 63 | prefix->Add ("sub"); // now prefix contains ``/prefix/sub`` |
| 64 | |
| 65 | ///////////////////////////////////////////////////////////////////////////// |
| 66 | // Creating FIB entry that ensures that we will receive incoming Interests // |
| 67 | ///////////////////////////////////////////////////////////////////////////// |
| 68 | |
| 69 | // Get FIB object |
| 70 | Ptr<ndn::Fib> fib = GetNode ()->GetObject<ndn::Fib> (); |
| 71 | |
| 72 | // Add entry to FIB |
| 73 | // Note that ``m_face`` is cretaed by ndn::App |
| 74 | Ptr<ndn::fib::Entry> fibEntry = fib->Add (*prefix, m_face, 0); |
| 75 | |
| 76 | Simulator::Schedule (Seconds (1.0), &CustomApp::SendInterest, this); |
| 77 | } |
| 78 | |
| 79 | // Processing when application is stopped |
| 80 | void |
| 81 | CustomApp::StopApplication () |
| 82 | { |
| 83 | // cleanup ndn::App |
| 84 | ndn::App::StopApplication (); |
| 85 | } |
| 86 | |
| 87 | void |
| 88 | CustomApp::SendInterest () |
| 89 | { |
| 90 | ///////////////////////////////////// |
| 91 | // Sending one Interest packet out // |
| 92 | ///////////////////////////////////// |
| 93 | |
Alexander Afanasyev | cfdc14f | 2013-03-15 14:38:44 -0700 | [diff] [blame] | 94 | Ptr<ndn::Name> prefix = Create<ndn::Name> ("/prefix/sub"); // another way to create name |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 95 | |
Alexander Afanasyev | eae83ee | 2013-03-15 15:01:10 -0700 | [diff] [blame] | 96 | // Create and configure ndn::Interest |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 97 | Ptr<ndn::Interest> interest = Create<ndn::Interest> (); |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 98 | UniformVariable rand (0,std::numeric_limits<uint32_t>::max ()); |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 99 | interest->SetNonce (rand.GetValue ()); |
| 100 | interest->SetName (prefix); |
| 101 | interest->SetInterestLifetime (Seconds (1.0)); |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 102 | |
| 103 | NS_LOG_DEBUG ("Sending Interest packet for " << *prefix); |
| 104 | |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 105 | // Call trace (for logging purposes) |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 106 | m_transmittedInterests (interest, this, m_face); |
| 107 | |
| 108 | m_face->ReceiveInterest (interest); |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | // Callback that will be called when Interest arrives |
| 112 | void |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 113 | CustomApp::OnInterest (Ptr<const ndn::Interest> interest) |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 114 | { |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 115 | ndn::App::OnInterest (interest); |
| 116 | |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 117 | NS_LOG_DEBUG ("Received Interest packet for " << interest->GetName ()); |
| 118 | |
Alexander Afanasyev | eae83ee | 2013-03-15 15:01:10 -0700 | [diff] [blame] | 119 | // Create and configure ndn::ContentObject and ndn::ContentObjectTail |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 120 | // (header is added in front of the packet, tail is added at the end of the packet) |
| 121 | |
| 122 | // Note that Interests send out by the app will not be sent back to the app ! |
| 123 | |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 124 | Ptr<ndn::ContentObject> data = Create<ndn::ContentObject> (Create<Packet> (1024)); |
Alexander Afanasyev | 5bee19e | 2013-07-10 14:33:57 -0700 | [diff] [blame] | 125 | data->SetName (Create<ndn::Name> (interest->GetName ())); // data will have the same name as Interests |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 126 | |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 127 | NS_LOG_DEBUG ("Sending ContentObject packet for " << data->GetName ()); |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 128 | |
| 129 | // Call trace (for logging purposes) |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 130 | m_transmittedContentObjects (data, this, m_face); |
| 131 | |
| 132 | m_face->ReceiveData (data); |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | // Callback that will be called when Data arrives |
| 136 | void |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 137 | CustomApp::OnContentObject (Ptr<const ndn::ContentObject> contentObject) |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 138 | { |
| 139 | NS_LOG_DEBUG ("Receiving ContentObject packet for " << contentObject->GetName ()); |
| 140 | |
| 141 | std::cout << "DATA received for name " << contentObject->GetName () << std::endl; |
| 142 | } |
| 143 | |
Alexander Afanasyev | 68de795 | 2012-12-12 18:02:29 -0800 | [diff] [blame] | 144 | } // namespace ns3 |