#include "command_line_options.h" #include #include CommandLineOptions::CommandLineOptions(int argc, char * const argv[]) { // parse command line arguments static const struct option longOptions[] = { {"config", required_argument, NULL, 'c'}, {"default", required_argument, NULL, 'd'}, {"file", required_argument, NULL, 'f'}, {"pool", required_argument, NULL, 'P'}, {"path", required_argument, NULL, 'p'}, {"xpath", required_argument, NULL, 'x'}, {"size", required_argument, NULL, 's'}, {"theme", required_argument, NULL, 't'}, {"pvs", no_argument, NULL, 'b'}, {"debug", no_argument, NULL, 'D'}, {"version", no_argument, NULL, 'v'}, {"help", no_argument, NULL, 'h'}, {0, 0, 0, 0} }; int c; while ((c = getopt_long(argc, argv, "c:d:f:P:p:x:s:t:w:vhbD", longOptions, NULL)) != -1) { switch (c) { case 'c': options.insert("config", optarg); break; case 'd': options.insert("default", optarg); break; case 'f': options.insert("file", optarg); break; case 'D': options.insert("debugMode", "debugMode"); break; case 'P': options.insert("pool", optarg); break; case 'p': options.insert("path", optarg); break; case 'x': options.insert("xpath", optarg); break; case 's': options.insert("size", optarg); break; case 't': options.insert("theme", optarg); break; case 'b': options.insert("pvs", "pvs"); break; case 'v': options.insert("version", "version"); break; case 'h': options.insert("usage", "usage"); break; case '?': default: options.insert("error", "error"); } } }