blob: 93595c6fad8ab5e1a3c006cce5a3ee91c7fc8b0f [file] [log] [blame]
Yingdi Yu40cd1c32014-04-17 15:02:17 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Vince Lehman9dce0c92015-02-09 12:53:41 -06003 * Copyright (c) 2014-2015, The University of Memphis,
4 * Regents of the University of California,
5 * Arizona Board of Regents.
Yingdi Yu40cd1c32014-04-17 15:02:17 -07006 *
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 **/
Alexander Afanasyevb669f9c2014-11-14 12:41:54 -080021
Vince Lehmanc57c64b2015-08-10 12:21:31 -050022#include "nlsr-runner.hpp"
Vince Lehmanb722b102014-08-24 16:33:49 -050023#include "version.hpp"
Yingdi Yu40cd1c32014-04-17 15:02:17 -070024
Alexander Afanasyev7decbbf2014-08-24 21:29:01 -070025int
akmhoquefdbddb12014-05-02 18:35:19 -050026main(int32_t argc, char** argv)
Yingdi Yu40cd1c32014-04-17 15:02:17 -070027{
Vince Lehmanc57c64b2015-08-10 12:21:31 -050028 using namespace nlsr;
Vince Lehman7c603292014-09-11 17:48:16 -050029
akmhoquefdbddb12014-05-02 18:35:19 -050030 std::string programName(argv[0]);
Vince Lehmanc57c64b2015-08-10 12:21:31 -050031
32 std::string configFileName = "nlsr.conf";
33 bool isDaemonProcess = false;
34
akmhoquefdbddb12014-05-02 18:35:19 -050035 int32_t opt;
Vince Lehmanb722b102014-08-24 16:33:49 -050036 while ((opt = getopt(argc, argv, "df:hV")) != -1) {
Vince Lehmanc57c64b2015-08-10 12:21:31 -050037 switch (opt) {
Yingdi Yu40cd1c32014-04-17 15:02:17 -070038 case 'f':
Vince Lehmanc57c64b2015-08-10 12:21:31 -050039 configFileName = optarg;
Yingdi Yu40cd1c32014-04-17 15:02:17 -070040 break;
41 case 'd':
Vince Lehmanc57c64b2015-08-10 12:21:31 -050042 isDaemonProcess = true;
Yingdi Yu40cd1c32014-04-17 15:02:17 -070043 break;
Vince Lehmanb722b102014-08-24 16:33:49 -050044 case 'V':
45 std::cout << NLSR_VERSION_BUILD_STRING << std::endl;
46 return EXIT_SUCCESS;
47 break;
Yingdi Yu40cd1c32014-04-17 15:02:17 -070048 case 'h':
49 default:
Vince Lehmanc57c64b2015-08-10 12:21:31 -050050 NlsrRunner::printUsage(programName);
Yingdi Yu40cd1c32014-04-17 15:02:17 -070051 return EXIT_FAILURE;
Vince Lehmanc57c64b2015-08-10 12:21:31 -050052 }
Yingdi Yu40cd1c32014-04-17 15:02:17 -070053 }
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -050054
Vince Lehmanc57c64b2015-08-10 12:21:31 -050055 NlsrRunner runner(configFileName, isDaemonProcess);
56
57 try {
58 runner.run();
59 }
60 catch (const std::exception& e) {
61 std::cerr << e.what() << std::endl;
Yingdi Yu40cd1c32014-04-17 15:02:17 -070062 return EXIT_FAILURE;
63 }
Vince Lehmanf99b87f2014-08-26 15:54:27 -050064
Yingdi Yu40cd1c32014-04-17 15:02:17 -070065 return EXIT_SUCCESS;
66}