blob: 4bffbafc293c20ae2795a7b1fda7836332011be1 [file] [log] [blame]
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -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: Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -080019 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070020 */
21
22#ifndef CCNX_CONSUMER_H
23#define CCNX_CONSUMER_H
24
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080025#include "ccnx-app.h"
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080026#include "ns3/random-variable.h"
27#include "ns3/ccnx-name-components.h"
Alexander Afanasyev781ea812011-12-15 22:42:09 -080028#include "ns3/nstime.h"
Alexander Afanasyev011b8592011-12-21 14:45:27 -080029#include "ns3/data-rate.h"
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080030#include "ns3/rtt-estimator.h"
Alexander Afanasyev781ea812011-12-15 22:42:09 -080031
32#include <set>
33
34#include <boost/multi_index_container.hpp>
35#include <boost/multi_index/tag.hpp>
36#include <boost/multi_index/ordered_index.hpp>
37#include <boost/multi_index/member.hpp>
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070038
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -080039#include <boost/thread/mutex.hpp>
40
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070041namespace ns3
42{
43
Ilya Moiseenko956d0542012-01-02 15:26:40 -080044/**
45 * @ingroup ccnx
46 * \brief CCNx application for sending out Interest packets
47 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080048class CcnxConsumer: public CcnxApp
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070049{
50public:
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070051 static TypeId GetTypeId ();
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070052
Ilya Moiseenko956d0542012-01-02 15:26:40 -080053 /**
54 * \brief Default constructor
55 * Sets up randomizer function and packet sequence number
56 */
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070057 CcnxConsumer ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070058
Alexander Afanasyev781ea812011-12-15 22:42:09 -080059 // From CcnxApp
60 // virtual void
61 // OnInterest (const Ptr<const CcnxInterestHeader> &interest);
62
63 virtual void
64 OnNack (const Ptr<const CcnxInterestHeader> &interest);
65
66 virtual void
67 OnContentObject (const Ptr<const CcnxContentObjectHeader> &contentObject,
68 const Ptr<const Packet> &payload);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080069
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080070 virtual void
71 OnTimeout (uint32_t sequenceNumber);
Alexander Afanasyev029d38d2012-01-09 13:50:50 -080072
73 // Simulator::Schedule doesn't work with protected members???
74 void
75 SendPacket ();
76
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070077protected:
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080078 // from CcnxApp
79 virtual void
80 StartApplication ();
81
82 virtual void
83 StopApplication ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070084
Ilya Moiseenko956d0542012-01-02 15:26:40 -080085 /**
86 * \brief Constructs the Interest packet and sends it using a callback to the underlying CCNx protocol
87 */
Alexander Afanasyev029d38d2012-01-09 13:50:50 -080088 virtual void
89 ScheduleNextPacket () = 0;
Alexander Afanasyev011b8592011-12-21 14:45:27 -080090
Ilya Moiseenko956d0542012-01-02 15:26:40 -080091 /**
92 * \brief Checks if the packet need to be retransmitted becuase of retransmission timer expiration
93 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -080094 void
95 CheckRetxTimeout ();
96
Ilya Moiseenko956d0542012-01-02 15:26:40 -080097 /**
98 * \brief Modifies the frequency of checking the retransmission timeouts
99 * \param retxTimer Timeout defining how frequent retransmission timeouts should be checked
100 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800101 void
102 SetRetxTimer (Time retxTimer);
103
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800104 /**
105 * \brief Returns the frequency of checking the retransmission timeouts
106 * \return Timeout defining how frequent retransmission timeouts should be checked
107 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800108 Time
109 GetRetxTimer () const;
110
Alexander Afanasyev029d38d2012-01-09 13:50:50 -0800111 virtual void
112 SetPayloadSize (uint32_t payload);
113
114 uint32_t
115 GetPayloadSize () const;
116
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800117 double
118 GetMaxSize () const;
119
120 void
121 SetMaxSize (double size);
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800122
123protected:
Alexander Afanasyev011b8592011-12-21 14:45:27 -0800124 UniformVariable m_rand; // nonce generator
Alexander Afanasyev011b8592011-12-21 14:45:27 -0800125 uint32_t m_payloadSize; // expected payload size
Alexander Afanasyev029d38d2012-01-09 13:50:50 -0800126
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800127 uint32_t m_seq;
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800128 uint32_t m_seqMax; // maximum number of sequence number
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800129 EventId m_sendEvent; // Eventid of pending "send packet" event
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800130 Time m_retxTimer;
131 EventId m_retxEvent; // Event to check whether or not retransmission should be performed
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800132
Alexander Afanasyev359bfb72012-01-09 18:42:50 -0800133 Ptr<RttEstimator> m_rtt;
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700134
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800135 Time m_offTime; ///< \brief Time interval between packets
136 CcnxNameComponents m_interestName; ///< \brief CcnxName of the Interest (use CcnxNameComponents)
137 Time m_interestLifeTime; ///< \brief LifeTime for interest packet
138 int32_t m_minSuffixComponents; ///< \brief MinSuffixComponents. See CcnxInterestHeader for more information
139 int32_t m_maxSuffixComponents; ///< \brief MaxSuffixComponents. See CcnxInterestHeader for more information
140 bool m_childSelector; ///< \brief ChildSelector. See CcnxInterestHeader for more information
141 CcnxNameComponents m_exclude; ///< \brief Exclude. See CcnxInterestHeader for more information
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800142
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800143 /**
144 * \struct This struct contains sequence numbers of packets to be retransmitted
145 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800146 struct RetxSeqsContainer :
147 public std::set<uint32_t> { };
148
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800149 RetxSeqsContainer m_retxSeqs; ///< \brief ordered set of sequence numbers to be retransmitted
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800150
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800151 /**
152 * \struct This struct contains a pair of packet sequence number and its timeout
153 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800154 struct SeqTimeout
155 {
156 SeqTimeout (uint32_t _seq, Time _time) : seq (_seq), time (_time) { }
157
158 uint32_t seq;
159 Time time;
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800160 };
161
162 class i_seq { };
163 class i_timestamp { };
164
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800165 /**
166 * \struct This struct contains a multi-index for the set of SeqTimeout structs
167 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800168 struct SeqTimeoutsContainer :
169 public boost::multi_index::multi_index_container<
170 SeqTimeout,
171 boost::multi_index::indexed_by<
172 boost::multi_index::ordered_unique<
173 boost::multi_index::tag<i_seq>,
174 boost::multi_index::member<SeqTimeout, uint32_t, &SeqTimeout::seq>
175 >,
176 boost::multi_index::ordered_non_unique<
177 boost::multi_index::tag<i_timestamp>,
178 boost::multi_index::member<SeqTimeout, Time, &SeqTimeout::time>
179 >
180 >
181 > { } ;
182
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800183 SeqTimeoutsContainer m_seqTimeouts; ///< \brief multi-index for the set of SeqTimeout structs
184 boost::mutex m_seqTimeoutsGuard; ///< \brief mutex for safe work with the m_seqTimeouts
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -0800185
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800186 /**
187 * \brief A trace that is called after each transmitted Interest packet
188 */
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -0800189 TracedCallback<Ptr<const CcnxInterestHeader>,
190 Ptr<CcnxApp>, Ptr<CcnxFace> > m_transmittedInterests;
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -0700191};
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700192
193} // namespace ns3
194
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -0700195#endif