blob: 404e38f2073dce4f27a903b03f43c998f6e8a5b9 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2011 University of California, Los Angeles
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
* Ilya Moiseenko <iliamo@cs.ucla.edu>
*
*/
#include "ccnx-local-face.h"
#include "ns3/log.h"
#include "ns3/packet.h"
#include "ns3/node.h"
#include "ns3/assert.h"
#include "ns3/simulator.h"
#include "ns3/ccnx-header-helper.h"
#include "ns3/ccnx-app.h"
#include "ccnx-interest-header.h"
#include "ccnx-content-object-header.h"
#include "ccnx-path-stretch-tag.h"
NS_LOG_COMPONENT_DEFINE ("CcnxLocalFace");
namespace ns3
{
TypeId
CcnxLocalFace::GetTypeId ()
{
static TypeId tid = TypeId ("ns3::CcnxLocalFace")
.SetParent<CcnxFace> ()
.SetGroupName ("Ccnx")
.AddTraceSource ("PathWeightsTrace", "PathWeightsTrace",
MakeTraceSourceAccessor (&CcnxLocalFace::m_pathWeightsTrace))
;
return tid;
}
CcnxLocalFace::CcnxLocalFace (Ptr<CcnxApp> app)
: CcnxFace (app->GetNode ())
, m_app (app)
{
NS_LOG_FUNCTION (this << app);
NS_ASSERT (m_app != 0);
}
CcnxLocalFace::~CcnxLocalFace ()
{
NS_LOG_FUNCTION_NOARGS ();
}
CcnxLocalFace::CcnxLocalFace ()
: CcnxFace (0)
{
}
CcnxLocalFace::CcnxLocalFace (const CcnxLocalFace &)
: CcnxFace (0)
{
}
CcnxLocalFace& CcnxLocalFace::operator= (const CcnxLocalFace &)
{
return *((CcnxLocalFace*)0);
}
void
CcnxLocalFace::RegisterProtocolHandler (ProtocolHandler handler)
{
NS_LOG_FUNCTION (this);
CcnxFace::RegisterProtocolHandler (handler);
m_app->RegisterProtocolHandler (MakeCallback (&CcnxFace::Receive, this));
}
void
CcnxLocalFace::SendImpl (Ptr<Packet> p)
{
NS_LOG_FUNCTION (this << p);
std::cout << Simulator::Now () << ", " << m_app->GetInstanceTypeId ().GetName () << "\n";
// Notify trace about path weights vector (e.g., for path-stretch calculation)
Ptr<const WeightsPathStretchTag> tag = p->RemovePacketTag<WeightsPathStretchTag> ();
if (tag != 0)
{
m_pathWeightsTrace (tag->GetTotalWeight (), tag->GetSourceNode (), m_app->GetNode ());
std::cout << boost::cref(*tag) << "\n";
}
try
{
CcnxHeaderHelper::Type type = CcnxHeaderHelper::GetCcnxHeaderType (p);
switch (type)
{
case CcnxHeaderHelper::INTEREST:
{
Ptr<CcnxInterestHeader> header = Create<CcnxInterestHeader> ();
p->RemoveHeader (*header);
if (header->GetNack () > 0)
m_app->OnNack (header, p);
else
m_app->OnInterest (header, p);
break;
}
case CcnxHeaderHelper::CONTENT_OBJECT:
{
static CcnxContentObjectTail tail;
Ptr<CcnxContentObjectHeader> header = Create<CcnxContentObjectHeader> ();
p->RemoveHeader (*header);
p->RemoveTrailer (tail);
m_app->OnContentObject (header, p/*payload*/);
break;
}
}
}
catch (CcnxUnknownHeaderException)
{
NS_LOG_ERROR ("Unknown header type");
}
}
std::ostream& CcnxLocalFace::Print (std::ostream& os) const
{
os << "dev=local(" << GetId() << ")";
return os;
}
}; // namespace ns3