blob: aa2c78769ad2af5be787b9c036e2acecf8267587 [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/*
3 * Copyright (c) 2005,2006,2007 INRIA
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 *
Ilya Moiseenko1cf6b0a2011-08-29 13:02:34 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070019 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyev98256102011-08-14 01:00:02 -070020 *
21 */
22
23#include "ccnx-local-face.h"
24
Alexander Afanasyev98256102011-08-14 01:00:02 -070025#include "ns3/log.h"
26#include "ns3/packet.h"
27#include "ns3/node.h"
28#include "ns3/pointer.h"
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070029#include "ns3/assert.h"
30
31#include "ns3/ccnx-header-helper.h"
32#include "ccnx-interest-header.h"
33#include "ccnx-content-object-header.h"
Alexander Afanasyev98256102011-08-14 01:00:02 -070034
35NS_LOG_COMPONENT_DEFINE ("CcnxLocalFace");
36
Ilya Moiseenko1cf6b0a2011-08-29 13:02:34 -070037namespace ns3
38{
Alexander Afanasyev98256102011-08-14 01:00:02 -070039
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070040// NS_OBJECT_ENSURE_REGISTERED (CcnxLocalFace);
Alexander Afanasyev98256102011-08-14 01:00:02 -070041
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070042// TypeId
43// CcnxLocalFace::GetTypeId (void)
44// {
45// static TypeId tid = TypeId ("ns3::CcnxLocalFace")
46// .SetGroupName ("Ccnx")
47// .SetParent<CcnxFace> ()
48// ;
49// return tid;
50// }
Alexander Afanasyev98256102011-08-14 01:00:02 -070051
Alexander Afanasyev98256102011-08-14 01:00:02 -070052CcnxLocalFace::CcnxLocalFace ()
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070053 : m_onInterest (0)
54 , m_onContentObject (0)
Alexander Afanasyev98256102011-08-14 01:00:02 -070055{
56 NS_LOG_FUNCTION (this);
57}
58
59CcnxLocalFace::~CcnxLocalFace ()
60{
61 NS_LOG_FUNCTION_NOARGS ();
62}
63
64void
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070065CcnxLocalFace::RegisterProtocolHandler (ProtocolHandler handler)
Alexander Afanasyev98256102011-08-14 01:00:02 -070066{
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070067 m_protocolHandler = handler;
Alexander Afanasyev98256102011-08-14 01:00:02 -070068}
69
Alexander Afanasyev98256102011-08-14 01:00:02 -070070void
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070071CcnxLocalFace::SetInterestHandler (InterestHandler onInterest)
72{
73 m_onInterest = onInterest;
74}
75
76void
77CcnxLocalFace::SetContentObjectHandler (ContentObjectHandler onContentObject)
78{
79 m_onContentObject = onContentObject;
80}
81
82void
Alexander Afanasyev98256102011-08-14 01:00:02 -070083CcnxLocalFace::Send (Ptr<Packet> p)
84{
85 NS_LOG_FUNCTION (*p);
86 if (!IsUp ())
87 {
88 return;
89 }
90
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070091 try
92 {
93 CcnxHeaderHelper::Type type = CcnxHeaderHelper::GetCcnxHeaderType (p);
94 switch (type)
95 {
96 case CcnxHeaderHelper::INTEREST:
97 if (!m_onInterest.IsNull ())
98 {
99 Ptr<CcnxInterestHeader> header = Create<CcnxInterestHeader> ();
100 p->RemoveHeader (*header);
101 m_onInterest (header);
102 }
103 break;
104 case CcnxHeaderHelper::CONTENT_OBJECT:
105 if (!m_onContentObject.IsNull ())
106 {
107 static CcnxContentObjectTail tail;
108 Ptr<CcnxContentObjectHeader> header = Create<CcnxContentObjectHeader> ();
109 p->RemoveHeader (*header);
110 p->RemoveTrailer (tail);
111 m_onContentObject (header, p/*payload*/);
112 }
113 break;
114 }
115 }
116 catch (CcnxUnknownHeaderException)
117 {
118 NS_LOG_ERROR ("Unknown header type");
119 }
Ilya Moiseenko1cf6b0a2011-08-29 13:02:34 -0700120}
Alexander Afanasyev98256102011-08-14 01:00:02 -0700121
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700122// propagate interest down to ccnx stack
123void
124CcnxLocalFace::ReceiveFromApplication (Ptr<Packet> p)
Alexander Afanasyev98256102011-08-14 01:00:02 -0700125{
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700126 m_protocolHandler (Ptr<CcnxFace>(this), p);
127}
128
129std::ostream& CcnxLocalFace::Print (std::ostream& os) const
130{
131 os << "dev=local(" << GetId() << ")";
Alexander Afanasyev98256102011-08-14 01:00:02 -0700132 return os;
133}
134
135}; // namespace ns3
136