blob: 75b1190942192294470cfc9bc43e6569930bb99a [file] [log] [blame]
Junxiao Shia4f2be82014-03-02 22:56:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento981db802018-04-10 18:05:04 -04002/*
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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 Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 Shi7b984c62014-07-17 22:18:34 -070024 */
Junxiao Shia4f2be82014-03-02 22:56:41 -070025
26#include "face-table.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040027#include "common/global.hpp"
28#include "common/logger.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070029#include "face/channel.hpp"
Junxiao Shia4f2be82014-03-02 22:56:41 -070030
Davide Pesavento981db802018-04-10 18:05:04 -040031#include <ndn-cxx/util/concepts.hpp>
32
Junxiao Shia4f2be82014-03-02 22:56:41 -070033namespace nfd {
34
Davide Pesavento981db802018-04-10 18:05:04 -040035NDN_CXX_ASSERT_FORWARD_ITERATOR(FaceTable::const_iterator);
Junxiao Shi3aba7542016-12-24 02:42:52 +000036
Davide Pesaventoa3148082018-04-12 18:21:54 -040037NFD_LOG_INIT(FaceTable);
Junxiao Shia4f2be82014-03-02 22:56:41 -070038
Junxiao Shi5b43f9a2016-07-19 13:15:56 +000039Face*
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040040FaceTable::get(FaceId id) const noexcept
Junxiao Shiafbd74d2014-11-29 21:18:17 -070041{
Junxiao Shi5b43f9a2016-07-19 13:15:56 +000042 auto i = m_faces.find(id);
Davide Pesavento6fd1e7e2017-02-17 18:45:27 +000043 return i == m_faces.end() ? nullptr : i->second.get();
Junxiao Shiafbd74d2014-11-29 21:18:17 -070044}
45
46size_t
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040047FaceTable::size() const noexcept
Junxiao Shiafbd74d2014-11-29 21:18:17 -070048{
49 return m_faces.size();
50}
51
Junxiao Shia4f2be82014-03-02 22:56:41 -070052void
53FaceTable::add(shared_ptr<Face> face)
54{
Junxiao Shicde37ad2015-12-24 01:02:05 -070055 if (face->getId() != face::INVALID_FACEID && m_faces.count(face->getId()) > 0) {
Junxiao Shi7b984c62014-07-17 22:18:34 -070056 NFD_LOG_WARN("Trying to add existing face id=" << face->getId() << " to the face table");
57 return;
58 }
Alexander Afanasyevbc521a52014-03-26 23:31:55 -070059
Junxiao Shia4f2be82014-03-02 22:56:41 -070060 FaceId faceId = ++m_lastFaceId;
Junxiao Shicde37ad2015-12-24 01:02:05 -070061 BOOST_ASSERT(faceId > face::FACEID_RESERVED_MAX);
Davide Pesavento6fd1e7e2017-02-17 18:45:27 +000062 this->addImpl(std::move(face), faceId);
Junxiao Shi7b984c62014-07-17 22:18:34 -070063}
64
65void
66FaceTable::addReserved(shared_ptr<Face> face, FaceId faceId)
67{
Junxiao Shicde37ad2015-12-24 01:02:05 -070068 BOOST_ASSERT(face->getId() == face::INVALID_FACEID);
Junxiao Shicde37ad2015-12-24 01:02:05 -070069 BOOST_ASSERT(faceId <= face::FACEID_RESERVED_MAX);
Davide Pesavento6fd1e7e2017-02-17 18:45:27 +000070 this->addImpl(std::move(face), faceId);
Junxiao Shi7b984c62014-07-17 22:18:34 -070071}
72
73void
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040074FaceTable::addImpl(shared_ptr<Face> facePtr, FaceId faceId)
Junxiao Shi7b984c62014-07-17 22:18:34 -070075{
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040076 facePtr->setId(faceId);
77 auto [it, isNew] = m_faces.try_emplace(faceId, std::move(facePtr));
78 BOOST_VERIFY(isNew);
79 auto& face = *it->second;
Davide Pesavento6fd1e7e2017-02-17 18:45:27 +000080
81 NFD_LOG_INFO("Added face id=" << faceId <<
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040082 " remote=" << face.getRemoteUri() <<
83 " local=" << face.getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -070084
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040085 connectFaceClosedSignal(face, [this, faceId] { remove(faceId); });
Junxiao Shibd392bf2014-03-17 15:54:11 -070086
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040087 this->afterAdd(face);
Junxiao Shia4f2be82014-03-02 22:56:41 -070088}
89
90void
Junxiao Shiae04d342016-07-19 13:20:22 +000091FaceTable::remove(FaceId faceId)
Junxiao Shia4f2be82014-03-02 22:56:41 -070092{
Junxiao Shiae04d342016-07-19 13:20:22 +000093 auto i = m_faces.find(faceId);
94 BOOST_ASSERT(i != m_faces.end());
95 shared_ptr<Face> face = i->second;
Junxiao Shibd392bf2014-03-17 15:54:11 -070096
Junxiao Shiae04d342016-07-19 13:20:22 +000097 this->beforeRemove(*face);
98
Junxiao Shiae04d342016-07-19 13:20:22 +000099 m_faces.erase(i);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700100 face->setId(face::INVALID_FACEID);
Davide Pesavento66ff0982015-01-29 22:39:00 +0100101
102 NFD_LOG_INFO("Removed face id=" << faceId <<
103 " remote=" << face->getRemoteUri() <<
Junxiao Shicde37ad2015-12-24 01:02:05 -0700104 " local=" << face->getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -0700105
Junxiao Shi40cb61c2015-09-23 18:36:45 -0700106 // defer Face deallocation, so that Transport isn't deallocated during afterStateChange signal
107 getGlobalIoService().post([face] {});
Junxiao Shia4f2be82014-03-02 22:56:41 -0700108}
109
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700110FaceTable::ForwardRange
111FaceTable::getForwardRange() const
112{
Junxiao Shib84e6742016-07-19 13:16:22 +0000113 return m_faces | boost::adaptors::map_values | boost::adaptors::indirected;
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700114}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700115
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700116FaceTable::const_iterator
117FaceTable::begin() const
118{
119 return this->getForwardRange().begin();
120}
121
122FaceTable::const_iterator
123FaceTable::end() const
124{
125 return this->getForwardRange().end();
126}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700127
Junxiao Shia4f2be82014-03-02 22:56:41 -0700128} // namespace nfd