Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame^] | 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [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_FACE_COMMON_HPP |
| 27 | #define NFD_DAEMON_FACE_FACE_COMMON_HPP |
| 28 | |
| 29 | #include "core/common.hpp" |
| 30 | #include "common/logger.hpp" |
| 31 | |
| 32 | #include <ndn-cxx/encoding/nfd-constants.hpp> |
| 33 | |
| 34 | #include <boost/logic/tribool.hpp> |
| 35 | |
| 36 | namespace nfd { |
| 37 | namespace face { |
| 38 | |
| 39 | class Face; |
| 40 | class LinkService; |
| 41 | |
| 42 | /** \brief Identifies a face. |
| 43 | */ |
| 44 | using FaceId = uint64_t; |
| 45 | |
| 46 | /// indicates an invalid FaceId |
| 47 | const FaceId INVALID_FACEID = ndn::nfd::INVALID_FACE_ID; |
| 48 | /// identifies the InternalFace used in management |
| 49 | const FaceId FACEID_INTERNAL_FACE = 1; |
| 50 | /// identifies a packet comes from the ContentStore |
| 51 | const FaceId FACEID_CONTENT_STORE = 254; |
| 52 | /// identifies the NullFace that drops every packet |
| 53 | const FaceId FACEID_NULL = 255; |
| 54 | /// upper bound of reserved FaceIds |
| 55 | const FaceId FACEID_RESERVED_MAX = 255; |
| 56 | |
Eric Newberry | cb6551e | 2020-03-02 14:12:16 -0800 | [diff] [blame] | 57 | /** \brief Minimum MTU that may be set |
| 58 | * |
| 59 | * This is done to ensure the NDNLPv2 fragmentation feature functions properly. |
| 60 | */ |
| 61 | const ssize_t MIN_MTU = 64; |
| 62 | |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 63 | /** \brief Identifies a remote endpoint on the link. |
| 64 | * |
| 65 | * This ID is only meaningful in the context of the same Transport. |
| 66 | * Incoming packets from the same remote endpoint have the same EndpointId, |
| 67 | * and incoming packets from different remote endpoints have different EndpointIds. |
| 68 | * |
| 69 | * Typically, a point-to-point Transport has only one meaningful EndpointId (usually 0). |
| 70 | */ |
| 71 | using EndpointId = uint64_t; |
| 72 | |
| 73 | /** \brief Parameters used to set Transport properties or LinkService options on a newly created face. |
| 74 | * |
| 75 | * Parameters are passed as a struct rather than individually, so that a future change in the list |
| 76 | * of parameters does not require an update to the method signature in all subclasses. |
| 77 | */ |
| 78 | struct FaceParams |
| 79 | { |
| 80 | ndn::nfd::FacePersistency persistency = ndn::nfd::FACE_PERSISTENCY_PERSISTENT; |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame^] | 81 | std::optional<time::nanoseconds> baseCongestionMarkingInterval; |
| 82 | std::optional<uint64_t> defaultCongestionThreshold; |
| 83 | std::optional<ssize_t> mtu; |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 84 | bool wantLocalFields = false; |
| 85 | bool wantLpReliability = false; |
| 86 | boost::logic::tribool wantCongestionMarking = boost::logic::indeterminate; |
| 87 | }; |
| 88 | |
| 89 | /** \brief For internal use by FaceLogging macros. |
| 90 | * |
| 91 | * FaceLogHelper wraps a reference to Face, LinkService, or Transport object. |
| 92 | * |
| 93 | * `std::ostream& operator<<(std::ostream& os, const FaceLogHelper<T>& flh)` |
| 94 | * should be specialized to print "[id=888,local=scheme://local/uri,remote=scheme://remote/uri] " |
| 95 | * which will appear as part of the log message. |
| 96 | */ |
| 97 | template<typename T> |
| 98 | class FaceLogHelper |
| 99 | { |
| 100 | public: |
| 101 | explicit |
| 102 | FaceLogHelper(const T& obj1) noexcept |
| 103 | : obj(obj1) |
| 104 | { |
| 105 | } |
| 106 | |
| 107 | public: |
| 108 | const T& obj; |
| 109 | }; |
| 110 | |
| 111 | } // namespace face |
| 112 | |
| 113 | using face::EndpointId; |
| 114 | using face::FaceId; |
| 115 | |
| 116 | } // namespace nfd |
| 117 | |
| 118 | /** \defgroup FaceLogging Face logging macros |
| 119 | * |
| 120 | * These macros augment the log message with some face-specific information, |
| 121 | * such as the face ID, that are useful to distinguish which face produced the |
| 122 | * message. It is strongly recommended to use these macros instead of the |
| 123 | * generic ones for all logging inside Face, LinkService, Transport subclasses. |
| 124 | * @{ |
| 125 | */ |
| 126 | |
| 127 | /** \cond */ |
| 128 | // implementation detail |
| 129 | #define NFD_LOG_FACE(level, msg) NFD_LOG_##level( \ |
| 130 | ::nfd::face::FaceLogHelper< \ |
Davide Pesavento | b7bfcb9 | 2022-05-22 23:55:23 -0400 | [diff] [blame^] | 131 | std::remove_cv_t<std::remove_reference_t<decltype(*this)>> \ |
Davide Pesavento | cb425e8 | 2019-07-14 21:48:22 -0400 | [diff] [blame] | 132 | >(*this) \ |
| 133 | << msg) |
| 134 | /** \endcond */ |
| 135 | |
| 136 | /** \brief Log a message at TRACE level */ |
| 137 | #define NFD_LOG_FACE_TRACE(msg) NFD_LOG_FACE(TRACE, msg) |
| 138 | |
| 139 | /** \brief Log a message at DEBUG level */ |
| 140 | #define NFD_LOG_FACE_DEBUG(msg) NFD_LOG_FACE(DEBUG, msg) |
| 141 | |
| 142 | /** \brief Log a message at INFO level */ |
| 143 | #define NFD_LOG_FACE_INFO(msg) NFD_LOG_FACE(INFO, msg) |
| 144 | |
| 145 | /** \brief Log a message at WARN level */ |
| 146 | #define NFD_LOG_FACE_WARN(msg) NFD_LOG_FACE(WARN, msg) |
| 147 | |
| 148 | /** \brief Log a message at ERROR level */ |
| 149 | #define NFD_LOG_FACE_ERROR(msg) NFD_LOG_FACE(ERROR, msg) |
| 150 | |
| 151 | /** @} */ |
| 152 | |
| 153 | #endif // NFD_DAEMON_FACE_FACE_COMMON_HPP |