blob: af68640789e607516eddd15c9b56afbddeaeb634 [file] [log] [blame]
Vince Lehmanc57c64b2015-08-10 12:21:31 -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,
Vince Lehmanc57c64b2015-08-10 12:21:31 -05004 * 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"
23
24#include "conf-file-processor.hpp"
25#include "logger.hpp"
26
27namespace nlsr {
28
29INIT_LOGGER("NlsrRunner");
30
31NlsrRunner::NlsrRunner(std::string& configFileName, bool isDaemonProcess)
32 : m_scheduler(m_ioService)
33 , m_face(m_ioService)
34 , m_nlsr(m_ioService, m_scheduler, m_face)
35{
36 m_nlsr.setConfFileName(configFileName);
37 m_nlsr.setIsDaemonProcess(isDaemonProcess);
38}
39
40void
41NlsrRunner::run()
42{
43 ConfFileProcessor configProcessor(m_nlsr, m_nlsr.getConfFileName());
44
45 if (!configProcessor.processConfFile()) {
46 throw Error("Error in configuration file processing! Exiting from NLSR");
47 }
48
49 if (m_nlsr.getConfParameter().isLog4CxxConfAvailable()) {
50 INIT_LOG4CXX(m_nlsr.getConfParameter().getLog4CxxConfPath());
51 }
52 else {
53 INIT_LOGGERS(m_nlsr.getConfParameter().getLogDir(), m_nlsr.getConfParameter().getLogLevel());
54 }
55
56 m_nlsr.initialize();
57
58 if (m_nlsr.getIsSetDaemonProcess()) {
59 m_nlsr.daemonize();
60 }
61
62 try {
63 m_nlsr.startEventLoop();
64 }
65 catch (std::exception& e) {
66 _LOG_FATAL("ERROR: " << e.what());
67 std::cerr << "ERROR: " << e.what() << std::endl;
68
69 m_nlsr.getFib().clean();
70 m_nlsr.destroyFaces();
71 }
72}
73
74void
75NlsrRunner::printUsage(const std::string& programName)
76{
77 std::cout << "Usage: " << programName << " [OPTIONS...]" << std::endl;
78 std::cout << " NDN routing...." << std::endl;
79 std::cout << " -d Run in daemon mode" << std::endl;
80 std::cout << " -f <FILE> Specify configuration file name" << std::endl;
81 std::cout << " -V Display version information" << std::endl;
82 std::cout << " -h Display this help message" << std::endl;
83}
84
85} // namespace nlsr