blob: 55e71622829151a2fe585c2f5649b1b19df40def [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 Afanasyev09c7deb2011-11-23 14:50:10 -080019 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070020 */
21
22#ifndef CCNX_PRODUCER_H
23#define CCNX_PRODUCER_H
24
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080025#include "ccnx-app.h"
26
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070027#include "ns3/ptr.h"
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070028#include "ns3/ccnx-name-components.h"
Alexander Afanasyevfaf95812012-06-05 21:28:11 -070029#include "ns3/ccnx-content-object-header.h"
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070030
31namespace ns3
32{
Ilya Moiseenkob62c7402011-10-28 13:02:18 -070033
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080034class CcnxProducer : public CcnxApp
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070035{
36public:
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080037 static TypeId
38 GetTypeId (void);
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070039
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080040 CcnxProducer ();
41
42 // inherited from CcnxApp
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080043 void OnInterest (const Ptr<const CcnxInterestHeader> &interest, Ptr<Packet> packet);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080044
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080045protected:
46 // inherited from Application base class.
47 virtual void
48 StartApplication (); // Called at time specified by Start
49
50 virtual void
51 StopApplication (); // Called at time specified by Stop
52
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070053private:
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080054 CcnxNameComponents m_prefix;
55 uint32_t m_virtualPayloadSize;
Alexander Afanasyevfaf95812012-06-05 21:28:11 -070056
57 uint32_t m_signatureBits;
58 // CcnxContentObjectHeader::SignedInfo m_signedInfo;
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070059};
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080060
Ilya Moiseenko8196d2e2011-08-29 13:03:22 -070061}
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080062
63#endif // CCNX_PRODUCER_H