logiops/src/logid/logid.cpp

185 lines
5.3 KiB
C++
Raw Normal View History

/*
* Copyright 2019-2020 PixlOne
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <algorithm>
#include <cstdio>
#include <cstdlib>
2020-04-13 02:25:39 +00:00
#include <mutex>
2020-06-24 22:10:25 +00:00
#include "util/log.h"
2020-06-20 02:01:14 +00:00
#include "DeviceManager.h"
2020-04-13 02:25:39 +00:00
#include "logid.h"
#define evdev_name "logid"
2019-08-09 18:25:40 +00:00
#define DEFAULT_CONFIG_FILE "/etc/logid.cfg"
2020-04-11 00:53:13 +00:00
#ifndef LOGIOPS_VERSION
#define LOGIOPS_VERSION "null"
#warning Version is undefined!
#endif
2019-10-05 01:56:17 +00:00
using namespace logid;
2020-04-12 23:44:12 +00:00
std::string config_file = DEFAULT_CONFIG_FILE;
2020-06-24 22:10:25 +00:00
LogLevel logid::global_loglevel = INFO;
// Configuration* logid::global_config;
2020-06-20 02:01:14 +00:00
DeviceManager* logid::finder;
2020-04-13 02:25:39 +00:00
bool logid::kill_logid = false;
std::mutex logid::finder_reloading;
2019-08-09 02:13:50 +00:00
enum class Option
{
None,
Verbose,
Config,
2020-04-11 00:53:13 +00:00
Help,
Version
2019-08-09 02:13:50 +00:00
};
/*
2020-04-13 02:25:39 +00:00
void logid::reload()
{
log_printf(INFO, "Reloading logid...");
finder_reloading.lock();
finder->stop();
Configuration* old_config = global_config;
global_config = new Configuration(config_file.c_str());
delete(old_config);
delete(finder);
finder = new DeviceMonitor();
2020-04-13 02:25:39 +00:00
finder_reloading.unlock();
}
*/
2020-04-13 02:25:39 +00:00
void readCliOptions(int argc, char** argv)
{
for(int i = 1; i < argc; i++) {
2019-08-09 02:13:50 +00:00
Option option = Option::None;
if(argv[i][0] == '-') {
// This argument is an option
switch(argv[i][1]) {
case '-': {
// Full option name
std::string op_str = argv[i];
if (op_str == "--verbose") option = Option::Verbose;
if (op_str == "--config") option = Option::Config;
if (op_str == "--help") option = Option::Help;
if (op_str == "--version") option = Option::Version;
break;
}
case 'v': // Verbosity
option = Option::Verbose;
break;
case 'V': //Version
2020-04-11 00:53:13 +00:00
option = Option::Version;
break;
case 'c': // Config file path
option = Option::Config;
break;
case 'h': // Help
option = Option::Help;
break;
default:
2020-06-24 22:10:25 +00:00
logPrintf(WARN, "%s is not a valid option, ignoring.",
argv[i]);
2019-08-09 02:13:50 +00:00
}
switch(option) {
case Option::Verbose: {
if (++i >= argc) {
2020-06-24 22:10:25 +00:00
global_loglevel = DEBUG; // Assume debug verbosity
2019-08-09 02:13:50 +00:00
break;
}
std::string loglevel = argv[i];
try {
2020-06-24 22:10:25 +00:00
global_loglevel = toLogLevel(argv[i]);
} catch (std::invalid_argument &e) {
if (argv[i][0] == '-') {
2020-06-24 22:10:25 +00:00
global_loglevel = DEBUG; // Assume debug verbosity
i--; // Go back to last argument to continue loop.
} else {
2020-06-24 22:10:25 +00:00
logPrintf(WARN, e.what());
printf("Valid verbosity levels are: Debug, Info, "
"Warn/Warning, or Error.\n");
2020-04-12 23:44:12 +00:00
exit(EXIT_FAILURE);
2019-08-09 02:13:50 +00:00
}
}
2019-08-09 02:13:50 +00:00
break;
}
case Option::Config: {
if (++i >= argc) {
2020-06-24 22:10:25 +00:00
logPrintf(ERROR, "Config file is not specified.");
exit(EXIT_FAILURE);
2019-08-09 02:13:50 +00:00
}
config_file = argv[i];
break;
}
case Option::Help:
printf(R"(logid version %s
2020-04-11 00:53:13 +00:00
Usage: %s [options]
2019-08-09 02:13:50 +00:00
Possible options are:
-v,--verbose [level] Set log level to debug/info/warn/error (leave blank for debug)
2020-04-11 00:53:13 +00:00
-V,--version Print version number
2019-08-09 02:13:50 +00:00
-c,--config [file path] Change config file from default at %s
-h,--help Print this message.
2020-04-11 00:53:13 +00:00
)", LOGIOPS_VERSION, argv[0], DEFAULT_CONFIG_FILE);
exit(EXIT_SUCCESS);
case Option::Version:
printf("%s\n", LOGIOPS_VERSION);
exit(EXIT_SUCCESS);
case Option::None:
break;
2019-08-09 02:13:50 +00:00
}
}
}
2020-04-12 23:44:12 +00:00
}
int main(int argc, char** argv)
{
readCliOptions(argc, argv);
2019-08-09 02:13:50 +00:00
/*
// Read config
2019-08-09 18:25:40 +00:00
try { global_config = new Configuration(config_file.c_str()); }
catch (std::exception &e) { global_config = new Configuration(); }
//Create an evdev device called 'logid'
try { global_evdev = new EvdevDevice(evdev_name); }
catch(std::system_error& e)
{
log_printf(ERROR, "Could not create evdev device: %s", e.what());
return EXIT_FAILURE;
}
*/
// Scan devices, create listeners, handlers, etc.
2020-06-20 02:01:14 +00:00
finder = new DeviceManager();
2020-04-13 02:25:39 +00:00
while(!kill_logid) {
2020-04-13 02:25:39 +00:00
finder_reloading.lock();
finder_reloading.unlock();
finder->run();
}
return EXIT_SUCCESS;
2020-04-13 02:25:39 +00:00
}