Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 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 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include "ccnx-net-device-face.h" |
| 23 | |
| 24 | #include "ns3/ccnx-l3-protocol.h" |
| 25 | #include "ns3/net-device.h" |
| 26 | #include "ns3/log.h" |
| 27 | #include "ns3/packet.h" |
| 28 | #include "ns3/node.h" |
| 29 | #include "ns3/pointer.h" |
| 30 | |
| 31 | NS_LOG_COMPONENT_DEFINE ("CcnxNetDeviceFace"); |
| 32 | |
| 33 | namespace ns3 { |
| 34 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 35 | // NS_OBJECT_ENSURE_REGISTERED (CcnxNetDeviceFace); |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 36 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 37 | // TypeId |
| 38 | // CcnxNetDeviceFace::GetTypeId () |
| 39 | // { |
| 40 | // static TypeId tid = TypeId ("ns3::CcnxNetDeviceFace") |
| 41 | // .SetGroupName ("Ccnx") |
| 42 | // .SetParent<CcnxFace> () |
| 43 | // ; |
| 44 | // return tid; |
| 45 | // } |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 46 | |
| 47 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 48 | * By default, Ccnx face are created in the "down" state. Before |
| 49 | * becoming useable, the user must invoke SetUp on the face |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 50 | */ |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 51 | CcnxNetDeviceFace::CcnxNetDeviceFace (const Ptr<NetDevice> &netDevice) |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 52 | { |
| 53 | NS_LOG_FUNCTION (this); |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 54 | |
| 55 | m_netDevice = netDevice; |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | CcnxNetDeviceFace::~CcnxNetDeviceFace () |
| 59 | { |
| 60 | NS_LOG_FUNCTION_NOARGS (); |
| 61 | } |
| 62 | |
| 63 | CcnxNetDeviceFace::CcnxNetDeviceFace (const CcnxNetDeviceFace &) |
| 64 | { |
| 65 | } |
| 66 | |
| 67 | CcnxNetDeviceFace& CcnxNetDeviceFace::operator= (const CcnxNetDeviceFace &) |
| 68 | { |
| 69 | return *this; |
| 70 | } |
| 71 | |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 72 | Ptr<NetDevice> |
| 73 | CcnxNetDeviceFace::GetNetDevice () const |
| 74 | { |
| 75 | return m_netDevice; |
| 76 | } |
| 77 | |
| 78 | void |
| 79 | CcnxNetDeviceFace::RegisterProtocolHandler (ProtocolHandler handler) |
| 80 | { |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 81 | NS_LOG_FUNCTION(this); |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 82 | NS_ASSERT_MSG (m_netDevice != 0, "CcnxNetDeviceFace needs to be assigned NetDevice first"); |
| 83 | |
| 84 | m_protocolHandler = handler; |
| 85 | |
| 86 | m_node->RegisterProtocolHandler (MakeCallback (&CcnxNetDeviceFace::ReceiveFromNetDevice, this), |
| 87 | CcnxL3Protocol::ETHERNET_FRAME_TYPE, m_netDevice, true/*promiscuous mode*/); |
| 88 | } |
| 89 | |
| 90 | void |
| 91 | CcnxNetDeviceFace::Send (Ptr<Packet> packet) |
| 92 | { |
| 93 | NS_ASSERT_MSG (packet->GetSize () <= m_netDevice->GetMtu (), |
| 94 | "Packet size " << packet->GetSize () << " exceeds device MTU " |
| 95 | << m_netDevice->GetMtu () |
| 96 | << " for Ccnx; fragmentation not supported"); |
| 97 | |
| 98 | NS_LOG_FUNCTION (*packet); |
| 99 | if (!IsUp ()) |
| 100 | { |
| 101 | return; |
| 102 | } |
| 103 | |
| 104 | m_netDevice->Send (packet, m_netDevice->GetBroadcast (), |
| 105 | CcnxL3Protocol::ETHERNET_FRAME_TYPE); |
| 106 | } |
| 107 | |
| 108 | // callback |
| 109 | void |
| 110 | CcnxNetDeviceFace::ReceiveFromNetDevice (Ptr<NetDevice> device, |
| 111 | Ptr<const Packet> p, |
| 112 | uint16_t protocol, |
| 113 | const Address &from, |
| 114 | const Address &to, |
| 115 | NetDevice::PacketType packetType) |
| 116 | { |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 117 | m_protocolHandler (Ptr<CcnxFace>(this), p); |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 121 | std::ostream& |
| 122 | CcnxNetDeviceFace::Print (std::ostream& os) const |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 123 | { |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 124 | os << "dev=net(" << GetId () << ")"; |
| 125 | return os; |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | }; // namespace ns3 |
| 129 | |