blob: fe49eccc95b9b6a363207e3141bb6019a56e55a9 [file] [log] [blame]
Junxiao Shic1e12362014-01-24 20:03:26 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento1cb619e2018-04-10 17:13:53 -04002/*
Davide Pesavento972de802024-02-16 18:42:55 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Junxiao Shib184e532016-05-26 18:09:57 +00004 * 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 Shi56a21bf2014-11-02 21:11:50 -070024 */
Junxiao Shic1e12362014-01-24 20:03:26 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_FIB_ENTRY_HPP
27#define NFD_DAEMON_TABLE_FIB_ENTRY_HPP
Junxiao Shic1e12362014-01-24 20:03:26 -070028
Davide Pesavento972de802024-02-16 18:42:55 -050029#include "core/common.hpp"
Junxiao Shic1e12362014-01-24 20:03:26 -070030
Davide Pesavento972de802024-02-16 18:42:55 -050031namespace nfd {
32
33namespace face {
34class Face;
35} // namespace face
36using face::Face;
37
38namespace name_tree {
Junxiao Shiefceadc2014-03-09 18:52:57 -070039class Entry;
Davide Pesavento972de802024-02-16 18:42:55 -050040} // namespace name_tree
Junxiao Shiefceadc2014-03-09 18:52:57 -070041
Davide Pesavento972de802024-02-16 18:42:55 -050042namespace fib {
Junxiao Shic1e12362014-01-24 20:03:26 -070043
Ju Pand8315bf2019-07-31 06:59:07 +000044class Fib;
45
Davide Pesavento972de802024-02-16 18:42:55 -050046/**
47 * \brief Represents a nexthop record in a FIB entry.
48 */
49class NextHop
50{
51public:
52 explicit
53 NextHop(Face& face) noexcept
54 : m_face(&face)
55 {
56 }
57
58 Face&
59 getFace() const noexcept
60 {
61 return *m_face;
62 }
63
64 uint64_t
65 getCost() const noexcept
66 {
67 return m_cost;
68 }
69
70 void
71 setCost(uint64_t cost) noexcept
72 {
73 m_cost = cost;
74 }
75
76private:
77 Face* m_face; // pointer instead of reference so that NextHop is movable
78 uint64_t m_cost = 0;
79};
80
81/**
82 * \brief A collection of nexthops in a FIB entry.
Junxiao Shic1e12362014-01-24 20:03:26 -070083 */
Davide Pesavento1cb619e2018-04-10 17:13:53 -040084using NextHopList = std::vector<NextHop>;
Junxiao Shic1e12362014-01-24 20:03:26 -070085
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040086/**
87 * \brief Represents an entry in the FIB.
88 * \sa Fib
Junxiao Shic1e12362014-01-24 20:03:26 -070089 */
Junxiao Shi8d843142016-07-11 22:42:42 +000090class Entry : noncopyable
Junxiao Shic1e12362014-01-24 20:03:26 -070091{
92public:
Junxiao Shi408a7002014-02-12 17:53:47 -070093 explicit
Junxiao Shic1e12362014-01-24 20:03:26 -070094 Entry(const Name& prefix);
Junxiao Shi7bb01512014-03-05 21:34:09 -070095
Junxiao Shic1e12362014-01-24 20:03:26 -070096 const Name&
Davide Pesavento972de802024-02-16 18:42:55 -050097 getPrefix() const noexcept
Junxiao Shi340d5532016-08-13 04:00:35 +000098 {
99 return m_prefix;
100 }
Junxiao Shi7bb01512014-03-05 21:34:09 -0700101
Junxiao Shic1e12362014-01-24 20:03:26 -0700102 const NextHopList&
Davide Pesavento972de802024-02-16 18:42:55 -0500103 getNextHops() const noexcept
Junxiao Shi340d5532016-08-13 04:00:35 +0000104 {
105 return m_nextHops;
106 }
Junxiao Shi7bb01512014-03-05 21:34:09 -0700107
Davide Pesavento972de802024-02-16 18:42:55 -0500108 /**
109 * \brief Returns whether this Entry has any NextHop records.
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700110 */
Junxiao Shiefceadc2014-03-09 18:52:57 -0700111 bool
Davide Pesavento972de802024-02-16 18:42:55 -0500112 hasNextHops() const noexcept
Junxiao Shi340d5532016-08-13 04:00:35 +0000113 {
114 return !m_nextHops.empty();
115 }
Junxiao Shiefceadc2014-03-09 18:52:57 -0700116
Davide Pesavento972de802024-02-16 18:42:55 -0500117 /**
118 * \brief Returns whether there is a NextHop record for \p face.
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700119 */
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -0700120 bool
Davide Pesavento972de802024-02-16 18:42:55 -0500121 hasNextHop(const Face& face) const noexcept;
Junxiao Shi7bb01512014-03-05 21:34:09 -0700122
Ju Pand8315bf2019-07-31 06:59:07 +0000123private:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400124 /** \brief Adds a NextHop record to the entry.
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700125 *
Ju Pand8315bf2019-07-31 06:59:07 +0000126 * If a NextHop record for \p face already exists in the entry, its cost is set to \p cost.
127 *
128 * \return the iterator to the new or updated NextHop and a bool indicating whether a new
129 * NextHop was inserted
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700130 */
Ju Pand8315bf2019-07-31 06:59:07 +0000131 std::pair<NextHopList::iterator, bool>
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000132 addOrUpdateNextHop(Face& face, uint64_t cost);
Junxiao Shi7bb01512014-03-05 21:34:09 -0700133
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400134 /** \brief Removes a NextHop record.
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000135 *
136 * If no NextHop record for face exists, do nothing.
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700137 */
Ju Pand8315bf2019-07-31 06:59:07 +0000138 bool
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000139 removeNextHop(const Face& face);
Junxiao Shic1e12362014-01-24 20:03:26 -0700140
Junxiao Shia6de4292016-07-12 02:08:10 +0000141 /** \note This method is non-const because mutable iterators are needed by callers.
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700142 */
143 NextHopList::iterator
Davide Pesavento972de802024-02-16 18:42:55 -0500144 findNextHop(const Face& face) noexcept;
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700145
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400146 /** \brief Sorts the nexthop list.
Junxiao Shia6de4292016-07-12 02:08:10 +0000147 */
Junxiao Shic1e12362014-01-24 20:03:26 -0700148 void
149 sortNextHops();
150
151private:
152 Name m_prefix;
153 NextHopList m_nextHops;
Junxiao Shiefceadc2014-03-09 18:52:57 -0700154
Davide Pesavento50a6af32019-02-21 00:04:40 -0500155 name_tree::Entry* m_nameTreeEntry = nullptr;
Junxiao Shi340d5532016-08-13 04:00:35 +0000156
Davide Pesavento9a28c3f2022-06-11 21:50:01 -0400157 friend ::nfd::name_tree::Entry;
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400158 friend Fib;
Junxiao Shic1e12362014-01-24 20:03:26 -0700159};
160
Davide Pesavento972de802024-02-16 18:42:55 -0500161} // namespace fib
162} // namespace nfd
Junxiao Shic1e12362014-01-24 20:03:26 -0700163
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700164#endif // NFD_DAEMON_TABLE_FIB_ENTRY_HPP