Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame^] | 3 | * Copyright (c) 2014-2018, The University of Memphis, |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
| 6 | * |
| 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/>. |
| 20 | **/ |
| 21 | |
| 22 | #include "nlsr-runner.hpp" |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 23 | #include "conf-file-processor.hpp" |
| 24 | #include "logger.hpp" |
| 25 | |
| 26 | namespace nlsr { |
| 27 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame^] | 28 | INIT_LOGGER(NlsrRunner); |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 29 | |
dmcoomes | cf8d0ed | 2017-02-21 11:39:01 -0600 | [diff] [blame^] | 30 | NlsrRunner::NlsrRunner(std::string& configFileName) |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 31 | : m_scheduler(m_ioService) |
| 32 | , m_face(m_ioService) |
Laqin Fan | a4cf402 | 2017-01-03 18:57:35 +0000 | [diff] [blame] | 33 | , m_nlsr(m_ioService, m_scheduler, m_face, m_keyChain) |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 34 | { |
| 35 | m_nlsr.setConfFileName(configFileName); |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | void |
| 39 | NlsrRunner::run() |
| 40 | { |
| 41 | ConfFileProcessor configProcessor(m_nlsr, m_nlsr.getConfFileName()); |
| 42 | |
| 43 | if (!configProcessor.processConfFile()) { |
Ashlesh Gawande | 415676b | 2016-12-22 00:26:23 -0600 | [diff] [blame] | 44 | BOOST_THROW_EXCEPTION(Error("Error in configuration file processing! Exiting from NLSR")); |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 45 | } |
| 46 | |
Nick Gordon | 922714a | 2017-06-13 14:12:02 -0500 | [diff] [blame] | 47 | /** Because URI canonization needs to occur before initialization, |
| 48 | we have to pass initialize as the finally() in neighbor |
| 49 | canonization. |
| 50 | */ |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 51 | m_nlsr.canonizeNeighborUris(m_nlsr.getAdjacencyList().getAdjList().begin(), |
| 52 | [this] (std::list<Adjacent>::iterator iterator) { |
Nick Gordon | 922714a | 2017-06-13 14:12:02 -0500 | [diff] [blame] | 53 | m_nlsr.canonizeContinuation(iterator, [this] { |
| 54 | m_nlsr.initialize(); |
| 55 | }); |
| 56 | }, |
| 57 | [this] { |
| 58 | m_nlsr.initialize(); |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 59 | }); |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 60 | try { |
| 61 | m_nlsr.startEventLoop(); |
| 62 | } |
Ashlesh Gawande | 415676b | 2016-12-22 00:26:23 -0600 | [diff] [blame] | 63 | catch (const std::exception& e) { |
dmcoomes | 5bcb39e | 2017-10-31 15:07:55 -0500 | [diff] [blame] | 64 | NLSR_LOG_FATAL("ERROR: " << e.what()); |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 65 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 66 | |
| 67 | m_nlsr.getFib().clean(); |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 68 | } |
| 69 | } |
| 70 | |
| 71 | void |
| 72 | NlsrRunner::printUsage(const std::string& programName) |
| 73 | { |
| 74 | std::cout << "Usage: " << programName << " [OPTIONS...]" << std::endl; |
| 75 | std::cout << " NDN routing...." << std::endl; |
Vince Lehman | c57c64b | 2015-08-10 12:21:31 -0500 | [diff] [blame] | 76 | std::cout << " -f <FILE> Specify configuration file name" << std::endl; |
| 77 | std::cout << " -V Display version information" << std::endl; |
| 78 | std::cout << " -h Display this help message" << std::endl; |
| 79 | } |
| 80 | |
| 81 | } // namespace nlsr |