blob: 50208779e0e86f8b1525c22a909b40421e56f619 [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);
Ilya Moiseenkoacac1ea2011-10-28 13:16:53 -070057 m_isLocal = true;
Alexander Afanasyev98256102011-08-14 01:00:02 -070058}
59
60CcnxLocalFace::~CcnxLocalFace ()
61{
62 NS_LOG_FUNCTION_NOARGS ();
63}
64
65void
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070066CcnxLocalFace::RegisterProtocolHandler (ProtocolHandler handler)
Alexander Afanasyev98256102011-08-14 01:00:02 -070067{
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070068 m_protocolHandler = handler;
Alexander Afanasyev98256102011-08-14 01:00:02 -070069}
70
Alexander Afanasyev98256102011-08-14 01:00:02 -070071void
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070072CcnxLocalFace::SetInterestHandler (InterestHandler onInterest)
73{
74 m_onInterest = onInterest;
75}
76
77void
78CcnxLocalFace::SetContentObjectHandler (ContentObjectHandler onContentObject)
79{
80 m_onContentObject = onContentObject;
81}
Ilya Moiseenkoacac1ea2011-10-28 13:16:53 -070082
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070083void
Alexander Afanasyev98256102011-08-14 01:00:02 -070084CcnxLocalFace::Send (Ptr<Packet> p)
85{
Ilya Moiseenkoacac1ea2011-10-28 13:16:53 -070086 NS_LOG_FUNCTION("Local face send");
Alexander Afanasyev98256102011-08-14 01:00:02 -070087 NS_LOG_FUNCTION (*p);
88 if (!IsUp ())
89 {
90 return;
91 }
92
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070093 try
94 {
95 CcnxHeaderHelper::Type type = CcnxHeaderHelper::GetCcnxHeaderType (p);
96 switch (type)
97 {
98 case CcnxHeaderHelper::INTEREST:
99 if (!m_onInterest.IsNull ())
100 {
101 Ptr<CcnxInterestHeader> header = Create<CcnxInterestHeader> ();
102 p->RemoveHeader (*header);
103 m_onInterest (header);
104 }
105 break;
106 case CcnxHeaderHelper::CONTENT_OBJECT:
107 if (!m_onContentObject.IsNull ())
108 {
109 static CcnxContentObjectTail tail;
110 Ptr<CcnxContentObjectHeader> header = Create<CcnxContentObjectHeader> ();
111 p->RemoveHeader (*header);
112 p->RemoveTrailer (tail);
113 m_onContentObject (header, p/*payload*/);
114 }
115 break;
116 }
117 }
118 catch (CcnxUnknownHeaderException)
119 {
120 NS_LOG_ERROR ("Unknown header type");
121 }
Ilya Moiseenko1cf6b0a2011-08-29 13:02:34 -0700122}
Alexander Afanasyev98256102011-08-14 01:00:02 -0700123
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700124// propagate interest down to ccnx stack
125void
126CcnxLocalFace::ReceiveFromApplication (Ptr<Packet> p)
Alexander Afanasyev98256102011-08-14 01:00:02 -0700127{
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700128 m_protocolHandler (Ptr<CcnxFace>(this), p);
129}
130
131std::ostream& CcnxLocalFace::Print (std::ostream& os) const
132{
133 os << "dev=local(" << GetId() << ")";
Alexander Afanasyev98256102011-08-14 01:00:02 -0700134 return os;
135}
136
137}; // namespace ns3
138