Alexander Afanasyev | b7ad232 | 2012-01-17 22:54:49 -0800 | [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: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #ifndef CCNX_CONSUMER_BATCHES_H |
| 22 | #define CCNX_CONSUMER_BATCHES_H |
| 23 | |
| 24 | #include "ccnx-consumer.h" |
| 25 | #include "ns3/traced-value.h" |
| 26 | #include "ns3/batches.h" |
| 27 | |
| 28 | namespace ns3 |
| 29 | { |
| 30 | |
| 31 | /** |
| 32 | * @ingroup ccnx |
| 33 | * \brief CCNx application for sending out Interest packets in batches |
| 34 | */ |
| 35 | class CcnxConsumerBatches: public CcnxConsumer |
| 36 | { |
| 37 | public: |
| 38 | static TypeId GetTypeId (); |
| 39 | |
| 40 | /** |
| 41 | * \brief Default constructor |
| 42 | */ |
| 43 | CcnxConsumerBatches (); |
| 44 | |
| 45 | // From CcnxApp |
| 46 | // virtual void |
| 47 | // OnInterest (const Ptr<const CcnxInterestHeader> &interest); |
| 48 | |
| 49 | // virtual void |
| 50 | // OnNack (const Ptr<const CcnxInterestHeader> &interest); |
| 51 | |
| 52 | // virtual void |
| 53 | // OnContentObject (const Ptr<const CcnxContentObjectHeader> &contentObject, |
| 54 | // const Ptr<const Packet> &payload); |
| 55 | |
| 56 | // virtual void |
| 57 | // OnTimeout (uint32_t sequenceNumber); |
| 58 | |
| 59 | private: |
| 60 | Batches |
| 61 | GetBatch () const { return Batches(); } |
| 62 | |
| 63 | void |
| 64 | SetBatch (const Batches &batch); |
| 65 | |
| 66 | void |
| 67 | AddBatch (uint32_t amount); |
| 68 | protected: |
| 69 | /** |
| 70 | * \brief Constructs the Interest packet and sends it using a callback to the underlying CCNx protocol |
| 71 | */ |
| 72 | virtual void |
| 73 | ScheduleNextPacket (); |
| 74 | }; |
| 75 | |
| 76 | } // namespace ns3 |
| 77 | |
| 78 | #endif |