Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -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: Ilya Moiseenko <iliamo@cs.ucla.edu> |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 19 | * Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #ifndef CCNX_CONSUMER_H |
| 23 | #define CCNX_CONSUMER_H |
| 24 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 25 | #include "ccnx-app.h" |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame] | 26 | #include "ns3/random-variable.h" |
| 27 | #include "ns3/ccnx-name-components.h" |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 28 | #include "ns3/nstime.h" |
Alexander Afanasyev | 011b859 | 2011-12-21 14:45:27 -0800 | [diff] [blame] | 29 | #include "ns3/data-rate.h" |
Ilya Moiseenko | 2c069b9 | 2012-01-13 18:39:28 -0800 | [diff] [blame] | 30 | #include "../../internet/model/rtt-estimator.h" |
| 31 | //#include "ns3/internet-module.h" |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 32 | |
| 33 | #include <set> |
| 34 | |
| 35 | #include <boost/multi_index_container.hpp> |
| 36 | #include <boost/multi_index/tag.hpp> |
| 37 | #include <boost/multi_index/ordered_index.hpp> |
| 38 | #include <boost/multi_index/member.hpp> |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 39 | |
| 40 | namespace ns3 |
| 41 | { |
| 42 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 43 | /** |
| 44 | * @ingroup ccnx |
| 45 | * \brief CCNx application for sending out Interest packets |
| 46 | */ |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 47 | class CcnxConsumer: public CcnxApp |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 48 | { |
| 49 | public: |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 50 | static TypeId GetTypeId (); |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 51 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 52 | /** |
| 53 | * \brief Default constructor |
| 54 | * Sets up randomizer function and packet sequence number |
| 55 | */ |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 56 | CcnxConsumer (); |
Alexander Afanasyev | 59e6771 | 2012-02-07 11:49:34 -0800 | [diff] [blame] | 57 | virtual ~CcnxConsumer () {}; |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 58 | |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 59 | // From CcnxApp |
| 60 | // virtual void |
| 61 | // OnInterest (const Ptr<const CcnxInterestHeader> &interest); |
| 62 | |
| 63 | virtual void |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 64 | OnNack (const Ptr<const CcnxInterestHeader> &interest, Ptr<Packet> packet); |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 65 | |
| 66 | virtual void |
| 67 | OnContentObject (const Ptr<const CcnxContentObjectHeader> &contentObject, |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 68 | Ptr<Packet> payload); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 69 | |
Alexander Afanasyev | 359bfb7 | 2012-01-09 18:42:50 -0800 | [diff] [blame] | 70 | virtual void |
| 71 | OnTimeout (uint32_t sequenceNumber); |
Alexander Afanasyev | 029d38d | 2012-01-09 13:50:50 -0800 | [diff] [blame] | 72 | |
| 73 | // Simulator::Schedule doesn't work with protected members??? |
| 74 | void |
| 75 | SendPacket (); |
| 76 | |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 77 | protected: |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 78 | // from CcnxApp |
| 79 | virtual void |
| 80 | StartApplication (); |
| 81 | |
| 82 | virtual void |
| 83 | StopApplication (); |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 84 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 85 | /** |
| 86 | * \brief Constructs the Interest packet and sends it using a callback to the underlying CCNx protocol |
| 87 | */ |
Alexander Afanasyev | 029d38d | 2012-01-09 13:50:50 -0800 | [diff] [blame] | 88 | virtual void |
| 89 | ScheduleNextPacket () = 0; |
Alexander Afanasyev | 011b859 | 2011-12-21 14:45:27 -0800 | [diff] [blame] | 90 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 91 | /** |
| 92 | * \brief Checks if the packet need to be retransmitted becuase of retransmission timer expiration |
| 93 | */ |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 94 | void |
| 95 | CheckRetxTimeout (); |
| 96 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 97 | /** |
| 98 | * \brief Modifies the frequency of checking the retransmission timeouts |
| 99 | * \param retxTimer Timeout defining how frequent retransmission timeouts should be checked |
| 100 | */ |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 101 | void |
| 102 | SetRetxTimer (Time retxTimer); |
| 103 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 104 | /** |
| 105 | * \brief Returns the frequency of checking the retransmission timeouts |
| 106 | * \return Timeout defining how frequent retransmission timeouts should be checked |
| 107 | */ |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 108 | Time |
| 109 | GetRetxTimer () const; |
| 110 | |
| 111 | protected: |
Alexander Afanasyev | 011b859 | 2011-12-21 14:45:27 -0800 | [diff] [blame] | 112 | UniformVariable m_rand; // nonce generator |
Alexander Afanasyev | 029d38d | 2012-01-09 13:50:50 -0800 | [diff] [blame] | 113 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 114 | uint32_t m_seq; |
Alexander Afanasyev | b3e4b85 | 2011-12-23 15:58:20 -0800 | [diff] [blame] | 115 | uint32_t m_seqMax; // maximum number of sequence number |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 116 | EventId m_sendEvent; // Eventid of pending "send packet" event |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 117 | Time m_retxTimer; |
| 118 | EventId m_retxEvent; // Event to check whether or not retransmission should be performed |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 119 | |
Alexander Afanasyev | 359bfb7 | 2012-01-09 18:42:50 -0800 | [diff] [blame] | 120 | Ptr<RttEstimator> m_rtt; |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 121 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 122 | Time m_offTime; ///< \brief Time interval between packets |
| 123 | CcnxNameComponents m_interestName; ///< \brief CcnxName of the Interest (use CcnxNameComponents) |
| 124 | Time m_interestLifeTime; ///< \brief LifeTime for interest packet |
| 125 | int32_t m_minSuffixComponents; ///< \brief MinSuffixComponents. See CcnxInterestHeader for more information |
| 126 | int32_t m_maxSuffixComponents; ///< \brief MaxSuffixComponents. See CcnxInterestHeader for more information |
| 127 | bool m_childSelector; ///< \brief ChildSelector. See CcnxInterestHeader for more information |
| 128 | CcnxNameComponents m_exclude; ///< \brief Exclude. See CcnxInterestHeader for more information |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 129 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 130 | /** |
| 131 | * \struct This struct contains sequence numbers of packets to be retransmitted |
| 132 | */ |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 133 | struct RetxSeqsContainer : |
| 134 | public std::set<uint32_t> { }; |
| 135 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 136 | RetxSeqsContainer m_retxSeqs; ///< \brief ordered set of sequence numbers to be retransmitted |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 137 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 138 | /** |
| 139 | * \struct This struct contains a pair of packet sequence number and its timeout |
| 140 | */ |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 141 | struct SeqTimeout |
| 142 | { |
| 143 | SeqTimeout (uint32_t _seq, Time _time) : seq (_seq), time (_time) { } |
| 144 | |
| 145 | uint32_t seq; |
| 146 | Time time; |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | class i_seq { }; |
| 150 | class i_timestamp { }; |
| 151 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 152 | /** |
| 153 | * \struct This struct contains a multi-index for the set of SeqTimeout structs |
| 154 | */ |
Alexander Afanasyev | 781ea81 | 2011-12-15 22:42:09 -0800 | [diff] [blame] | 155 | struct SeqTimeoutsContainer : |
| 156 | public boost::multi_index::multi_index_container< |
| 157 | SeqTimeout, |
| 158 | boost::multi_index::indexed_by< |
| 159 | boost::multi_index::ordered_unique< |
| 160 | boost::multi_index::tag<i_seq>, |
| 161 | boost::multi_index::member<SeqTimeout, uint32_t, &SeqTimeout::seq> |
| 162 | >, |
| 163 | boost::multi_index::ordered_non_unique< |
| 164 | boost::multi_index::tag<i_timestamp>, |
| 165 | boost::multi_index::member<SeqTimeout, Time, &SeqTimeout::time> |
| 166 | > |
| 167 | > |
| 168 | > { } ; |
| 169 | |
Ilya Moiseenko | 956d054 | 2012-01-02 15:26:40 -0800 | [diff] [blame] | 170 | SeqTimeoutsContainer m_seqTimeouts; ///< \brief multi-index for the set of SeqTimeout structs |
Alexander Afanasyev | 1ec705f | 2012-01-23 12:35:10 -0800 | [diff] [blame] | 171 | SeqTimeoutsContainer m_seqLifetimes; |
Alexander Afanasyev | 6bff0df | 2012-01-19 17:51:52 -0800 | [diff] [blame] | 172 | |
| 173 | TracedCallback<Ptr<Node>, Ptr<Node>, uint32_t, uint32_t > m_pathWeightsTrace; |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 174 | }; |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 175 | |
| 176 | } // namespace ns3 |
| 177 | |
Ilya Moiseenko | 8196d2e | 2011-08-29 13:03:22 -0700 | [diff] [blame] | 178 | #endif |