Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 1 | /* -*- 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 | |
| 21 | #ifndef _CCNX_FIB_H_ |
| 22 | #define _CCNX_FIB_H_ |
| 23 | |
Alexander Afanasyev | 161a5c4 | 2012-04-17 15:14:04 -0700 | [diff] [blame] | 24 | #include "ccnx-name-components-hash-helper.h" |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 25 | #include "ccnx-face.h" |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 26 | #include "ccnx.h" |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 27 | #include "ns3/nstime.h" |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 28 | #include "ns3/simple-ref-count.h" |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 29 | #include "ns3/node.h" |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 30 | |
| 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> |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 36 | #include <boost/multi_index/random_access_index.hpp> |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 37 | #include <boost/multi_index/member.hpp> |
| 38 | #include <boost/multi_index/mem_fun.hpp> |
| 39 | |
| 40 | #include <iostream> |
| 41 | |
| 42 | namespace ns3 { |
| 43 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 44 | class CcnxInterestHeader; |
| 45 | |
| 46 | /** |
| 47 | * \ingroup ccnx |
| 48 | * \brief Structure holding various parameters associated with a (FibEntry, Face) tuple |
| 49 | */ |
| 50 | class CcnxFibFaceMetric |
| 51 | { |
| 52 | public: |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 53 | enum Status { NDN_FIB_GREEN = 1, |
| 54 | NDN_FIB_YELLOW = 2, |
| 55 | NDN_FIB_RED = 3 }; |
| 56 | public: |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 57 | /** |
| 58 | * \brief Metric constructor |
| 59 | * |
| 60 | * \param face Face for which metric |
| 61 | * \param cost Initial value for routing cost |
| 62 | */ |
Alexander Afanasyev | ef05655 | 2012-01-20 16:19:12 -0800 | [diff] [blame] | 63 | CcnxFibFaceMetric (Ptr<CcnxFace> face, int32_t cost) |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 64 | : m_face (face) |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 65 | , m_status (NDN_FIB_YELLOW) |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 66 | , m_routingCost (cost) |
| 67 | , m_sRtt (Seconds (0)) |
| 68 | , m_rttVar (Seconds (0)) |
| 69 | { } |
| 70 | |
| 71 | /** |
| 72 | * \brief Comparison operator used by boost::multi_index::identity<> |
| 73 | */ |
| 74 | bool |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 75 | operator< (const CcnxFibFaceMetric &fm) const { return *m_face < *fm.m_face; } // return identity of the face |
| 76 | |
| 77 | bool |
| 78 | operator< (const Ptr<CcnxFace> &face) const { return *m_face < *face; } |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 79 | |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 80 | Ptr<CcnxFace> |
| 81 | GetFace () const { return m_face; } |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 82 | |
| 83 | /** |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 84 | * \brief Recalculate smoothed RTT and RTT variation |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 85 | * \param rttSample RTT sample |
| 86 | */ |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 87 | void |
| 88 | UpdateRtt (const Time &rttSample); |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 89 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 90 | private: |
| 91 | friend std::ostream& operator<< (std::ostream& os, const CcnxFibFaceMetric &metric); |
| 92 | public: |
| 93 | Ptr<CcnxFace> m_face; ///< Face |
| 94 | |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 95 | Status m_status; ///< \brief Status of the next hop: |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 96 | ///< - NDN_FIB_GREEN |
| 97 | ///< - NDN_FIB_YELLOW |
| 98 | ///< - NDN_FIB_RED |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 99 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 100 | int32_t m_routingCost; ///< \brief routing protocol cost (interpretation of the value depends on the underlying routing protocol) |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 101 | |
| 102 | Time m_sRtt; ///< \brief smoothed round-trip time |
| 103 | Time m_rttVar; ///< \brief round-trip time variation |
| 104 | }; |
| 105 | |
| 106 | /** |
| 107 | * \ingroup ccnx |
| 108 | * \brief Typedef for indexed face container of CcnxFibEntry |
| 109 | * |
| 110 | * Currently, there are 2 indexes: |
| 111 | * - by face (used to find record and update metric) |
| 112 | * - by metric (face ranking) |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 113 | * - random access index (for fast lookup on nth face). Order is |
| 114 | * maintained manually to be equal to the 'by metric' order |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 115 | */ |
| 116 | struct CcnxFibFaceMetricContainer |
| 117 | { |
| 118 | typedef boost::multi_index::multi_index_container< |
| 119 | CcnxFibFaceMetric, |
| 120 | boost::multi_index::indexed_by< |
| 121 | // For fast access to elements using CcnxFace |
| 122 | boost::multi_index::ordered_unique< |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 123 | boost::multi_index::tag<__ccnx_private::i_face>, |
| 124 | boost::multi_index::member<CcnxFibFaceMetric,Ptr<CcnxFace>,&CcnxFibFaceMetric::m_face> |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 125 | >, |
| 126 | |
| 127 | // List of available faces ordered by (status, m_routingCost) |
| 128 | boost::multi_index::ordered_non_unique< |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 129 | boost::multi_index::tag<__ccnx_private::i_metric>, |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 130 | boost::multi_index::composite_key< |
| 131 | CcnxFibFaceMetric, |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 132 | boost::multi_index::member<CcnxFibFaceMetric,CcnxFibFaceMetric::Status,&CcnxFibFaceMetric::m_status>, |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 133 | boost::multi_index::member<CcnxFibFaceMetric,int32_t,&CcnxFibFaceMetric::m_routingCost> |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 134 | > |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 135 | >, |
| 136 | |
| 137 | // To optimize nth candidate selection (sacrifice a little bit space to gain speed) |
| 138 | boost::multi_index::random_access< |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 139 | boost::multi_index::tag<__ccnx_private::i_nth> |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 140 | > |
| 141 | > |
| 142 | > type; |
| 143 | }; |
| 144 | |
| 145 | /** |
| 146 | * \ingroup ccnx |
| 147 | * \brief Structure for FIB table entry, holding indexed list of |
| 148 | * available faces and their respective metrics |
| 149 | */ |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 150 | class CcnxFibEntry // : public SimpleRefCount<CcnxFibEntry> |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 151 | { |
| 152 | public: |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 153 | class NoFaces {}; |
| 154 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 155 | /** |
| 156 | * \brief Constructor |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 157 | * \param prefix smart pointer to the prefix for the FIB entry |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 158 | */ |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 159 | CcnxFibEntry (const Ptr<const CcnxNameComponents> &prefix) |
| 160 | : m_prefix (prefix) |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 161 | , m_needsProbing (false) |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 162 | { } |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 163 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 164 | /** |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 165 | * \brief Update status of FIB next hop |
| 166 | * \param status Status to set on the FIB entry |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 167 | */ |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 168 | void UpdateStatus (Ptr<CcnxFace> face, CcnxFibFaceMetric::Status status); |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 169 | |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 170 | /** |
| 171 | * \brief Add or update routing metric of FIB next hop |
| 172 | * |
| 173 | * Initial status of the next hop is set to YELLOW |
| 174 | */ |
| 175 | void AddOrUpdateRoutingMetric (Ptr<CcnxFace> face, int32_t metric); |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 176 | |
| 177 | /** |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 178 | * @brief Invalidate face |
| 179 | * |
| 180 | * Set routing metric on all faces to max and status to RED |
| 181 | */ |
| 182 | void |
| 183 | Invalidate (); |
| 184 | |
| 185 | /** |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 186 | * @brief Update RTT averages for the face |
| 187 | */ |
| 188 | void |
| 189 | UpdateFaceRtt (Ptr<CcnxFace> face, const Time &sample); |
| 190 | |
| 191 | /** |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 192 | * \brief Get prefix for the FIB entry |
| 193 | */ |
| 194 | const CcnxNameComponents& |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 195 | GetPrefix () const { return *m_prefix; } |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 196 | |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 197 | /** |
| 198 | * \brief Find "best route" candidate, skipping `skip' first candidates (modulo # of faces) |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 199 | * |
| 200 | * throws CcnxFibEntry::NoFaces if m_faces.size()==0 |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 201 | */ |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 202 | const CcnxFibFaceMetric & |
| 203 | FindBestCandidate (uint32_t skip = 0) const; |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame] | 204 | |
| 205 | /** |
| 206 | * @brief Remove record associated with `face` |
| 207 | */ |
| 208 | void |
| 209 | RemoveFace (const Ptr<CcnxFace> &face) |
| 210 | { |
| 211 | m_faces.erase (face); |
| 212 | } |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 213 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 214 | private: |
| 215 | friend std::ostream& operator<< (std::ostream& os, const CcnxFibEntry &entry); |
| 216 | |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 217 | public: |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 218 | Ptr<const CcnxNameComponents> m_prefix; ///< \brief Prefix of the FIB entry |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 219 | CcnxFibFaceMetricContainer::type m_faces; ///< \brief Indexed list of faces |
| 220 | |
| 221 | bool m_needsProbing; ///< \brief flag indicating that probing should be performed |
| 222 | }; |
| 223 | |
| 224 | /////////////////////////////////////////////////////////////////////////////// |
| 225 | /////////////////////////////////////////////////////////////////////////////// |
| 226 | |
| 227 | /** |
| 228 | * \ingroup ccnx |
| 229 | * \brief Typedef for indexed container for FIB entries |
| 230 | * |
| 231 | * Currently, there is only one index |
| 232 | * - by prefix hash, which is used to perform prefix match |
| 233 | */ |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 234 | struct CcnxFibEntryContainer |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 235 | { |
| 236 | typedef boost::multi_index::multi_index_container< |
| 237 | CcnxFibEntry, |
| 238 | boost::multi_index::indexed_by< |
| 239 | // For fast access to elements using CcnxFace |
| 240 | boost::multi_index::hashed_unique< |
Alexander Afanasyev | 78cf0c9 | 2011-09-01 19:57:14 -0700 | [diff] [blame] | 241 | boost::multi_index::tag<__ccnx_private::i_prefix>, |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 242 | boost::multi_index::const_mem_fun<CcnxFibEntry, |
| 243 | const CcnxNameComponents&, |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 244 | &CcnxFibEntry::GetPrefix>, |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 245 | CcnxPrefixHash>, |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 246 | |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 247 | boost::multi_index::random_access< |
| 248 | boost::multi_index::tag<__ccnx_private::i_nth> |
| 249 | > |
| 250 | > |
| 251 | > type; |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | /** |
| 255 | * \ingroup ccnx |
| 256 | * \brief Class implementing FIB functionality |
| 257 | */ |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 258 | class CcnxFib : public Object |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 259 | { |
| 260 | public: |
| 261 | /** |
Alexander Afanasyev | cf133f0 | 2011-09-06 12:13:48 -0700 | [diff] [blame] | 262 | * \brief Interface ID |
| 263 | * |
| 264 | * \return interface ID |
| 265 | */ |
| 266 | static TypeId GetTypeId (); |
| 267 | |
| 268 | /** |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 269 | * \brief Constructor |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 270 | */ |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 271 | CcnxFib (); |
| 272 | // * \param node smart pointer to Ccnx stack associated with particular node |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 273 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 274 | /** |
| 275 | * \brief Perform longest prefix match |
| 276 | * |
| 277 | * \todo Implement exclude filters |
| 278 | * |
| 279 | * \param interest Interest packet header |
Alexander Afanasyev | 8accdf6 | 2011-09-20 11:33:59 -0700 | [diff] [blame] | 280 | * \returns If entry found a valid iterator will be returned, otherwise end () |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 281 | */ |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 282 | CcnxFibEntryContainer::type::iterator |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 283 | LongestPrefixMatch (const CcnxInterestHeader &interest) const; |
| 284 | |
| 285 | /** |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 286 | * \brief Add or update FIB entry |
| 287 | * |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 288 | * If the entry exists, metric will be updated. Otherwise, new entry will be created |
| 289 | * |
| 290 | * Entries in FIB never deleted. They can be invalidated with metric==NETWORK_UNREACHABLE |
| 291 | * |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 292 | * @param name Prefix |
| 293 | * @param face Forwarding face |
| 294 | * @param metric Routing metric |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 295 | */ |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 296 | CcnxFibEntryContainer::type::iterator |
| 297 | Add (const CcnxNameComponents &prefix, Ptr<CcnxFace> face, int32_t metric); |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 298 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 299 | /** |
Alexander Afanasyev | 8e2f112 | 2012-04-17 15:01:11 -0700 | [diff] [blame] | 300 | * \brief Add or update FIB entry using smart pointer to prefix |
| 301 | * |
| 302 | * If the entry exists, metric will be updated. Otherwise, new entry will be created |
| 303 | * |
| 304 | * Entries in FIB never deleted. They can be invalidated with metric==NETWORK_UNREACHABLE |
| 305 | * |
| 306 | * @param name Smart pointer to prefix |
| 307 | * @param face Forwarding face |
| 308 | * @param metric Routing metric |
| 309 | */ |
| 310 | CcnxFibEntryContainer::type::iterator |
| 311 | Add (const Ptr<const CcnxNameComponents> &prefix, Ptr<CcnxFace> face, int32_t metric); |
| 312 | |
| 313 | /** |
| 314 | * @brief Remove FIB entry |
| 315 | * |
| 316 | * ! ATTENTION ! Use with caution. All PIT entries referencing the corresponding FIB entry will become invalid. |
| 317 | * So, simulation may crash. |
| 318 | * |
| 319 | * @param name Smart pointer to prefix |
| 320 | */ |
| 321 | void |
| 322 | Remove (const Ptr<const CcnxNameComponents> &prefix); |
| 323 | |
| 324 | /** |
| 325 | * @brief Invalidate FIB entry ("Safe" version of Remove) |
| 326 | * |
| 327 | * All faces for the entry will be assigned maximum routing metric and NDN_FIB_RED status |
| 328 | * @param name Smart pointer to prefix |
| 329 | */ |
| 330 | void |
| 331 | Invalidate (const Ptr<const CcnxNameComponents> &prefix); |
| 332 | |
| 333 | /** |
| 334 | * @brief Invalidate all FIB entries |
| 335 | */ |
| 336 | void |
| 337 | InvalidateAll (); |
| 338 | |
| 339 | /** |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame] | 340 | * @brief Remove reference to a face from the entry. If entry had only this face, the whole |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 341 | * entry will be removed |
| 342 | */ |
| 343 | void |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame] | 344 | Remove (const CcnxFibEntry &entry, Ptr<CcnxFace> face); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 345 | |
| 346 | /** |
| 347 | * @brief Remove all references to a face from FIB. If for some enty that face was the only element, |
| 348 | * this FIB entry will be removed. |
| 349 | */ |
| 350 | void |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame] | 351 | RemoveFromAll (Ptr<CcnxFace> face); |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 352 | |
Alexander Afanasyev | 0782718 | 2011-12-13 01:07:32 -0800 | [diff] [blame] | 353 | /** |
| 354 | * \brief Get number of FIB entry (for python bindings) |
| 355 | */ |
| 356 | uint32_t |
| 357 | GetCcnxFibEntryCount () const; |
| 358 | |
| 359 | /** |
| 360 | * \brief Get FIB entry by index (for python bindings) |
| 361 | */ |
| 362 | const CcnxFibEntry & |
| 363 | GetCcnxFibEntry (uint32_t index); |
| 364 | |
| 365 | public: |
| 366 | CcnxFibEntryContainer::type m_fib; |
| 367 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 368 | protected: |
| 369 | // inherited from Object class |
| 370 | virtual void NotifyNewAggregate (); |
| 371 | virtual void DoDispose (); |
| 372 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 373 | private: |
| 374 | friend std::ostream& operator<< (std::ostream& os, const CcnxFib &fib); |
Alexander Afanasyev | a67e28c | 2011-08-31 21:16:25 -0700 | [diff] [blame] | 375 | CcnxFib(const CcnxFib&) {} ; ///< \brief copy constructor is disabled |
| 376 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 377 | private: |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 378 | Ptr<Node> m_node; |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 379 | }; |
| 380 | |
| 381 | /////////////////////////////////////////////////////////////////////////////// |
| 382 | /////////////////////////////////////////////////////////////////////////////// |
| 383 | |
| 384 | std::ostream& operator<< (std::ostream& os, const CcnxFib &fib); |
| 385 | std::ostream& operator<< (std::ostream& os, const CcnxFibEntry &entry); |
| 386 | std::ostream& operator<< (std::ostream& os, const CcnxFibFaceMetric &metric); |
| 387 | |
| 388 | } // namespace ns3 |
| 389 | |
| 390 | #endif /* NDN_FIB_H */ |