summaryrefslogblamecommitdiffstats
path: root/src/command_line_options.cpp
blob: 1cf1194219e7e97ba0778d445b6d900cf3970ac6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                 
                 


                                                                       


                                                          
                                                      
                                                       









                                                        
 
              
 
                                                                                              
                    





                                              


                                           


                                                     

                                          
                  








                                            


                                            


                                         









                                                 

     
#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'},
		{"env", required_argument, NULL, 'e'},
		{"file", required_argument, NULL, 'f'},
		{"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:e:f: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 'e':
            options.insert("env", 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");
        }
    }
}