blob: 833b650a65cb8c487772a84b402133620e190817 [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 **/
akmhoque298385a2014-02-13 14:13:09 -060023#include <cstdlib>
akmhoque92afde42014-02-18 14:04:07 -060024#include <string>
akmhoque298385a2014-02-13 14:13:09 -060025#include <sstream>
akmhoque05d5fcf2014-04-15 14:58:45 -050026#include <cstdio>
akmhoque298385a2014-02-13 14:13:09 -060027
28#include "nlsr.hpp"
akmhoque157b0a42014-05-13 00:26:37 -050029#include "adjacent.hpp"
akmhoque674b0b12014-05-20 14:33:28 -050030#include "logger.hpp"
akmhoque2bb198e2014-02-28 11:46:27 -060031
akmhoque298385a2014-02-13 14:13:09 -060032
akmhoque53353462014-04-22 08:43:45 -050033namespace nlsr {
34
akmhoque674b0b12014-05-20 14:33:28 -050035INIT_LOGGER("nlsr");
36
akmhoque53353462014-04-22 08:43:45 -050037using namespace ndn;
38using namespace std;
39
40void
41Nlsr::registrationFailed(const ndn::Name& name)
akmhoque298385a2014-02-13 14:13:09 -060042{
akmhoquefdbddb12014-05-02 18:35:19 -050043 std::cerr << "ERROR: Failed to register prefix in local hub's daemon" << endl;
44 throw Error("Error: Prefix registration failed");
akmhoque53353462014-04-22 08:43:45 -050045}
akmhoque1fd8c1e2014-02-19 19:41:49 -060046
akmhoque157b0a42014-05-13 00:26:37 -050047void
48Nlsr::onRegistrationSuccess(const ndn::Name& name)
49{
50}
akmhoque1fd8c1e2014-02-19 19:41:49 -060051
akmhoque53353462014-04-22 08:43:45 -050052void
akmhoque31d1d4b2014-05-05 22:08:14 -050053Nlsr::setInfoInterestFilter()
akmhoque53353462014-04-22 08:43:45 -050054{
akmhoque31d1d4b2014-05-05 22:08:14 -050055 ndn::Name name(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -050056 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoquefdbddb12014-05-02 18:35:19 -050057 getNlsrFace().setInterestFilter(name,
akmhoque31d1d4b2014-05-05 22:08:14 -050058 ndn::bind(&HelloProtocol::processInterest,
59 &m_helloProtocol, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -050060 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoque31d1d4b2014-05-05 22:08:14 -050061 ndn::bind(&Nlsr::registrationFailed, this, _1));
62}
63
64void
65Nlsr::setLsaInterestFilter()
66{
akmhoque157b0a42014-05-13 00:26:37 -050067 ndn::Name name = m_confParam.getLsaPrefix();
akmhoque31d1d4b2014-05-05 22:08:14 -050068 name.append(m_confParam.getRouterPrefix());
akmhoque674b0b12014-05-20 14:33:28 -050069 _LOG_DEBUG("Setting interest filter for name: " << name);
akmhoque31d1d4b2014-05-05 22:08:14 -050070 getNlsrFace().setInterestFilter(name,
71 ndn::bind(&Lsdb::processInterest,
72 &m_nlsrLsdb, _1, _2),
akmhoque157b0a42014-05-13 00:26:37 -050073 ndn::bind(&Nlsr::onRegistrationSuccess, this, _1),
akmhoquefdbddb12014-05-02 18:35:19 -050074 ndn::bind(&Nlsr::registrationFailed, this, _1));
akmhoque53353462014-04-22 08:43:45 -050075}
76
77void
akmhoque157b0a42014-05-13 00:26:37 -050078Nlsr::registerPrefixes()
79{
80 std::string strategy("ndn:/localhost/nfd/strategy/broadcast");
81 std::list<Adjacent>& adjacents = m_adjacencyList.getAdjList();
82 for (std::list<Adjacent>::iterator it = adjacents.begin();
83 it != adjacents.end(); it++) {
84 m_fib.registerPrefix((*it).getName(), (*it).getConnectingFaceUri(),
85 (*it).getLinkCost(), 31536000); /* One Year in seconds */
86 m_fib.registerPrefix(m_confParam.getChronosyncPrefix(),
87 (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000);
88 m_fib.registerPrefix(m_confParam.getLsaPrefix(),
89 (*it).getConnectingFaceUri(), (*it).getLinkCost(), 31536000);
90 m_fib.setStrategy((*it).getName(), strategy);
91 }
92
93 m_fib.setStrategy(m_confParam.getChronosyncPrefix(), strategy);
94 m_fib.setStrategy(m_confParam.getLsaPrefix(), strategy);
95}
96
97void
akmhoque53353462014-04-22 08:43:45 -050098Nlsr::initialize()
99{
akmhoque674b0b12014-05-20 14:33:28 -0500100 _LOG_DEBUG("Initializing Nlsr");
akmhoque53353462014-04-22 08:43:45 -0500101 m_confParam.buildRouterPrefix();
102 m_nlsrLsdb.setLsaRefreshTime(m_confParam.getLsaRefreshTime());
akmhoque31d1d4b2014-05-05 22:08:14 -0500103 m_nlsrLsdb.setThisRouterPrefix(m_confParam.getRouterPrefix().toUri());
akmhoque53353462014-04-22 08:43:45 -0500104 m_fib.setEntryRefreshTime(2 * m_confParam.getLsaRefreshTime());
akmhoquec8a10f72014-04-25 18:42:55 -0500105 m_sequencingManager.setSeqFileName(m_confParam.getSeqFileDir());
106 m_sequencingManager.initiateSeqNoFromFile();
akmhoque53353462014-04-22 08:43:45 -0500107 /* debugging purpose start */
Yingdi Yu0c217822014-04-24 14:22:42 -0700108 cout << m_confParam;
akmhoquec8a10f72014-04-25 18:42:55 -0500109 m_adjacencyList.print();
110 m_namePrefixList.print();
akmhoque53353462014-04-22 08:43:45 -0500111 /* debugging purpose end */
akmhoque674b0b12014-05-20 14:33:28 -0500112 /* Logging start */
113 m_confParam.writeLog();
114 m_adjacencyList.writeLog();
115 m_namePrefixList.writeLog();
116 /* Logging end */
akmhoque157b0a42014-05-13 00:26:37 -0500117 registerPrefixes();
akmhoque31d1d4b2014-05-05 22:08:14 -0500118 setInfoInterestFilter();
119 setLsaInterestFilter();
akmhoque674b0b12014-05-20 14:33:28 -0500120 m_nlsrLsdb.buildAndInstallOwnNameLsa();
121 m_nlsrLsdb.buildAndInstallOwnCoordinateLsa();
akmhoque157b0a42014-05-13 00:26:37 -0500122 m_syncLogicHandler.setSyncPrefix(m_confParam.getChronosyncPrefix().toUri());
akmhoquec8a10f72014-04-25 18:42:55 -0500123 m_syncLogicHandler.createSyncSocket(boost::ref(*this));
akmhoque31d1d4b2014-05-05 22:08:14 -0500124 //m_interestManager.scheduleInfoInterest(10);
125 m_helloProtocol.scheduleInterest(10);
akmhoque53353462014-04-22 08:43:45 -0500126}
akmhoque5a44dd42014-03-12 18:11:32 -0500127
akmhoque53353462014-04-22 08:43:45 -0500128void
129Nlsr::startEventLoop()
130{
akmhoquefdbddb12014-05-02 18:35:19 -0500131 m_nlsrFace.processEvents();
akmhoque53353462014-04-22 08:43:45 -0500132}
akmhoque5a44dd42014-03-12 18:11:32 -0500133
akmhoquefdbddb12014-05-02 18:35:19 -0500134void
akmhoque53353462014-04-22 08:43:45 -0500135Nlsr::usage(const string& progname)
136{
137 cout << "Usage: " << progname << " [OPTIONS...]" << endl;
138 cout << " NDN routing...." << endl;
139 cout << " -d, --daemon Run in daemon mode" << endl;
140 cout << " -f, --config_file Specify configuration file name" << endl;
141 cout << " -p, --api_port port where api client will connect" << endl;
142 cout << " -h, --help Display this help message" << endl;
akmhoque53353462014-04-22 08:43:45 -0500143}
akmhoque298385a2014-02-13 14:13:09 -0600144
akmhoqueb1710aa2014-02-19 17:13:36 -0600145
146} // namespace nlsr