The lower half of a Face. More...
#include <transport.hpp>
Public Types | |
using | Counters = TransportCounters |
Counters provided by a transport. More... | |
Public Member Functions | |
Transport () | |
Default constructor. More... | |
virtual | ~Transport () |
void | setFaceAndLinkService (Face &face, LinkService &service) |
set Face and LinkService for Transport More... | |
const Face * | getFace () const |
const LinkService * | getLinkService () const |
LinkService * | getLinkService () |
virtual const Counters & | getCounters () const |
void | close () |
Request the transport to be closed. More... | |
void | send (const Block &packet, const EndpointId &endpoint=0) |
Send a link-layer packet. More... | |
FaceUri | getLocalUri () const |
FaceUri | getRemoteUri () const |
ndn::nfd::FaceScope | getScope () const |
ndn::nfd::FacePersistency | getPersistency () const |
bool | canChangePersistencyTo (ndn::nfd::FacePersistency newPersistency) const |
check whether the face persistency can be changed to newPersistency More... | |
void | setPersistency (ndn::nfd::FacePersistency newPersistency) |
changes face persistency setting More... | |
ndn::nfd::LinkType | getLinkType () const |
ssize_t | getMtu () const |
ssize_t | getSendQueueCapacity () const |
TransportState | getState () const |
time::steady_clock::TimePoint | getExpirationTime () const |
virtual ssize_t | getSendQueueLength () |
Public Attributes | |
signal::Signal< Transport, TransportState, TransportState > | afterStateChange |
signals when transport state changes More... | |
Static Public Attributes | |
static constexpr ssize_t | MIN_MTU = 64 |
minimum MTU that may be set on a transport More... | |
Protected Member Functions | |
void | receive (const Block &packet, const EndpointId &endpoint=0) |
Pass a received link-layer packet to the upper layer for further processing. More... | |
void | setLocalUri (const FaceUri &uri) |
void | setRemoteUri (const FaceUri &uri) |
void | setScope (ndn::nfd::FaceScope scope) |
void | setLinkType (ndn::nfd::LinkType linkType) |
void | setMtu (ssize_t mtu) |
void | setSendQueueCapacity (ssize_t sendQueueCapacity) |
void | setState (TransportState newState) |
set transport state More... | |
void | setExpirationTime (const time::steady_clock::TimePoint &expirationTime) |
virtual bool | canChangePersistencyToImpl (ndn::nfd::FacePersistency newPersistency) const |
invoked by canChangePersistencyTo to perform the check More... | |
virtual void | afterChangePersistency (ndn::nfd::FacePersistency oldPersistency) |
invoked after the persistency has been changed More... | |
virtual void | doClose ()=0 |
performs Transport specific operations to close the transport More... | |
Additional Inherited Members | |
Protected Attributes inherited from nfd::face::TransportCounters | |
PacketCounter | nInPackets |
count of incoming packets More... | |
PacketCounter | nOutPackets |
count of outgoing packets More... | |
ByteCounter | nInBytes |
total incoming bytes More... | |
ByteCounter | nOutBytes |
total outgoing bytes More... | |
Counters provided by a transport.
Definition at line 114 of file transport.hpp.
nfd::face::Transport::Transport | ( | ) |
Default constructor.
This constructor initializes static properties to invalid values. Subclass constructor must explicitly set every static property.
This constructor initializes TransportState to UP; subclass constructor can rely on this default value.
Definition at line 55 of file transport.cpp.
References nfd::face::UP.
|
virtualdefault |
void nfd::face::Transport::setFaceAndLinkService | ( | Face & | face, |
LinkService & | service | ||
) |
set Face and LinkService for Transport
Definition at line 71 of file transport.cpp.
|
inline |
Definition at line 364 of file transport.hpp.
Referenced by nfd::face::operator<<().
|
inline |
Definition at line 370 of file transport.hpp.
|
inline |
Definition at line 376 of file transport.hpp.
|
inlinevirtual |
Reimplemented in nfd::face::WebSocketTransport.
Definition at line 382 of file transport.hpp.
void nfd::face::Transport::close | ( | ) |
Request the transport to be closed.
This operation is effective only if transport is in UP or DOWN state, otherwise it has no effect. The transport changes state to CLOSING, and performs cleanup procedure. The state will be changed to CLOSED when cleanup is complete, which may happen synchronously or asynchronously.
Definition at line 81 of file transport.cpp.
References nfd::face::CLOSING, doClose(), nfd::face::DOWN, setState(), and nfd::face::UP.
void nfd::face::Transport::send | ( | const Block & | packet, |
const EndpointId & | endpoint = 0 |
||
) |
Send a link-layer packet.
packet | the packet to be sent, must be a valid and well-formed TLV block |
endpoint | the destination endpoint |
Definition at line 94 of file transport.cpp.
References nfd::face::DOWN, getMtu(), getState(), ndn::Block::isValid(), nfd::face::MTU_UNLIMITED, NFD_LOG_FACE_TRACE, nfd::face::TransportCounters::nOutBytes, nfd::face::TransportCounters::nOutPackets, ndn::Block::size(), and nfd::face::UP.
Referenced by nfd::face::LinkService::sendPacket().
|
inline |
Definition at line 388 of file transport.hpp.
Referenced by ns3::ndn::NetDeviceTransport::NetDeviceTransport(), and nfd::face::operator<<().
|
inline |
Definition at line 400 of file transport.hpp.
Referenced by nfd::face::operator<<().
|
inline |
Definition at line 412 of file transport.hpp.
|
inline |
Definition at line 424 of file transport.hpp.
Referenced by nfd::face::UnicastUdpTransport::afterChangePersistency(), nfd::face::UnicastEthernetTransport::afterChangePersistency(), nfd::face::TcpTransport::handleError(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), and nfd::face::UnicastUdpTransport::UnicastUdpTransport().
bool nfd::face::Transport::canChangePersistencyTo | ( | ndn::nfd::FacePersistency | newPersistency | ) | const |
check whether the face persistency can be changed to newPersistency
This function serves as the external API, and invokes the protected function canChangePersistencyToImpl to perform further checks if newPersistency
differs from the current persistency.
Definition at line 128 of file transport.cpp.
References canChangePersistencyToImpl(), ndn::nfd::FACE_PERSISTENCY_NONE, and NFD_LOG_FACE_TRACE.
Referenced by setPersistency().
void nfd::face::Transport::setPersistency | ( | ndn::nfd::FacePersistency | newPersistency | ) |
changes face persistency setting
Definition at line 150 of file transport.cpp.
References afterChangePersistency(), canChangePersistencyTo(), ndn::nfd::FACE_PERSISTENCY_NONE, and NFD_LOG_FACE_INFO.
Referenced by nfd::face::InternalForwarderTransport::InternalForwarderTransport(), nfd::face::MulticastEthernetTransport::MulticastEthernetTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), ns3::ndn::NetDeviceTransport::NetDeviceTransport(), ns3::ndn::NullTransport::NullTransport(), nfd::face::NullTransport::NullTransport(), nfd::face::TcpTransport::TcpTransport(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), nfd::face::UnicastUdpTransport::UnicastUdpTransport(), nfd::face::UnixStreamTransport::UnixStreamTransport(), and nfd::face::WebSocketTransport::WebSocketTransport().
|
inline |
Definition at line 430 of file transport.hpp.
|
inline |
MTU_UNLIMITED | transport has no limit on payload size |
This size is the maximum packet size that can be sent or received through this transport.
For a datagram-based transport, this is typically the Maximum Transmission Unit (MTU), after the overhead of headers introduced by the transport has been accounted for. For a stream-based transport, this is typically unlimited (MTU_UNLIMITED).
Definition at line 442 of file transport.hpp.
Referenced by receive(), send(), and nfd::face::UnicastUdpTransport::UnicastUdpTransport().
|
inline |
QUEUE_UNSUPPORTED | transport does not support queue capacity retrieval |
QUEUE_ERROR | transport was unable to retrieve the queue capacity |
Definition at line 455 of file transport.hpp.
|
inline |
Definition at line 467 of file transport.hpp.
Referenced by nfd::face::TcpTransport::afterChangePersistency(), and send().
|
inline |
time::steady_clock::TimePoint::max() | the transport has indefinite lifetime |
Definition at line 473 of file transport.hpp.
|
inlinevirtual |
QUEUE_UNSUPPORTED | transport does not support queue length retrieval |
QUEUE_ERROR | transport was unable to retrieve the queue length |
Reimplemented in nfd::face::DatagramTransport< Protocol, Addressing >, nfd::face::DatagramTransport< boost::asio::ip::udp, Unicast >, nfd::face::DatagramTransport< boost::asio::ip::udp, Multicast >, nfd::face::StreamTransport< Protocol >, nfd::face::StreamTransport< boost::asio::ip::tcp >, nfd::face::StreamTransport< boost::asio::local::stream_protocol >, nfd::face::MulticastUdpTransport, ns3::ndn::NetDeviceTransport, and nfd::face::TcpTransport.
Definition at line 257 of file transport.hpp.
References nfd::face::QUEUE_UNSUPPORTED.
|
protected |
Pass a received link-layer packet to the upper layer for further processing.
packet | the received packet, must be a valid and well-formed TLV block |
endpoint | the source endpoint |
Definition at line 115 of file transport.cpp.
References getMtu(), ndn::Block::isValid(), nfd::face::MTU_UNLIMITED, nfd::face::TransportCounters::nInBytes, nfd::face::TransportCounters::nInPackets, nfd::face::LinkService::receivePacket(), and ndn::Block::size().
Referenced by nfd::face::WebSocketTransport::receiveMessage(), nfd::face::InternalForwarderTransport::receivePacket(), and nfd::face::EthernetTransport::receivePayload().
|
inlineprotected |
Definition at line 394 of file transport.hpp.
Referenced by nfd::face::InternalForwarderTransport::InternalForwarderTransport(), nfd::face::MulticastEthernetTransport::MulticastEthernetTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), ns3::ndn::NetDeviceTransport::NetDeviceTransport(), ns3::ndn::NullTransport::NullTransport(), nfd::face::NullTransport::NullTransport(), nfd::face::TcpTransport::TcpTransport(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), nfd::face::UnicastUdpTransport::UnicastUdpTransport(), nfd::face::UnixStreamTransport::UnixStreamTransport(), and nfd::face::WebSocketTransport::WebSocketTransport().
|
inlineprotected |
Definition at line 406 of file transport.hpp.
Referenced by nfd::face::InternalForwarderTransport::InternalForwarderTransport(), nfd::face::MulticastEthernetTransport::MulticastEthernetTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), ns3::ndn::NetDeviceTransport::NetDeviceTransport(), ns3::ndn::NullTransport::NullTransport(), nfd::face::NullTransport::NullTransport(), nfd::face::TcpTransport::TcpTransport(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), nfd::face::UnicastUdpTransport::UnicastUdpTransport(), nfd::face::UnixStreamTransport::UnixStreamTransport(), and nfd::face::WebSocketTransport::WebSocketTransport().
|
inlineprotected |
Definition at line 418 of file transport.hpp.
Referenced by nfd::face::InternalForwarderTransport::InternalForwarderTransport(), nfd::face::MulticastEthernetTransport::MulticastEthernetTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), ns3::ndn::NetDeviceTransport::NetDeviceTransport(), ns3::ndn::NullTransport::NullTransport(), nfd::face::NullTransport::NullTransport(), nfd::face::TcpTransport::TcpTransport(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), nfd::face::UnicastUdpTransport::UnicastUdpTransport(), nfd::face::UnixStreamTransport::UnixStreamTransport(), and nfd::face::WebSocketTransport::WebSocketTransport().
|
inlineprotected |
Definition at line 436 of file transport.hpp.
Referenced by nfd::face::InternalForwarderTransport::InternalForwarderTransport(), nfd::face::MulticastEthernetTransport::MulticastEthernetTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), ns3::ndn::NetDeviceTransport::NetDeviceTransport(), ns3::ndn::NullTransport::NullTransport(), nfd::face::NullTransport::NullTransport(), nfd::face::TcpTransport::TcpTransport(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), nfd::face::UnicastUdpTransport::UnicastUdpTransport(), nfd::face::UnixStreamTransport::UnixStreamTransport(), and nfd::face::WebSocketTransport::WebSocketTransport().
|
inlineprotected |
Definition at line 448 of file transport.hpp.
References nfd::face::MTU_UNLIMITED.
Referenced by nfd::face::InternalForwarderTransport::InternalForwarderTransport(), nfd::face::MulticastEthernetTransport::MulticastEthernetTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), ns3::ndn::NetDeviceTransport::NetDeviceTransport(), nfd::face::NullTransport::NullTransport(), nfd::face::TcpTransport::TcpTransport(), nfd::face::UnicastEthernetTransport::UnicastEthernetTransport(), nfd::face::UnicastUdpTransport::UnicastUdpTransport(), nfd::face::UnixStreamTransport::UnixStreamTransport(), and nfd::face::WebSocketTransport::WebSocketTransport().
|
inlineprotected |
Definition at line 461 of file transport.hpp.
Referenced by nfd::face::DatagramTransport< Protocol, Addressing >::DatagramTransport(), nfd::face::MulticastUdpTransport::MulticastUdpTransport(), and ns3::ndn::NetDeviceTransport::NetDeviceTransport().
|
protected |
set transport state
Only the following transitions are valid: UP->DOWN, DOWN->UP, UP/DOWN->CLOSING/FAILED, CLOSING/FAILED->CLOSED
std::runtime_error | transition is invalid. |
Definition at line 173 of file transport.cpp.
References afterStateChange, nfd::face::CLOSED, nfd::face::CLOSING, nfd::face::DOWN, nfd::face::FAILED, NDN_THROW, NFD_LOG_FACE_INFO, and nfd::face::UP.
Referenced by nfd::face::TcpTransport::afterChangePersistency(), close(), nfd::face::NullTransport::doClose(), nfd::face::EthernetTransport::doClose(), nfd::face::InternalForwarderTransport::doClose(), nfd::face::WebSocketTransport::doClose(), nfd::face::TcpTransport::handleError(), and nfd::face::WebSocketTransport::handlePongTimeout().
|
inlineprotected |
Definition at line 479 of file transport.hpp.
Referenced by nfd::face::UnicastUdpTransport::afterChangePersistency(), and nfd::face::UnicastEthernetTransport::afterChangePersistency().
|
protectedvirtual |
invoked by canChangePersistencyTo to perform the check
Base class implementation returns false.
newPersistency | the new persistency, guaranteed to be different from current persistency |
Reimplemented in nfd::face::TcpTransport, nfd::face::UnicastEthernetTransport, and nfd::face::UnicastUdpTransport.
Definition at line 144 of file transport.cpp.
Referenced by canChangePersistencyTo().
|
protectedvirtual |
invoked after the persistency has been changed
The base class implementation does nothing. When overridden in a subclass, the function should update internal states after persistency setting has been changed.
Reimplemented in nfd::face::TcpTransport, nfd::face::UnicastEthernetTransport, and nfd::face::UnicastUdpTransport.
Definition at line 168 of file transport.cpp.
Referenced by setPersistency().
|
protectedpure virtual |
performs Transport specific operations to close the transport
This is invoked once by close()
after changing state to CLOSING. It will not be invoked by Transport class if the transport is already CLOSING or CLOSED.
When the cleanup procedure is complete, this method should change state to CLOSED. This transition can happen synchronously or asynchronously.
Implemented in nfd::face::NullTransport, nfd::face::DatagramTransport< Protocol, Addressing >, nfd::face::DatagramTransport< boost::asio::ip::udp, Unicast >, nfd::face::DatagramTransport< boost::asio::ip::udp, Multicast >, nfd::face::StreamTransport< Protocol >, nfd::face::StreamTransport< boost::asio::ip::tcp >, nfd::face::StreamTransport< boost::asio::local::stream_protocol >, nfd::face::WebSocketTransport, nfd::face::InternalForwarderTransport, nfd::face::EthernetTransport, and nfd::face::TcpTransport.
Referenced by close().
signal::Signal<Transport, TransportState, TransportState> nfd::face::Transport::afterStateChange |
signals when transport state changes
Definition at line 244 of file transport.hpp.
Referenced by nfd::face::InternalClientTransport::connectToForwarder(), and setState().
|
staticconstexpr |
minimum MTU that may be set on a transport
This is done to ensure the NDNLPv2 fragmentation feature functions properly.
Definition at line 347 of file transport.hpp.
Referenced by nfd::face::UnicastUdpTransport::UnicastUdpTransport().