blob: 9bdcd43dc39c0526167f7fc229eb7ceb3abc624a [file] [log] [blame]
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -07001/* -*- 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
31NS_LOG_COMPONENT_DEFINE ("CcnxNetDeviceFace");
32
33namespace ns3 {
34
35NS_OBJECT_ENSURE_REGISTERED (CcnxNetDeviceFace);
36
37TypeId
38CcnxNetDeviceFace::GetTypeId ()
39{
40 static TypeId tid = TypeId ("ns3::CcnxNetDeviceFace")
Alexander Afanasyev070aa482011-08-20 00:38:25 -070041 .SetGroupName ("Ccnx")
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070042 .SetParent<CcnxFace> ()
43 ;
44 return tid;
45}
46
47/**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070048 * By default, Ccnx face are created in the "down" state. Before
49 * becoming useable, the user must invoke SetUp on the face
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070050 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070051CcnxNetDeviceFace::CcnxNetDeviceFace (const Ptr<NetDevice> &netDevice)
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070052{
53 NS_LOG_FUNCTION (this);
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070054
55 m_netDevice = netDevice;
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070056}
57
58CcnxNetDeviceFace::~CcnxNetDeviceFace ()
59{
60 NS_LOG_FUNCTION_NOARGS ();
61}
62
63CcnxNetDeviceFace::CcnxNetDeviceFace (const CcnxNetDeviceFace &)
64{
65}
66
67CcnxNetDeviceFace& CcnxNetDeviceFace::operator= (const CcnxNetDeviceFace &)
68{
69 return *this;
70}
71
72
73void
74CcnxNetDeviceFace::DoDispose (void)
75{
76 NS_LOG_FUNCTION_NOARGS ();
77 m_netDevice = 0;
78 Object::DoDispose ();
79}
80
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070081Ptr<NetDevice>
82CcnxNetDeviceFace::GetNetDevice () const
83{
84 return m_netDevice;
85}
86
87void
88CcnxNetDeviceFace::RegisterProtocolHandler (ProtocolHandler handler)
89{
90 NS_ASSERT_MSG (m_netDevice != 0, "CcnxNetDeviceFace needs to be assigned NetDevice first");
91
92 m_protocolHandler = handler;
93
94 m_node->RegisterProtocolHandler (MakeCallback (&CcnxNetDeviceFace::ReceiveFromNetDevice, this),
95 CcnxL3Protocol::ETHERNET_FRAME_TYPE, m_netDevice, true/*promiscuous mode*/);
96}
97
98void
99CcnxNetDeviceFace::Send (Ptr<Packet> packet)
100{
101 NS_ASSERT_MSG (packet->GetSize () <= m_netDevice->GetMtu (),
102 "Packet size " << packet->GetSize () << " exceeds device MTU "
103 << m_netDevice->GetMtu ()
104 << " for Ccnx; fragmentation not supported");
105
106 NS_LOG_FUNCTION (*packet);
107 if (!IsUp ())
108 {
109 return;
110 }
111
112 m_netDevice->Send (packet, m_netDevice->GetBroadcast (),
113 CcnxL3Protocol::ETHERNET_FRAME_TYPE);
114}
115
116// callback
117void
118CcnxNetDeviceFace::ReceiveFromNetDevice (Ptr<NetDevice> device,
119 Ptr<const Packet> p,
120 uint16_t protocol,
121 const Address &from,
122 const Address &to,
123 NetDevice::PacketType packetType)
124{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700125 m_protocolHandler (Ptr<CcnxFace>(this), p);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700126}
127
128
129std::ostream& operator<< (std::ostream& os, const CcnxNetDeviceFace &face)
130{
131 return operator<< (os, static_cast<const CcnxFace&> (face)); // just call parent class for now
132 // os << "id=" << face.GetId ();
133 // return os;
134}
135
136}; // namespace ns3
137