blob: 0a46401e703d681bb402b70869061939729a78df [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/*
Ilya Moiseenko956d0542012-01-02 15:26:40 -08003 * Copyright (c) 2011 University of California, Los Angeles
Alexander Afanasyev08d984e2011-08-13 19:20:22 -07004 *
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 Afanasyev4aac5572012-08-09 10:49:55 -070021#ifndef NDN_FACE_H
22#define NDN_FACE_H
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070023
Alexander Afanasyev98256102011-08-14 01:00:02 -070024#include <ostream>
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080025#include <algorithm>
Alexander Afanasyev98256102011-08-14 01:00:02 -070026
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070027#include "ns3/ptr.h"
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070028#include "ns3/object.h"
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080029#include "ns3/nstime.h"
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -070030#include "ns3/type-id.h"
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070031#include "ns3/traced-callback.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070032
33namespace ns3 {
34
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070035class Packet;
36class Node;
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070037
38namespace ndn {
39
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070040/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070041 * \ingroup ndn
42 * \defgroup ndn-face Faces
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070043 */
44/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070045 * \ingroup ndn-face
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070046 * \brief Virtual class defining NDN face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070047 *
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070048 * This class defines basic functionality of NDN face. Face is core
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070049 * component responsible for actual delivery of data packet to and
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070050 * from NDN stack
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070051 *
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070052 * \see ndn::LocalFace, ndn::NetDeviceFace, ndn::Ipv4Face, ndn::UdpFace
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070053 */
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070054class Face :
55 public Object
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070056{
57public:
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -080058 static TypeId
59 GetTypeId ();
60
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070061 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070062 * \brief Ndn protocol handler
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070063 *
64 * \param face Face from which packet has been received
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080065 * \param packet Original packet
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070066 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070067 typedef Callback<void,const Ptr<Face>&,const Ptr<const Packet>& > ProtocolHandler;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070068
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070069 /**
70 * \brief Default constructor
71 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070072 Face (Ptr<Node> node);
73 virtual ~Face();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070074
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070075 /**
76 * @brief Get node to which this face is associated
77 */
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080078 Ptr<Node>
79 GetNode () const;
80
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070081 ////////////////////////////////////////////////////////////////////
82
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070083 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070084 * \brief Register callback to call when new packet arrives on the face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070085 *
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070086 * This method should call protocol-dependent registration function
87 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080088 virtual void
89 RegisterProtocolHandler (ProtocolHandler handler);
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070090
91 /**
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080092 * @brief Check if Interest limit is reached
93 *
94 * Side effect: if limit is not yet reached, the number of outstanding packets will be increased
95 *
96 * @returns true if Interest limit is not yet reached
97 */
98 bool
99 IsBelowLimit ();
100
101 /**
102 * \brief Send packet on a face
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700103 *
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800104 * This method will be called by lower layers to send data to device or application
105 *
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800106 * \param p smart pointer to a packet to send
107 *
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800108 * @return false if either limit is reached
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800109 */
110 bool
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800111 Send (Ptr<Packet> p);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800112
113 /**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700114 * \brief Receive packet from application or another node and forward it to the Ndn stack
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800115 *
116 * \todo The only reason for this call is to handle tracing, if requested
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700117 */
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800118 bool
119 Receive (const Ptr<const Packet> &p);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800120 ////////////////////////////////////////////////////////////////////
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700121
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -0800122 /**
123 * \Brief Assign routing/forwarding metric with face
124 *
125 * \param metric configured routing metric (cost) of this face
126 */
127 virtual void SetMetric (uint16_t metric);
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700128
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -0800129 /**
130 * \brief Get routing/forwarding metric assigned to the face
131 *
132 * \returns configured routing/forwarding metric (cost) of this face
133 */
134 virtual uint16_t GetMetric (void) const;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700135
136 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700137 * These are face states and may be distinct from actual lower-layer
138 * device states, such as found in real implementations (where the
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700139 * device may be down but ndn face state is still up).
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700140 */
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700141
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700142 /**
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800143 * \brief Enable or disable this face
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700144 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800145 virtual void
146 SetUp (bool up = true);
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700147
148 /**
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700149 * \brief Returns true if this face is enabled, false otherwise.
150 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800151 virtual bool
152 IsUp () const;
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -0700153
154 /**
155 * @brief Print information about the face into the stream
156 * @param os stream to write information to
157 */
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700158 virtual std::ostream&
159 Print (std::ostream &os) const;
160
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700161 /**
162 * \brief Set node Id
163 *
164 * Id is purely informative and should not be used for any other purpose
165 *
166 * \param id id to set
167 */
168 inline void
169 SetId (uint32_t id);
170
171 /**
172 * \brief Get node Id
173 *
174 * Id is purely informative and should not be used for any other purpose
175 *
176 * \returns id id to set
177 */
178 inline uint32_t
179 GetId () const;
180
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700181 /**
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800182 * @brief Set maximum value for Interest allowance
183 *
184 * @param bucket maximum value for Interest allowance. If < 0, then limit will be disabled
185 */
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800186 void
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800187 SetBucketMax (double bucket);
188
189 /**
Alexander Afanasyev11453142011-11-25 16:13:33 -0800190 * @brief Set a normalized value (one second) for Interest allowance bucket leak
191 */
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800192 void
Alexander Afanasyev11453142011-11-25 16:13:33 -0800193 SetBucketLeak (double leak);
194
195 /**
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800196 * @brief Leak the Interest allowance bucket by (1/interval) * m_bucketMax amount,
197 * where interval is time between two consecutive calls of LeakBucket
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800198 */
Alexander Afanasyevb5703a92011-11-25 16:46:15 -0800199 void
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800200 LeakBucket ();
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800201
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800202 /**
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700203 * \brief Compare two faces. Only two faces on the same node could be compared.
204 *
205 * Internal index is used for comparison.
206 */
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700207 bool
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700208 operator== (const Face &face) const;
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700209
210 /**
211 * \brief Compare two faces. Only two faces on the same node could be compared.
212 *
213 * Internal index is used for comparison.
214 */
Alexander Afanasyev0845c092012-07-13 17:45:33 -0700215 inline bool
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700216 operator!= (const Face &face) const;
Alexander Afanasyev0845c092012-07-13 17:45:33 -0700217
218 /**
219 * \brief Compare two faces. Only two faces on the same node could be compared.
220 *
221 * Internal index is used for comparison.
222 */
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700223 bool
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700224 operator< (const Face &face) const;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700225
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800226protected:
227 /**
228 * \brief Send packet on a face (actual implementation)
229 *
230 * \param p smart pointer to a packet to send
231 */
Alexander Afanasyev1c0248b2012-07-24 15:59:50 -0700232 virtual bool
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800233 SendImpl (Ptr<Packet> p) = 0;
234
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700235private:
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700236 Face (const Face &); ///< \brief Disabled copy constructor
237 Face& operator= (const Face &); ///< \brief Disabled copy operator
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700238
239protected:
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700240 // uint16_t m_metric; ///< \brief Routing/forwarding metric
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700241 Ptr<Node> m_node; ///< \brief Smart pointer to Node
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800242
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800243 double m_bucket; ///< \brief Value representing current size of the Interest allowance for this face
244 double m_bucketMax; ///< \brief Maximum Interest allowance for this face
245 double m_bucketLeak; ///< \brief Normalized amount that should be leaked every second
246
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700247private:
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700248 ProtocolHandler m_protocolHandler; ///< Callback via which packets are getting send to Ndn stack
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700249 bool m_ifup; ///< \brief flag indicating that the interface is UP
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700250 uint32_t m_id; ///< \brief id of the interface in Ndn stack (per-node uniqueness)
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -0800251 Time m_lastLeakTime;
252 uint32_t m_metric; ///< \brief metric of the face
Alexander Afanasyev98d85e12012-08-09 10:06:05 -0700253 bool m_randomizeLimitChecking;
Alexander Afanasyev8e0d2812012-01-19 22:38:14 -0800254
Alexander Afanasyev30c33e32012-06-05 21:28:44 -0700255 // bool m_enableMetricTagging;
256
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700257 TracedCallback<Ptr<const Packet> > m_txTrace;
258 TracedCallback<Ptr<const Packet> > m_rxTrace;
259 TracedCallback<Ptr<const Packet> > m_dropTrace;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700260};
261
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700262std::ostream& operator<< (std::ostream& os, const Face &face);
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700263
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700264inline bool
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700265operator < (const Ptr<Face> &lhs, const Ptr<Face> &rhs)
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700266{
267 return *lhs < *rhs;
268}
269
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700270void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700271Face::SetId (uint32_t id)
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700272{
273 m_id = id;
274}
275
276uint32_t
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700277Face::GetId () const
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700278{
279 return m_id;
280}
Alexander Afanasyev98256102011-08-14 01:00:02 -0700281
Alexander Afanasyev0845c092012-07-13 17:45:33 -0700282inline bool
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700283Face::operator!= (const Face &face) const
Alexander Afanasyev0845c092012-07-13 17:45:33 -0700284{
285 return !(*this == face);
286}
287
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700288} // namespace ndn
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700289} // namespace ns3
290
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700291#endif // NDN_FACE_H