blob: 2d40bbce73ddd2877b30e49fa5b17ad26c00f4c2 [file] [log] [blame]
Junxiao Shia4f2be82014-03-02 22:56:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shia6de4292016-07-12 02:08:10 +00003 * Copyright (c) 2014-2016, 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"
27#include "forwarder.hpp"
Junxiao Shi40cb61c2015-09-23 18:36:45 -070028#include "core/global-io.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060029#include "core/logger.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070030#include "face/channel.hpp"
Junxiao Shia4f2be82014-03-02 22:56:41 -070031
32namespace nfd {
33
34NFD_LOG_INIT("FaceTable");
35
36FaceTable::FaceTable(Forwarder& forwarder)
37 : m_forwarder(forwarder)
Junxiao Shicde37ad2015-12-24 01:02:05 -070038 , m_lastFaceId(face::FACEID_RESERVED_MAX)
Junxiao Shia4f2be82014-03-02 22:56:41 -070039{
40}
41
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070042FaceTable::~FaceTable()
43{
44
45}
46
Junxiao Shi5b43f9a2016-07-19 13:15:56 +000047Face*
Junxiao Shiafbd74d2014-11-29 21:18:17 -070048FaceTable::get(FaceId id) const
49{
Junxiao Shi5b43f9a2016-07-19 13:15:56 +000050 auto i = m_faces.find(id);
51 if (i == m_faces.end()) {
52 return nullptr;
53 }
54 return i->second.get();
Junxiao Shiafbd74d2014-11-29 21:18:17 -070055}
56
57size_t
58FaceTable::size() const
59{
60 return m_faces.size();
61}
62
Junxiao Shia4f2be82014-03-02 22:56:41 -070063void
64FaceTable::add(shared_ptr<Face> face)
65{
Junxiao Shicde37ad2015-12-24 01:02:05 -070066 if (face->getId() != face::INVALID_FACEID && m_faces.count(face->getId()) > 0) {
Junxiao Shi7b984c62014-07-17 22:18:34 -070067 NFD_LOG_WARN("Trying to add existing face id=" << face->getId() << " to the face table");
68 return;
69 }
Alexander Afanasyevbc521a52014-03-26 23:31:55 -070070
Junxiao Shia4f2be82014-03-02 22:56:41 -070071 FaceId faceId = ++m_lastFaceId;
Junxiao Shicde37ad2015-12-24 01:02:05 -070072 BOOST_ASSERT(faceId > face::FACEID_RESERVED_MAX);
Junxiao Shi7b984c62014-07-17 22:18:34 -070073 this->addImpl(face, faceId);
74}
75
76void
77FaceTable::addReserved(shared_ptr<Face> face, FaceId faceId)
78{
Junxiao Shicde37ad2015-12-24 01:02:05 -070079 BOOST_ASSERT(face->getId() == face::INVALID_FACEID);
Junxiao Shi7b984c62014-07-17 22:18:34 -070080 BOOST_ASSERT(m_faces.count(face->getId()) == 0);
Junxiao Shicde37ad2015-12-24 01:02:05 -070081 BOOST_ASSERT(faceId <= face::FACEID_RESERVED_MAX);
Junxiao Shi7b984c62014-07-17 22:18:34 -070082 this->addImpl(face, faceId);
83}
84
85void
86FaceTable::addImpl(shared_ptr<Face> face, FaceId faceId)
87{
Junxiao Shia4f2be82014-03-02 22:56:41 -070088 face->setId(faceId);
89 m_faces[faceId] = face;
Junxiao Shi7b984c62014-07-17 22:18:34 -070090 NFD_LOG_INFO("Added face id=" << faceId << " remote=" << face->getRemoteUri()
91 << " local=" << face->getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -070092
Junxiao Shicde37ad2015-12-24 01:02:05 -070093 face->afterReceiveInterest.connect(bind(&Forwarder::startProcessInterest, &m_forwarder, ref(*face), _1));
94 face->afterReceiveData.connect(bind(&Forwarder::startProcessData, &m_forwarder, ref(*face), _1));
95 face->afterReceiveNack.connect(bind(&Forwarder::startProcessNack, &m_forwarder, ref(*face), _1));
96 connectFaceClosedSignal(*face, bind(&FaceTable::remove, this, face));
Junxiao Shibd392bf2014-03-17 15:54:11 -070097
Junxiao Shicde37ad2015-12-24 01:02:05 -070098 this->afterAdd(face);
Junxiao Shia4f2be82014-03-02 22:56:41 -070099}
100
101void
Junxiao Shicde37ad2015-12-24 01:02:05 -0700102FaceTable::remove(shared_ptr<Face> face)
Junxiao Shia4f2be82014-03-02 22:56:41 -0700103{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700104 this->beforeRemove(face);
Junxiao Shibd392bf2014-03-17 15:54:11 -0700105
Junxiao Shia4f2be82014-03-02 22:56:41 -0700106 FaceId faceId = face->getId();
107 m_faces.erase(faceId);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700108 face->setId(face::INVALID_FACEID);
Davide Pesavento66ff0982015-01-29 22:39:00 +0100109
110 NFD_LOG_INFO("Removed face id=" << faceId <<
111 " remote=" << face->getRemoteUri() <<
Junxiao Shicde37ad2015-12-24 01:02:05 -0700112 " local=" << face->getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -0700113
Junxiao Shia6de4292016-07-12 02:08:10 +0000114 m_forwarder.getFib().removeNextHopFromAllEntries(*face);
Junxiao Shi40cb61c2015-09-23 18:36:45 -0700115
116 // defer Face deallocation, so that Transport isn't deallocated during afterStateChange signal
117 getGlobalIoService().post([face] {});
Junxiao Shia4f2be82014-03-02 22:56:41 -0700118}
119
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700120FaceTable::ForwardRange
121FaceTable::getForwardRange() const
122{
Junxiao Shib84e6742016-07-19 13:16:22 +0000123 return m_faces | boost::adaptors::map_values | boost::adaptors::indirected;
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700124}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700125
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700126FaceTable::const_iterator
127FaceTable::begin() const
128{
129 return this->getForwardRange().begin();
130}
131
132FaceTable::const_iterator
133FaceTable::end() const
134{
135 return this->getForwardRange().end();
136}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700137
Junxiao Shia4f2be82014-03-02 22:56:41 -0700138} // namespace nfd