blob: f1db53b0cc58ac3aef9267a7369c5a8b4c6533cc [file] [log] [blame]
Junxiao Shia4f2be82014-03-02 22:56:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi7b984c62014-07-17 22:18:34 -07003 * Copyright (c) 2014, 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
88 face->onReceiveInterest += bind(&Forwarder::onInterest,
Alexander Afanasyevf6980282014-05-13 18:28:40 -070089 &m_forwarder, ref(*face), _1);
Junxiao Shia4f2be82014-03-02 22:56:41 -070090 face->onReceiveData += bind(&Forwarder::onData,
Alexander Afanasyevf6980282014-05-13 18:28:40 -070091 &m_forwarder, ref(*face), _1);
Junxiao Shic542b2b2014-03-16 21:45:52 -070092 face->onFail += bind(&FaceTable::remove,
93 this, face);
Junxiao Shibd392bf2014-03-17 15:54:11 -070094
95 this->onAdd(face);
Junxiao Shia4f2be82014-03-02 22:56:41 -070096}
97
98void
99FaceTable::remove(shared_ptr<Face> face)
100{
Junxiao Shibd392bf2014-03-17 15:54:11 -0700101 this->onRemove(face);
102
Junxiao Shia4f2be82014-03-02 22:56:41 -0700103 FaceId faceId = face->getId();
104 m_faces.erase(faceId);
105 face->setId(INVALID_FACEID);
Junxiao Shi6e694322014-04-03 10:27:13 -0700106 NFD_LOG_INFO("Removed face id=" << faceId << " remote=" << face->getRemoteUri() <<
107 " local=" << face->getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -0700108
109 // XXX This clears all subscriptions, because EventEmitter
110 // does not support only removing Forwarder's subscription
111 face->onReceiveInterest.clear();
112 face->onReceiveData .clear();
Alexander Afanasyev583760b2014-06-30 19:27:37 -0700113 face->onSendInterest .clear();
114 face->onSendData .clear();
Junxiao Shic542b2b2014-03-16 21:45:52 -0700115 // don't clear onFail because other functions may need to execute
Junxiao Shia4f2be82014-03-02 22:56:41 -0700116
117 m_forwarder.getFib().removeNextHopFromAllEntries(face);
118}
119
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700120FaceTable::ForwardRange
121FaceTable::getForwardRange() const
122{
123 return m_faces | boost::adaptors::map_values;
124}
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