blob: 9f2ae536f780a0964eb005b91ba8c468b568e857 [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"
Ilya Moiseenko2c069b92012-01-13 18:39:28 -080030#include "../../internet/model/rtt-estimator.h"
31//#include "ns3/internet-module.h"
Alexander Afanasyev781ea812011-12-15 22:42:09 -080032
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 Moiseenko8196d2e2011-08-29 13:03:22 -070039
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -080040#include <boost/thread/mutex.hpp>
41
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070042namespace ns3
43{
44
Ilya Moiseenko956d0542012-01-02 15:26:40 -080045/**
46 * @ingroup ccnx
47 * \brief CCNx application for sending out Interest packets
48 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080049class CcnxConsumer: public CcnxApp
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070050{
51public:
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070052 static TypeId GetTypeId ();
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070053
Ilya Moiseenko956d0542012-01-02 15:26:40 -080054 /**
55 * \brief Default constructor
56 * Sets up randomizer function and packet sequence number
57 */
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070058 CcnxConsumer ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070059
Alexander Afanasyev781ea812011-12-15 22:42:09 -080060 // From CcnxApp
61 // virtual void
62 // OnInterest (const Ptr<const CcnxInterestHeader> &interest);
63
64 virtual void
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080065 OnNack (const Ptr<const CcnxInterestHeader> &interest, Ptr<Packet> packet);
Alexander Afanasyev781ea812011-12-15 22:42:09 -080066
67 virtual void
68 OnContentObject (const Ptr<const CcnxContentObjectHeader> &contentObject,
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080069 Ptr<Packet> payload);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080070
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080071 virtual void
72 OnTimeout (uint32_t sequenceNumber);
Alexander Afanasyev029d38d2012-01-09 13:50:50 -080073
74 // Simulator::Schedule doesn't work with protected members???
75 void
76 SendPacket ();
77
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070078protected:
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080079 // from CcnxApp
80 virtual void
81 StartApplication ();
82
83 virtual void
84 StopApplication ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070085
Ilya Moiseenko956d0542012-01-02 15:26:40 -080086 /**
87 * \brief Constructs the Interest packet and sends it using a callback to the underlying CCNx protocol
88 */
Alexander Afanasyev029d38d2012-01-09 13:50:50 -080089 virtual void
90 ScheduleNextPacket () = 0;
Alexander Afanasyev011b8592011-12-21 14:45:27 -080091
Ilya Moiseenko956d0542012-01-02 15:26:40 -080092 /**
93 * \brief Checks if the packet need to be retransmitted becuase of retransmission timer expiration
94 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -080095 void
96 CheckRetxTimeout ();
97
Ilya Moiseenko956d0542012-01-02 15:26:40 -080098 /**
99 * \brief Modifies the frequency of checking the retransmission timeouts
100 * \param retxTimer Timeout defining how frequent retransmission timeouts should be checked
101 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800102 void
103 SetRetxTimer (Time retxTimer);
104
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800105 /**
106 * \brief Returns the frequency of checking the retransmission timeouts
107 * \return Timeout defining how frequent retransmission timeouts should be checked
108 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800109 Time
110 GetRetxTimer () const;
111
112protected:
Alexander Afanasyev011b8592011-12-21 14:45:27 -0800113 UniformVariable m_rand; // nonce generator
Alexander Afanasyev029d38d2012-01-09 13:50:50 -0800114
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800115 uint32_t m_seq;
Alexander Afanasyevb3e4b852011-12-23 15:58:20 -0800116 uint32_t m_seqMax; // maximum number of sequence number
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800117 EventId m_sendEvent; // Eventid of pending "send packet" event
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800118 Time m_retxTimer;
119 EventId m_retxEvent; // Event to check whether or not retransmission should be performed
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800120
Alexander Afanasyev359bfb72012-01-09 18:42:50 -0800121 Ptr<RttEstimator> m_rtt;
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700122
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800123 Time m_offTime; ///< \brief Time interval between packets
124 CcnxNameComponents m_interestName; ///< \brief CcnxName of the Interest (use CcnxNameComponents)
125 Time m_interestLifeTime; ///< \brief LifeTime for interest packet
126 int32_t m_minSuffixComponents; ///< \brief MinSuffixComponents. See CcnxInterestHeader for more information
127 int32_t m_maxSuffixComponents; ///< \brief MaxSuffixComponents. See CcnxInterestHeader for more information
128 bool m_childSelector; ///< \brief ChildSelector. See CcnxInterestHeader for more information
129 CcnxNameComponents m_exclude; ///< \brief Exclude. See CcnxInterestHeader for more information
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800130
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800131 /**
132 * \struct This struct contains sequence numbers of packets to be retransmitted
133 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800134 struct RetxSeqsContainer :
135 public std::set<uint32_t> { };
136
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800137 RetxSeqsContainer m_retxSeqs; ///< \brief ordered set of sequence numbers to be retransmitted
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800138
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800139 /**
140 * \struct This struct contains a pair of packet sequence number and its timeout
141 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800142 struct SeqTimeout
143 {
144 SeqTimeout (uint32_t _seq, Time _time) : seq (_seq), time (_time) { }
145
146 uint32_t seq;
147 Time time;
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800148 };
149
150 class i_seq { };
151 class i_timestamp { };
152
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800153 /**
154 * \struct This struct contains a multi-index for the set of SeqTimeout structs
155 */
Alexander Afanasyev781ea812011-12-15 22:42:09 -0800156 struct SeqTimeoutsContainer :
157 public boost::multi_index::multi_index_container<
158 SeqTimeout,
159 boost::multi_index::indexed_by<
160 boost::multi_index::ordered_unique<
161 boost::multi_index::tag<i_seq>,
162 boost::multi_index::member<SeqTimeout, uint32_t, &SeqTimeout::seq>
163 >,
164 boost::multi_index::ordered_non_unique<
165 boost::multi_index::tag<i_timestamp>,
166 boost::multi_index::member<SeqTimeout, Time, &SeqTimeout::time>
167 >
168 >
169 > { } ;
170
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800171 SeqTimeoutsContainer m_seqTimeouts; ///< \brief multi-index for the set of SeqTimeout structs
172 boost::mutex m_seqTimeoutsGuard; ///< \brief mutex for safe work with the m_seqTimeouts
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -0800173
Ilya Moiseenko956d0542012-01-02 15:26:40 -0800174 /**
175 * \brief A trace that is called after each transmitted Interest packet
176 */
Alexander Afanasyevbdc0d982011-12-16 01:15:26 -0800177 TracedCallback<Ptr<const CcnxInterestHeader>,
178 Ptr<CcnxApp>, Ptr<CcnxFace> > m_transmittedInterests;
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -0700179};
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700180
181} // namespace ns3
182
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -0700183#endif