blob: bb9c3833ae99468720d704667b05ef3c2b7646df [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Muktadir R Chowdhury800833b2016-07-29 13:43:59 -05003 * Copyright (c) 2014-2016, The University of Memphis,
Vince Lehmancae33b62015-06-05 09:21:30 -05004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Vince Lehmancae33b62015-06-05 09:21:30 -050021
akmhoquefdbddb12014-05-02 18:35:19 -050022#ifndef NLSR_NAME_PREFIX_TABLE_ENTRY_HPP
23#define NLSR_NAME_PREFIX_TABLE_ENTRY_HPP
akmhoque53353462014-04-22 08:43:45 -050024
Nick Gordonb50e51b2016-07-22 16:05:57 -050025#include "routing-table-pool-entry.hpp"
26
27#include "test-access-control.hpp"
Vince Lehmancae33b62015-06-05 09:21:30 -050028
akmhoque53353462014-04-22 08:43:45 -050029#include <list>
30#include <utility>
akmhoque53353462014-04-22 08:43:45 -050031
32namespace nlsr {
33
akmhoquec8a10f72014-04-25 18:42:55 -050034class NamePrefixTableEntry
akmhoque53353462014-04-22 08:43:45 -050035{
36public:
akmhoquec8a10f72014-04-25 18:42:55 -050037 NamePrefixTableEntry()
akmhoque53353462014-04-22 08:43:45 -050038 {
39 }
40
akmhoque31d1d4b2014-05-05 22:08:14 -050041 NamePrefixTableEntry(const ndn::Name& namePrefix)
42 : m_namePrefix(namePrefix)
43 , m_nexthopList()
akmhoque53353462014-04-22 08:43:45 -050044 {
akmhoque53353462014-04-22 08:43:45 -050045 }
46
akmhoque31d1d4b2014-05-05 22:08:14 -050047 const ndn::Name&
akmhoquefdbddb12014-05-02 18:35:19 -050048 getNamePrefix() const
akmhoque53353462014-04-22 08:43:45 -050049 {
50 return m_namePrefix;
51 }
52
Nick Gordonb50e51b2016-07-22 16:05:57 -050053 const std::list<std::shared_ptr<RoutingTablePoolEntry>>&
Vince Lehmancae33b62015-06-05 09:21:30 -050054 getRteList() const
akmhoque53353462014-04-22 08:43:45 -050055 {
56 return m_rteList;
57 }
58
59 void
60 resetRteListNextHop()
61 {
akmhoque157b0a42014-05-13 00:26:37 -050062 if (m_rteList.size() > 0) {
Nick Gordonb50e51b2016-07-22 16:05:57 -050063 for (auto it = m_rteList.begin(); it != m_rteList.end(); ++it) {
64 (*it)->getNexthopList().reset();
akmhoque53353462014-04-22 08:43:45 -050065 }
66 }
67 }
68
akmhoquefdbddb12014-05-02 18:35:19 -050069 size_t
akmhoque53353462014-04-22 08:43:45 -050070 getRteListSize()
71 {
72 return m_rteList.size();
73 }
74
akmhoquec8a10f72014-04-25 18:42:55 -050075 NexthopList&
akmhoquefdbddb12014-05-02 18:35:19 -050076 getNexthopList()
akmhoque53353462014-04-22 08:43:45 -050077 {
akmhoquefdbddb12014-05-02 18:35:19 -050078 return m_nexthopList;
akmhoque53353462014-04-22 08:43:45 -050079 }
80
Nick G97e34942016-07-11 14:46:27 -050081 /*! \brief Generates a next-hop list from routing table entries. */
akmhoque53353462014-04-22 08:43:45 -050082 void
83 generateNhlfromRteList();
84
Nick Gordonb50e51b2016-07-22 16:05:57 -050085 /*! \brief Removes a routing entry from this NPT entry.
86 \param rtpePtr The routing entry
87 \return The remaining number of other NPTs using the removed routing entry.
88 */
89 uint64_t
90 removeRoutingTableEntry(std::shared_ptr<RoutingTablePoolEntry> rtpePtr);
akmhoque53353462014-04-22 08:43:45 -050091
Nick Gordonb50e51b2016-07-22 16:05:57 -050092 /*! \brief Adds a routing entry to this NPT entry.
93 \param rtpePtr The routing entry.
Nick G97e34942016-07-11 14:46:27 -050094
Nick Gordonb50e51b2016-07-22 16:05:57 -050095 Adds a routing table pool entry to this NPT entry's list
96 (reminder: each RTPE has a next-hop list). They are used to
97 calculate this entry's overall next-hop list.
Nick G97e34942016-07-11 14:46:27 -050098 */
akmhoque53353462014-04-22 08:43:45 -050099 void
Nick Gordonb50e51b2016-07-22 16:05:57 -0500100 addRoutingTableEntry(std::shared_ptr<RoutingTablePoolEntry> rtpePtr);
akmhoque53353462014-04-22 08:43:45 -0500101
akmhoque674b0b12014-05-20 14:33:28 -0500102 void
103 writeLog();
104
akmhoque53353462014-04-22 08:43:45 -0500105private:
akmhoque31d1d4b2014-05-05 22:08:14 -0500106 ndn::Name m_namePrefix;
Nick Gordonb50e51b2016-07-22 16:05:57 -0500107
108PUBLIC_WITH_TESTS_ELSE_PRIVATE:
109 std::list<std::shared_ptr<RoutingTablePoolEntry>> m_rteList;
akmhoquefdbddb12014-05-02 18:35:19 -0500110 NexthopList m_nexthopList;
Nick Gordonb50e51b2016-07-22 16:05:57 -0500111
akmhoque53353462014-04-22 08:43:45 -0500112};
113
Nick Gordonb50e51b2016-07-22 16:05:57 -0500114bool
115operator==(const NamePrefixTableEntry& lhs, const NamePrefixTableEntry& rhs);
116
117bool
118operator==(const NamePrefixTableEntry& lhs, const ndn::Name& rhs);
119
Vince Lehmancae33b62015-06-05 09:21:30 -0500120std::ostream&
121operator<<(std::ostream& os, const NamePrefixTableEntry& entry);
akmhoque53353462014-04-22 08:43:45 -0500122
Vince Lehmancae33b62015-06-05 09:21:30 -0500123} // namespace nlsr
124
125#endif // NLSR_NAME_PREFIX_TABLE_ENTRY_HPP