blob: 2057123298b26365b96f7aec44ed02e5177252a2 [file] [log] [blame]
Alexander Afanasyev359bfb72012-01-09 18:42:50 -08001/* -*- 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>
19 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
20 */
21
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070022#ifndef NDN_CONSUMER_WINDOW_H
23#define NDN_CONSUMER_WINDOW_H
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080024
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070025#include "ndn-consumer.h"
Alexander Afanasyeve4c2ece2012-01-11 10:44:40 -080026#include "ns3/traced-value.h"
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080027
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070028namespace ns3 {
29namespace ndn {
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080030
31/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070032 * @ingroup ndn
33 * \brief Ndn application for sending out Interest packets (window-based)
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070034 *
35 * !!! ATTENTION !!! This is highly experimental and relies on experimental features of the simulator.
36 * Behavior may be unpredictable if used incorrectly.
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080037 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070038class ConsumerWindow: public Consumer
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080039{
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080040public:
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080041 static TypeId GetTypeId ();
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080042
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080043 /**
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080044 * \brief Default constructor
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080045 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070046 ConsumerWindow ();
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080047
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070048 // From App
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080049 // virtual void
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070050 // OnInterest (const Ptr<const Interest> &interest);
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080051
52 virtual void
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070053 OnNack (const Ptr<const Interest> &interest, Ptr<Packet> payload);
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080054
55 virtual void
Alexander Afanasyeveae83ee2013-03-15 15:01:10 -070056 OnContentObject (const Ptr<const ContentObject> &contentObject,
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080057 Ptr<Packet> payload);
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080058
59 virtual void
60 OnTimeout (uint32_t sequenceNumber);
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080061
Alexander Afanasyev79b2fb32013-04-12 11:24:55 -070062 virtual void
63 WillSendOutInterest (uint32_t sequenceNumber);
64
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080065protected:
66 /**
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070067 * \brief Constructs the Interest packet and sends it using a callback to the underlying NDN protocol
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080068 */
69 virtual void
70 ScheduleNextPacket ();
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080071
Alexander Afanasyev359bfb72012-01-09 18:42:50 -080072private:
73 virtual void
74 SetWindow (uint32_t window);
75
76 uint32_t
77 GetWindow () const;
Alexander Afanasyevb7ad2322012-01-17 22:54:49 -080078
79 virtual void
80 SetPayloadSize (uint32_t payload);
81
82 uint32_t
83 GetPayloadSize () const;
84
85 double
86 GetMaxSize () const;
87
88 void
89 SetMaxSize (double size);
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080090
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070091private:
Alexander Afanasyevb7ad2322012-01-17 22:54:49 -080092 uint32_t m_payloadSize; // expected payload size
93 double m_maxSize; // max size to request
94
Alexander Afanasyevd1f7c7b2013-01-31 13:34:37 -080095 uint32_t m_initialWindow;
96 bool m_setInitialWindowOnTimeout;
97
Alexander Afanasyeve4c2ece2012-01-11 10:44:40 -080098 TracedValue<uint32_t> m_window;
Alexander Afanasyev06b42ec2012-01-11 19:05:36 -080099 TracedValue<uint32_t> m_inFlight;
Alexander Afanasyev359bfb72012-01-09 18:42:50 -0800100};
101
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700102} // namespace ndn
Alexander Afanasyev359bfb72012-01-09 18:42:50 -0800103} // namespace ns3
104
105#endif