blob: b5ff59445cc534fd4132561f7a83a2355a8eae95 [file] [log] [blame]
Vince Lehmanc57c64b2015-08-10 12:21:31 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoe3c741d2019-01-29 20:28:15 -05002/*
3 * Copyright (c) 2014-2019, 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"
Vince Lehmanc57c64b2015-08-10 12:21:31 -050023#include "conf-file-processor.hpp"
Vince Lehmanc57c64b2015-08-10 12:21:31 -050024
25namespace nlsr {
26
Davide Pesaventoe3c741d2019-01-29 20:28:15 -050027NlsrRunner::NlsrRunner(const std::string& configFileName)
Vince Lehmanc57c64b2015-08-10 12:21:31 -050028 : m_scheduler(m_ioService)
29 , m_face(m_ioService)
Laqin Fana4cf4022017-01-03 18:57:35 +000030 , m_nlsr(m_ioService, m_scheduler, m_face, m_keyChain)
Vince Lehmanc57c64b2015-08-10 12:21:31 -050031{
32 m_nlsr.setConfFileName(configFileName);
Vince Lehmanc57c64b2015-08-10 12:21:31 -050033}
34
35void
36NlsrRunner::run()
37{
38 ConfFileProcessor configProcessor(m_nlsr, m_nlsr.getConfFileName());
39
40 if (!configProcessor.processConfFile()) {
Davide Pesaventoe3c741d2019-01-29 20:28:15 -050041 BOOST_THROW_EXCEPTION(ConfFileError("Error in configuration file processing"));
Vince Lehmanc57c64b2015-08-10 12:21:31 -050042 }
43
Ashlesh Gawande7e3f6d72019-01-25 13:13:43 -060044 m_nlsr.initialize();
Davide Pesaventoe3c741d2019-01-29 20:28:15 -050045
Vince Lehmanc57c64b2015-08-10 12:21:31 -050046 try {
47 m_nlsr.startEventLoop();
48 }
Davide Pesaventoe3c741d2019-01-29 20:28:15 -050049 catch (...) {
Vince Lehmanc57c64b2015-08-10 12:21:31 -050050 m_nlsr.getFib().clean();
Davide Pesaventoe3c741d2019-01-29 20:28:15 -050051 throw;
Vince Lehmanc57c64b2015-08-10 12:21:31 -050052 }
53}
54
Vince Lehmanc57c64b2015-08-10 12:21:31 -050055} // namespace nlsr