blob: 371d977e027b5fc258e0449360c3db9858c59d08 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014 University of Memphis,
4 * Regents of the University of California
5 *
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/>.
19 *
20 * \author A K M Mahmudul Hoque <ahoque1@memphis.edu>
21 *
22 **/
akmhoque53353462014-04-22 08:43:45 -050023#include <iostream>
24#include <string>
25#include <list>
26
27#include "routing-table.hpp"
28#include "nlsr.hpp"
29#include "map.hpp"
akmhoque157b0a42014-05-13 00:26:37 -050030#include "conf-parameter.hpp"
akmhoque53353462014-04-22 08:43:45 -050031#include "routing-table-calculator.hpp"
32#include "routing-table-entry.hpp"
akmhoquec8a10f72014-04-25 18:42:55 -050033#include "name-prefix-table.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050034#include "logger.hpp"
akmhoque53353462014-04-22 08:43:45 -050035
36namespace nlsr {
37
akmhoque674b0b12014-05-20 14:33:28 -050038INIT_LOGGER("RoutingTable");
39
akmhoque53353462014-04-22 08:43:45 -050040using namespace std;
41
42void
43RoutingTable::calculate(Nlsr& pnlsr)
44{
akmhoque2f423352014-06-03 11:49:35 -050045 pnlsr.getLsdb().writeCorLsdbLog();
46 pnlsr.getLsdb().writeNameLsdbLog();
47 pnlsr.getLsdb().writeAdjLsdbLog();
akmhoque674b0b12014-05-20 14:33:28 -050048 pnlsr.getNamePrefixTable().writeLog();
akmhoque157b0a42014-05-13 00:26:37 -050049 if (pnlsr.getIsRoutingTableCalculating() == false) {
50 //setting routing table calculation
51 pnlsr.setIsRoutingTableCalculating(true);
akmhoque53353462014-04-22 08:43:45 -050052 if (pnlsr.getLsdb().doesLsaExist(
akmhoque31d1d4b2014-05-05 22:08:14 -050053 pnlsr.getConfParameter().getRouterPrefix().toUri() + "/" + "adjacency",
akmhoque157b0a42014-05-13 00:26:37 -050054 std::string("adjacency"))) {
55 if (pnlsr.getIsBuildAdjLsaSheduled() != 1) {
akmhoque674b0b12014-05-20 14:33:28 -050056 _LOG_DEBUG("CLearing old routing table .....");
akmhoque53353462014-04-22 08:43:45 -050057 clearRoutingTable();
akmhoque157b0a42014-05-13 00:26:37 -050058 // for dry run options
59 clearDryRoutingTable();
akmhoque53353462014-04-22 08:43:45 -050060 // calculate Link State routing
akmhoque157b0a42014-05-13 00:26:37 -050061 if ((pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_OFF)
62 || (pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_DRY_RUN)) {
akmhoque53353462014-04-22 08:43:45 -050063 calculateLsRoutingTable(pnlsr);
64 }
65 //calculate hyperbolic routing
akmhoque157b0a42014-05-13 00:26:37 -050066 if (pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_ON) {
akmhoque53353462014-04-22 08:43:45 -050067 calculateHypRoutingTable(pnlsr);
68 }
69 //calculate dry hyperbolic routing
akmhoque157b0a42014-05-13 00:26:37 -050070 if (pnlsr.getConfParameter().getHyperbolicState() == HYPERBOLIC_STATE_DRY_RUN) {
akmhoque53353462014-04-22 08:43:45 -050071 calculateHypDryRoutingTable(pnlsr);
72 }
73 //need to update NPT here
akmhoque2f423352014-06-03 11:49:35 -050074 _LOG_DEBUG("Calling Update NPT With new Route");
akmhoque31d1d4b2014-05-05 22:08:14 -050075 pnlsr.getNamePrefixTable().updateWithNewRoute();
akmhoquedcee9362014-08-05 22:58:01 -050076 writeLog(pnlsr.getConfParameter().getHyperbolicState());
akmhoque674b0b12014-05-20 14:33:28 -050077 pnlsr.getNamePrefixTable().writeLog();
78 pnlsr.getFib().writeLog();
akmhoque53353462014-04-22 08:43:45 -050079 }
akmhoque157b0a42014-05-13 00:26:37 -050080 else {
akmhoque674b0b12014-05-20 14:33:28 -050081 _LOG_DEBUG("Adjacency building is scheduled, so"
82 " routing table can not be calculated :(");
akmhoque53353462014-04-22 08:43:45 -050083 }
84 }
akmhoque157b0a42014-05-13 00:26:37 -050085 else {
akmhoque674b0b12014-05-20 14:33:28 -050086 _LOG_DEBUG("No Adj LSA of router itself,"
87 " so Routing table can not be calculated :(");
akmhoque53353462014-04-22 08:43:45 -050088 clearRoutingTable();
89 clearDryRoutingTable(); // for dry run options
90 // need to update NPT here
akmhoque2f423352014-06-03 11:49:35 -050091 _LOG_DEBUG("Calling Update NPT With new Route");
akmhoque31d1d4b2014-05-05 22:08:14 -050092 pnlsr.getNamePrefixTable().updateWithNewRoute();
akmhoquedcee9362014-08-05 22:58:01 -050093 writeLog(pnlsr.getConfParameter().getHyperbolicState());
akmhoque674b0b12014-05-20 14:33:28 -050094 pnlsr.getNamePrefixTable().writeLog();
95 pnlsr.getFib().writeLog();
akmhoque53353462014-04-22 08:43:45 -050096 //debugging purpose end
97 }
akmhoque157b0a42014-05-13 00:26:37 -050098 pnlsr.setIsRouteCalculationScheduled(false); //clear scheduled flag
99 pnlsr.setIsRoutingTableCalculating(false); //unsetting routing table calculation
akmhoque53353462014-04-22 08:43:45 -0500100 }
akmhoque157b0a42014-05-13 00:26:37 -0500101 else {
akmhoque53353462014-04-22 08:43:45 -0500102 scheduleRoutingTableCalculation(pnlsr);
103 }
104}
105
106
107void
Vince Lehman9a709032014-09-13 16:28:07 -0500108RoutingTable::calculateLsRoutingTable(Nlsr& nlsr)
akmhoque53353462014-04-22 08:43:45 -0500109{
akmhoque2f423352014-06-03 11:49:35 -0500110 _LOG_DEBUG("RoutingTable::calculateLsRoutingTable Called");
Vince Lehman9a709032014-09-13 16:28:07 -0500111
112 Map map;
113 map.createFromAdjLsdb(nlsr);
114 map.writeLog();
115
116 size_t nRouters = map.getMapSize();
117
118 LinkStateRoutingTableCalculator calculator(nRouters);
119
120 calculator.calculatePath(map, ndn::ref(*this), nlsr);
akmhoque53353462014-04-22 08:43:45 -0500121}
122
123void
Vince Lehman9a709032014-09-13 16:28:07 -0500124RoutingTable::calculateHypRoutingTable(Nlsr& nlsr)
akmhoque53353462014-04-22 08:43:45 -0500125{
Vince Lehman9a709032014-09-13 16:28:07 -0500126 Map map;
127 map.createFromAdjLsdb(nlsr);
128 map.writeLog();
129
130 size_t nRouters = map.getMapSize();
131
132 HyperbolicRoutingCalculator calculator(nRouters, false,
133 nlsr.getConfParameter().getRouterPrefix());
134
135 calculator.calculatePaths(map, ndn::ref(*this),
136 nlsr.getLsdb(), nlsr.getAdjacencyList());
akmhoque53353462014-04-22 08:43:45 -0500137}
138
139void
Vince Lehman9a709032014-09-13 16:28:07 -0500140RoutingTable::calculateHypDryRoutingTable(Nlsr& nlsr)
akmhoque53353462014-04-22 08:43:45 -0500141{
Vince Lehman9a709032014-09-13 16:28:07 -0500142 Map map;
143 map.createFromAdjLsdb(nlsr);
144 map.writeLog();
145
146 size_t nRouters = map.getMapSize();
147
148 HyperbolicRoutingCalculator calculator(nRouters, true,
149 nlsr.getConfParameter().getRouterPrefix());
150
151 calculator.calculatePaths(map, ndn::ref(*this),
152 nlsr.getLsdb(), nlsr.getAdjacencyList());
akmhoque53353462014-04-22 08:43:45 -0500153}
154
155void
156RoutingTable::scheduleRoutingTableCalculation(Nlsr& pnlsr)
157{
akmhoque157b0a42014-05-13 00:26:37 -0500158 if (pnlsr.getIsRouteCalculationScheduled() != true) {
Vince Lehman7b616582014-10-17 16:25:39 -0500159 m_scheduler.scheduleEvent(m_routingCalcInterval,
Vince Lehman7c603292014-09-11 17:48:16 -0500160 ndn::bind(&RoutingTable::calculate, this, ndn::ref(pnlsr)));
161
akmhoque157b0a42014-05-13 00:26:37 -0500162 pnlsr.setIsRouteCalculationScheduled(true);
akmhoque53353462014-04-22 08:43:45 -0500163 }
164}
165
166static bool
akmhoque31d1d4b2014-05-05 22:08:14 -0500167routingTableEntryCompare(RoutingTableEntry& rte, ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -0500168{
169 return rte.getDestination() == destRouter;
170}
171
172// function related to manipulation of routing table
173void
akmhoque31d1d4b2014-05-05 22:08:14 -0500174RoutingTable::addNextHop(const ndn::Name& destRouter, NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -0500175{
Vince Lehman9a709032014-09-13 16:28:07 -0500176 _LOG_DEBUG("Adding " << nh << " for destination: " << destRouter);
177
akmhoqueb6450b12014-04-24 00:01:03 -0500178 RoutingTableEntry* rteChk = findRoutingTableEntry(destRouter);
akmhoque157b0a42014-05-13 00:26:37 -0500179 if (rteChk == 0) {
akmhoque53353462014-04-22 08:43:45 -0500180 RoutingTableEntry rte(destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -0500181 rte.getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500182 m_rTable.push_back(rte);
183 }
akmhoque157b0a42014-05-13 00:26:37 -0500184 else {
akmhoquefdbddb12014-05-02 18:35:19 -0500185 rteChk->getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500186 }
187}
188
akmhoqueb6450b12014-04-24 00:01:03 -0500189RoutingTableEntry*
akmhoque31d1d4b2014-05-05 22:08:14 -0500190RoutingTable::findRoutingTableEntry(const ndn::Name& destRouter)
akmhoque53353462014-04-22 08:43:45 -0500191{
192 std::list<RoutingTableEntry>::iterator it = std::find_if(m_rTable.begin(),
193 m_rTable.end(),
akmhoque157b0a42014-05-13 00:26:37 -0500194 ndn::bind(&routingTableEntryCompare,
195 _1, destRouter));
196 if (it != m_rTable.end()) {
akmhoqueb6450b12014-04-24 00:01:03 -0500197 return &(*it);
akmhoque53353462014-04-22 08:43:45 -0500198 }
akmhoqueb6450b12014-04-24 00:01:03 -0500199 return 0;
akmhoque53353462014-04-22 08:43:45 -0500200}
201
202void
akmhoquedcee9362014-08-05 22:58:01 -0500203RoutingTable::writeLog(int hyperbolicState)
akmhoque674b0b12014-05-20 14:33:28 -0500204{
205 _LOG_DEBUG("---------------Routing Table------------------");
206 for (std::list<RoutingTableEntry>::iterator it = m_rTable.begin() ;
207 it != m_rTable.end(); ++it) {
208 _LOG_DEBUG("Destination: " << (*it).getDestination());
209 _LOG_DEBUG("Nexthops: ");
210 (*it).getNexthopList().writeLog();
211 }
akmhoquedcee9362014-08-05 22:58:01 -0500212
213 if (hyperbolicState == HYPERBOLIC_STATE_DRY_RUN) {
214 _LOG_DEBUG("--------Hyperbolic Routing Table(Dry)---------");
215 for (std::list<RoutingTableEntry>::iterator it = m_dryTable.begin() ;
216 it != m_dryTable.end(); ++it) {
217 _LOG_DEBUG("Destination: " << (*it).getDestination());
218 _LOG_DEBUG("Nexthops: ");
219 (*it).getNexthopList().writeLog();
220 }
221 }
akmhoque674b0b12014-05-20 14:33:28 -0500222}
223
akmhoque53353462014-04-22 08:43:45 -0500224//function related to manipulation of dry routing table
225void
akmhoque31d1d4b2014-05-05 22:08:14 -0500226RoutingTable::addNextHopToDryTable(const ndn::Name& destRouter, NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -0500227{
Vince Lehman9a709032014-09-13 16:28:07 -0500228 _LOG_DEBUG("Adding " << nh << " to dry table for destination: " << destRouter);
229
akmhoque53353462014-04-22 08:43:45 -0500230 std::list<RoutingTableEntry>::iterator it = std::find_if(m_dryTable.begin(),
231 m_dryTable.end(),
akmhoque157b0a42014-05-13 00:26:37 -0500232 ndn::bind(&routingTableEntryCompare,
233 _1, destRouter));
234 if (it == m_dryTable.end()) {
akmhoque53353462014-04-22 08:43:45 -0500235 RoutingTableEntry rte(destRouter);
akmhoquefdbddb12014-05-02 18:35:19 -0500236 rte.getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500237 m_dryTable.push_back(rte);
238 }
akmhoque157b0a42014-05-13 00:26:37 -0500239 else {
akmhoquefdbddb12014-05-02 18:35:19 -0500240 (*it).getNexthopList().addNextHop(nh);
akmhoque53353462014-04-22 08:43:45 -0500241 }
242}
243
244void
akmhoque53353462014-04-22 08:43:45 -0500245RoutingTable::clearRoutingTable()
246{
akmhoque157b0a42014-05-13 00:26:37 -0500247 if (m_rTable.size() > 0) {
akmhoque53353462014-04-22 08:43:45 -0500248 m_rTable.clear();
249 }
250}
251
252void
253RoutingTable::clearDryRoutingTable()
254{
akmhoque157b0a42014-05-13 00:26:37 -0500255 if (m_dryTable.size() > 0) {
akmhoque53353462014-04-22 08:43:45 -0500256 m_dryTable.clear();
257 }
258}
259
260}//namespace nlsr
261