blob: e06a741ee81973fa636f6d9e4427e74604f8e4cc [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
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070035// NS_OBJECT_ENSURE_REGISTERED (CcnxNetDeviceFace);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070036
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070037// TypeId
38// CcnxNetDeviceFace::GetTypeId ()
39// {
40// static TypeId tid = TypeId ("ns3::CcnxNetDeviceFace")
41// .SetGroupName ("Ccnx")
42// .SetParent<CcnxFace> ()
43// ;
44// return tid;
45// }
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070046
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;
Ilya Moiseenko57959f92011-10-28 13:15:58 -070056 m_isLocal = false;
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070057}
58
59CcnxNetDeviceFace::~CcnxNetDeviceFace ()
60{
61 NS_LOG_FUNCTION_NOARGS ();
62}
63
64CcnxNetDeviceFace::CcnxNetDeviceFace (const CcnxNetDeviceFace &)
65{
Ilya Moiseenko57959f92011-10-28 13:15:58 -070066 m_isLocal = false;
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070067}
68
69CcnxNetDeviceFace& CcnxNetDeviceFace::operator= (const CcnxNetDeviceFace &)
70{
71 return *this;
72}
73
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070074Ptr<NetDevice>
75CcnxNetDeviceFace::GetNetDevice () const
76{
77 return m_netDevice;
78}
79
80void
81CcnxNetDeviceFace::RegisterProtocolHandler (ProtocolHandler handler)
82{
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070083 NS_LOG_FUNCTION(this);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070084 NS_ASSERT_MSG (m_netDevice != 0, "CcnxNetDeviceFace needs to be assigned NetDevice first");
85
86 m_protocolHandler = handler;
87
88 m_node->RegisterProtocolHandler (MakeCallback (&CcnxNetDeviceFace::ReceiveFromNetDevice, this),
89 CcnxL3Protocol::ETHERNET_FRAME_TYPE, m_netDevice, true/*promiscuous mode*/);
90}
91
92void
93CcnxNetDeviceFace::Send (Ptr<Packet> packet)
94{
95 NS_ASSERT_MSG (packet->GetSize () <= m_netDevice->GetMtu (),
96 "Packet size " << packet->GetSize () << " exceeds device MTU "
97 << m_netDevice->GetMtu ()
98 << " for Ccnx; fragmentation not supported");
99
100 NS_LOG_FUNCTION (*packet);
101 if (!IsUp ())
102 {
103 return;
104 }
105
106 m_netDevice->Send (packet, m_netDevice->GetBroadcast (),
107 CcnxL3Protocol::ETHERNET_FRAME_TYPE);
108}
109
110// callback
111void
112CcnxNetDeviceFace::ReceiveFromNetDevice (Ptr<NetDevice> device,
113 Ptr<const Packet> p,
114 uint16_t protocol,
115 const Address &from,
116 const Address &to,
117 NetDevice::PacketType packetType)
118{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700119 m_protocolHandler (Ptr<CcnxFace>(this), p);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700120}
121
122
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700123std::ostream&
124CcnxNetDeviceFace::Print (std::ostream& os) const
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700125{
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700126 os << "dev=net(" << GetId () << ")";
127 return os;
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700128}
129
130}; // namespace ns3
131