blob: 8f832663b0e92ba98a403e083ae59f8267e00399 [file] [log] [blame]
Junxiao Shic1e12362014-01-24 20:03:26 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shib184e532016-05-26 18:09:57 +00003 * Copyright (c) 2014-2016, 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 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
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080031namespace nfd {
Junxiao Shidbe71732014-02-21 22:23:28 -070032
Junxiao Shiefceadc2014-03-09 18:52:57 -070033class NameTree;
34namespace name_tree {
35class Entry;
Junxiao Shib184e532016-05-26 18:09:57 +000036} // namespace name_tree
Junxiao Shiefceadc2014-03-09 18:52:57 -070037
Junxiao Shic1e12362014-01-24 20:03:26 -070038namespace fib {
39
40/** \class NextHopList
41 * \brief represents a collection of nexthops
Junxiao Shi56a21bf2014-11-02 21:11:50 -070042 *
43 * This type has these methods as public API:
Junxiao Shic1e12362014-01-24 20:03:26 -070044 * iterator<NextHop> begin()
45 * iterator<NextHop> end()
46 * size_t size()
47 */
48typedef std::vector<fib::NextHop> NextHopList;
49
50/** \class Entry
51 * \brief represents a FIB entry
52 */
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&
60 getPrefix() const;
Junxiao Shi7bb01512014-03-05 21:34:09 -070061
Junxiao Shic1e12362014-01-24 20:03:26 -070062 const NextHopList&
63 getNextHops() const;
Junxiao Shi7bb01512014-03-05 21:34:09 -070064
Junxiao Shi56a21bf2014-11-02 21:11:50 -070065 /** \return whether this Entry has any NextHop record
66 */
Junxiao Shiefceadc2014-03-09 18:52:57 -070067 bool
68 hasNextHops() const;
69
Junxiao Shia6de4292016-07-12 02:08:10 +000070 /** \return whether there is a NextHop record for \p face
Junxiao Shi56a21bf2014-11-02 21:11:50 -070071 */
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070072 bool
Junxiao Shia6de4292016-07-12 02:08:10 +000073 hasNextHop(const Face& face) const;
Junxiao Shi7bb01512014-03-05 21:34:09 -070074
Junxiao Shi56a21bf2014-11-02 21:11:50 -070075 /** \brief adds a NextHop record
76 *
Junxiao Shia6de4292016-07-12 02:08:10 +000077 * If a NextHop record for \p face already exists, its cost is updated.
Junxiao Shi56a21bf2014-11-02 21:11:50 -070078 */
Junxiao Shic1e12362014-01-24 20:03:26 -070079 void
Junxiao Shia6de4292016-07-12 02:08:10 +000080 addNextHop(Face& face, uint64_t cost);
Junxiao Shi7bb01512014-03-05 21:34:09 -070081
Junxiao Shi56a21bf2014-11-02 21:11:50 -070082 /** \brief removes a NextHop record
83 *
84 * If no NextHop record for face exists, do nothing.
Junxiao Shi56a21bf2014-11-02 21:11:50 -070085 */
Junxiao Shic1e12362014-01-24 20:03:26 -070086 void
Junxiao Shia6de4292016-07-12 02:08:10 +000087 removeNextHop(const Face& face);
Junxiao Shic1e12362014-01-24 20:03:26 -070088
89private:
Junxiao Shia6de4292016-07-12 02:08:10 +000090 /** \note This method is non-const because mutable iterators are needed by callers.
Junxiao Shi56a21bf2014-11-02 21:11:50 -070091 */
92 NextHopList::iterator
Junxiao Shia6de4292016-07-12 02:08:10 +000093 findNextHop(const Face& face);
Junxiao Shi56a21bf2014-11-02 21:11:50 -070094
Junxiao Shia6de4292016-07-12 02:08:10 +000095 /** \brief sorts the nexthop list
96 */
Junxiao Shic1e12362014-01-24 20:03:26 -070097 void
98 sortNextHops();
99
100private:
101 Name m_prefix;
102 NextHopList m_nextHops;
Junxiao Shiefceadc2014-03-09 18:52:57 -0700103
Junxiao Shib184e532016-05-26 18:09:57 +0000104 weak_ptr<name_tree::Entry> m_nameTreeEntry;
Junxiao Shiefceadc2014-03-09 18:52:57 -0700105 friend class nfd::NameTree;
106 friend class nfd::name_tree::Entry;
Junxiao Shic1e12362014-01-24 20:03:26 -0700107};
108
109
110inline const Name&
111Entry::getPrefix() const
112{
113 return m_prefix;
114}
115
116inline const NextHopList&
117Entry::getNextHops() const
118{
119 return m_nextHops;
120}
121
Junxiao Shiefceadc2014-03-09 18:52:57 -0700122inline bool
123Entry::hasNextHops() const
124{
125 return !m_nextHops.empty();
126}
127
Junxiao Shic1e12362014-01-24 20:03:26 -0700128} // namespace fib
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800129} // namespace nfd
Junxiao Shic1e12362014-01-24 20:03:26 -0700130
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700131#endif // NFD_DAEMON_TABLE_FIB_ENTRY_HPP