blob: 5d85c9485a073a8df4467c84be5813eff751eed2 [file] [log] [blame]
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -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
21#ifndef _CCNX_PIT_ENTRY_H_
22#define _CCNX_PIT_ENTRY_H_
23
24#include "ns3/ptr.h"
Alexander Afanasyev11f7bb42012-07-09 17:06:30 -070025#include "ns3/simple-ref-count.h"
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070026
27#include "ccnx-pit-entry-incoming-face.h"
28#include "ccnx-pit-entry-outgoing-face.h"
29#include "ccnx-fib.h"
30
31#include <boost/multi_index_container.hpp>
32#include <boost/multi_index/tag.hpp>
33#include <boost/multi_index/ordered_index.hpp>
Alexander Afanasyev9a989702012-06-29 17:44:00 -070034// #include <boost/multi_index/composite_key.hpp>
35// #include <boost/multi_index/hashed_index.hpp>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070036#include <boost/multi_index/member.hpp>
Alexander Afanasyev9a989702012-06-29 17:44:00 -070037// #include <boost/multi_index/mem_fun.hpp>
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080038#include <set>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070039
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070040namespace ns3 {
41
42class CcnxFace;
43class CcnxNameComponents;
Alexander Afanasyev36b45772012-07-10 16:57:42 -070044class CcnxPit;
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070045
Alexander Afanasyev6315ef72012-06-01 20:56:31 -070046/// @cond include_hidden
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070047namespace __ccnx_private
48{
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080049class i_retx {};
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070050}
Alexander Afanasyev6315ef72012-06-01 20:56:31 -070051/// @endcond
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070052
53/**
54 * \ingroup ccnx
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070055 * \brief Typedef for indexed face container of CcnxPitEntryOutgoingFace
56 *
57 * Indexes:
58 * - by face (may be it will be possible to replace with just the std::map)
59 */
60struct CcnxPitEntryOutgoingFaceContainer
61{
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070062 /// @cond include_hidden
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070063 typedef boost::multi_index::multi_index_container<
64 CcnxPitEntryOutgoingFace,
65 boost::multi_index::indexed_by<
66 // For fast access to elements using CcnxFace
67 boost::multi_index::ordered_unique<
68 boost::multi_index::tag<__ccnx_private::i_face>,
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -070069 boost::multi_index::member<CcnxPitEntryOutgoingFace, Ptr<CcnxFace>, &CcnxPitEntryOutgoingFace::m_face>
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080070 >,
71 boost::multi_index::ordered_non_unique<
72 boost::multi_index::tag<__ccnx_private::i_retx>,
73 boost::multi_index::member<CcnxPitEntryOutgoingFace, uint32_t, &CcnxPitEntryOutgoingFace::m_retxCount>
74 >
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070075 >
76 > type;
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070077 /// @endcond
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070078};
79
80
81/**
82 * \ingroup ccnx
83 * \brief structure for PIT entry
Alexander Afanasyev36b45772012-07-10 16:57:42 -070084 *
85 * All set-methods are virtual, in case index rearrangement is necessary in the derived classes
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070086 */
Alexander Afanasyev11f7bb42012-07-09 17:06:30 -070087struct CcnxPitEntry : SimpleRefCount<CcnxPitEntry>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070088{
89public:
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -070090 typedef std::set< CcnxPitEntryIncomingFace > in_container; ///< @brief incoming faces container type
91 typedef in_container::iterator in_iterator; ///< @brief iterator to incoming faces
92
93 typedef CcnxPitEntryOutgoingFaceContainer::type out_container; ///< @brief outgoing faces container type
94 typedef out_container::iterator out_iterator; ///< @brief iterator to outgoing faces
95
96 typedef std::set< uint32_t > nonce_container; ///< @brief nonce container type
97
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070098 /**
99 * \brief PIT entry constructor
100 * \param prefix Prefix of the PIT entry
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800101 * \param offsetTime Relative time to the current moment, representing PIT entry lifetime
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700102 * \param fibEntry A FIB entry associated with the PIT entry
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700103 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700104 CcnxPitEntry (CcnxPit &container, Ptr<const CcnxInterestHeader> header, Ptr<CcnxFibEntry> fibEntry);
105
106 /**
107 * @brief Virtual destructor
108 */
109 virtual ~CcnxPitEntry () {}
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700110
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800111 /**
112 * @brief Update lifetime of PIT entry
113 *
114 * This function will update PIT entry lifetime to the maximum of the current lifetime and
115 * the lifetime Simulator::Now () + offsetTime
116 *
117 * @param offsetTime Relative time to the current moment, representing PIT entry lifetime
118 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700119 virtual void
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800120 UpdateLifetime (const Time &offsetTime);
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -0700121
122 /**
123 * @brief Get prefix of the PIT entry
124 */
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800125 const CcnxNameComponents &
126 GetPrefix () const
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800127 { return *m_prefix; }
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700128
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800129 /**
130 * @brief Get current expiration time of the record
131 *
132 * @returns current expiration time of the record
133 */
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700134 const Time &
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800135 GetExpireTime () const
136 { return m_expireTime; }
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700137
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800138 /**
139 * @brief Set expiration time on record as `expireTime` (absolute time)
140 *
141 * @param expireTime absolute simulation time of when the record should expire
142 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700143 virtual void
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700144 SetExpireTime (const Time &expireTime);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800145
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800146 /**
147 * @brief Check if nonce `nonce` for the same prefix has already been seen
148 *
149 * @param nonce Nonce to check
150 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800151 bool
152 IsNonceSeen (uint32_t nonce) const
153 { return m_seenNonces.find (nonce) != m_seenNonces.end (); }
154
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800155 /**
156 * @brief Add `nonce` to the list of seen nonces
157 *
158 * @param nonce nonce to add to the list of seen nonces
159 *
160 * All nonces are stored for the lifetime of the PIT entry
161 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700162 virtual void
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800163 AddSeenNonce (uint32_t nonce)
164 { m_seenNonces.insert (nonce); }
165
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800166 /**
167 * @brief Add `face` to the list of incoming faces
168 *
169 * @param face Face to add to the list of incoming faces
170 * @returns iterator to the added entry
171 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700172 virtual in_iterator
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800173 AddIncoming (Ptr<CcnxFace> face);
174
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800175 /**
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800176 * @brief Remove incoming entry for face `face`
177 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700178 virtual void
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800179 RemoveIncoming (Ptr<CcnxFace> face);
180
181 /**
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800182 * @brief Clear all incoming faces either after all of them were satisfied or NACKed
183 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700184 virtual void
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800185 ClearIncoming ()
186 { m_incoming.clear (); }
187
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800188 /**
189 * @brief Add `face` to the list of outgoing faces
190 *
191 * @param face Face to add to the list of outgoing faces
192 * @returns iterator to the added entry
193 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700194 virtual out_iterator
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800195 AddOutgoing (Ptr<CcnxFace> face);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800196
197 /**
Alexander Afanasyev120bf312011-12-19 01:24:47 -0800198 * @brief Clear all incoming faces either after all of them were satisfied or NACKed
199 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700200 virtual void
Alexander Afanasyev120bf312011-12-19 01:24:47 -0800201 ClearOutgoing ()
202 { m_outgoing.clear (); }
203
204 /**
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800205 * @brief Remove all references to face.
206 *
207 * This method should be called before face is completely removed from the stack.
208 * Face is removed from the lists of incoming and outgoing faces
209 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700210 virtual void
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800211 RemoveAllReferencesToFace (Ptr<CcnxFace> face);
212
Alexander Afanasyev5a595072011-11-25 14:49:07 -0800213 /**
214 * @brief Flag outgoing face as hopeless
215 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700216 virtual void
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700217 SetWaitingInVain (out_iterator face);
Alexander Afanasyev5a595072011-11-25 14:49:07 -0800218
219 /**
220 * @brief Check if all outgoing faces are NACKed
221 */
222 bool
223 AreAllOutgoingInVain () const;
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800224
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -0700225 /**
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800226 * @brief Similar to AreAllOutgoingInVain, but ignores `face`
227 * \see AreAllOutgoingInVain
228 **/
229 bool
230 AreTherePromisingOutgoingFacesExcept (Ptr<CcnxFace> face) const;
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800231
232 /**
233 * @brief Increase maximum limit of allowed retransmission per outgoing face
234 */
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700235 virtual void
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800236 IncreaseAllowedRetxCount ();
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700237
238 Ptr<CcnxFibEntry>
239 GetFibEntry () { return m_fibEntry; };
240
241 const in_container &
242 GetIncoming () const { return m_incoming; }
243
244 const out_container &
245 GetOutgoing () const { return m_outgoing; }
246
247 uint32_t
248 GetMaxRetxCount () const { return m_maxRetxCount; }
249
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700250private:
251 friend std::ostream& operator<< (std::ostream& os, const CcnxPitEntry &entry);
252
Alexander Afanasyev36b45772012-07-10 16:57:42 -0700253protected:
254 CcnxPit &m_container; ///< @brief Reference to the container (to rearrange indexes, if necessary)
255
Alexander Afanasyev11f7bb42012-07-09 17:06:30 -0700256 Ptr<const CcnxNameComponents> m_prefix; ///< \brief Prefix of the PIT entry
257 Ptr<CcnxFibEntry> m_fibEntry; ///< \brief FIB entry related to this prefix
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700258
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700259 nonce_container m_seenNonces; ///< \brief map of nonces that were seen for this prefix
260 in_container m_incoming; ///< \brief container for incoming interests
261 out_container m_outgoing; ///< \brief container for outgoing interests
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700262
263 Time m_expireTime; ///< \brief Time when PIT entry will be removed
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800264
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700265 Time m_lastRetransmission; ///< @brief Last time when number of retransmissions were increased
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800266 uint32_t m_maxRetxCount; ///< @brief Maximum allowed number of retransmissions via outgoing faces
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700267};
268
Alexander Afanasyeva95b7392012-03-09 10:54:10 -0800269std::ostream& operator<< (std::ostream& os, const CcnxPitEntry &entry);
270
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700271} // namespace ns3
272
273#endif // _CCNX_PIT_ENTRY_H_