blob: 1b7832e93b3d0913dba73acbed32ffe297fe2774 [file] [log] [blame]
Eric Newberrya98bf932015-09-21 00:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, Regents of the University of California,
4 * 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 "transport.hpp"
27#include "lp-face.hpp"
28#include "link-service.hpp"
29
30namespace nfd {
31namespace face {
32
33NFD_LOG_INIT("Transport");
34
35std::ostream&
36operator<<(std::ostream& os, TransportState state)
37{
38 switch (state) {
39 case TransportState::UP:
40 return os << "UP";
41 case TransportState::DOWN:
42 return os << "DOWN";
43 case TransportState::CLOSING:
44 return os << "CLOSING";
45 case TransportState::FAILED:
46 return os << "FAILED";
47 case TransportState::CLOSED:
48 return os << "CLOSED";
49 default:
50 return os << "NONE";
51 }
52}
53
54Transport::Packet::Packet(Block&& packet1)
55 : packet(std::move(packet1))
Junxiao Shi13546112015-10-14 19:33:07 -070056 , remoteEndpoint(0)
Eric Newberrya98bf932015-09-21 00:58:47 -070057{
58}
59
60Transport::Transport()
61 : m_face(nullptr)
62 , m_service(nullptr)
Junxiao Shi5b8a2b22015-10-22 17:20:44 -070063 , m_scope(ndn::nfd::FACE_SCOPE_NONE)
64 , m_persistency(ndn::nfd::FACE_PERSISTENCY_NONE)
65 , m_linkType(ndn::nfd::LINK_TYPE_NONE)
66 , m_mtu(MTU_INVALID)
Eric Newberrya98bf932015-09-21 00:58:47 -070067 , m_state(TransportState::UP)
68 , m_counters(nullptr)
69{
70}
71
72Transport::~Transport()
73{
74}
75
76void
77Transport::setFaceAndLinkService(LpFace& face, LinkService& service)
78{
79 BOOST_ASSERT(m_face == nullptr);
80 BOOST_ASSERT(m_service == nullptr);
81
82 m_face = &face;
83 m_service = &service;
84 m_counters = &m_face->getMutableCounters();
85}
86
87void
88Transport::close()
89{
90 if (m_state != TransportState::UP && m_state != TransportState::DOWN) {
91 return;
92 }
93
94 this->setState(TransportState::CLOSING);
95 this->doClose();
96 // warning: don't access any fields after this:
97 // the Transport may be deallocated if doClose changes state to CLOSED
98}
99
100void
Junxiao Shi13546112015-10-14 19:33:07 -0700101Transport::send(Packet&& packet)
Eric Newberrya98bf932015-09-21 00:58:47 -0700102{
Junxiao Shi13546112015-10-14 19:33:07 -0700103 BOOST_ASSERT(this->getMtu() == MTU_UNLIMITED ||
104 packet.packet.size() <= static_cast<size_t>(this->getMtu()));
105
106 TransportState state = this->getState();
107 if (state != TransportState::UP && state != TransportState::DOWN) {
108 NFD_LOG_FACE_TRACE("send ignored in " << state << " state");
109 return;
110 }
111
Eric Newberrya98bf932015-09-21 00:58:47 -0700112 // TODO#3177 increment LpPacket counter
113 m_counters->getNOutBytes() += packet.packet.size();
114
115 this->doSend(std::move(packet));
116}
117
118void
Junxiao Shi13546112015-10-14 19:33:07 -0700119Transport::receive(Packet&& packet)
Eric Newberrya98bf932015-09-21 00:58:47 -0700120{
Junxiao Shi13546112015-10-14 19:33:07 -0700121 BOOST_ASSERT(this->getMtu() == MTU_UNLIMITED ||
122 packet.packet.size() <= static_cast<size_t>(this->getMtu()));
123
Eric Newberrya98bf932015-09-21 00:58:47 -0700124 // TODO#3177 increment LpPacket counter
125 m_counters->getNInBytes() += packet.packet.size();
126
127 m_service->receivePacket(std::move(packet));
128}
129
130void
Davide Pesavento8728a252015-11-06 04:01:22 +0100131Transport::setPersistency(ndn::nfd::FacePersistency newPersistency)
132{
133 if (m_persistency == newPersistency) {
134 return;
135 }
136
137 if (newPersistency == ndn::nfd::FACE_PERSISTENCY_NONE) {
138 throw std::runtime_error("invalid persistency transition");
139 }
140
141 if (m_persistency != ndn::nfd::FACE_PERSISTENCY_NONE) {
142 this->beforeChangePersistency(newPersistency);
143 NFD_LOG_FACE_DEBUG("setPersistency " << m_persistency << " -> " << newPersistency);
144 }
145
146 m_persistency = newPersistency;
147}
148
149void
Eric Newberrya98bf932015-09-21 00:58:47 -0700150Transport::setState(TransportState newState)
151{
152 if (m_state == newState) {
153 return;
154 }
155
156 bool isValid = false;
157 switch (m_state) {
158 case TransportState::UP:
159 isValid = newState == TransportState::DOWN ||
160 newState == TransportState::CLOSING ||
161 newState == TransportState::FAILED;
162 break;
163 case TransportState::DOWN:
164 isValid = newState == TransportState::UP ||
165 newState == TransportState::CLOSING ||
166 newState == TransportState::FAILED;
167 break;
168 case TransportState::CLOSING:
169 case TransportState::FAILED:
170 isValid = newState == TransportState::CLOSED;
171 break;
172 default:
173 break;
174 }
175
176 if (!isValid) {
177 throw std::runtime_error("invalid state transition");
178 }
179
180 NFD_LOG_FACE_INFO("setState " << m_state << " -> " << newState);
181
182 TransportState oldState = m_state;
183 m_state = newState;
184 afterStateChange(oldState, newState);
185 // warning: don't access any fields after this:
186 // the Transport may be deallocated in the signal handler if newState is CLOSED
187}
188
189std::ostream&
190operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh)
191{
192 const Transport& transport = flh.obj;
193 const LpFace* face = transport.getFace();
194 FaceId faceId = face == nullptr ? INVALID_FACEID : face->getId();
195
196 os << "[id=" << faceId << ",local=" << transport.getLocalUri()
197 << ",remote=" << transport.getRemoteUri() << "] ";
198 return os;
199}
200
201} // namespace face
202} // namespace nfd