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 | * Authors: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #ifndef CCNX_NET_DEVICE_FACE_H |
| 22 | #define CCNX_NET_DEVICE_FACE_H |
| 23 | |
| 24 | #include "ccnx-face.h" |
| 25 | #include "ns3/net-device.h" |
| 26 | |
| 27 | namespace ns3 { |
| 28 | |
| 29 | class Address; |
| 30 | |
| 31 | /** |
| 32 | * \ingroup ccnx-face |
| 33 | * \brief Implementation of layer-2 (Ethernet) CCNx face |
| 34 | * |
| 35 | * This class defines basic functionality of CCNx face. Face is core |
| 36 | * component responsible for actual delivery of data packet to and |
| 37 | * from CCNx stack |
| 38 | * |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 39 | * CcnxNetDevice face is permanently associated with one NetDevice |
| 40 | * object and this object cannot be changed for the lifetime of the |
| 41 | * face |
| 42 | * |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 43 | * \see CcnxLocalFace, CcnxNetDeviceFace, CcnxIpv4Face, CcnxUdpFace |
| 44 | */ |
| 45 | class CcnxNetDeviceFace : public CcnxFace |
| 46 | { |
| 47 | public: |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 48 | /** |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 49 | * \brief Constructor |
| 50 | * |
| 51 | * \param netDevice a smart pointer to NetDevice object to which |
| 52 | * this face will be associate |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 53 | */ |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 54 | CcnxNetDeviceFace (Ptr<Node> node, const Ptr<NetDevice> &netDevice); |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 55 | virtual ~CcnxNetDeviceFace(); |
| 56 | |
| 57 | //////////////////////////////////////////////////////////////////// |
| 58 | // methods overloaded from CcnxFace |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 59 | virtual void |
| 60 | RegisterProtocolHandler (ProtocolHandler handler); |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 61 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 62 | protected: |
| 63 | // also from CcnxFace |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 64 | virtual void |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 65 | SendImpl (Ptr<Packet> p); |
| 66 | |
| 67 | public: |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 68 | virtual std::ostream& |
| 69 | Print (std::ostream &os) const; |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 70 | //////////////////////////////////////////////////////////////////// |
| 71 | |
| 72 | /** |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 73 | * \brief Get NetDevice associated with the face |
| 74 | * |
| 75 | * \returns smart pointer to NetDevice associated with the face |
| 76 | */ |
| 77 | Ptr<NetDevice> GetNetDevice () const; |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 78 | |
| 79 | private: |
| 80 | CcnxNetDeviceFace (const CcnxNetDeviceFace &); ///< \brief Disabled copy constructor |
| 81 | CcnxNetDeviceFace& operator= (const CcnxNetDeviceFace &); ///< \brief Disabled copy operator |
| 82 | |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 83 | /// \brief callback from lower layers |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 84 | void ReceiveFromNetDevice (Ptr<NetDevice> device, |
| 85 | Ptr<const Packet> p, |
| 86 | uint16_t protocol, |
| 87 | const Address &from, |
| 88 | const Address &to, |
| 89 | NetDevice::PacketType packetType); |
| 90 | |
| 91 | private: |
| 92 | Ptr<NetDevice> m_netDevice; ///< \brief Smart pointer to NetDevice |
| 93 | }; |
| 94 | |
Alexander Afanasyev | 56f79ea | 2011-08-17 23:54:27 -0700 | [diff] [blame] | 95 | } // namespace ns3 |
| 96 | |
| 97 | #endif //CCNX_NET_DEVICE_FACE_H |