blob: a61f227560ded98380ccb4dbe3046ce272b80896 [file] [log] [blame]
Junxiao Shi6535f1e2015-10-08 13:02:18 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
Davide Pesavento5d642632023-10-03 00:36:08 -04003 * Copyright (c) 2014-2023, Regents of the University of California,
Junxiao Shi6535f1e2015-10-08 13:02:18 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "internal-transport.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/global.hpp"
Junxiao Shi6535f1e2015-10-08 13:02:18 -070028
Davide Pesavento5d642632023-10-03 00:36:08 -040029#include <boost/asio/post.hpp>
30
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040031namespace nfd::face {
Junxiao Shi6535f1e2015-10-08 13:02:18 -070032
Davide Pesaventoa3148082018-04-12 18:21:54 -040033NFD_LOG_MEMBER_INIT(InternalForwarderTransport, InternalForwarderTransport);
34NFD_LOG_MEMBER_INIT(InternalClientTransport, InternalClientTransport);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070035
Davide Pesaventoa3148082018-04-12 18:21:54 -040036InternalForwarderTransport::InternalForwarderTransport(const FaceUri& localUri, const FaceUri& remoteUri,
37 ndn::nfd::FaceScope scope, ndn::nfd::LinkType linkType)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070038{
39 this->setLocalUri(localUri);
40 this->setRemoteUri(remoteUri);
41 this->setScope(scope);
42 this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT);
43 this->setLinkType(linkType);
Junxiao Shi5b8a2b22015-10-22 17:20:44 -070044 this->setMtu(MTU_UNLIMITED);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070045
Davide Pesaventoa681a242019-03-29 23:48:27 -040046 NFD_LOG_FACE_DEBUG("Creating transport");
Junxiao Shi6535f1e2015-10-08 13:02:18 -070047}
48
49void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040050InternalForwarderTransport::receivePacket(const Block& packet)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070051{
Davide Pesavento5d642632023-10-03 00:36:08 -040052 boost::asio::post(getGlobalIoService(), [this, packet] {
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040053 NFD_LOG_FACE_TRACE("Received: " << packet.size() << " bytes");
54 receive(packet);
Davide Pesavento284bd622019-03-31 02:10:02 -040055 });
Junxiao Shi6535f1e2015-10-08 13:02:18 -070056}
57
58void
Teng Liang13d582a2020-07-21 20:23:11 -070059InternalForwarderTransport::doSend(const Block& packet)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070060{
Davide Pesavento284bd622019-03-31 02:10:02 -040061 NFD_LOG_FACE_TRACE("Sending to " << m_peer);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070062
Davide Pesavento284bd622019-03-31 02:10:02 -040063 if (m_peer)
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040064 m_peer->receivePacket(packet);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070065}
66
67void
68InternalForwarderTransport::doClose()
69{
70 NFD_LOG_FACE_TRACE(__func__);
71
Davide Pesavento284bd622019-03-31 02:10:02 -040072 setState(TransportState::CLOSED);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070073}
74
Davide Pesavento284bd622019-03-31 02:10:02 -040075InternalClientTransport::~InternalClientTransport()
Junxiao Shi6535f1e2015-10-08 13:02:18 -070076{
Davide Pesavento284bd622019-03-31 02:10:02 -040077 if (m_forwarder != nullptr) {
78 m_forwarder->setPeer(nullptr);
79 }
Junxiao Shi6535f1e2015-10-08 13:02:18 -070080}
81
82void
Davide Pesavento284bd622019-03-31 02:10:02 -040083InternalClientTransport::connectToForwarder(InternalForwarderTransport* forwarder)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070084{
Davide Pesavento284bd622019-03-31 02:10:02 -040085 NFD_LOG_DEBUG(__func__ << " " << forwarder);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070086
Davide Pesavento284bd622019-03-31 02:10:02 -040087 if (m_forwarder != nullptr) {
88 // disconnect from the old forwarder transport
89 m_forwarder->setPeer(nullptr);
90 m_fwTransportStateConn.disconnect();
91 }
Junxiao Shi6535f1e2015-10-08 13:02:18 -070092
Davide Pesavento284bd622019-03-31 02:10:02 -040093 m_forwarder = forwarder;
94
95 if (m_forwarder != nullptr) {
96 // connect to the new forwarder transport
97 m_forwarder->setPeer(this);
98 m_fwTransportStateConn = m_forwarder->afterStateChange.connect(
Junxiao Shi6535f1e2015-10-08 13:02:18 -070099 [this] (TransportState oldState, TransportState newState) {
100 if (newState == TransportState::CLOSED) {
Davide Pesavento284bd622019-03-31 02:10:02 -0400101 connectToForwarder(nullptr);
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700102 }
103 });
104 }
105}
106
107void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400108InternalClientTransport::receivePacket(const Block& packet)
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700109{
Davide Pesavento5d642632023-10-03 00:36:08 -0400110 boost::asio::post(getGlobalIoService(), [this, packet] {
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400111 NFD_LOG_TRACE("Received: " << packet.size() << " bytes");
Davide Pesavento284bd622019-03-31 02:10:02 -0400112 if (m_receiveCallback) {
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400113 m_receiveCallback(packet);
Davide Pesavento284bd622019-03-31 02:10:02 -0400114 }
115 });
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700116}
117
118void
119InternalClientTransport::send(const Block& wire)
120{
Davide Pesavento284bd622019-03-31 02:10:02 -0400121 NFD_LOG_TRACE("Sending to " << m_forwarder);
122
123 if (m_forwarder)
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400124 m_forwarder->receivePacket(wire);
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700125}
126
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400127} // namespace nfd::face