blob: 6c69f99e3f191e08ccd7a250271fb2e8b19544cc [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"
25
26#include "ccnx-pit-entry-incoming-face.h"
27#include "ccnx-pit-entry-outgoing-face.h"
28#include "ccnx-fib.h"
29
30#include <boost/multi_index_container.hpp>
31#include <boost/multi_index/tag.hpp>
32#include <boost/multi_index/ordered_index.hpp>
33#include <boost/multi_index/composite_key.hpp>
34#include <boost/multi_index/hashed_index.hpp>
35#include <boost/multi_index/member.hpp>
36#include <boost/multi_index/mem_fun.hpp>
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080037#include <set>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070038
39#include <iostream>
40
41namespace ns3 {
42
43class CcnxFace;
44class CcnxNameComponents;
45
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
55 * \brief Typedef for indexed face container of CcnxPitEntryIncomingFace
56 *
57 * Indexes:
58 * - by face (may be it will be possible to replace with just the std::map)
59 */
60struct CcnxPitEntryIncomingFaceContainer
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 CcnxPitEntryIncomingFace,
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<CcnxPitEntryIncomingFace, Ptr<CcnxFace>, &CcnxPitEntryIncomingFace::m_face>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070070 >
71 >
72 > type;
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070073 /// @endcond
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070074};
75
76/**
77 * \ingroup ccnx
78 * \brief Typedef for indexed face container of CcnxPitEntryOutgoingFace
79 *
80 * Indexes:
81 * - by face (may be it will be possible to replace with just the std::map)
82 */
83struct CcnxPitEntryOutgoingFaceContainer
84{
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070085 /// @cond include_hidden
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070086 typedef boost::multi_index::multi_index_container<
87 CcnxPitEntryOutgoingFace,
88 boost::multi_index::indexed_by<
89 // For fast access to elements using CcnxFace
90 boost::multi_index::ordered_unique<
91 boost::multi_index::tag<__ccnx_private::i_face>,
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -070092 boost::multi_index::member<CcnxPitEntryOutgoingFace, Ptr<CcnxFace>, &CcnxPitEntryOutgoingFace::m_face>
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080093 >,
94 boost::multi_index::ordered_non_unique<
95 boost::multi_index::tag<__ccnx_private::i_retx>,
96 boost::multi_index::member<CcnxPitEntryOutgoingFace, uint32_t, &CcnxPitEntryOutgoingFace::m_retxCount>
97 >
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070098 >
99 > type;
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -0700100 /// @endcond
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700101};
102
103
104/**
105 * \ingroup ccnx
106 * \brief structure for PIT entry
107 */
108struct CcnxPitEntry
109{
110public:
111 /**
112 * \brief PIT entry constructor
113 * \param prefix Prefix of the PIT entry
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800114 * \param offsetTime Relative time to the current moment, representing PIT entry lifetime
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700115 * \param fibEntry A FIB entry associated with the PIT entry
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700116 */
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800117 CcnxPitEntry (Ptr<CcnxNameComponents> prefix, const Time &offsetTime, const CcnxFibEntry &fibEntry);
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700118
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800119 /**
120 * @brief Update lifetime of PIT entry
121 *
122 * This function will update PIT entry lifetime to the maximum of the current lifetime and
123 * the lifetime Simulator::Now () + offsetTime
124 *
125 * @param offsetTime Relative time to the current moment, representing PIT entry lifetime
126 */
127 void
128 UpdateLifetime (const Time &offsetTime);
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -0700129
130 /**
131 * @brief Get prefix of the PIT entry
132 */
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800133 const CcnxNameComponents &
134 GetPrefix () const
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800135 { return *m_prefix; }
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700136
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800137 /**
138 * @brief Get current expiration time of the record
139 *
140 * @returns current expiration time of the record
141 */
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700142 const Time &
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800143 GetExpireTime () const
144 { return m_expireTime; }
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700145
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800146 /**
147 * @brief Set expiration time on record as `expireTime` (absolute time)
148 *
149 * @param expireTime absolute simulation time of when the record should expire
150 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800151 void
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700152 SetExpireTime (const Time &expireTime);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800153
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800154 /**
155 * @brief Check if nonce `nonce` for the same prefix has already been seen
156 *
157 * @param nonce Nonce to check
158 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800159 bool
160 IsNonceSeen (uint32_t nonce) const
161 { return m_seenNonces.find (nonce) != m_seenNonces.end (); }
162
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800163 /**
164 * @brief Add `nonce` to the list of seen nonces
165 *
166 * @param nonce nonce to add to the list of seen nonces
167 *
168 * All nonces are stored for the lifetime of the PIT entry
169 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800170 void
171 AddSeenNonce (uint32_t nonce)
172 { m_seenNonces.insert (nonce); }
173
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800174 /**
175 * @brief Add `face` to the list of incoming faces
176 *
177 * @param face Face to add to the list of incoming faces
178 * @returns iterator to the added entry
179 */
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800180 CcnxPitEntryIncomingFaceContainer::type::iterator
181 AddIncoming (Ptr<CcnxFace> face);
182
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800183 /**
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800184 * @brief Remove incoming entry for face `face`
185 */
186 void
187 RemoveIncoming (Ptr<CcnxFace> face);
188
189 /**
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800190 * @brief Clear all incoming faces either after all of them were satisfied or NACKed
191 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800192 void
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800193 ClearIncoming ()
194 { m_incoming.clear (); }
195
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800196 /**
197 * @brief Add `face` to the list of outgoing faces
198 *
199 * @param face Face to add to the list of outgoing faces
200 * @returns iterator to the added entry
201 */
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800202 CcnxPitEntryOutgoingFaceContainer::type::iterator
203 AddOutgoing (Ptr<CcnxFace> face);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800204
205 /**
Alexander Afanasyev120bf312011-12-19 01:24:47 -0800206 * @brief Clear all incoming faces either after all of them were satisfied or NACKed
207 */
208 void
209 ClearOutgoing ()
210 { m_outgoing.clear (); }
211
212 /**
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800213 * @brief Remove all references to face.
214 *
215 * This method should be called before face is completely removed from the stack.
216 * Face is removed from the lists of incoming and outgoing faces
217 */
218 void
219 RemoveAllReferencesToFace (Ptr<CcnxFace> face);
220
Alexander Afanasyev5a595072011-11-25 14:49:07 -0800221 /**
222 * @brief Flag outgoing face as hopeless
223 */
224 void
225 SetWaitingInVain (CcnxPitEntryOutgoingFaceContainer::type::iterator face);
226
227 /**
228 * @brief Check if all outgoing faces are NACKed
229 */
230 bool
231 AreAllOutgoingInVain () const;
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800232
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -0700233 /**
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800234 * @brief Similar to AreAllOutgoingInVain, but ignores `face`
235 * \see AreAllOutgoingInVain
236 **/
237 bool
238 AreTherePromisingOutgoingFacesExcept (Ptr<CcnxFace> face) const;
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800239
240 /**
241 * @brief Increase maximum limit of allowed retransmission per outgoing face
242 */
243 void
244 IncreaseAllowedRetxCount ();
Alexander Afanasyev5a595072011-11-25 14:49:07 -0800245
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800246protected:
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800247
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700248private:
249 friend std::ostream& operator<< (std::ostream& os, const CcnxPitEntry &entry);
Alexander Afanasyev07827182011-12-13 01:07:32 -0800250 /**
251 * \brief Default constructor
252 */
253 CcnxPitEntry () : m_fibEntry(*((CcnxFibEntry*)0)) {};
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700254
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700255public:
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700256 Ptr<CcnxNameComponents> m_prefix; ///< \brief Prefix of the PIT entry
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700257 const CcnxFibEntry &m_fibEntry; ///< \brief FIB entry related to this prefix
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800258 std::set<uint32_t> m_seenNonces; ///< \brief map of nonces that were seen for this prefix
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700259
260 CcnxPitEntryIncomingFaceContainer::type m_incoming; ///< \brief container for incoming interests
261 CcnxPitEntryOutgoingFaceContainer::type m_outgoing; ///< \brief container for outgoing interests
262
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_