blob: 188420320cdc52a05dba8ca45ec4144621d56a33 [file] [log] [blame]
Junxiao Shia4f2be82014-03-02 22:56:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * Copyright (c) 2014-2015, Regents of the University of California,
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 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"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060028#include "core/logger.hpp"
Junxiao Shia4f2be82014-03-02 22:56:41 -070029
30namespace nfd {
31
32NFD_LOG_INIT("FaceTable");
33
34FaceTable::FaceTable(Forwarder& forwarder)
35 : m_forwarder(forwarder)
Junxiao Shi7b984c62014-07-17 22:18:34 -070036 , m_lastFaceId(FACEID_RESERVED_MAX)
Junxiao Shia4f2be82014-03-02 22:56:41 -070037{
38}
39
Steve DiBenedettoabe9e972014-02-20 15:37:04 -070040FaceTable::~FaceTable()
41{
42
43}
44
Junxiao Shiafbd74d2014-11-29 21:18:17 -070045shared_ptr<Face>
46FaceTable::get(FaceId id) const
47{
48 std::map<FaceId, shared_ptr<Face> >::const_iterator i = m_faces.find(id);
49 return (i == m_faces.end()) ? (shared_ptr<Face>()) : (i->second);
50}
51
52size_t
53FaceTable::size() const
54{
55 return m_faces.size();
56}
57
Junxiao Shia4f2be82014-03-02 22:56:41 -070058void
59FaceTable::add(shared_ptr<Face> face)
60{
Junxiao Shi7b984c62014-07-17 22:18:34 -070061 if (face->getId() != INVALID_FACEID && m_faces.count(face->getId()) > 0) {
62 NFD_LOG_WARN("Trying to add existing face id=" << face->getId() << " to the face table");
63 return;
64 }
Alexander Afanasyevbc521a52014-03-26 23:31:55 -070065
Junxiao Shia4f2be82014-03-02 22:56:41 -070066 FaceId faceId = ++m_lastFaceId;
Junxiao Shi7b984c62014-07-17 22:18:34 -070067 BOOST_ASSERT(faceId > FACEID_RESERVED_MAX);
68 this->addImpl(face, faceId);
69}
70
71void
72FaceTable::addReserved(shared_ptr<Face> face, FaceId faceId)
73{
74 BOOST_ASSERT(face->getId() == INVALID_FACEID);
75 BOOST_ASSERT(m_faces.count(face->getId()) == 0);
76 BOOST_ASSERT(faceId <= FACEID_RESERVED_MAX);
77 this->addImpl(face, faceId);
78}
79
80void
81FaceTable::addImpl(shared_ptr<Face> face, FaceId faceId)
82{
Junxiao Shia4f2be82014-03-02 22:56:41 -070083 face->setId(faceId);
84 m_faces[faceId] = face;
Junxiao Shi7b984c62014-07-17 22:18:34 -070085 NFD_LOG_INFO("Added face id=" << faceId << " remote=" << face->getRemoteUri()
86 << " local=" << face->getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -070087
Junxiao Shi0355e9f2015-09-02 07:24:53 -070088 face->onReceiveInterest.connect(bind(&Forwarder::startProcessInterest,
89 &m_forwarder, ref(*face), _1));
90 face->onReceiveData.connect(bind(&Forwarder::startProcessData,
91 &m_forwarder, ref(*face), _1));
Junxiao Shi5e5e4452015-09-24 16:56:52 -070092 face->onReceiveNack.connect(bind(&Forwarder::startProcessNack,
93 &m_forwarder, ref(*face), _1));
Davide Pesavento66ff0982015-01-29 22:39:00 +010094 face->onFail.connectSingleShot(bind(&FaceTable::remove, this, face, _1));
Junxiao Shibd392bf2014-03-17 15:54:11 -070095
96 this->onAdd(face);
Junxiao Shia4f2be82014-03-02 22:56:41 -070097}
98
99void
Davide Pesavento66ff0982015-01-29 22:39:00 +0100100FaceTable::remove(shared_ptr<Face> face, const std::string& reason)
Junxiao Shia4f2be82014-03-02 22:56:41 -0700101{
Junxiao Shibd392bf2014-03-17 15:54:11 -0700102 this->onRemove(face);
103
Junxiao Shia4f2be82014-03-02 22:56:41 -0700104 FaceId faceId = face->getId();
105 m_faces.erase(faceId);
106 face->setId(INVALID_FACEID);
Davide Pesavento66ff0982015-01-29 22:39:00 +0100107
108 NFD_LOG_INFO("Removed face id=" << faceId <<
109 " remote=" << face->getRemoteUri() <<
110 " local=" << face->getLocalUri() <<
111 " (" << reason << ")");
Junxiao Shia4f2be82014-03-02 22:56:41 -0700112
113 m_forwarder.getFib().removeNextHopFromAllEntries(face);
114}
115
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700116FaceTable::ForwardRange
117FaceTable::getForwardRange() const
118{
119 return m_faces | boost::adaptors::map_values;
120}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700121
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700122FaceTable::const_iterator
123FaceTable::begin() const
124{
125 return this->getForwardRange().begin();
126}
127
128FaceTable::const_iterator
129FaceTable::end() const
130{
131 return this->getForwardRange().end();
132}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700133
Junxiao Shia4f2be82014-03-02 22:56:41 -0700134} // namespace nfd