blob: 72aa14a15db36015c56d084da54cc3ae2f3d8767 [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 Afanasyev56f79ea2011-08-17 23:54:27 -070035/**
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070036 * By default, Ccnx face are created in the "down" state. Before
37 * becoming useable, the user must invoke SetUp on the face
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070038 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080039CcnxNetDeviceFace::CcnxNetDeviceFace (Ptr<Node> node, const Ptr<NetDevice> &netDevice)
40 : CcnxFace (node)
41 , m_netDevice (netDevice)
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070042{
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080043 NS_LOG_FUNCTION (this << netDevice);
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070044
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080045 NS_ASSERT_MSG (m_netDevice != 0, "CcnxNetDeviceFace needs to be assigned a valid NetDevice");
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070046}
47
48CcnxNetDeviceFace::~CcnxNetDeviceFace ()
49{
50 NS_LOG_FUNCTION_NOARGS ();
51}
52
53CcnxNetDeviceFace::CcnxNetDeviceFace (const CcnxNetDeviceFace &)
54{
55}
56
57CcnxNetDeviceFace& CcnxNetDeviceFace::operator= (const CcnxNetDeviceFace &)
58{
59 return *this;
60}
61
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070062Ptr<NetDevice>
63CcnxNetDeviceFace::GetNetDevice () const
64{
65 return m_netDevice;
66}
67
68void
69CcnxNetDeviceFace::RegisterProtocolHandler (ProtocolHandler handler)
70{
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080071 NS_LOG_FUNCTION (this << handler);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070072
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080073 CcnxFace::RegisterProtocolHandler (handler);
74
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070075 m_node->RegisterProtocolHandler (MakeCallback (&CcnxNetDeviceFace::ReceiveFromNetDevice, this),
76 CcnxL3Protocol::ETHERNET_FRAME_TYPE, m_netDevice, true/*promiscuous mode*/);
77}
78
79void
80CcnxNetDeviceFace::Send (Ptr<Packet> packet)
81{
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080082 NS_LOG_FUNCTION (this << packet);
83
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070084 NS_ASSERT_MSG (packet->GetSize () <= m_netDevice->GetMtu (),
85 "Packet size " << packet->GetSize () << " exceeds device MTU "
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080086 << m_netDevice->GetMtu ()
87 << " for Ccnx; fragmentation not supported");
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070088
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070089 m_netDevice->Send (packet, m_netDevice->GetBroadcast (),
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080090 CcnxL3Protocol::ETHERNET_FRAME_TYPE);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070091}
92
93// callback
94void
95CcnxNetDeviceFace::ReceiveFromNetDevice (Ptr<NetDevice> device,
96 Ptr<const Packet> p,
97 uint16_t protocol,
98 const Address &from,
99 const Address &to,
100 NetDevice::PacketType packetType)
101{
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800102 Receive (p);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700103}
104
105
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700106std::ostream&
107CcnxNetDeviceFace::Print (std::ostream& os) const
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700108{
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700109 os << "dev=net(" << GetId () << ")";
110 return os;
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700111}
112
113}; // namespace ns3
114