Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2005,2006,2007 INRIA |
| 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 | * |
Ilya Moiseenko | 1cf6b0a | 2011-08-29 13:02:34 -0700 | [diff] [blame] | 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 19 | * Ilya Moiseenko <iliamo@cs.ucla.edu> |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include "ccnx-local-face.h" |
| 24 | |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 25 | #include "ns3/log.h" |
| 26 | #include "ns3/packet.h" |
| 27 | #include "ns3/node.h" |
| 28 | #include "ns3/pointer.h" |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 29 | #include "ns3/assert.h" |
| 30 | |
| 31 | #include "ns3/ccnx-header-helper.h" |
| 32 | #include "ccnx-interest-header.h" |
| 33 | #include "ccnx-content-object-header.h" |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 34 | |
| 35 | NS_LOG_COMPONENT_DEFINE ("CcnxLocalFace"); |
| 36 | |
Ilya Moiseenko | 1cf6b0a | 2011-08-29 13:02:34 -0700 | [diff] [blame] | 37 | namespace ns3 |
| 38 | { |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 39 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 40 | // NS_OBJECT_ENSURE_REGISTERED (CcnxLocalFace); |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 41 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 42 | // TypeId |
| 43 | // CcnxLocalFace::GetTypeId (void) |
| 44 | // { |
| 45 | // static TypeId tid = TypeId ("ns3::CcnxLocalFace") |
| 46 | // .SetGroupName ("Ccnx") |
| 47 | // .SetParent<CcnxFace> () |
| 48 | // ; |
| 49 | // return tid; |
| 50 | // } |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 51 | |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 52 | CcnxLocalFace::CcnxLocalFace () |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 53 | : m_onInterest (0) |
| 54 | , m_onContentObject (0) |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 55 | { |
| 56 | NS_LOG_FUNCTION (this); |
| 57 | } |
| 58 | |
| 59 | CcnxLocalFace::~CcnxLocalFace () |
| 60 | { |
| 61 | NS_LOG_FUNCTION_NOARGS (); |
| 62 | } |
| 63 | |
| 64 | void |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 65 | CcnxLocalFace::RegisterProtocolHandler (ProtocolHandler handler) |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 66 | { |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 67 | m_protocolHandler = handler; |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 70 | void |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 71 | CcnxLocalFace::SetInterestHandler (InterestHandler onInterest) |
| 72 | { |
| 73 | m_onInterest = onInterest; |
| 74 | } |
| 75 | |
| 76 | void |
| 77 | CcnxLocalFace::SetContentObjectHandler (ContentObjectHandler onContentObject) |
| 78 | { |
| 79 | m_onContentObject = onContentObject; |
| 80 | } |
Ilya Moiseenko | acac1ea | 2011-10-28 13:16:53 -0700 | [diff] [blame] | 81 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 82 | void |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 83 | CcnxLocalFace::Send (Ptr<Packet> p) |
| 84 | { |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame^] | 85 | NS_LOG_FUNCTION("Local face send"); |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 86 | NS_LOG_FUNCTION (*p); |
| 87 | if (!IsUp ()) |
| 88 | { |
| 89 | return; |
| 90 | } |
| 91 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 92 | try |
| 93 | { |
| 94 | CcnxHeaderHelper::Type type = CcnxHeaderHelper::GetCcnxHeaderType (p); |
| 95 | switch (type) |
| 96 | { |
| 97 | case CcnxHeaderHelper::INTEREST: |
| 98 | if (!m_onInterest.IsNull ()) |
| 99 | { |
| 100 | Ptr<CcnxInterestHeader> header = Create<CcnxInterestHeader> (); |
| 101 | p->RemoveHeader (*header); |
| 102 | m_onInterest (header); |
| 103 | } |
| 104 | break; |
| 105 | case CcnxHeaderHelper::CONTENT_OBJECT: |
| 106 | if (!m_onContentObject.IsNull ()) |
| 107 | { |
| 108 | static CcnxContentObjectTail tail; |
| 109 | Ptr<CcnxContentObjectHeader> header = Create<CcnxContentObjectHeader> (); |
| 110 | p->RemoveHeader (*header); |
| 111 | p->RemoveTrailer (tail); |
| 112 | m_onContentObject (header, p/*payload*/); |
| 113 | } |
| 114 | break; |
| 115 | } |
| 116 | } |
| 117 | catch (CcnxUnknownHeaderException) |
| 118 | { |
| 119 | NS_LOG_ERROR ("Unknown header type"); |
| 120 | } |
Ilya Moiseenko | 1cf6b0a | 2011-08-29 13:02:34 -0700 | [diff] [blame] | 121 | } |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 122 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 123 | // propagate interest down to ccnx stack |
| 124 | void |
| 125 | CcnxLocalFace::ReceiveFromApplication (Ptr<Packet> p) |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 126 | { |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 127 | m_protocolHandler (Ptr<CcnxFace>(this), p); |
| 128 | } |
| 129 | |
| 130 | std::ostream& CcnxLocalFace::Print (std::ostream& os) const |
| 131 | { |
| 132 | os << "dev=local(" << GetId() << ")"; |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 133 | return os; |
| 134 | } |
| 135 | |
| 136 | }; // namespace ns3 |
| 137 | |