/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ /* * Copyright (c) 2014-2019, 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 . */ #include "internal-transport.hpp" #include "daemon/global.hpp" namespace nfd { namespace face { NFD_LOG_MEMBER_INIT(InternalForwarderTransport, InternalForwarderTransport); NFD_LOG_MEMBER_INIT(InternalClientTransport, InternalClientTransport); InternalForwarderTransport::InternalForwarderTransport(const FaceUri& localUri, const FaceUri& remoteUri, ndn::nfd::FaceScope scope, ndn::nfd::LinkType linkType) { this->setLocalUri(localUri); this->setRemoteUri(remoteUri); this->setScope(scope); this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT); this->setLinkType(linkType); this->setMtu(MTU_UNLIMITED); NFD_LOG_FACE_DEBUG("Creating transport"); } void InternalForwarderTransport::receivePacket(Block&& packet) { getGlobalIoService().post([this, pkt = std::move(packet)] () mutable { NFD_LOG_FACE_TRACE("Received: " << pkt.size() << " bytes"); receive(Packet{std::move(pkt)}); }); } void InternalForwarderTransport::doSend(Packet&& packet) { NFD_LOG_FACE_TRACE("Sending to " << m_peer); if (m_peer) m_peer->receivePacket(std::move(packet.packet)); } void InternalForwarderTransport::doClose() { NFD_LOG_FACE_TRACE(__func__); setState(TransportState::CLOSED); } InternalClientTransport::~InternalClientTransport() { if (m_forwarder != nullptr) { m_forwarder->setPeer(nullptr); } } void InternalClientTransport::connectToForwarder(InternalForwarderTransport* forwarder) { NFD_LOG_DEBUG(__func__ << " " << forwarder); if (m_forwarder != nullptr) { // disconnect from the old forwarder transport m_forwarder->setPeer(nullptr); m_fwTransportStateConn.disconnect(); } m_forwarder = forwarder; if (m_forwarder != nullptr) { // connect to the new forwarder transport m_forwarder->setPeer(this); m_fwTransportStateConn = m_forwarder->afterStateChange.connect( [this] (TransportState oldState, TransportState newState) { if (newState == TransportState::CLOSED) { connectToForwarder(nullptr); } }); } } void InternalClientTransport::receivePacket(Block&& packet) { getGlobalIoService().post([this, pkt = std::move(packet)] { NFD_LOG_TRACE("Received: " << pkt.size() << " bytes"); if (m_receiveCallback) { m_receiveCallback(pkt); } }); } void InternalClientTransport::send(const Block& wire) { NFD_LOG_TRACE("Sending to " << m_forwarder); if (m_forwarder) m_forwarder->receivePacket(Block{wire}); } void InternalClientTransport::send(const Block& header, const Block& payload) { ndn::EncodingBuffer encoder(header.size() + payload.size(), header.size() + payload.size()); encoder.appendByteArray(header.wire(), header.size()); encoder.appendByteArray(payload.wire(), payload.size()); send(encoder.block()); } } // namespace face } // namespace nfd