blob: 82f73b0a2c5f35c748cd23697eece68c8a90a9a4 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonfeae5572017-01-13 12:06:26 -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 **/
akmhoque53353462014-04-22 08:43:45 -050020
Nick Gordon22b5c952017-08-10 17:48:15 -050021#include "map.hpp"
akmhoque53353462014-04-22 08:43:45 -050022#include "nlsr.hpp"
23#include "adjacent.hpp"
24#include "lsa.hpp"
25#include "lsdb.hpp"
akmhoque2f423352014-06-03 11:49:35 -050026#include "logger.hpp"
Nick Gordon22b5c952017-08-10 17:48:15 -050027
28#include <iostream>
29#include <list>
30
akmhoque53353462014-04-22 08:43:45 -050031namespace nlsr {
32
akmhoque2f423352014-06-03 11:49:35 -050033INIT_LOGGER("Map");
34
akmhoque53353462014-04-22 08:43:45 -050035void
akmhoque31d1d4b2014-05-05 22:08:14 -050036Map::addEntry(const ndn::Name& rtrName)
akmhoque53353462014-04-22 08:43:45 -050037{
38 MapEntry me(rtrName, m_mappingIndex);
akmhoque157b0a42014-05-13 00:26:37 -050039 if (addEntry(me)) {
akmhoque53353462014-04-22 08:43:45 -050040 m_mappingIndex++;
41 }
42}
43
44bool
akmhoquefdbddb12014-05-02 18:35:19 -050045Map::addEntry(MapEntry& mpe)
akmhoque53353462014-04-22 08:43:45 -050046{
Nick Gordone40377d2017-08-11 15:10:02 -050047 return m_entries.insert(mpe).second;
akmhoque53353462014-04-22 08:43:45 -050048}
49
Nick Gordone40377d2017-08-11 15:10:02 -050050ndn::optional<ndn::Name>
akmhoquefdbddb12014-05-02 18:35:19 -050051Map::getRouterNameByMappingNo(int32_t mn)
akmhoque53353462014-04-22 08:43:45 -050052{
Nick Gordone40377d2017-08-11 15:10:02 -050053 auto&& mappingNumberView = m_entries.get<detail::byMappingNumber>();
54 auto iterator = mappingNumberView.find(mn);
55 if (iterator == mappingNumberView.end()) {
56 return {};
akmhoque53353462014-04-22 08:43:45 -050057 }
Nick Gordone40377d2017-08-11 15:10:02 -050058 else {
59 return {iterator->getRouter()};
60 }
akmhoque53353462014-04-22 08:43:45 -050061}
62
Nick Gordone40377d2017-08-11 15:10:02 -050063ndn::optional<int32_t>
akmhoque31d1d4b2014-05-05 22:08:14 -050064Map::getMappingNoByRouterName(const ndn::Name& rName)
akmhoque53353462014-04-22 08:43:45 -050065{
Nick Gordone40377d2017-08-11 15:10:02 -050066 auto&& routerNameView = m_entries.get<detail::byRouterName>();
67 auto iterator = routerNameView.find(rName);
68 if (iterator == routerNameView.end()) {
69 return {};
akmhoque53353462014-04-22 08:43:45 -050070 }
Nick Gordone40377d2017-08-11 15:10:02 -050071 else {
72 return {iterator->getMappingNumber()};
73 }
akmhoque53353462014-04-22 08:43:45 -050074}
75
76void
akmhoque53353462014-04-22 08:43:45 -050077Map::reset()
78{
Nick Gordone40377d2017-08-11 15:10:02 -050079 m_entries = detail::entryContainer{};
akmhoque53353462014-04-22 08:43:45 -050080 m_mappingIndex = 0;
81}
82
akmhoque2f423352014-06-03 11:49:35 -050083void
84Map::writeLog()
akmhoque53353462014-04-22 08:43:45 -050085{
dmcoomes5bcb39e2017-10-31 15:07:55 -050086 NLSR_LOG_DEBUG("---------------Map----------------------");
Nick Gordone40377d2017-08-11 15:10:02 -050087 auto&& routerNameView = m_entries.get<detail::byRouterName>();
88 for (auto entry = routerNameView.begin(); entry != routerNameView.end(); entry++) {
dmcoomes5bcb39e2017-10-31 15:07:55 -050089 NLSR_LOG_DEBUG("MapEntry: ( Router: " << entry->getRouter() << " Mapping No: "
Nick Gordone40377d2017-08-11 15:10:02 -050090 << entry->getMappingNumber() << " )");
akmhoque53353462014-04-22 08:43:45 -050091 }
akmhoque53353462014-04-22 08:43:45 -050092}
93
Nick Gordonfad8e252016-08-11 14:21:38 -050094} // namespace nlsr