1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-09-28 14:30:45 +00:00
ohwgiles_laminar/src/main.cpp

48 lines
1.2 KiB
C++
Raw Normal View History

2015-09-13 20:25:26 +00:00
///
/// Copyright 2015-2016 Oliver Giles
2015-09-13 20:25:26 +00:00
///
/// This file is part of Laminar
///
/// Laminar is free software: you can redistribute it and/or modify
/// it under the terms of the GNU General Public License as published by
/// the Free Software Foundation, either version 3 of the License, or
/// (at your option) any later version.
///
/// Laminar is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU General Public License for more details.
///
/// You should have received a copy of the GNU General Public License
/// along with Laminar. If not, see <http://www.gnu.org/licenses/>
///
#include "laminar.h"
#include "log.h"
2015-09-13 20:25:26 +00:00
#include <signal.h>
2016-07-25 11:59:45 +00:00
static Laminar* laminar;
static void laminar_quit(int) {
laminar->stop();
}
2015-09-13 20:25:26 +00:00
int main(int argc, char** argv) {
for(int i = 1; i < argc; ++i) {
if(strcmp(argv[i], "-v") == 0) {
kj::_::Debug::setLogLevel(kj::_::Debug::Severity::INFO);
}
}
2016-07-25 11:59:45 +00:00
laminar = new Laminar;
2015-09-13 20:25:26 +00:00
2016-07-25 11:59:45 +00:00
signal(SIGINT, &laminar_quit);
signal(SIGTERM, &laminar_quit);
laminar->run();
2015-09-13 20:25:26 +00:00
2016-07-25 11:59:45 +00:00
delete laminar;
LLOG(INFO, "Clean exit");
2015-09-13 20:25:26 +00:00
return 0;
}