X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Fmain.c;h=930b8b01a1ab1d713927f9913e014fac81ed33a4;hb=0ef0945e8d83258400fabc61fa81725c5e8e533f;hp=4b36b20fbb5f14db9630bbee31766966c6a3cb3b;hpb=3a85bddfca280f46d675f4987615c65089c80f44;p=matches%2FMCTX3420.git diff --git a/server/main.c b/server/main.c index 4b36b20..930b8b0 100644 --- a/server/main.c +++ b/server/main.c @@ -9,8 +9,10 @@ #include "sensor.h" #include "actuator.h" #include "control.h" +#include "bbb_pin_defines.h" // --- Standard headers --- // +#include // for system logging #include // for signal handling // --- Variable definitions --- // @@ -28,7 +30,32 @@ void ParseArguments(int argc, char ** argv) g_options.program = argv[0]; // program name g_options.verbosity = LOGDEBUG; // default log level gettimeofday(&(g_options.start_time), NULL); // Start time + g_options.adc_device_path = ADC_DEVICE_PATH; Log(LOGDEBUG, "Called as %s with %d arguments.", g_options.program, argc); + + for (int i = 1; i < argc; ++i) + { + if (argv[i][0] != '-') + Fatal("Unexpected argv[%d] - %s", i, argv[i]); + + if (i+1 >= argc || argv[i+1][0] == '-') + Fatal("No argument following switch %s", argv[i]); + + if (strlen(argv[i]) > 2) + Fatal("Human readable switches are not supported."); + + switch (argv[i][1]) + { + case 'a': + g_options.adc_device_path = argv[i+1]; + Log(LOGINFO, "ADC Device Path: %s", argv[i+1]); + ++i; + break; + default: + Fatal("Unrecognised switch %s", argv[i]); + break; + } + } } /** @@ -66,8 +93,14 @@ void Cleanup() */ int main(int argc, char ** argv) { + // Open log before calling ParseArguments (since ParseArguments may call the Log functions) + openlog("mctxserv", LOG_PID | LOG_PERROR, LOG_USER); + Log(LOGINFO, "Server started"); + ParseArguments(argc, argv); + //Open the system log + // signal handler //TODO: Make this work /*