summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: f134d76e62d8c02d18def89ecb29f11c098c1ce9 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include <QApplication>
#include <QSettings>
#include <QtCore>
#include <getopt.h>
#include <cstdlib>
#include <iostream>
#include "fbgui.h"

void printHelp()
{
    // Prints usage information.
    QTextStream qout(stdout);
    qout << QObject::tr("Usage: ./fbgui [OPTIONS]") << endl;
    qout << QObject::tr("Options:") << endl;
    qout << "-u <URL>, --url=<URL>           " << QObject::tr("Set which URL to load.") << endl;
    qout << "-d <dir>, --downloaddir=<dir>   " << QObject::tr("Specifiy the download directory.") << endl;
    qout << "-D, --debug                     " << QObject::tr("Activate debug mode.") << endl;
    qout << "-h, --help                      " << QObject::tr("Prints usage information.") << endl;
    qout.flush();
    exit(EXIT_SUCCESS);
}

int main(int argc, char *argv[])
{

	/* TEST */


	/* TEST */

    QApplication app(argc, argv, QApplication::GuiServer);
    app.setOrganizationName("team_projekt_2011");
    app.setApplicationName("prebootGUI");
    app.setObjectName("test");
    binPath = QApplication::applicationDirPath();

    // Translator, for later (maybe).
    QTranslator translator;
    translator.load(":" + QLocale::system().name());
    app.installTranslator(&translator);

    /* Parse cmdline argus. */
    QMap<QString, QString> clOpts;
    int longIndex = 0;
    static const char *optString = "u:hDd:";
    static const struct option longOpts[] =
    {
    	{"url", required_argument, NULL, 'u'},
    	{"downloaddir", required_argument, NULL, 'd'},
    	{"debug", no_argument, NULL, 'D'},
    	{"help", no_argument, NULL, 'h'}
    };
    int opt = getopt_long(argc, argv, optString, longOpts, &longIndex);
    while (opt != -1)
    {
    	switch(opt)
        {
            case 'u':
            	clOpts.insert("url", optarg);
                break;
            case 'd':
            	clOpts.insert("downloadDir", optarg);
            	break;
	    case 'D':
	    		clOpts.insert("debug", "debug");
	    		break;
	    case 'h':
	    		clOpts.insert("help", "help");
	    		break;
	}
	opt = getopt_long(argc, argv, optString, longOpts, &longIndex);
    }
    // Print help
    if (clOpts.contains("help"))
        printHelp();    
    // Debug mode
    if (clOpts.contains("debug")){
    	debug = true;
    	qDebug() << "Debug mode activated.";
    }
    // Read the config file, for now hardcoded expected name.
    QSettings confFileSettings(app.applicationDirPath() + "/fbgui.conf", QSettings::IniFormat);
    confFileSettings.setIniCodec("UTF-8");

    if (clOpts.contains("url")) {
    	baseURL = QUrl(clOpts.value("url"));
    	if (debug) qDebug() << "URL loaded from cmdline.";
    }
    else if (confFileSettings.contains("default/url")) {
    	baseURL = confFileSettings.value("default/url").toUrl();
    	if (debug) qDebug() << "URL loaded from config file.";
    }
    else {
    	baseURL = DEFAULT_URL;
    	if (debug) qDebug() << "URL set by default.";
    }
    if (debug) qDebug() << "Base URL: " << baseURL.toString();
	
    // Setting target downloads directory.
    if (clOpts.contains("downloadDir")){
    	downloadPath = clOpts.value("downloadDir");
    	if (debug) qDebug() << "Download directory loaded from cmdline.";
    }
    else if (confFileSettings.contains("default/downloadDirectory")){
    	downloadPath = confFileSettings.value("default/downloadDirectory").toString();
    	if (debug) qDebug() << "Download directory loaded from config file.";
    }
    else
    {
    	downloadPath = "/downloads"; // Default download dir.
    	if (debug) qDebug() << "Download directory set by default.";
    }

	if (debug) qDebug() << "Download directory: " << downloadPath;

    fbgui gui;
	gui.setAttribute(Qt::WA_QuitOnClose, true);
    return app.exec();
}