blob: 71a7cf6fa1125918c65ff2dcbc62b9da3bd20a65 [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
Junxiao Shic099ddb2014-12-25 20:53:20 -070088 face->onReceiveInterest.connect(bind(&Forwarder::onInterest, &m_forwarder, ref(*face), _1));
89 face->onReceiveData.connect(bind(&Forwarder::onData, &m_forwarder, ref(*face), _1));
90 face->onFail.connectSingleShot(bind(&FaceTable::remove, this, face));
Junxiao Shibd392bf2014-03-17 15:54:11 -070091
92 this->onAdd(face);
Junxiao Shia4f2be82014-03-02 22:56:41 -070093}
94
95void
96FaceTable::remove(shared_ptr<Face> face)
97{
Junxiao Shibd392bf2014-03-17 15:54:11 -070098 this->onRemove(face);
99
Junxiao Shia4f2be82014-03-02 22:56:41 -0700100 FaceId faceId = face->getId();
101 m_faces.erase(faceId);
102 face->setId(INVALID_FACEID);
Junxiao Shi6e694322014-04-03 10:27:13 -0700103 NFD_LOG_INFO("Removed face id=" << faceId << " remote=" << face->getRemoteUri() <<
Junxiao Shic099ddb2014-12-25 20:53:20 -0700104 " local=" << face->getLocalUri());
Junxiao Shia4f2be82014-03-02 22:56:41 -0700105
106 m_forwarder.getFib().removeNextHopFromAllEntries(face);
107}
108
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700109FaceTable::ForwardRange
110FaceTable::getForwardRange() const
111{
112 return m_faces | boost::adaptors::map_values;
113}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700114
Junxiao Shiafbd74d2014-11-29 21:18:17 -0700115FaceTable::const_iterator
116FaceTable::begin() const
117{
118 return this->getForwardRange().begin();
119}
120
121FaceTable::const_iterator
122FaceTable::end() const
123{
124 return this->getForwardRange().end();
125}
Steve DiBenedettoabe9e972014-02-20 15:37:04 -0700126
Junxiao Shia4f2be82014-03-02 22:56:41 -0700127} // namespace nfd