blob: 25b7fdf18d55be853b68fb951647b5449a4a3470 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (c) 2014-2015, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
* Washington University in St. Louis,
* Beijing Institute of Technology,
* The University of Memphis.
*
* This file is part of NFD (Named Data Networking Forwarding Daemon).
* See AUTHORS.md for complete list of NFD authors and contributors.
*
* NFD is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*
* NFD 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
* NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NFD_DAEMON_FACE_FACE_HPP
#define NFD_DAEMON_FACE_FACE_HPP
#include "common.hpp"
#include "core/logger.hpp"
#include "face-counters.hpp"
#include "old-face-counters.hpp"
#include "face-log.hpp"
#include <ndn-cxx/management/nfd-face-status.hpp>
namespace nfd {
/** \class FaceId
* \brief identifies a face
*/
typedef int FaceId;
/// indicates an invalid FaceId
const FaceId INVALID_FACEID = -1;
/// identifies the InternalFace used in management
const FaceId FACEID_INTERNAL_FACE = 1;
/// identifies a packet comes from the ContentStore, in LocalControlHeader incomingFaceId
const FaceId FACEID_CONTENT_STORE = 254;
/// identifies the NullFace that drops every packet
const FaceId FACEID_NULL = 255;
/// upper bound of reserved FaceIds
const FaceId FACEID_RESERVED_MAX = 255;
/** \brief represents a face
*/
class Face : noncopyable, public enable_shared_from_this<Face>
{
public:
/**
* \brief Face-related error
*/
class Error : public std::runtime_error
{
public:
explicit
Error(const std::string& what)
: std::runtime_error(what)
{
}
};
Face(const FaceUri& remoteUri, const FaceUri& localUri,
bool isLocal = false, bool isMultiAccess = false);
virtual
~Face();
/// fires when an Interest is received
signal::Signal<Face, Interest> onReceiveInterest;
/// fires when a Data is received
signal::Signal<Face, Data> onReceiveData;
/// fires when a Nack is received
signal::Signal<Face, lp::Nack> onReceiveNack;
/// fires when an Interest is sent out
signal::Signal<Face, Interest> onSendInterest;
/// fires when a Data is sent out
signal::Signal<Face, Data> onSendData;
/// fires when a Nack is sent out
signal::Signal<Face, lp::Nack> onSendNack;
/// fires when face disconnects or fails to perform properly
signal::Signal<Face, std::string/*reason*/> onFail;
/// send an Interest
virtual void
sendInterest(const Interest& interest) = 0;
/// send a Data
virtual void
sendData(const Data& data) = 0;
/// send a Nack
virtual void
sendNack(const ndn::lp::Nack& nack)
{
}
/** \brief Close the face
*
* This terminates all communication on the face and cause
* onFail() method event to be invoked
*/
virtual void
close() = 0;
public: // attributes
FaceId
getId() const;
/** \brief Get the description
*/
const std::string&
getDescription() const;
/** \brief Set the face description
*
* This is typically invoked by management on set description command
*/
void
setDescription(const std::string& description);
/** \brief Get whether face is connected to a local app
*/
bool
isLocal() const;
/** \brief Get the persistency setting
*/
ndn::nfd::FacePersistency
getPersistency() const;
// 'virtual' to allow override in LpFaceWrapper
virtual void
setPersistency(ndn::nfd::FacePersistency persistency);
/** \brief Get whether packets sent by this face may reach multiple peers
*/
bool
isMultiAccess() const;
/** \brief Get whether underlying communication is up
*
* In this base class this property is always true.
*/
virtual bool
isUp() const;
virtual const face::FaceCounters&
getCounters() const;
/** \return a FaceUri that represents the remote endpoint
*/
const FaceUri&
getRemoteUri() const;
/** \return a FaceUri that represents the local endpoint (NFD side)
*/
const FaceUri&
getLocalUri() const;
protected:
bool
decodeAndDispatchInput(const Block& element);
/** \brief fail the face and raise onFail event if it's UP; otherwise do nothing
*/
void
fail(const std::string& reason);
OldFaceCounters&
getMutableCounters();
DECLARE_SIGNAL_EMIT(onReceiveInterest)
DECLARE_SIGNAL_EMIT(onReceiveData)
DECLARE_SIGNAL_EMIT(onReceiveNack)
DECLARE_SIGNAL_EMIT(onSendInterest)
DECLARE_SIGNAL_EMIT(onSendData)
DECLARE_SIGNAL_EMIT(onSendNack)
// this method should be used only by the FaceTable
// 'virtual' to allow override in LpFaceWrapper
virtual void
setId(FaceId faceId);
private:
FaceId m_id;
std::string m_description;
OldFaceCounters m_counters;
face::FaceCounters m_countersWrapper;
const FaceUri m_remoteUri;
const FaceUri m_localUri;
const bool m_isLocal;
ndn::nfd::FacePersistency m_persistency;
const bool m_isMultiAccess;
bool m_isFailed;
// allow setting FaceId
friend class FaceTable;
};
inline FaceId
Face::getId() const
{
return m_id;
}
inline void
Face::setId(FaceId faceId)
{
m_id = faceId;
}
inline const std::string&
Face::getDescription() const
{
return m_description;
}
inline void
Face::setDescription(const std::string& description)
{
m_description = description;
}
inline bool
Face::isLocal() const
{
return m_isLocal;
}
inline ndn::nfd::FacePersistency
Face::getPersistency() const
{
return m_persistency;
}
inline void
Face::setPersistency(ndn::nfd::FacePersistency persistency)
{
m_persistency = persistency;
}
inline bool
Face::isMultiAccess() const
{
return m_isMultiAccess;
}
inline const face::FaceCounters&
Face::getCounters() const
{
return m_countersWrapper;
}
inline OldFaceCounters&
Face::getMutableCounters()
{
return m_counters;
}
inline const FaceUri&
Face::getRemoteUri() const
{
return m_remoteUri;
}
inline const FaceUri&
Face::getLocalUri() const
{
return m_localUri;
}
template<typename T>
typename std::enable_if<std::is_base_of<Face, T>::value, std::ostream&>::type
operator<<(std::ostream& os, const face::FaceLogHelper<T>& flh)
{
const Face& face = flh.obj;
os << "[id=" << face.getId() << ",local=" << face.getLocalUri() <<
",remote=" << face.getRemoteUri() << "] ";
return os;
}
} // namespace nfd
#endif // NFD_DAEMON_FACE_FACE_HPP