blob: 6b4a8323d414c47d6ee90cb34478ecbe7fed7f00 [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev98256102011-08-14 01:00:02 -07002/*
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -07003 * Copyright (c) 2011 University of California, Los Angeles
Alexander Afanasyev98256102011-08-14 01:00:02 -07004 *
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
Alexander Afanasyevcf133f02011-09-06 12:13:48 -070017 *
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyev98256102011-08-14 01:00:02 -070020 */
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070021#ifndef CCNX_FORWARDING_STRATEGY_H
22#define CCNX_FORWARDING_STRATEGY_H
Alexander Afanasyev98256102011-08-14 01:00:02 -070023
24#include "ns3/packet.h"
25#include "ns3/callback.h"
26#include "ns3/object.h"
Alexander Afanasyev98256102011-08-14 01:00:02 -070027
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070028#include "ccnx.h"
Alexander Afanasyevcf133f02011-09-06 12:13:48 -070029#include "ccnx-fib.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070030
Alexander Afanasyev98256102011-08-14 01:00:02 -070031namespace ns3 {
32
Alexander Afanasyev98256102011-08-14 01:00:02 -070033class CcnxFace;
Alexander Afanasyevcf133f02011-09-06 12:13:48 -070034class CcnxInterestHeader;
Alexander Afanasyev98256102011-08-14 01:00:02 -070035
36/**
Alexander Afanasyevcf133f02011-09-06 12:13:48 -070037 * \ingroup ccnx
38 * \brief Abstract base class for Ccnx forwarding protocols
Alexander Afanasyev98256102011-08-14 01:00:02 -070039 */
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070040class CcnxForwardingStrategy : public Object
Alexander Afanasyev98256102011-08-14 01:00:02 -070041{
42public:
43 static TypeId GetTypeId (void);
44
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070045 CcnxForwardingStrategy ();
46
47 void SetCcnx(Ptr<Ccnx> ccnx);
48
Alexander Afanasyevcf133f02011-09-06 12:13:48 -070049 typedef
50 Callback<void, const Ptr<CcnxFace> &, const Ptr<CcnxInterestHeader> &, const Ptr<Packet> &>
51 SendCallback;
Alexander Afanasyev98256102011-08-14 01:00:02 -070052
Alexander Afanasyevcf133f02011-09-06 12:13:48 -070053 virtual bool PropagateInterest (const Ptr<CcnxFace> &incomingFace,
54 Ptr<CcnxInterestHeader> &header,
55 const Ptr<const Packet> &packet,
56 SendCallback ucb) = 0;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070057 Ptr<Ccnx> GetCcnx();
58
59private:
60 Ptr<Ccnx> m_ccnx;
Alexander Afanasyev98256102011-08-14 01:00:02 -070061};
62
63} //namespace ns3
64
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070065#endif /* CCNX_FORWARDING_STRATEGY_H */