blob: 985f91e45c0c28e2643ee0d5b83bc51c67c0ec00 [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_HPP
23#define NLSR_NAME_PREFIX_TABLE_HPP
akmhoque53353462014-04-22 08:43:45 -050024
akmhoquec8a10f72014-04-25 18:42:55 -050025#include "name-prefix-table-entry.hpp"
akmhoque53353462014-04-22 08:43:45 -050026#include "routing-table-entry.hpp"
27
Vince Lehmancae33b62015-06-05 09:21:30 -050028#include <list>
29
akmhoque53353462014-04-22 08:43:45 -050030namespace nlsr {
31class Nlsr;
32
akmhoquec8a10f72014-04-25 18:42:55 -050033class NamePrefixTable
akmhoque53353462014-04-22 08:43:45 -050034{
35public:
Vince Lehmancae33b62015-06-05 09:21:30 -050036
37 typedef std::list<NamePrefixTableEntry> NptEntryList;
38 typedef NptEntryList::const_iterator const_iterator;
39
akmhoque31d1d4b2014-05-05 22:08:14 -050040 NamePrefixTable(Nlsr& nlsr)
41 : m_nlsr(nlsr)
akmhoque53353462014-04-22 08:43:45 -050042 {
43 }
akmhoque53353462014-04-22 08:43:45 -050044
45 void
akmhoque31d1d4b2014-05-05 22:08:14 -050046 addEntry(const ndn::Name& name, const ndn::Name& destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -050047
48 void
akmhoque31d1d4b2014-05-05 22:08:14 -050049 removeEntry(const ndn::Name& name, const ndn::Name& destRouter);
akmhoque53353462014-04-22 08:43:45 -050050
51 void
akmhoque31d1d4b2014-05-05 22:08:14 -050052 updateWithNewRoute();
akmhoque53353462014-04-22 08:43:45 -050053
54 void
akmhoque674b0b12014-05-20 14:33:28 -050055 writeLog();
56
Vince Lehmancae33b62015-06-05 09:21:30 -050057 const_iterator
58 begin() const;
59
60 const_iterator
61 end() const;
62
akmhoque53353462014-04-22 08:43:45 -050063private:
64 void
akmhoque31d1d4b2014-05-05 22:08:14 -050065 addEntry(const ndn::Name& name, RoutingTableEntry& rte);
akmhoque53353462014-04-22 08:43:45 -050066
67 void
akmhoque31d1d4b2014-05-05 22:08:14 -050068 removeEntry(const ndn::Name& name, RoutingTableEntry& rte);
akmhoque53353462014-04-22 08:43:45 -050069
70private:
akmhoque31d1d4b2014-05-05 22:08:14 -050071 Nlsr& m_nlsr;
akmhoquefdbddb12014-05-02 18:35:19 -050072 std::list<NamePrefixTableEntry> m_table;
akmhoque53353462014-04-22 08:43:45 -050073};
74
Vince Lehmancae33b62015-06-05 09:21:30 -050075inline NamePrefixTable::const_iterator
76NamePrefixTable::begin() const
77{
78 return m_table.begin();
79}
akmhoque53353462014-04-22 08:43:45 -050080
Vince Lehmancae33b62015-06-05 09:21:30 -050081inline NamePrefixTable::const_iterator
82NamePrefixTable::end() const
83{
84 return m_table.end();
85}
86
87std::ostream&
88operator<<(std::ostream& os, const NamePrefixTable& table);
89
90} // namespace nlsr
91
92#endif // NLSR_NAME_PREFIX_TABLE_HPP