Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 2 | /* |
ashiqopu | 77d0bfd | 2019-02-20 20:37:31 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 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 | #ifndef NFD_DAEMON_FACE_TRANSPORT_HPP |
| 27 | #define NFD_DAEMON_FACE_TRANSPORT_HPP |
| 28 | |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 29 | #include "face-common.hpp" |
Davide Pesavento | 2cae8ca | 2019-04-18 20:48:05 -0400 | [diff] [blame] | 30 | #include "common/counter.hpp" |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 31 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 32 | namespace nfd { |
| 33 | namespace face { |
| 34 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 35 | /** \brief Indicates the state of a transport. |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 36 | */ |
| 37 | enum class TransportState { |
| 38 | NONE, |
Davide Pesavento | 68ab43d | 2017-07-02 13:37:35 -0400 | [diff] [blame] | 39 | UP, ///< the transport is up and can transmit packets |
| 40 | DOWN, ///< the transport is temporarily down, and is being recovered |
| 41 | CLOSING, ///< the transport is being closed gracefully, either by the peer or by a call to close() |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 42 | FAILED, ///< the transport is being closed due to a failure |
| 43 | CLOSED ///< the transport is closed, and can be safely deallocated |
| 44 | }; |
| 45 | |
| 46 | std::ostream& |
| 47 | operator<<(std::ostream& os, TransportState state); |
| 48 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 49 | /** \brief Counters provided by a transport. |
| 50 | * \note The type name TransportCounters is an implementation detail. |
| 51 | * Use Transport::Counters in public API. |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 52 | */ |
| 53 | class TransportCounters |
| 54 | { |
| 55 | public: |
| 56 | /** \brief count of incoming packets |
| 57 | * |
| 58 | * A 'packet' typically means a top-level TLV block. |
| 59 | * For a datagram-based transport, an incoming packet that cannot be parsed as TLV |
| 60 | * would not be counted. |
| 61 | */ |
| 62 | PacketCounter nInPackets; |
| 63 | |
| 64 | /** \brief count of outgoing packets |
| 65 | * |
| 66 | * A 'packet' typically means a top-level TLV block. |
| 67 | * This counter is incremented only if transport is UP. |
| 68 | */ |
| 69 | PacketCounter nOutPackets; |
| 70 | |
| 71 | /** \brief total incoming bytes |
| 72 | * |
| 73 | * This counter includes headers imposed by NFD (such as NDNLP), |
| 74 | * but excludes overhead of underlying protocol (such as IP header). |
| 75 | * For a datagram-based transport, an incoming packet that cannot be parsed as TLV |
| 76 | * would not be counted. |
| 77 | */ |
| 78 | ByteCounter nInBytes; |
| 79 | |
| 80 | /** \brief total outgoing bytes |
| 81 | * |
| 82 | * This counter includes headers imposed by NFD (such as NDNLP), |
| 83 | * but excludes overhead of underlying protocol (such as IP header). |
| 84 | * This counter is increased only if transport is UP. |
| 85 | */ |
| 86 | ByteCounter nOutBytes; |
| 87 | }; |
| 88 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 89 | /** \brief indicates the transport has no limit on payload size |
| 90 | */ |
| 91 | const ssize_t MTU_UNLIMITED = -1; |
| 92 | |
Junxiao Shi | 5b8a2b2 | 2015-10-22 17:20:44 -0700 | [diff] [blame] | 93 | /** \brief (for internal use) indicates MTU field is unset |
| 94 | */ |
| 95 | const ssize_t MTU_INVALID = -2; |
| 96 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 97 | /** \brief indicates that the transport does not support reading the queue capacity/length |
| 98 | */ |
| 99 | const ssize_t QUEUE_UNSUPPORTED = -1; |
| 100 | |
| 101 | /** \brief indicates that the transport was unable to retrieve the queue capacity/length |
| 102 | */ |
| 103 | const ssize_t QUEUE_ERROR = -2; |
| 104 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 105 | /** \brief The lower half of a Face. |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 106 | * \sa Face |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 107 | */ |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 108 | class Transport : protected virtual TransportCounters, noncopyable |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 109 | { |
| 110 | public: |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 111 | /** \brief Counters provided by a transport. |
| 112 | * \sa TransportCounters |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 113 | */ |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 114 | using Counters = TransportCounters; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 115 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 116 | /** \brief Default constructor. |
Junxiao Shi | 5b8a2b2 | 2015-10-22 17:20:44 -0700 | [diff] [blame] | 117 | * |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 118 | * This constructor initializes static properties to invalid values. |
Junxiao Shi | 5b8a2b2 | 2015-10-22 17:20:44 -0700 | [diff] [blame] | 119 | * Subclass constructor must explicitly set every static property. |
| 120 | * |
| 121 | * This constructor initializes TransportState to UP; |
| 122 | * subclass constructor can rely on this default value. |
| 123 | */ |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 124 | Transport(); |
| 125 | |
| 126 | virtual |
| 127 | ~Transport(); |
| 128 | |
| 129 | public: |
| 130 | /** \brief set Face and LinkService for Transport |
| 131 | * \pre setFaceAndLinkService has not been called |
| 132 | */ |
| 133 | void |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 134 | setFaceAndLinkService(Face& face, LinkService& service); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 135 | |
| 136 | /** \return Face to which this Transport is attached |
| 137 | */ |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 138 | const Face* |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 139 | getFace() const; |
| 140 | |
| 141 | /** \return LinkService to which this Transport is attached |
| 142 | */ |
| 143 | const LinkService* |
| 144 | getLinkService() const; |
| 145 | |
| 146 | /** \return LinkService to which this Transport is attached |
| 147 | */ |
| 148 | LinkService* |
| 149 | getLinkService(); |
| 150 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 151 | virtual const Counters& |
| 152 | getCounters() const; |
| 153 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 154 | public: // upper interface |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 155 | /** \brief Request the transport to be closed |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 156 | * |
| 157 | * This operation is effective only if transport is in UP or DOWN state, |
| 158 | * otherwise it has no effect. |
| 159 | * The transport changes state to CLOSING, and performs cleanup procedure. |
| 160 | * The state will be changed to CLOSED when cleanup is complete, which may |
| 161 | * happen synchronously or asynchronously. |
| 162 | */ |
| 163 | void |
| 164 | close(); |
| 165 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 166 | /** \brief Send a link-layer packet |
| 167 | * \param packet the packet to be sent, must be a valid and well-formed TLV block |
| 168 | * \param endpoint the destination endpoint |
| 169 | * \note This operation has no effect if getState() is neither UP nor DOWN |
| 170 | * \warning Behavior is undefined if packet size exceeds the MTU limit |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 171 | */ |
| 172 | void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 173 | send(const Block& packet, const EndpointId& endpoint = 0); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 174 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 175 | public: // static properties |
| 176 | /** \return a FaceUri representing local endpoint |
| 177 | */ |
| 178 | FaceUri |
| 179 | getLocalUri() const; |
| 180 | |
| 181 | /** \return a FaceUri representing remote endpoint |
| 182 | */ |
| 183 | FaceUri |
| 184 | getRemoteUri() const; |
| 185 | |
| 186 | /** \return whether face is local or non-local for scope control purpose |
| 187 | */ |
| 188 | ndn::nfd::FaceScope |
| 189 | getScope() const; |
| 190 | |
| 191 | /** \return face persistency setting |
| 192 | */ |
| 193 | ndn::nfd::FacePersistency |
| 194 | getPersistency() const; |
| 195 | |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 196 | /** \brief check whether the face persistency can be changed to \p newPersistency |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 197 | * |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 198 | * This function serves as the external API, and invokes the protected function |
| 199 | * canChangePersistencyToImpl to perform further checks if \p newPersistency differs |
| 200 | * from the current persistency. |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 201 | * |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 202 | * \return true if the change can be performed, false otherwise |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 203 | */ |
| 204 | bool |
| 205 | canChangePersistencyTo(ndn::nfd::FacePersistency newPersistency) const; |
| 206 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 207 | /** \brief changes face persistency setting |
| 208 | */ |
| 209 | void |
Davide Pesavento | 3206565 | 2017-01-15 01:52:21 -0500 | [diff] [blame] | 210 | setPersistency(ndn::nfd::FacePersistency newPersistency); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 211 | |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 212 | /** \return the link type of the transport |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 213 | */ |
| 214 | ndn::nfd::LinkType |
| 215 | getLinkType() const; |
| 216 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 217 | /** \return maximum payload size |
| 218 | * \retval MTU_UNLIMITED transport has no limit on payload size |
| 219 | * |
| 220 | * This size is the maximum packet size that can be sent or received through this transport. |
| 221 | * |
| 222 | * For a datagram-based transport, this is typically the Maximum Transmission Unit (MTU), |
| 223 | * after the overhead of headers introduced by the transport has been accounted for. |
| 224 | * For a stream-based transport, this is typically unlimited (MTU_UNLIMITED). |
| 225 | */ |
| 226 | ssize_t |
| 227 | getMtu() const; |
| 228 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 229 | /** \return capacity of the send queue (in bytes) |
| 230 | * \retval QUEUE_UNSUPPORTED transport does not support queue capacity retrieval |
| 231 | * \retval QUEUE_ERROR transport was unable to retrieve the queue capacity |
| 232 | */ |
| 233 | ssize_t |
| 234 | getSendQueueCapacity() const; |
| 235 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 236 | public: // dynamic properties |
| 237 | /** \return transport state |
| 238 | */ |
| 239 | TransportState |
| 240 | getState() const; |
| 241 | |
| 242 | /** \brief signals when transport state changes |
| 243 | */ |
| 244 | signal::Signal<Transport, TransportState/*old*/, TransportState/*new*/> afterStateChange; |
| 245 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 246 | /** \return expiration time of the transport |
| 247 | * \retval time::steady_clock::TimePoint::max() the transport has indefinite lifetime |
| 248 | */ |
| 249 | time::steady_clock::TimePoint |
| 250 | getExpirationTime() const; |
| 251 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 252 | /** \return current send queue length of the transport (in octets) |
| 253 | * \retval QUEUE_UNSUPPORTED transport does not support queue length retrieval |
| 254 | * \retval QUEUE_ERROR transport was unable to retrieve the queue length |
| 255 | */ |
| 256 | virtual ssize_t |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame] | 257 | getSendQueueLength() |
| 258 | { |
| 259 | return QUEUE_UNSUPPORTED; |
| 260 | } |
| 261 | |
| 262 | protected: // upper interface to be invoked by subclass |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 263 | /** \brief Pass a received link-layer packet to the upper layer for further processing |
| 264 | * \param packet the received packet, must be a valid and well-formed TLV block |
| 265 | * \param endpoint the source endpoint |
| 266 | * \warning Behavior is undefined if packet size exceeds the MTU limit |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame] | 267 | */ |
| 268 | void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 269 | receive(const Block& packet, const EndpointId& endpoint = 0); |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 270 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 271 | protected: // properties to be set by subclass |
| 272 | void |
| 273 | setLocalUri(const FaceUri& uri); |
| 274 | |
| 275 | void |
| 276 | setRemoteUri(const FaceUri& uri); |
| 277 | |
| 278 | void |
| 279 | setScope(ndn::nfd::FaceScope scope); |
| 280 | |
| 281 | void |
| 282 | setLinkType(ndn::nfd::LinkType linkType); |
| 283 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 284 | void |
| 285 | setMtu(ssize_t mtu); |
| 286 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 287 | void |
| 288 | setSendQueueCapacity(ssize_t sendQueueCapacity); |
| 289 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 290 | /** \brief set transport state |
| 291 | * |
| 292 | * Only the following transitions are valid: |
| 293 | * UP->DOWN, DOWN->UP, UP/DOWN->CLOSING/FAILED, CLOSING/FAILED->CLOSED |
| 294 | * |
| 295 | * \throw std::runtime_error transition is invalid. |
| 296 | */ |
| 297 | void |
| 298 | setState(TransportState newState); |
| 299 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 300 | void |
| 301 | setExpirationTime(const time::steady_clock::TimePoint& expirationTime); |
| 302 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 303 | protected: // to be overridden by subclass |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 304 | /** \brief invoked by canChangePersistencyTo to perform the check |
| 305 | * |
| 306 | * Base class implementation returns false. |
| 307 | * |
| 308 | * \param newPersistency the new persistency, guaranteed to be different from current persistency |
| 309 | */ |
| 310 | virtual bool |
| 311 | canChangePersistencyToImpl(ndn::nfd::FacePersistency newPersistency) const; |
| 312 | |
| 313 | /** \brief invoked after the persistency has been changed |
| 314 | * |
| 315 | * The base class implementation does nothing. |
| 316 | * When overridden in a subclass, the function should update internal states |
| 317 | * after persistency setting has been changed. |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 318 | */ |
| 319 | virtual void |
Yanbiao Li | 32dab97 | 2016-11-27 12:26:09 +0800 | [diff] [blame] | 320 | afterChangePersistency(ndn::nfd::FacePersistency oldPersistency); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 321 | |
| 322 | /** \brief performs Transport specific operations to close the transport |
| 323 | * |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 324 | * This is invoked once by \p close() after changing state to CLOSING. |
| 325 | * It will not be invoked by Transport class if the transport is already CLOSING or CLOSED. |
| 326 | * |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 327 | * When the cleanup procedure is complete, this method should change state to CLOSED. |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 328 | * This transition can happen synchronously or asynchronously. |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 329 | */ |
| 330 | virtual void |
| 331 | doClose() = 0; |
| 332 | |
| 333 | private: // to be overridden by subclass |
| 334 | /** \brief performs Transport specific operations to send a packet |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 335 | * \param packet the packet to be sent, can be assumed to be valid and well-formed |
| 336 | * \param endpoint the destination endpoint |
| 337 | * \pre transport state is either UP or DOWN |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 338 | */ |
| 339 | virtual void |
Davide Pesavento | b3a23ca | 2019-05-04 20:40:21 -0400 | [diff] [blame] | 340 | doSend(const Block& packet, const EndpointId& endpoint) = 0; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 341 | |
Eric Newberry | 812d615 | 2018-06-06 15:06:01 -0700 | [diff] [blame] | 342 | public: |
| 343 | /** \brief minimum MTU that may be set on a transport |
| 344 | * |
| 345 | * This is done to ensure the NDNLPv2 fragmentation feature functions properly. |
| 346 | */ |
| 347 | static constexpr ssize_t MIN_MTU = 64; |
| 348 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 349 | private: |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 350 | Face* m_face; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 351 | LinkService* m_service; |
| 352 | FaceUri m_localUri; |
| 353 | FaceUri m_remoteUri; |
| 354 | ndn::nfd::FaceScope m_scope; |
| 355 | ndn::nfd::FacePersistency m_persistency; |
| 356 | ndn::nfd::LinkType m_linkType; |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 357 | ssize_t m_mtu; |
Davide Pesavento | 3e7fc83 | 2018-09-08 14:07:29 -0400 | [diff] [blame] | 358 | ssize_t m_sendQueueCapacity; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 359 | TransportState m_state; |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 360 | time::steady_clock::TimePoint m_expirationTime; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 361 | }; |
| 362 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 363 | inline const Face* |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 364 | Transport::getFace() const |
| 365 | { |
| 366 | return m_face; |
| 367 | } |
| 368 | |
| 369 | inline const LinkService* |
| 370 | Transport::getLinkService() const |
| 371 | { |
| 372 | return m_service; |
| 373 | } |
| 374 | |
| 375 | inline LinkService* |
| 376 | Transport::getLinkService() |
| 377 | { |
| 378 | return m_service; |
| 379 | } |
| 380 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 381 | inline const Transport::Counters& |
| 382 | Transport::getCounters() const |
| 383 | { |
| 384 | return *this; |
| 385 | } |
| 386 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 387 | inline FaceUri |
| 388 | Transport::getLocalUri() const |
| 389 | { |
| 390 | return m_localUri; |
| 391 | } |
| 392 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 393 | inline void |
| 394 | Transport::setLocalUri(const FaceUri& uri) |
| 395 | { |
| 396 | m_localUri = uri; |
| 397 | } |
| 398 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 399 | inline FaceUri |
| 400 | Transport::getRemoteUri() const |
| 401 | { |
| 402 | return m_remoteUri; |
| 403 | } |
| 404 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 405 | inline void |
| 406 | Transport::setRemoteUri(const FaceUri& uri) |
| 407 | { |
| 408 | m_remoteUri = uri; |
| 409 | } |
| 410 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 411 | inline ndn::nfd::FaceScope |
| 412 | Transport::getScope() const |
| 413 | { |
| 414 | return m_scope; |
| 415 | } |
| 416 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 417 | inline void |
| 418 | Transport::setScope(ndn::nfd::FaceScope scope) |
| 419 | { |
| 420 | m_scope = scope; |
| 421 | } |
| 422 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 423 | inline ndn::nfd::FacePersistency |
| 424 | Transport::getPersistency() const |
| 425 | { |
| 426 | return m_persistency; |
| 427 | } |
| 428 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 429 | inline ndn::nfd::LinkType |
| 430 | Transport::getLinkType() const |
| 431 | { |
| 432 | return m_linkType; |
| 433 | } |
| 434 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 435 | inline void |
| 436 | Transport::setLinkType(ndn::nfd::LinkType linkType) |
| 437 | { |
| 438 | m_linkType = linkType; |
| 439 | } |
| 440 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 441 | inline ssize_t |
| 442 | Transport::getMtu() const |
| 443 | { |
| 444 | return m_mtu; |
| 445 | } |
| 446 | |
| 447 | inline void |
| 448 | Transport::setMtu(ssize_t mtu) |
| 449 | { |
| 450 | BOOST_ASSERT(mtu == MTU_UNLIMITED || mtu > 0); |
| 451 | m_mtu = mtu; |
| 452 | } |
| 453 | |
Eric Newberry | b49313d | 2017-12-24 20:22:27 -0700 | [diff] [blame] | 454 | inline ssize_t |
| 455 | Transport::getSendQueueCapacity() const |
| 456 | { |
| 457 | return m_sendQueueCapacity; |
| 458 | } |
| 459 | |
| 460 | inline void |
| 461 | Transport::setSendQueueCapacity(ssize_t sendQueueCapacity) |
| 462 | { |
| 463 | m_sendQueueCapacity = sendQueueCapacity; |
| 464 | } |
| 465 | |
Junxiao Shi | 1354611 | 2015-10-14 19:33:07 -0700 | [diff] [blame] | 466 | inline TransportState |
| 467 | Transport::getState() const |
| 468 | { |
| 469 | return m_state; |
| 470 | } |
| 471 | |
Eric Newberry | c64d30a | 2015-12-26 11:07:27 -0700 | [diff] [blame] | 472 | inline time::steady_clock::TimePoint |
| 473 | Transport::getExpirationTime() const |
| 474 | { |
| 475 | return m_expirationTime; |
| 476 | } |
| 477 | |
| 478 | inline void |
| 479 | Transport::setExpirationTime(const time::steady_clock::TimePoint& expirationTime) |
| 480 | { |
| 481 | m_expirationTime = expirationTime; |
| 482 | } |
| 483 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 484 | std::ostream& |
| 485 | operator<<(std::ostream& os, const FaceLogHelper<Transport>& flh); |
| 486 | |
| 487 | template<typename T> |
| 488 | typename std::enable_if<std::is_base_of<Transport, T>::value && |
| 489 | !std::is_same<Transport, T>::value, std::ostream&>::type |
| 490 | operator<<(std::ostream& os, const FaceLogHelper<T>& flh) |
| 491 | { |
| 492 | return os << FaceLogHelper<Transport>(flh.obj); |
| 493 | } |
| 494 | |
| 495 | } // namespace face |
| 496 | } // namespace nfd |
| 497 | |
| 498 | #endif // NFD_DAEMON_FACE_TRANSPORT_HPP |