355c066fe1
This flags replaces isPermanent flag in datagram faces, but with the reversed logic (isPermanent = !isOnDemand) Change-Id: I37ba604e5f105ca95a79a08b8cfc3d640df8b412 Refs: #1376
98 lines
1.8 KiB
C++
98 lines
1.8 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/**
|
|
* Copyright (C) 2014 Named Data Networking Project
|
|
* See COPYING for copyright and distribution information.
|
|
*/
|
|
|
|
#include "face.hpp"
|
|
#include "core/logger.hpp"
|
|
|
|
namespace nfd {
|
|
|
|
NFD_LOG_INIT("Face")
|
|
|
|
template<class Packet>
|
|
static inline void
|
|
increaseCounter(const Packet& packet, FaceCounter& counter)
|
|
{
|
|
++counter;
|
|
}
|
|
|
|
Face::Face(const FaceUri& uri, bool isLocal)
|
|
: m_id(INVALID_FACEID)
|
|
, m_isLocal(isLocal)
|
|
, m_uri(uri)
|
|
, m_isOnDemand(false)
|
|
{
|
|
onReceiveInterest += bind(&increaseCounter<Interest>, _1, boost::ref(m_counters.getInInterest()));
|
|
onReceiveData += bind(&increaseCounter<Data>, _1, boost::ref(m_counters.getInData()));
|
|
onSendInterest += bind(&increaseCounter<Interest>, _1, boost::ref(m_counters.getOutInterest()));
|
|
onSendData += bind(&increaseCounter<Data>, _1, boost::ref(m_counters.getOutData()));
|
|
}
|
|
|
|
Face::~Face()
|
|
{
|
|
}
|
|
|
|
FaceId
|
|
Face::getId() const
|
|
{
|
|
return m_id;
|
|
}
|
|
|
|
// this method is private and should be used only by the Forwarder
|
|
void
|
|
Face::setId(FaceId faceId)
|
|
{
|
|
m_id = faceId;
|
|
}
|
|
|
|
void
|
|
Face::setDescription(const std::string& description)
|
|
{
|
|
m_description = description;
|
|
}
|
|
|
|
const std::string&
|
|
Face::getDescription() const
|
|
{
|
|
return m_description;
|
|
}
|
|
|
|
bool
|
|
Face::isMultiAccess() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
Face::isUp() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Face::decodeAndDispatchInput(const Block& element)
|
|
{
|
|
/// \todo Ensure lazy field decoding process
|
|
|
|
if (element.type() == tlv::Interest)
|
|
{
|
|
shared_ptr<Interest> i = make_shared<Interest>();
|
|
i->wireDecode(element);
|
|
this->onReceiveInterest(*i);
|
|
}
|
|
else if (element.type() == tlv::Data)
|
|
{
|
|
shared_ptr<Data> d = make_shared<Data>();
|
|
d->wireDecode(element);
|
|
this->onReceiveData(*d);
|
|
}
|
|
else
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
} //namespace nfd
|