blob: 47099f6745651c1a8bd840b7e0ebbda473363cf5 [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
22#ifndef CCNX_CONSUMER_WINDOW_H
23#define CCNX_CONSUMER_WINDOW_H
24
25#include "ccnx-consumer.h"
26
27namespace ns3
28{
29
30/**
31 * @ingroup ccnx
32 * \brief CCNx application for sending out Interest packets (window-based)
33 */
34class CcnxConsumerWindow: public CcnxConsumer
35{
36public:
37 static TypeId GetTypeId ();
38
39 /**
40 * \brief Default constructor
41 */
42 CcnxConsumerWindow ();
43
44 // From CcnxApp
45 // virtual void
46 // OnInterest (const Ptr<const CcnxInterestHeader> &interest);
47
48 virtual void
49 OnNack (const Ptr<const CcnxInterestHeader> &interest);
50
51 virtual void
52 OnContentObject (const Ptr<const CcnxContentObjectHeader> &contentObject,
53 const Ptr<const Packet> &payload);
54
55 virtual void
56 OnTimeout (uint32_t sequenceNumber);
57
58protected:
59 /**
60 * \brief Constructs the Interest packet and sends it using a callback to the underlying CCNx protocol
61 */
62 virtual void
63 ScheduleNextPacket ();
64
65private:
66 virtual void
67 SetWindow (uint32_t window);
68
69 uint32_t
70 GetWindow () const;
71
72protected:
73 uint32_t m_window;
74 uint32_t m_inFlight;
75};
76
77} // namespace ns3
78
79#endif