summaryrefslogtreecommitdiffstats
path: root/src/command_line_options.cpp
blob: c6983153384adc8a2e2ba07607805daa16019288 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "command_line_options.h"
#include <getopt.h>
#include <QDebug>

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");
        }
    }
}