blob: 03a2c2e30844f41979289a460384f57479da9fbc [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 Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, 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
29#include "fib-nexthop.hpp"
30
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040031namespace nfd::name_tree {
Junxiao Shiefceadc2014-03-09 18:52:57 -070032class Entry;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033} // namespace nfd::name_tree
Junxiao Shiefceadc2014-03-09 18:52:57 -070034
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040035namespace nfd::fib {
Junxiao Shic1e12362014-01-24 20:03:26 -070036
Ju Pand8315bf2019-07-31 06:59:07 +000037class Fib;
38
Davide Pesavento1cb619e2018-04-10 17:13:53 -040039/** \class nfd::fib::NextHopList
40 * \brief Represents a collection of nexthops.
Junxiao Shi56a21bf2014-11-02 21:11:50 -070041 *
Davide Pesavento1cb619e2018-04-10 17:13:53 -040042 * This type has the following member functions:
43 * - `iterator<NextHop> begin()`
44 * - `iterator<NextHop> end()`
45 * - `size_t size()`
Junxiao Shic1e12362014-01-24 20:03:26 -070046 */
Davide Pesavento1cb619e2018-04-10 17:13:53 -040047using NextHopList = std::vector<NextHop>;
Junxiao Shic1e12362014-01-24 20:03:26 -070048
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040049/**
50 * \brief Represents an entry in the FIB.
51 * \sa Fib
Junxiao Shic1e12362014-01-24 20:03:26 -070052 */
Junxiao Shi8d843142016-07-11 22:42:42 +000053class Entry : noncopyable
Junxiao Shic1e12362014-01-24 20:03:26 -070054{
55public:
Junxiao Shi408a7002014-02-12 17:53:47 -070056 explicit
Junxiao Shic1e12362014-01-24 20:03:26 -070057 Entry(const Name& prefix);
Junxiao Shi7bb01512014-03-05 21:34:09 -070058
Junxiao Shic1e12362014-01-24 20:03:26 -070059 const Name&
Junxiao Shi340d5532016-08-13 04:00:35 +000060 getPrefix() const
61 {
62 return m_prefix;
63 }
Junxiao Shi7bb01512014-03-05 21:34:09 -070064
Junxiao Shic1e12362014-01-24 20:03:26 -070065 const NextHopList&
Junxiao Shi340d5532016-08-13 04:00:35 +000066 getNextHops() const
67 {
68 return m_nextHops;
69 }
Junxiao Shi7bb01512014-03-05 21:34:09 -070070
Junxiao Shi56a21bf2014-11-02 21:11:50 -070071 /** \return whether this Entry has any NextHop record
72 */
Junxiao Shiefceadc2014-03-09 18:52:57 -070073 bool
Junxiao Shi340d5532016-08-13 04:00:35 +000074 hasNextHops() const
75 {
76 return !m_nextHops.empty();
77 }
Junxiao Shiefceadc2014-03-09 18:52:57 -070078
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +000079 /** \return whether there is a NextHop record for \p face
Junxiao Shi56a21bf2014-11-02 21:11:50 -070080 */
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070081 bool
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +000082 hasNextHop(const Face& face) const;
Junxiao Shi7bb01512014-03-05 21:34:09 -070083
Ju Pand8315bf2019-07-31 06:59:07 +000084private:
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040085 /** \brief Adds a NextHop record to the entry.
Junxiao Shi56a21bf2014-11-02 21:11:50 -070086 *
Ju Pand8315bf2019-07-31 06:59:07 +000087 * If a NextHop record for \p face already exists in the entry, its cost is set to \p cost.
88 *
89 * \return the iterator to the new or updated NextHop and a bool indicating whether a new
90 * NextHop was inserted
Junxiao Shi56a21bf2014-11-02 21:11:50 -070091 */
Ju Pand8315bf2019-07-31 06:59:07 +000092 std::pair<NextHopList::iterator, bool>
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +000093 addOrUpdateNextHop(Face& face, uint64_t cost);
Junxiao Shi7bb01512014-03-05 21:34:09 -070094
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -040095 /** \brief Removes a NextHop record.
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +000096 *
97 * If no NextHop record for face exists, do nothing.
Junxiao Shi56a21bf2014-11-02 21:11:50 -070098 */
Ju Pand8315bf2019-07-31 06:59:07 +000099 bool
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000100 removeNextHop(const Face& face);
Junxiao Shic1e12362014-01-24 20:03:26 -0700101
Junxiao Shia6de4292016-07-12 02:08:10 +0000102 /** \note This method is non-const because mutable iterators are needed by callers.
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700103 */
104 NextHopList::iterator
Md Ashiqur Rahman6be93872019-08-07 01:25:31 +0000105 findNextHop(const Face& face);
Junxiao Shi56a21bf2014-11-02 21:11:50 -0700106
Davide Pesaventoaa9e3b22022-10-21 17:00:07 -0400107 /** \brief Sorts the nexthop list.
Junxiao Shia6de4292016-07-12 02:08:10 +0000108 */
Junxiao Shic1e12362014-01-24 20:03:26 -0700109 void
110 sortNextHops();
111
112private:
113 Name m_prefix;
114 NextHopList m_nextHops;
Junxiao Shiefceadc2014-03-09 18:52:57 -0700115
Davide Pesavento50a6af32019-02-21 00:04:40 -0500116 name_tree::Entry* m_nameTreeEntry = nullptr;
Junxiao Shi340d5532016-08-13 04:00:35 +0000117
Davide Pesavento9a28c3f2022-06-11 21:50:01 -0400118 friend ::nfd::name_tree::Entry;
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400119 friend Fib;
Junxiao Shic1e12362014-01-24 20:03:26 -0700120};
121
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400122} // namespace nfd::fib
Junxiao Shic1e12362014-01-24 20:03:26 -0700123
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700124#endif // NFD_DAEMON_TABLE_FIB_ENTRY_HPP