Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 981db80 | 2018-04-10 18:05:04 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [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. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 25 | |
| 26 | #include "face-table.hpp" |
Junxiao Shi | 40cb61c | 2015-09-23 18:36:45 -0700 | [diff] [blame] | 27 | #include "core/global-io.hpp" |
Steve DiBenedetto | bf6a93d | 2014-03-21 14:03:02 -0600 | [diff] [blame] | 28 | #include "core/logger.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 29 | #include "face/channel.hpp" |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | 981db80 | 2018-04-10 18:05:04 -0400 | [diff] [blame] | 31 | #include <ndn-cxx/util/concepts.hpp> |
| 32 | |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 33 | namespace nfd { |
| 34 | |
Davide Pesavento | 981db80 | 2018-04-10 18:05:04 -0400 | [diff] [blame] | 35 | NDN_CXX_ASSERT_FORWARD_ITERATOR(FaceTable::const_iterator); |
Junxiao Shi | 3aba754 | 2016-12-24 02:42:52 +0000 | [diff] [blame] | 36 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 37 | NFD_LOG_INIT(FaceTable); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 38 | |
Junxiao Shi | dcffdaa | 2016-07-26 02:23:56 +0000 | [diff] [blame] | 39 | FaceTable::FaceTable() |
| 40 | : m_lastFaceId(face::FACEID_RESERVED_MAX) |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 41 | { |
| 42 | } |
| 43 | |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 44 | Face* |
Junxiao Shi | afbd74d | 2014-11-29 21:18:17 -0700 | [diff] [blame] | 45 | FaceTable::get(FaceId id) const |
| 46 | { |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 47 | auto i = m_faces.find(id); |
Davide Pesavento | 6fd1e7e | 2017-02-17 18:45:27 +0000 | [diff] [blame] | 48 | return i == m_faces.end() ? nullptr : i->second.get(); |
Junxiao Shi | afbd74d | 2014-11-29 21:18:17 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | size_t |
| 52 | FaceTable::size() const |
| 53 | { |
| 54 | return m_faces.size(); |
| 55 | } |
| 56 | |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 57 | void |
| 58 | FaceTable::add(shared_ptr<Face> face) |
| 59 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 60 | if (face->getId() != face::INVALID_FACEID && m_faces.count(face->getId()) > 0) { |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 61 | NFD_LOG_WARN("Trying to add existing face id=" << face->getId() << " to the face table"); |
| 62 | return; |
| 63 | } |
Alexander Afanasyev | bc521a5 | 2014-03-26 23:31:55 -0700 | [diff] [blame] | 64 | |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 65 | FaceId faceId = ++m_lastFaceId; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 66 | BOOST_ASSERT(faceId > face::FACEID_RESERVED_MAX); |
Davide Pesavento | 6fd1e7e | 2017-02-17 18:45:27 +0000 | [diff] [blame] | 67 | this->addImpl(std::move(face), faceId); |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | void |
| 71 | FaceTable::addReserved(shared_ptr<Face> face, FaceId faceId) |
| 72 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 73 | BOOST_ASSERT(face->getId() == face::INVALID_FACEID); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 74 | BOOST_ASSERT(faceId <= face::FACEID_RESERVED_MAX); |
Davide Pesavento | 6fd1e7e | 2017-02-17 18:45:27 +0000 | [diff] [blame] | 75 | this->addImpl(std::move(face), faceId); |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void |
| 79 | FaceTable::addImpl(shared_ptr<Face> face, FaceId faceId) |
| 80 | { |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 81 | face->setId(faceId); |
Davide Pesavento | 6fd1e7e | 2017-02-17 18:45:27 +0000 | [diff] [blame] | 82 | auto ret = m_faces.emplace(faceId, face); |
Junxiao Shi | da89fa5 | 2017-03-22 21:34:56 +0000 | [diff] [blame] | 83 | BOOST_VERIFY(ret.second); |
Davide Pesavento | 6fd1e7e | 2017-02-17 18:45:27 +0000 | [diff] [blame] | 84 | |
| 85 | NFD_LOG_INFO("Added face id=" << faceId << |
| 86 | " remote=" << face->getRemoteUri() << |
| 87 | " local=" << face->getLocalUri()); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 88 | |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 89 | connectFaceClosedSignal(*face, [=] { remove(faceId); }); |
Junxiao Shi | bd392bf | 2014-03-17 15:54:11 -0700 | [diff] [blame] | 90 | |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 91 | this->afterAdd(*face); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | void |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 95 | FaceTable::remove(FaceId faceId) |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 96 | { |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 97 | auto i = m_faces.find(faceId); |
| 98 | BOOST_ASSERT(i != m_faces.end()); |
| 99 | shared_ptr<Face> face = i->second; |
Junxiao Shi | bd392bf | 2014-03-17 15:54:11 -0700 | [diff] [blame] | 100 | |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 101 | this->beforeRemove(*face); |
| 102 | |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 103 | m_faces.erase(i); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 104 | face->setId(face::INVALID_FACEID); |
Davide Pesavento | 66ff098 | 2015-01-29 22:39:00 +0100 | [diff] [blame] | 105 | |
| 106 | NFD_LOG_INFO("Removed face id=" << faceId << |
| 107 | " remote=" << face->getRemoteUri() << |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 108 | " local=" << face->getLocalUri()); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 109 | |
Junxiao Shi | 40cb61c | 2015-09-23 18:36:45 -0700 | [diff] [blame] | 110 | // defer Face deallocation, so that Transport isn't deallocated during afterStateChange signal |
| 111 | getGlobalIoService().post([face] {}); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 112 | } |
| 113 | |
Junxiao Shi | afbd74d | 2014-11-29 21:18:17 -0700 | [diff] [blame] | 114 | FaceTable::ForwardRange |
| 115 | FaceTable::getForwardRange() const |
| 116 | { |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 117 | return m_faces | boost::adaptors::map_values | boost::adaptors::indirected; |
Junxiao Shi | afbd74d | 2014-11-29 21:18:17 -0700 | [diff] [blame] | 118 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 119 | |
Junxiao Shi | afbd74d | 2014-11-29 21:18:17 -0700 | [diff] [blame] | 120 | FaceTable::const_iterator |
| 121 | FaceTable::begin() const |
| 122 | { |
| 123 | return this->getForwardRange().begin(); |
| 124 | } |
| 125 | |
| 126 | FaceTable::const_iterator |
| 127 | FaceTable::end() const |
| 128 | { |
| 129 | return this->getForwardRange().end(); |
| 130 | } |
Steve DiBenedetto | abe9e97 | 2014-02-20 15:37:04 -0700 | [diff] [blame] | 131 | |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 132 | } // namespace nfd |