Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 1 | /* -*- 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: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #include "ndn-app.h" |
| 22 | #include "ns3/log.h" |
| 23 | #include "ns3/assert.h" |
| 24 | #include "ns3/packet.h" |
| 25 | |
Alexander Afanasyev | bd9c18e | 2012-11-19 15:23:41 -0800 | [diff] [blame] | 26 | #include "ns3/ndn-interest.h" |
| 27 | #include "ns3/ndn-content-object.h" |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 28 | #include "ns3/ndn-l3-protocol.h" |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 29 | #include "ns3/ndn-fib.h" |
| 30 | #include "ns3/ndn-app-face.h" |
| 31 | #include "ns3/ndn-forwarding-strategy.h" |
| 32 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 33 | NS_LOG_COMPONENT_DEFINE ("ndn.App"); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 34 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 35 | namespace ns3 { |
| 36 | namespace ndn { |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 37 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 38 | NS_OBJECT_ENSURE_REGISTERED (App); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 39 | |
| 40 | TypeId |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 41 | App::GetTypeId (void) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 42 | { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 43 | static TypeId tid = TypeId ("ns3::ndn::App") |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 44 | .SetGroupName ("Ndn") |
| 45 | .SetParent<Application> () |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 46 | .AddConstructor<App> () |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 47 | |
| 48 | .AddTraceSource ("ReceivedInterests", "ReceivedInterests", |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 49 | MakeTraceSourceAccessor (&App::m_receivedInterests)) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 50 | |
| 51 | .AddTraceSource ("ReceivedNacks", "ReceivedNacks", |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 52 | MakeTraceSourceAccessor (&App::m_receivedNacks)) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 53 | |
| 54 | .AddTraceSource ("ReceivedContentObjects", "ReceivedContentObjects", |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 55 | MakeTraceSourceAccessor (&App::m_receivedContentObjects)) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 56 | |
| 57 | .AddTraceSource ("TransmittedInterests", "TransmittedInterests", |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 58 | MakeTraceSourceAccessor (&App::m_transmittedInterests)) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 59 | |
| 60 | .AddTraceSource ("TransmittedContentObjects", "TransmittedContentObjects", |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 61 | MakeTraceSourceAccessor (&App::m_transmittedContentObjects)) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 62 | ; |
| 63 | return tid; |
| 64 | } |
| 65 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 66 | App::App () |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 67 | : m_protocolHandler (0) |
| 68 | , m_active (false) |
| 69 | , m_face (0) |
| 70 | { |
| 71 | } |
| 72 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 73 | App::~App () |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 74 | { |
| 75 | } |
| 76 | |
| 77 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 78 | App::DoDispose (void) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 79 | { |
| 80 | NS_LOG_FUNCTION_NOARGS (); |
| 81 | |
| 82 | // Unfortunately, this causes SEGFAULT |
| 83 | // The best reason I see is that apps are freed after ndn stack is removed |
| 84 | // StopApplication (); |
| 85 | Application::DoDispose (); |
| 86 | } |
| 87 | |
| 88 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 89 | App::RegisterProtocolHandler (ProtocolHandler handler) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 90 | { |
| 91 | m_protocolHandler = handler; |
| 92 | } |
Alexander Afanasyev | db64ff1 | 2013-01-18 16:37:31 -0800 | [diff] [blame] | 93 | |
| 94 | uint32_t |
| 95 | App::GetId () const |
| 96 | { |
| 97 | if (m_face == 0) |
| 98 | return (uint32_t)-1; |
| 99 | else |
| 100 | return m_face->GetId (); |
| 101 | } |
| 102 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 103 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 104 | App::OnInterest (const Ptr<const InterestHeader> &interest, Ptr<Packet> packet) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 105 | { |
| 106 | NS_LOG_FUNCTION (this << interest); |
| 107 | m_receivedInterests (interest, this, m_face); |
| 108 | } |
| 109 | |
| 110 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 111 | App::OnNack (const Ptr<const InterestHeader> &interest, Ptr<Packet> packet) |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 112 | { |
| 113 | NS_LOG_FUNCTION (this << interest); |
| 114 | m_receivedNacks (interest, this, m_face); |
| 115 | } |
| 116 | |
| 117 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 118 | App::OnContentObject (const Ptr<const ContentObjectHeader> &contentObject, |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 119 | Ptr<Packet> payload) |
| 120 | { |
| 121 | NS_LOG_FUNCTION (this << contentObject << payload); |
| 122 | m_receivedContentObjects (contentObject, payload, this, m_face); |
| 123 | } |
| 124 | |
| 125 | // Application Methods |
| 126 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 127 | App::StartApplication () // Called at time specified by Start |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 128 | { |
| 129 | NS_LOG_FUNCTION_NOARGS (); |
| 130 | |
| 131 | NS_ASSERT (m_active != true); |
| 132 | m_active = true; |
| 133 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 134 | NS_ASSERT_MSG (GetNode ()->GetObject<L3Protocol> () != 0, |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 135 | "Ndn stack should be installed on the node " << GetNode ()); |
| 136 | |
| 137 | // step 1. Create a face |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 138 | m_face = CreateObject<AppFace> (/*Ptr<App> (this)*/this); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 139 | |
| 140 | // step 2. Add face to the Ndn stack |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 141 | GetNode ()->GetObject<L3Protocol> ()->AddFace (m_face); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 142 | |
| 143 | // step 3. Enable face |
| 144 | m_face->SetUp (true); |
| 145 | } |
| 146 | |
| 147 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 148 | App::StopApplication () // Called at time specified by Stop |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 149 | { |
| 150 | NS_LOG_FUNCTION_NOARGS (); |
| 151 | |
| 152 | if (!m_active) return; //don't assert here, just return |
| 153 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 154 | NS_ASSERT (GetNode ()->GetObject<L3Protocol> () != 0); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 155 | |
| 156 | m_active = false; |
| 157 | |
| 158 | // step 1. Disable face |
| 159 | m_face->SetUp (false); |
| 160 | |
| 161 | // step 2. Remove face from Ndn stack |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 162 | GetNode ()->GetObject<L3Protocol> ()->RemoveFace (m_face); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 163 | |
| 164 | // step 3. Destroy face |
Alexander Afanasyev | f383047 | 2012-10-09 18:23:21 -0700 | [diff] [blame] | 165 | if (m_face->GetReferenceCount () != 1) |
| 166 | { |
| 167 | NS_LOG_ERROR ("Please a bug report on https://github.com/NDN-Routing/ndnSIM/issues:"); |
| 168 | NS_LOG_ERROR ("At this point, nobody else should have referenced this face, but we have " |
| 169 | << m_face->GetReferenceCount () << " references"); |
| 170 | |
| 171 | } |
| 172 | // NS_ASSERT_MSG (m_face->GetReferenceCount ()==2, |
| 173 | // "At this point, nobody else should have referenced this face, but we have " |
| 174 | // << m_face->GetReferenceCount () << " references"); |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 175 | m_face = 0; |
| 176 | } |
| 177 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 178 | } // namespace ndn |
| 179 | } // namespace ns3 |