76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
//
|
|
// main.cpp
|
|
// tester
|
|
//
|
|
// Created by Bob Polis at 2020-04-29
|
|
// Copyright (c) 2020 SwiftCoder. All rights reserved.
|
|
//
|
|
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <string>
|
|
#include <getopt.h>
|
|
#include <libsclogging.hpp>
|
|
|
|
void print_help() {
|
|
std::cout << "usage: tester [-h][-v]\n";
|
|
std::cout << " -h, --help show this help text and exit\n";
|
|
std::cout << " -v, --version show version number and exit\n";
|
|
}
|
|
|
|
void print_version() {
|
|
std::cout << "tester version 1.0\n";
|
|
}
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
try {
|
|
struct option long_options[] = {
|
|
{"help", no_argument, nullptr, 'h'},
|
|
{"test", required_argument, nullptr, 't'},
|
|
{"version", no_argument, nullptr, 'v'},
|
|
{nullptr, 0, nullptr, 0}
|
|
};
|
|
int opt_char, option_index;
|
|
while ((opt_char = getopt_long(argc, const_cast<char* const *>(argv), "ht:v", long_options, &option_index)) != -1) {
|
|
switch (opt_char) {
|
|
case 0: {
|
|
// handle long-only options here
|
|
std::string optname {long_options[option_index].name};
|
|
break;
|
|
}
|
|
case 'h':
|
|
print_help();
|
|
return EXIT_SUCCESS;
|
|
case 'v':
|
|
print_version();
|
|
return EXIT_SUCCESS;
|
|
case '?':
|
|
throw std::runtime_error("unrecognized option");
|
|
}
|
|
}
|
|
if (optind == argc) {
|
|
// here when no file args
|
|
}
|
|
for (int i = optind; i < argc; ++i) {
|
|
try {
|
|
// process file argv[i]
|
|
} catch (const std::runtime_error& ex) {
|
|
std::cerr << "tester: " << ex.what() << '\n';
|
|
}
|
|
}
|
|
std::cout << "hello, tester\n";
|
|
sc::logger logger("tester", sc::loglevel::debug);
|
|
SCDebug(logger, "efkes proberen");
|
|
SCInfo(logger, 42, " = ", 6, " x ", 7);
|
|
SCWarning(logger, "laatste waarschuwing");
|
|
SCError(logger, "foutje, bedankt");
|
|
SCCritical(logger, "meltdown imminent");
|
|
SCInfo(logger, "");
|
|
sclog("%s", "oud spul werkt ook");
|
|
} catch (const std::exception& ex) {
|
|
std::cerr << "tester: " << ex.what() << '\n';
|
|
return EXIT_FAILURE;
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|