A Transport that communicates on a connected TCP socket. More...
#include <daemon/face/tcp-transport.hpp>
Public Types | |
typedef TransportCounters | Counters |
counters provided by Transport More... | |
typedef uint64_t | EndpointId |
identifies an endpoint on the link More... | |
typedef boost::asio::ip::tcp | protocol |
Public Member Functions | |
TcpTransport (protocol::socket &&socket, ndn::nfd::FacePersistency persistency) | |
bool | canChangePersistencyTo (ndn::nfd::FacePersistency newPersistency) const |
check whether the face persistency can be changed to newPersistency More... | |
void | close () |
request the transport to be closed More... | |
virtual const Counters & | getCounters () const |
time::steady_clock::TimePoint | getExpirationTime () const |
const Face * | getFace () const |
const LinkService * | getLinkService () const |
LinkService * | getLinkService () |
ndn::nfd::LinkType | getLinkType () const |
FaceUri | getLocalUri () const |
ssize_t | getMtu () const |
ndn::nfd::FacePersistency | getPersistency () const |
FaceUri | getRemoteUri () const |
ndn::nfd::FaceScope | getScope () const |
TransportState | getState () const |
void | send (Packet &&packet) |
send a link-layer packet More... | |
void | setFaceAndLinkService (Face &face, LinkService &service) |
set Face and LinkService for Transport More... | |
void | setPersistency (ndn::nfd::FacePersistency newPersistency) |
changes face persistency setting More... | |
Public Attributes | |
signal::Signal< Transport, TransportState, TransportState > | afterStateChange |
signals when transport state changes More... | |
Protected Member Functions | |
void | afterChangePersistency (ndn::nfd::FacePersistency oldPersistency) final |
invoked after the persistency has been changed More... | |
bool | canChangePersistencyToImpl (ndn::nfd::FacePersistency newPersistency) const final |
invoked by canChangePersistencyTo to perform the check More... | |
void | deferredClose () |
void | doClose () final |
performs Transport specific operations to close the transport More... | |
void | doSend (Transport::Packet &&packet) override |
performs Transport specific operations to send a packet More... | |
void | handleError (const boost::system::error_code &error) final |
void | handleReceive (const boost::system::error_code &error, size_t nBytesReceived) |
void | handleSend (const boost::system::error_code &error, size_t nBytesSent) |
NFD_LOG_INCLASS_DECLARE () | |
void | processErrorCode (const boost::system::error_code &error) |
void | receive (Packet &&packet) |
receive a link-layer packet More... | |
void | resetReceiveBuffer () |
void | resetSendQueue () |
void | sendFromQueue () |
void | setExpirationTime (const time::steady_clock::TimePoint &expirationTime) |
void | setLinkType (ndn::nfd::LinkType linkType) |
void | setLocalUri (const FaceUri &uri) |
void | setMtu (ssize_t mtu) |
void | setRemoteUri (const FaceUri &uri) |
void | setScope (ndn::nfd::FaceScope scope) |
void | setState (TransportState newState) |
set transport state More... | |
void | startReceive () |
Protected Attributes | |
protocol::socket | m_socket |
ByteCounter | nInBytes |
total incoming bytes More... | |
PacketCounter | nInPackets |
count of incoming packets More... | |
ByteCounter | nOutBytes |
total outgoing bytes More... | |
PacketCounter | nOutPackets |
count of outgoing packets More... | |
A Transport that communicates on a connected TCP socket.
When persistency is set to permanent, whenever the TCP connection is severed, the transport state is set to DOWN, and the connection is retried periodically with exponential backoff until it is reestablished
Definition at line 42 of file tcp-transport.hpp.
|
inherited |
counters provided by Transport
Definition at line 137 of file transport.hpp.
|
inherited |
identifies an endpoint on the link
Definition at line 109 of file transport.hpp.
|
inherited |
Definition at line 45 of file stream-transport.hpp.
nfd::face::TcpTransport::TcpTransport | ( | protocol::socket && | socket, |
ndn::nfd::FacePersistency | persistency | ||
) |
Definition at line 37 of file tcp-transport.cpp.
|
finalprotectedvirtual |
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 from nfd::face::Transport.
Definition at line 65 of file tcp-transport.cpp.
|
inherited |
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 129 of file transport.cpp.
|
finalprotectedvirtual |
invoked by canChangePersistencyTo to perform the check
Base class implementation returns false.
newPersistency | the new persistency, guaranteed to be different from current persistency |
Reimplemented from nfd::face::Transport.
Definition at line 59 of file tcp-transport.cpp.
|
inherited |
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 84 of file transport.cpp.
|
protectedinherited |
|
finalprotectedvirtual |
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.
Implements nfd::face::Transport.
Definition at line 164 of file tcp-transport.cpp.
|
overrideprotectedvirtualinherited |
performs Transport specific operations to send a packet
packet | the packet, which must be a well-formed TLV block |
Implements nfd::face::Transport.
|
inlinevirtualinherited |
Reimplemented in nfd::face::WebSocketTransport.
Definition at line 372 of file transport.hpp.
|
inlineinherited |
time::steady_clock::TimePoint::max() | the transport has indefinite lifetime |
Definition at line 451 of file transport.hpp.
|
inlineinherited |
Definition at line 354 of file transport.hpp.
|
inlineinherited |
Definition at line 360 of file transport.hpp.
|
inlineinherited |
Definition at line 366 of file transport.hpp.
|
inlineinherited |
Definition at line 420 of file transport.hpp.
|
inlineinherited |
Definition at line 378 of file transport.hpp.
|
inlineinherited |
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 432 of file transport.hpp.
|
inlineinherited |
Definition at line 414 of file transport.hpp.
|
inlineinherited |
Definition at line 390 of file transport.hpp.
|
inlineinherited |
Definition at line 402 of file transport.hpp.
|
inlineinherited |
Definition at line 445 of file transport.hpp.
|
finalprotectedvirtual |
Reimplemented from nfd::face::StreamTransport< boost::asio::ip::tcp >.
Definition at line 78 of file tcp-transport.cpp.
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
receive a link-layer packet
Definition at line 117 of file transport.cpp.
|
protectedinherited |
|
protectedinherited |
|
inherited |
send a link-layer packet
getState()
is neither UP nor DOWN Definition at line 97 of file transport.cpp.
|
protectedinherited |
|
inlineprotectedinherited |
Definition at line 457 of file transport.hpp.
|
inherited |
set Face and LinkService for Transport
Definition at line 74 of file transport.cpp.
|
inlineprotectedinherited |
Definition at line 426 of file transport.hpp.
|
inlineprotectedinherited |
Definition at line 384 of file transport.hpp.
|
inlineprotectedinherited |
Definition at line 438 of file transport.hpp.
|
inherited |
changes face persistency setting
Definition at line 151 of file transport.cpp.
|
inlineprotectedinherited |
Definition at line 396 of file transport.hpp.
|
inlineprotectedinherited |
Definition at line 408 of file transport.hpp.
|
protectedinherited |
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 174 of file transport.cpp.
|
protectedinherited |
|
inherited |
signals when transport state changes
Definition at line 265 of file transport.hpp.
|
protectedinherited |
Definition at line 91 of file stream-transport.hpp.
|
inherited |
total incoming bytes
This counter includes headers imposed by NFD (such as NDNLP), but excludes overhead of underlying protocol (such as IP header). For a datagram-based transport, an incoming packet that cannot be parsed as TLV would not be counted.
Definition at line 82 of file transport.hpp.
|
inherited |
count of incoming packets
A 'packet' typically means a top-level TLV block. For a datagram-based transport, an incoming packet that cannot be parsed as TLV would not be counted.
Definition at line 66 of file transport.hpp.
|
inherited |
total outgoing bytes
This counter includes headers imposed by NFD (such as NDNLP), but excludes overhead of underlying protocol (such as IP header). This counter is increased only if transport is UP.
Definition at line 90 of file transport.hpp.
|
inherited |
count of outgoing packets
A 'packet' typically means a top-level TLV block. This counter is incremented only if transport is UP.
Definition at line 73 of file transport.hpp.