blob: 0a9522a01088cfe64a40b0b2c7b3f3b85cae87d4 [file] [log] [blame]
Junxiao Shic1e12362014-01-24 20:03:26 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento981db802018-04-10 18:05:04 -04002/*
3 * Copyright (c) 2014-2018, 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 Shiee5a4442014-07-27 17:13:43 -070024 */
Junxiao Shic1e12362014-01-24 20:03:26 -070025
26#include "fib.hpp"
Junxiao Shidbe71732014-02-21 22:23:28 -070027#include "pit-entry.hpp"
28#include "measurements-entry.hpp"
Davide Pesavento981db802018-04-10 18:05:04 -040029
30#include <ndn-cxx/util/concepts.hpp>
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -080031
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080032namespace nfd {
Junxiao Shia6de4292016-07-12 02:08:10 +000033namespace fib {
Junxiao Shi40631842014-03-01 13:52:37 -070034
Davide Pesavento981db802018-04-10 18:05:04 -040035NDN_CXX_ASSERT_FORWARD_ITERATOR(Fib::const_iterator);
Junxiao Shi40631842014-03-01 13:52:37 -070036
Junxiao Shi3aba7542016-12-24 02:42:52 +000037const unique_ptr<Entry> Fib::s_emptyEntry = make_unique<Entry>(Name());
Alexander Afanasyev09fc3d92015-01-03 02:02:37 -080038
Junxiao Shi811c0102016-08-10 04:12:45 +000039static inline bool
40nteHasFibEntry(const name_tree::Entry& nte)
41{
42 return nte.getFibEntry() != nullptr;
43}
44
HangZhangad4afd12014-03-01 11:03:08 +080045Fib::Fib(NameTree& nameTree)
46 : m_nameTree(nameTree)
47 , m_nItems(0)
Junxiao Shic1e12362014-01-24 20:03:26 -070048{
Junxiao Shic1e12362014-01-24 20:03:26 -070049}
50
Junxiao Shidd8f6612016-08-12 15:42:52 +000051template<typename K>
Junxiao Shia6de4292016-07-12 02:08:10 +000052const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +000053Fib::findLongestPrefixMatchImpl(const K& key) const
Junxiao Shic1e12362014-01-24 20:03:26 -070054{
Junxiao Shidd8f6612016-08-12 15:42:52 +000055 name_tree::Entry* nte = m_nameTree.findLongestPrefixMatch(key, &nteHasFibEntry);
Junxiao Shia6de4292016-07-12 02:08:10 +000056 if (nte != nullptr) {
57 return *nte->getFibEntry();
HangZhangad4afd12014-03-01 11:03:08 +080058 }
Junxiao Shia6de4292016-07-12 02:08:10 +000059 return *s_emptyEntry;
HangZhangcb4fc832014-03-11 16:57:11 +080060}
61
Junxiao Shia6de4292016-07-12 02:08:10 +000062const Entry&
Junxiao Shidd8f6612016-08-12 15:42:52 +000063Fib::findLongestPrefixMatch(const Name& prefix) const
HangZhangcb4fc832014-03-11 16:57:11 +080064{
Junxiao Shidd8f6612016-08-12 15:42:52 +000065 return this->findLongestPrefixMatchImpl(prefix);
Junxiao Shic1e12362014-01-24 20:03:26 -070066}
67
Junxiao Shia6de4292016-07-12 02:08:10 +000068const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070069Fib::findLongestPrefixMatch(const pit::Entry& pitEntry) const
70{
Junxiao Shidd8f6612016-08-12 15:42:52 +000071 return this->findLongestPrefixMatchImpl(pitEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070072}
73
Junxiao Shia6de4292016-07-12 02:08:10 +000074const Entry&
Junxiao Shidbe71732014-02-21 22:23:28 -070075Fib::findLongestPrefixMatch(const measurements::Entry& measurementsEntry) const
76{
Junxiao Shidd8f6612016-08-12 15:42:52 +000077 return this->findLongestPrefixMatchImpl(measurementsEntry);
Junxiao Shidbe71732014-02-21 22:23:28 -070078}
79
Junxiao Shia6de4292016-07-12 02:08:10 +000080Entry*
81Fib::findExactMatch(const Name& prefix)
Steve DiBenedettod5f87932014-02-05 15:11:39 -070082{
Junxiao Shi811c0102016-08-10 04:12:45 +000083 name_tree::Entry* nte = m_nameTree.findExactMatch(prefix);
Junxiao Shia6de4292016-07-12 02:08:10 +000084 if (nte != nullptr)
85 return nte->getFibEntry();
Junxiao Shib184e532016-05-26 18:09:57 +000086
87 return nullptr;
Steve DiBenedettod5f87932014-02-05 15:11:39 -070088}
89
Junxiao Shia6de4292016-07-12 02:08:10 +000090std::pair<Entry*, bool>
Junxiao Shi56a21bf2014-11-02 21:11:50 -070091Fib::insert(const Name& prefix)
92{
Junxiao Shi7f358432016-08-11 17:06:33 +000093 name_tree::Entry& nte = m_nameTree.lookup(prefix);
94 Entry* entry = nte.getFibEntry();
Junxiao Shia6de4292016-07-12 02:08:10 +000095 if (entry != nullptr) {
Junxiao Shi56a21bf2014-11-02 21:11:50 -070096 return std::make_pair(entry, false);
Junxiao Shia6de4292016-07-12 02:08:10 +000097 }
Junxiao Shib184e532016-05-26 18:09:57 +000098
Junxiao Shi7f358432016-08-11 17:06:33 +000099 nte.setFibEntry(make_unique<Entry>(prefix));
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700100 ++m_nItems;
Junxiao Shi7f358432016-08-11 17:06:33 +0000101 return std::make_pair(nte.getFibEntry(), true);
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700102}
103
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700104void
Junxiao Shi811c0102016-08-10 04:12:45 +0000105Fib::erase(name_tree::Entry* nte, bool canDeleteNte)
Junxiao Shiee5a4442014-07-27 17:13:43 -0700106{
Junxiao Shi02b73f52016-07-28 01:48:27 +0000107 BOOST_ASSERT(nte != nullptr);
108
Junxiao Shia6de4292016-07-12 02:08:10 +0000109 nte->setFibEntry(nullptr);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000110 if (canDeleteNte) {
Junxiao Shi811c0102016-08-10 04:12:45 +0000111 m_nameTree.eraseIfEmpty(nte);
Junxiao Shi02b73f52016-07-28 01:48:27 +0000112 }
Junxiao Shiee5a4442014-07-27 17:13:43 -0700113 --m_nItems;
114}
115
116void
HangZhangad4afd12014-03-01 11:03:08 +0800117Fib::erase(const Name& prefix)
Steve DiBenedettod5f87932014-02-05 15:11:39 -0700118{
Junxiao Shi811c0102016-08-10 04:12:45 +0000119 name_tree::Entry* nte = m_nameTree.findExactMatch(prefix);
Junxiao Shia6de4292016-07-12 02:08:10 +0000120 if (nte != nullptr) {
121 this->erase(nte);
Junxiao Shiefceadc2014-03-09 18:52:57 -0700122 }
123}
124
125void
Junxiao Shia6de4292016-07-12 02:08:10 +0000126Fib::erase(const Entry& entry)
Junxiao Shiefceadc2014-03-09 18:52:57 -0700127{
Junxiao Shi7f358432016-08-11 17:06:33 +0000128 name_tree::Entry* nte = m_nameTree.getEntry(entry);
Junxiao Shidd8f6612016-08-12 15:42:52 +0000129 if (nte == nullptr) { // don't try to erase s_emptyEntry
130 BOOST_ASSERT(&entry == s_emptyEntry.get());
131 return;
HangZhangad4afd12014-03-01 11:03:08 +0800132 }
Junxiao Shidd8f6612016-08-12 15:42:52 +0000133 this->erase(nte);
Junxiao Shic1e12362014-01-24 20:03:26 -0700134}
135
136void
Junxiao Shi02b73f52016-07-28 01:48:27 +0000137Fib::removeNextHop(Entry& entry, const Face& face)
Junxiao Shic1e12362014-01-24 20:03:26 -0700138{
Junxiao Shi02b73f52016-07-28 01:48:27 +0000139 entry.removeNextHop(face);
Alexander Afanasyevb3033242014-08-04 11:09:05 -0700140
Junxiao Shi02b73f52016-07-28 01:48:27 +0000141 if (!entry.hasNextHops()) {
Junxiao Shi7f358432016-08-11 17:06:33 +0000142 name_tree::Entry* nte = m_nameTree.getEntry(entry);
143 this->erase(nte, false);
Junxiao Shi60607c72014-11-26 22:40:36 -0700144 }
Junxiao Shic1e12362014-01-24 20:03:26 -0700145}
146
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000147Fib::Range
148Fib::getRange() const
HangZhang5d469422014-03-12 09:26:26 +0800149{
Junxiao Shi13ad4b72016-08-15 04:51:21 +0000150 return m_nameTree.fullEnumerate(&nteHasFibEntry) |
151 boost::adaptors::transformed(name_tree::GetTableEntry<Entry>(&name_tree::Entry::getFibEntry));
HangZhang5d469422014-03-12 09:26:26 +0800152}
153
Junxiao Shia6de4292016-07-12 02:08:10 +0000154} // namespace fib
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800155} // namespace nfd