blob: 262fe529f396fc9ccac5f05171280f500480b904 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonc6a85222017-01-03 16:54:34 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05004 * Regents of the University of California
akmhoque3d06e792014-05-27 16:23:20 -05005 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050019 **/
Nick Gordon22b5c952017-08-10 17:48:15 -050020
akmhoque53353462014-04-22 08:43:45 -050021#ifndef NLSR_MAP_HPP
22#define NLSR_MAP_HPP
23
Nick Gordon22b5c952017-08-10 17:48:15 -050024#include "common.hpp"
25#include "map-entry.hpp"
26
akmhoque53353462014-04-22 08:43:45 -050027#include <iostream>
28#include <list>
akmhoquefdbddb12014-05-02 18:35:19 -050029#include <boost/cstdint.hpp>
akmhoque53353462014-04-22 08:43:45 -050030
akmhoque53353462014-04-22 08:43:45 -050031namespace nlsr {
32
33class Nlsr;
34
akmhoque53353462014-04-22 08:43:45 -050035class Map
36{
37public:
38 Map()
39 : m_mappingIndex(0)
40 {
41 }
42
Nick G97e34942016-07-11 14:46:27 -050043 /*! \brief Add a map entry to this map.
44 \param rtrName The name of the router.
akmhoque53353462014-04-22 08:43:45 -050045
Nick G97e34942016-07-11 14:46:27 -050046 Adds a router to this map. Each entry is also given an arbitrary,
47 ascending mappingNo (mapping number).
48 */
akmhoque53353462014-04-22 08:43:45 -050049 void
akmhoque31d1d4b2014-05-05 22:08:14 -050050 addEntry(const ndn::Name& rtrName);
akmhoque53353462014-04-22 08:43:45 -050051
Nick Gordon22b5c952017-08-10 17:48:15 -050052 /*! Populates the Map with AdjacencyLsas.
akmhoque53353462014-04-22 08:43:45 -050053
Nick Gordon22b5c952017-08-10 17:48:15 -050054 \note IteratorType must an iterator type, and begin to end must represent a valid range.
55 */
56 template<typename IteratorType>
Nick Gordone8e03ac2016-07-07 14:24:38 -050057 void
Nick Gordon22b5c952017-08-10 17:48:15 -050058 createFromAdjLsdb(IteratorType begin, IteratorType end)
59 {
60 BOOST_STATIC_ASSERT_MSG(is_iterator<IteratorType>::value, "IteratorType must be an iterator!");
61 for (auto lsa = begin; lsa != end; lsa++) {
62 addEntry(lsa->getOrigRouter());
63 for (const auto& adjacent : lsa->getAdl().getAdjList()) {
64 addEntry(adjacent.getName());
65 }
66 }
67 }
68
69 /*! Populates the Map with CoordinateLsas.
70
71 \note IteratorType must an iterator type, and begin to end must represent a valid range.
72 */
73 template<typename IteratorType>
74 void
75 createFromCoordinateLsdb(IteratorType begin, IteratorType end)
76 {
77 BOOST_STATIC_ASSERT_MSG(is_iterator<IteratorType>::value, "IteratorType must be an iterator!");
78 for (auto lsa = begin; lsa != end; lsa++) {
79 addEntry(lsa->getOrigRouter());
80 }
81 }
Nick Gordone8e03ac2016-07-07 14:24:38 -050082
akmhoque31d1d4b2014-05-05 22:08:14 -050083 const ndn::Name
akmhoquefdbddb12014-05-02 18:35:19 -050084 getRouterNameByMappingNo(int32_t mn);
akmhoque53353462014-04-22 08:43:45 -050085
akmhoquefdbddb12014-05-02 18:35:19 -050086 int32_t
akmhoque31d1d4b2014-05-05 22:08:14 -050087 getMappingNoByRouterName(const ndn::Name& rName);
akmhoque53353462014-04-22 08:43:45 -050088
89 void
90 reset();
91
92 std::list<MapEntry>&
93 getMapList()
94 {
95 return m_table;
96 }
97
akmhoque31d1d4b2014-05-05 22:08:14 -050098 size_t
akmhoque53353462014-04-22 08:43:45 -050099 getMapSize() const
100 {
101 return m_table.size();
102 }
103
akmhoque2f423352014-06-03 11:49:35 -0500104 void
105 writeLog();
akmhoque53353462014-04-22 08:43:45 -0500106
107private:
108 bool
akmhoquefdbddb12014-05-02 18:35:19 -0500109 addEntry(MapEntry& mpe);
akmhoque53353462014-04-22 08:43:45 -0500110
akmhoquefdbddb12014-05-02 18:35:19 -0500111 int32_t m_mappingIndex;
akmhoque53353462014-04-22 08:43:45 -0500112 std::list<MapEntry> m_table;
113};
114
akmhoque53353462014-04-22 08:43:45 -0500115} // namespace nlsr
Nick Gordon22b5c952017-08-10 17:48:15 -0500116
117#endif // NLSR_MAP_HPP