blob: 4b3f64cb34ea8e33297a85b97b8a77534a2c31df [file] [log] [blame]
Alexander Afanasyev78057c32012-07-06 15:18:46 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
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
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070021#ifndef _NDN_FIB_ENTRY_H_
22#define _NDN_FIB_ENTRY_H_
Alexander Afanasyev78057c32012-07-06 15:18:46 -070023
24#include "ns3/ptr.h"
25#include "ns3/nstime.h"
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070026#include "ns3/ndn-face.h"
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070027#include "ns3/ndn-name.h"
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -070028#include "ns3/ndn-limits.h"
Alexander Afanasyeve6dc0ac2013-02-21 14:00:48 -080029#include "ns3/traced-value.h"
Alexander Afanasyev78057c32012-07-06 15:18:46 -070030
31#include <boost/multi_index_container.hpp>
32#include <boost/multi_index/tag.hpp>
33#include <boost/multi_index/ordered_index.hpp>
34#include <boost/multi_index/composite_key.hpp>
35#include <boost/multi_index/hashed_index.hpp>
36#include <boost/multi_index/random_access_index.hpp>
37#include <boost/multi_index/member.hpp>
38#include <boost/multi_index/mem_fun.hpp>
39
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070040namespace ns3 {
41namespace ndn {
Alexander Afanasyev78057c32012-07-06 15:18:46 -070042
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070043class Name;
Alexander Afanasyev73f06f62013-03-15 15:41:38 -070044typedef Name NameComponents;
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070045
46namespace fib {
Alexander Afanasyev78057c32012-07-06 15:18:46 -070047
48/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070049 * \ingroup ndn
Alexander Afanasyev78057c32012-07-06 15:18:46 -070050 * \brief Structure holding various parameters associated with a (FibEntry, Face) tuple
51 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070052class FaceMetric
Alexander Afanasyev78057c32012-07-06 15:18:46 -070053{
54public:
55 /**
56 * @brief Color codes for FIB face status
57 */
58 enum Status { NDN_FIB_GREEN = 1,
59 NDN_FIB_YELLOW = 2,
60 NDN_FIB_RED = 3 };
61public:
62 /**
63 * \brief Metric constructor
64 *
65 * \param face Face for which metric
66 * \param cost Initial value for routing cost
67 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070068 FaceMetric (Ptr<Face> face, int32_t cost)
Alexander Afanasyev78057c32012-07-06 15:18:46 -070069 : m_face (face)
70 , m_status (NDN_FIB_YELLOW)
71 , m_routingCost (cost)
72 , m_sRtt (Seconds (0))
73 , m_rttVar (Seconds (0))
Alexander Afanasyev6b0c88f2012-12-01 12:24:27 -080074 , m_realDelay (Seconds (0))
Alexander Afanasyev78057c32012-07-06 15:18:46 -070075 { }
76
77 /**
78 * \brief Comparison operator used by boost::multi_index::identity<>
79 */
80 bool
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070081 operator< (const FaceMetric &fm) const { return *m_face < *fm.m_face; } // return identity of the face
Alexander Afanasyev78057c32012-07-06 15:18:46 -070082
83 /**
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070084 * @brief Comparison between FaceMetric and Face
Alexander Afanasyev78057c32012-07-06 15:18:46 -070085 */
86 bool
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -080087 operator< (const Ptr<Face> &face) const { return *m_face < *face; }
Alexander Afanasyev78057c32012-07-06 15:18:46 -070088
89 /**
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070090 * @brief Return Face associated with FaceMetric
Alexander Afanasyev78057c32012-07-06 15:18:46 -070091 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070092 Ptr<Face>
Alexander Afanasyev78057c32012-07-06 15:18:46 -070093 GetFace () const { return m_face; }
94
95 /**
96 * \brief Recalculate smoothed RTT and RTT variation
97 * \param rttSample RTT sample
98 */
99 void
100 UpdateRtt (const Time &rttSample);
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800101
102 /**
103 * @brief Get current status of FIB entry
104 */
105 Status
106 GetStatus () const
107 {
108 return m_status;
109 }
110
111 /**
112 * @brief Set current status of FIB entry
113 */
114 void
115 SetStatus (Status status)
116 {
Alexander Afanasyeve6dc0ac2013-02-21 14:00:48 -0800117 m_status.Set (status);
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800118 }
119
120 /**
121 * @brief Get current routing cost
122 */
123 int32_t
124 GetRoutingCost () const
125 {
126 return m_routingCost;
127 }
128
129 /**
130 * @brief Set routing cost
131 */
132 void
133 SetRoutingCost (int32_t routingCost)
134 {
135 m_routingCost = routingCost;
136 }
137
138 /**
139 * @brief Get real propagation delay to the producer, calculated based on NS-3 p2p link delays
140 */
141 Time
142 GetRealDelay () const
143 {
144 return m_realDelay;
145 }
146
147 /**
148 * @brief Set real propagation delay to the producer, calculated based on NS-3 p2p link delays
149 */
150 void
151 SetRealDelay (Time realDelay)
152 {
153 m_realDelay = realDelay;
154 }
155
Alexander Afanasyeve6dc0ac2013-02-21 14:00:48 -0800156 /**
157 * @brief Get direct access to status trace
158 */
159 TracedValue<Status> &
160 GetStatusTrace ()
161 {
162 return m_status;
163 }
164
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700165private:
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700166 friend std::ostream& operator<< (std::ostream& os, const FaceMetric &metric);
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800167
168private:
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700169 Ptr<Face> m_face; ///< Face
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800170
Alexander Afanasyeve6dc0ac2013-02-21 14:00:48 -0800171 TracedValue<Status> m_status; ///< \brief Status of the next hop:
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700172 ///< - NDN_FIB_GREEN
173 ///< - NDN_FIB_YELLOW
174 ///< - NDN_FIB_RED
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800175
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700176 int32_t m_routingCost; ///< \brief routing protocol cost (interpretation of the value depends on the underlying routing protocol)
177
178 Time m_sRtt; ///< \brief smoothed round-trip time
179 Time m_rttVar; ///< \brief round-trip time variation
Alexander Afanasyev6b0c88f2012-12-01 12:24:27 -0800180
181 Time m_realDelay; ///< \brief real propagation delay to the producer, calculated based on NS-3 p2p link delays
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700182};
183
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700184/// @cond include_hidden
185class i_face {};
186class i_metric {};
187class i_nth {};
188/// @endcond
189
190
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700191/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700192 * \ingroup ndn
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700193 * \brief Typedef for indexed face container of Entry
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700194 *
195 * Currently, there are 2 indexes:
196 * - by face (used to find record and update metric)
197 * - by metric (face ranking)
198 * - random access index (for fast lookup on nth face). Order is
199 * maintained manually to be equal to the 'by metric' order
200 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700201struct FaceMetricContainer
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700202{
203 /// @cond include_hidden
204 typedef boost::multi_index::multi_index_container<
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700205 FaceMetric,
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700206 boost::multi_index::indexed_by<
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700207 // For fast access to elements using Face
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700208 boost::multi_index::ordered_unique<
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700209 boost::multi_index::tag<i_face>,
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800210 boost::multi_index::const_mem_fun<FaceMetric,Ptr<Face>,&FaceMetric::GetFace>
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700211 >,
212
213 // List of available faces ordered by (status, m_routingCost)
214 boost::multi_index::ordered_non_unique<
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700215 boost::multi_index::tag<i_metric>,
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700216 boost::multi_index::composite_key<
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700217 FaceMetric,
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800218 boost::multi_index::const_mem_fun<FaceMetric,FaceMetric::Status,&FaceMetric::GetStatus>,
219 boost::multi_index::const_mem_fun<FaceMetric,int32_t,&FaceMetric::GetRoutingCost>
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700220 >
221 >,
222
223 // To optimize nth candidate selection (sacrifice a little bit space to gain speed)
224 boost::multi_index::random_access<
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700225 boost::multi_index::tag<i_nth>
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700226 >
227 >
228 > type;
229 /// @endcond
230};
231
232/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700233 * \ingroup ndn
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700234 * \brief Structure for FIB table entry, holding indexed list of
235 * available faces and their respective metrics
236 */
Alexander Afanasyevf5c07742012-10-31 13:13:05 -0700237class Entry : public Object
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700238{
239public:
Alexander Afanasyev8566f452012-12-10 15:21:51 -0800240 typedef Entry base_type;
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800241
Alexander Afanasyev8566f452012-12-10 15:21:51 -0800242public:
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700243 class NoFaces {}; ///< @brief Exception class for the case when FIB entry is not found
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800244
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700245 /**
246 * \brief Constructor
247 * \param prefix smart pointer to the prefix for the FIB entry
248 */
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -0700249 Entry (const Ptr<const Name> &prefix)
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700250 : m_prefix (prefix)
251 , m_needsProbing (false)
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -0700252 {
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -0700253 }
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800254
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700255 /**
256 * \brief Update status of FIB next hop
257 * \param status Status to set on the FIB entry
258 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700259 void UpdateStatus (Ptr<Face> face, FaceMetric::Status status);
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700260
261 /**
262 * \brief Add or update routing metric of FIB next hop
263 *
264 * Initial status of the next hop is set to YELLOW
265 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700266 void AddOrUpdateRoutingMetric (Ptr<Face> face, int32_t metric);
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700267
268 /**
Alexander Afanasyev6b0c88f2012-12-01 12:24:27 -0800269 * \brief Set real delay to the producer
270 */
271 void
272 SetRealDelayToProducer (Ptr<Face> face, Time delay);
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800273
Alexander Afanasyev6b0c88f2012-12-01 12:24:27 -0800274 /**
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700275 * @brief Invalidate face
276 *
277 * Set routing metric on all faces to max and status to RED
278 */
279 void
280 Invalidate ();
281
282 /**
283 * @brief Update RTT averages for the face
284 */
285 void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700286 UpdateFaceRtt (Ptr<Face> face, const Time &sample);
Alexander Afanasyev06dba7c2013-02-21 11:36:26 -0800287
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700288 /**
289 * \brief Get prefix for the FIB entry
290 */
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -0700291 const Name&
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700292 GetPrefix () const { return *m_prefix; }
293
294 /**
295 * \brief Find "best route" candidate, skipping `skip' first candidates (modulo # of faces)
296 *
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700297 * throws Entry::NoFaces if m_faces.size()==0
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700298 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700299 const FaceMetric &
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700300 FindBestCandidate (uint32_t skip = 0) const;
301
302 /**
303 * @brief Remove record associated with `face`
304 */
305 void
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700306 RemoveFace (const Ptr<Face> &face)
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700307 {
308 m_faces.erase (face);
309 }
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -0700310
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700311private:
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700312 friend std::ostream& operator<< (std::ostream& os, const Entry &entry);
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700313
314public:
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -0700315 Ptr<const Name> m_prefix; ///< \brief Prefix of the FIB entry
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700316 FaceMetricContainer::type m_faces; ///< \brief Indexed list of faces
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700317
Alexander Afanasyevea9b3e62012-08-13 19:02:54 -0700318 bool m_needsProbing; ///< \brief flag indicating that probing should be performed
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700319};
320
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700321std::ostream& operator<< (std::ostream& os, const Entry &entry);
322std::ostream& operator<< (std::ostream& os, const FaceMetric &metric);
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700323
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700324} // namespace fib
325} // namespace ndn
326} // namespace ns3
Alexander Afanasyev78057c32012-07-06 15:18:46 -0700327
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700328#endif // _NDN_FIB_ENTRY_H_