blob: 52e792149425a070f348bfd3de0ff36c8ea42908 [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
46namespace __ccnx_private
47{
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -070048// class i_face {};
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070049}
50
51/**
52 * \ingroup ccnx
53 * \brief Typedef for indexed face container of CcnxPitEntryIncomingFace
54 *
55 * Indexes:
56 * - by face (may be it will be possible to replace with just the std::map)
57 */
58struct CcnxPitEntryIncomingFaceContainer
59{
60 typedef boost::multi_index::multi_index_container<
61 CcnxPitEntryIncomingFace,
62 boost::multi_index::indexed_by<
63 // For fast access to elements using CcnxFace
64 boost::multi_index::ordered_unique<
65 boost::multi_index::tag<__ccnx_private::i_face>,
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -070066 boost::multi_index::member<CcnxPitEntryIncomingFace, Ptr<CcnxFace>, &CcnxPitEntryIncomingFace::m_face>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070067 >
68 >
69 > type;
70};
71
72/**
73 * \ingroup ccnx
74 * \brief Typedef for indexed face container of CcnxPitEntryOutgoingFace
75 *
76 * Indexes:
77 * - by face (may be it will be possible to replace with just the std::map)
78 */
79struct CcnxPitEntryOutgoingFaceContainer
80{
81 typedef boost::multi_index::multi_index_container<
82 CcnxPitEntryOutgoingFace,
83 boost::multi_index::indexed_by<
84 // For fast access to elements using CcnxFace
85 boost::multi_index::ordered_unique<
86 boost::multi_index::tag<__ccnx_private::i_face>,
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -070087 boost::multi_index::member<CcnxPitEntryOutgoingFace, Ptr<CcnxFace>, &CcnxPitEntryOutgoingFace::m_face>
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -070088 >
89 >
90 > type;
91};
92
93
94/**
95 * \ingroup ccnx
96 * \brief structure for PIT entry
97 */
98struct CcnxPitEntry
99{
100public:
101 /**
102 * \brief PIT entry constructor
103 * \param prefix Prefix of the PIT entry
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700104 * \param fibEntry A FIB entry associated with the PIT entry
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700105 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800106 CcnxPitEntry (Ptr<CcnxNameComponents> prefix, const Time &expireTime, const CcnxFibEntry &fibEntry);
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700107
108 // // Get number of outgoing interests that we're expecting data from
109 // inline size_t numberOfPromisingInterests( ) const;
110
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800111 // const CcnxNameComponents &
112 // GetPrefix () const;
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700113
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800114 /**
115 * @brief Get current expiration time of the record
116 *
117 * @returns current expiration time of the record
118 */
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700119 const Time &
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800120 GetExpireTime () const
121 { return m_expireTime; }
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700122
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800123 /**
124 * @brief Set expiration time on record as `expireTime` (absolute time)
125 *
126 * @param expireTime absolute simulation time of when the record should expire
127 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800128 void
129 SetExpireTime (const Time &expireTime)
130 {
131 m_expireTime = expireTime;
132 }
133
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800134 /**
135 * @brief Check if nonce `nonce` for the same prefix has already been seen
136 *
137 * @param nonce Nonce to check
138 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800139 bool
140 IsNonceSeen (uint32_t nonce) const
141 { return m_seenNonces.find (nonce) != m_seenNonces.end (); }
142
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800143 /**
144 * @brief Add `nonce` to the list of seen nonces
145 *
146 * @param nonce nonce to add to the list of seen nonces
147 *
148 * All nonces are stored for the lifetime of the PIT entry
149 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800150 void
151 AddSeenNonce (uint32_t nonce)
152 { m_seenNonces.insert (nonce); }
153
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800154 /**
155 * @brief Add `face` to the list of incoming faces
156 *
157 * @param face Face to add to the list of incoming faces
158 * @returns iterator to the added entry
159 */
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800160 CcnxPitEntryIncomingFaceContainer::type::iterator
161 AddIncoming (Ptr<CcnxFace> face);
162
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800163 /**
164 * @brief Clear all incoming faces either after all of them were satisfied or NACKed
165 */
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800166 void
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800167 ClearIncoming ()
168 { m_incoming.clear (); }
169
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800170 /**
171 * @brief Add `face` to the list of outgoing faces
172 *
173 * @param face Face to add to the list of outgoing faces
174 * @returns iterator to the added entry
175 */
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800176 CcnxPitEntryOutgoingFaceContainer::type::iterator
177 AddOutgoing (Ptr<CcnxFace> face);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800178
179 /**
180 * @brief Remove all references to face.
181 *
182 * This method should be called before face is completely removed from the stack.
183 * Face is removed from the lists of incoming and outgoing faces
184 */
185 void
186 RemoveAllReferencesToFace (Ptr<CcnxFace> face);
187
188protected:
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800189
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700190private:
191 friend std::ostream& operator<< (std::ostream& os, const CcnxPitEntry &entry);
192
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700193public:
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700194 Ptr<CcnxNameComponents> m_prefix; ///< \brief Prefix of the PIT entry
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700195 const CcnxFibEntry &m_fibEntry; ///< \brief FIB entry related to this prefix
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800196 std::set<uint32_t> m_seenNonces; ///< \brief map of nonces that were seen for this prefix
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700197
198 CcnxPitEntryIncomingFaceContainer::type m_incoming; ///< \brief container for incoming interests
199 CcnxPitEntryOutgoingFaceContainer::type m_outgoing; ///< \brief container for outgoing interests
200
201 Time m_expireTime; ///< \brief Time when PIT entry will be removed
202 bool m_timerExpired; ///< \brief flag indicating that PIT timer has expired
203 int m_counterExpirations; ///< \brief whether timer is expired (+ number of times timer expired)
204};
205
Alexander Afanasyeva98cdd22011-08-29 17:32:37 -0700206} // namespace ns3
207
208#endif // _CCNX_PIT_ENTRY_H_