blob: 81700df96504193872764c3fd5d6e82b122f227c [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -07002/*
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 *
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070018 * Authors: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070019 */
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070020
Alexander Afanasyev98256102011-08-14 01:00:02 -070021#ifndef CCNX_FACE_H
22#define CCNX_FACE_H
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070023
Alexander Afanasyev98256102011-08-14 01:00:02 -070024#include <ostream>
25
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070026#include "ns3/ptr.h"
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070027#include "ns3/simple-ref-count.h"
28#include "ns3/callback.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070029
30namespace ns3 {
31
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070032class Packet;
33class Node;
34
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070035
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070036/**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070037 * \ingroup ccnx
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070038 * \defgroup ccnx-face Faces
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070039 */
40/**
41 * \ingroup ccnx-face
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070042 * \brief Virtual class defining CCNx face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070043 *
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070044 * This class defines basic functionality of CCNx face. Face is core
45 * component responsible for actual delivery of data packet to and
46 * from CCNx stack
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070047 *
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070048 * \see CcnxLocalFace, CcnxNetDeviceFace, CcnxIpv4Face, CcnxUdpFace
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070049 */
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070050class CcnxFace : public SimpleRefCount<CcnxFace>
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070051{
52public:
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070053 /**
54 * \brief Ccnx protocol hanler
55 *
56 * \param face Face from which packet has been received
57 * \param packet Received packet
58 */
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070059 typedef Callback<void,const Ptr<CcnxFace>&,const Ptr<const Packet>& > ProtocolHandler;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070060
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070061 /**
62 * \brief Default constructor
63 */
Alexander Afanasyev98256102011-08-14 01:00:02 -070064 CcnxFace ();
65 virtual ~CcnxFace();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070066
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070067 ////////////////////////////////////////////////////////////////////
68
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070069 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070070 * \brief Register callback to call when new packet arrives on the face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070071 *
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070072 * This method should call protocol-dependent registration function
73 */
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070074 virtual void RegisterProtocolHandler (ProtocolHandler handler) = 0;
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070075
76 /**
77 * \brief Send packet on a face
78 *
79 * \param p smart pointer to a packet to send
80 */
81 virtual void Send (Ptr<Packet> p) = 0;
82
83 ////////////////////////////////////////////////////////////////////
84
85 /**
86 * \brief Associate Node object with face
87 *
88 * \param node smart pointer to a Node object
89 */
90 virtual void SetNode (Ptr<Node> node);
91
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070092 // /**
93 // * \Brief Assign routing/forwarding metric with face
94 // *
95 // * \param metric configured routing metric (cost) of this face
96 // */
97 // virtual void SetMetric (uint16_t metric);
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070098
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070099 // /**
100 // * \brief Get routing/forwarding metric assigned to the face
101 // *
102 // * \returns configured routing/forwarding metric (cost) of this face
103 // */
104 // virtual uint16_t GetMetric (void) const;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700105
106 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700107 * These are face states and may be distinct from actual lower-layer
108 * device states, such as found in real implementations (where the
109 * device may be down but ccnx face state is still up).
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700110 */
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700111
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700112 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700113 * \brief Enable this face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700114 */
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700115 virtual void SetUp ();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700116
117 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700118 * \brief Disable this face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700119 */
Alexander Afanasyev98256102011-08-14 01:00:02 -0700120 virtual void SetDown (void);
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700121
122 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700123 * \brief Returns true if this face is enabled, false otherwise.
124 */
125 virtual bool IsUp () const;
126
127 /**
128 * \brief Returns true if this face is disabled, false otherwise.
129 */
130 virtual bool IsDown () const;
Ilya Moiseenkoacac1ea2011-10-28 13:16:53 -0700131
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700132 virtual std::ostream&
133 Print (std::ostream &os) const;
134
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700135 /**
136 * \brief Set node Id
137 *
138 * Id is purely informative and should not be used for any other purpose
139 *
140 * \param id id to set
141 */
142 inline void
143 SetId (uint32_t id);
144
145 /**
146 * \brief Get node Id
147 *
148 * Id is purely informative and should not be used for any other purpose
149 *
150 * \returns id id to set
151 */
152 inline uint32_t
153 GetId () const;
154
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700155 /**
156 * \brief Compare two faces. Only two faces on the same node could be compared.
157 *
158 * Internal index is used for comparison.
159 */
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700160 bool
161 operator== (const CcnxFace &face) const;
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700162
163 /**
164 * \brief Compare two faces. Only two faces on the same node could be compared.
165 *
166 * Internal index is used for comparison.
167 */
168 bool
169 operator< (const CcnxFace &face) const;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700170
171private:
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700172 CcnxFace (const CcnxFace &); ///< \brief Disabled copy constructor
173 CcnxFace& operator= (const CcnxFace &); ///< \brief Disabled copy operator
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700174
175protected:
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700176 // uint16_t m_metric; ///< \brief Routing/forwarding metric
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700177 Ptr<Node> m_node; ///< \brief Smart pointer to Node
178 ProtocolHandler m_protocolHandler; ///< Callback via which packets are getting send to CCNx stack
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800179
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700180private:
181 bool m_ifup; ///< \brief flag indicating that the interface is UP
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800182 uint32_t m_id; ///< \brief id of the interface in CCNx stack (per-node uniqueness)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700183};
184
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700185std::ostream& operator<< (std::ostream& os, const CcnxFace &face);
186
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700187inline bool
188operator < (const Ptr<CcnxFace> &lhs, const Ptr<CcnxFace> &rhs)
189{
190 return *lhs < *rhs;
191}
192
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700193void
194CcnxFace::SetId (uint32_t id)
195{
196 m_id = id;
197}
198
199uint32_t
200CcnxFace::GetId () const
201{
202 return m_id;
203}
Alexander Afanasyev98256102011-08-14 01:00:02 -0700204
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700205} // namespace ns3
206
Alexander Afanasyev98256102011-08-14 01:00:02 -0700207#endif //CCNX_FACE_H