blob: 2eeab511f7b52d3734e31a3757cc511b03f428ec [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 Pesavento80111b72022-01-09 16:32:33 -05003 * Copyright (c) 2014-2022, 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 Pesaventoe422f9e2022-06-03 01:30:23 -040029namespace nfd::face {
Junxiao Shi6535f1e2015-10-08 13:02:18 -070030
Davide Pesaventoa3148082018-04-12 18:21:54 -040031NFD_LOG_MEMBER_INIT(InternalForwarderTransport, InternalForwarderTransport);
32NFD_LOG_MEMBER_INIT(InternalClientTransport, InternalClientTransport);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070033
Davide Pesaventoa3148082018-04-12 18:21:54 -040034InternalForwarderTransport::InternalForwarderTransport(const FaceUri& localUri, const FaceUri& remoteUri,
35 ndn::nfd::FaceScope scope, ndn::nfd::LinkType linkType)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070036{
37 this->setLocalUri(localUri);
38 this->setRemoteUri(remoteUri);
39 this->setScope(scope);
40 this->setPersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT);
41 this->setLinkType(linkType);
Junxiao Shi5b8a2b22015-10-22 17:20:44 -070042 this->setMtu(MTU_UNLIMITED);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070043
Davide Pesaventoa681a242019-03-29 23:48:27 -040044 NFD_LOG_FACE_DEBUG("Creating transport");
Junxiao Shi6535f1e2015-10-08 13:02:18 -070045}
46
47void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040048InternalForwarderTransport::receivePacket(const Block& packet)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070049{
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040050 getGlobalIoService().post([this, packet] {
51 NFD_LOG_FACE_TRACE("Received: " << packet.size() << " bytes");
52 receive(packet);
Davide Pesavento284bd622019-03-31 02:10:02 -040053 });
Junxiao Shi6535f1e2015-10-08 13:02:18 -070054}
55
56void
Teng Liang13d582a2020-07-21 20:23:11 -070057InternalForwarderTransport::doSend(const Block& packet)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070058{
Davide Pesavento284bd622019-03-31 02:10:02 -040059 NFD_LOG_FACE_TRACE("Sending to " << m_peer);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070060
Davide Pesavento284bd622019-03-31 02:10:02 -040061 if (m_peer)
Davide Pesaventob3a23ca2019-05-04 20:40:21 -040062 m_peer->receivePacket(packet);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070063}
64
65void
66InternalForwarderTransport::doClose()
67{
68 NFD_LOG_FACE_TRACE(__func__);
69
Davide Pesavento284bd622019-03-31 02:10:02 -040070 setState(TransportState::CLOSED);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070071}
72
Davide Pesavento284bd622019-03-31 02:10:02 -040073InternalClientTransport::~InternalClientTransport()
Junxiao Shi6535f1e2015-10-08 13:02:18 -070074{
Davide Pesavento284bd622019-03-31 02:10:02 -040075 if (m_forwarder != nullptr) {
76 m_forwarder->setPeer(nullptr);
77 }
Junxiao Shi6535f1e2015-10-08 13:02:18 -070078}
79
80void
Davide Pesavento284bd622019-03-31 02:10:02 -040081InternalClientTransport::connectToForwarder(InternalForwarderTransport* forwarder)
Junxiao Shi6535f1e2015-10-08 13:02:18 -070082{
Davide Pesavento284bd622019-03-31 02:10:02 -040083 NFD_LOG_DEBUG(__func__ << " " << forwarder);
Junxiao Shi6535f1e2015-10-08 13:02:18 -070084
Davide Pesavento284bd622019-03-31 02:10:02 -040085 if (m_forwarder != nullptr) {
86 // disconnect from the old forwarder transport
87 m_forwarder->setPeer(nullptr);
88 m_fwTransportStateConn.disconnect();
89 }
Junxiao Shi6535f1e2015-10-08 13:02:18 -070090
Davide Pesavento284bd622019-03-31 02:10:02 -040091 m_forwarder = forwarder;
92
93 if (m_forwarder != nullptr) {
94 // connect to the new forwarder transport
95 m_forwarder->setPeer(this);
96 m_fwTransportStateConn = m_forwarder->afterStateChange.connect(
Junxiao Shi6535f1e2015-10-08 13:02:18 -070097 [this] (TransportState oldState, TransportState newState) {
98 if (newState == TransportState::CLOSED) {
Davide Pesavento284bd622019-03-31 02:10:02 -040099 connectToForwarder(nullptr);
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700100 }
101 });
102 }
103}
104
105void
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400106InternalClientTransport::receivePacket(const Block& packet)
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700107{
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400108 getGlobalIoService().post([this, packet] {
109 NFD_LOG_TRACE("Received: " << packet.size() << " bytes");
Davide Pesavento284bd622019-03-31 02:10:02 -0400110 if (m_receiveCallback) {
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400111 m_receiveCallback(packet);
Davide Pesavento284bd622019-03-31 02:10:02 -0400112 }
113 });
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700114}
115
116void
117InternalClientTransport::send(const Block& wire)
118{
Davide Pesavento284bd622019-03-31 02:10:02 -0400119 NFD_LOG_TRACE("Sending to " << m_forwarder);
120
121 if (m_forwarder)
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400122 m_forwarder->receivePacket(wire);
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700123}
124
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400125} // namespace nfd::face