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





                   

                


                                                            
                                                                                                

                                                                                                         

                                                                                                   

                       



                                
                                                          
                                                 
                                         
                                                 
 


                                                    
 
                                   
                                  
                      
                                               


                                              

                                                   
                                                
                                        






                                                                       
                                             

                      
                                                     
                      


                                                    
                                                       
                              
                     
                                                      
                              
         

                                                                       
 
                                

                    




                                                  
                           












                                                                    
                                                             

         
 
                           
                                                                     
                                          
 

                                            


                                                                


                              
     
        
                                      

                                                   

                                                                     
                                                                                      
     
          
                                            
     
 

                                                                                          
         
                                                      
 
              
               
                      
 
#include <QApplication>
#include <QSettings>
#include <QtCore>
#include <getopt.h>
#include <cstdlib>
#include <iostream>
#include "fbgui.h"

void printHelp()
{
    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>, --download=<dir>      " << QObject::tr("Specify the download directory.") << endl;
    qout << "-c <path>, --config=<path>      " << QObject::tr("Path to config file.") << 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[])
{
    QApplication app(argc, argv, QApplication::GuiServer);
    app.setOrganizationName("team_projekt_2011");
    app.setApplicationName("prebootGUI");
    binPath = QApplication::applicationDirPath();

    QTranslator translator;
    translator.load(":" + QLocale::system().name());
    app.installTranslator(&translator);

    // parse command line arguments
    QMap<QString, QString> clOpts;
    int longIndex = 0;
    static const char *optString = "u:d:c:D:h";
    static const struct option longOpts[] =
    {
    	{"url", required_argument, NULL, 'u'},
    	{"download", required_argument, NULL, 'd'},
    	{"config", required_argument, NULL, 'c'},
    	{"debug", required_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 'c':
            	clOpts.insert("configFile", optarg);
            case 'D':
	    		clOpts.insert("debug", optarg);
	    		break;
            case 'h':
	    		clOpts.insert("help", "help");
	    		break;
	}
	opt = getopt_long(argc, argv, optString, longOpts, &longIndex);
    }

    if (clOpts.contains("help"))
        printHelp();

    if (clOpts.contains("debug"))
    	debugMode = clOpts.value("debug").toInt();
    else
    	debugMode = -1;

    // look for config file
    QString configFilePath;
    QFileInfo confInfo;
    if (clOpts.contains("configFile"))
    	configFilePath = clOpts.value("configFile");
    else {
    	confInfo = QFileInfo(QDir::home(),  ".fbgui.conf");
    	if (confInfo.exists())
    		configFilePath = confInfo.absoluteFilePath();
    	else {
    	    	confInfo = QFileInfo(QString("/etc/fbgui.conf"));
    	    	if (confInfo.exists())
    	    		configFilePath = QString("/etc/fbgui.conf");
    	        else
    	        	configFilePath = DEFAULT_CONFIG_PATH;
    	}
    }

    // read the config file
    QSettings confFileSettings(configFilePath, QSettings::IniFormat);
    confFileSettings.setIniCodec("UTF-8");

    if (clOpts.contains("url")) {
    	baseURL = QUrl(clOpts.value("url"));
    }
    else if (confFileSettings.contains("default/url")) {
    	baseURL = confFileSettings.value("default/url").toUrl();
    }
    else {
    	baseURL = DEFAULT_URL;
    }
	
    // setting directory for downloads
    if (clOpts.contains("downloadDir")){
    	downloadPath = clOpts.value("downloadDir");
    }
    else if (confFileSettings.contains("default/downloadDirectory")){
    	downloadPath = confFileSettings.value("default/downloadDirectory").toString();
    }
    else {
    	downloadPath = DEFAULT_DOWNLOAD_DIR;
    }

	if (confFileSettings.contains("default/updateInterval")){
		updateInterval = confFileSettings.value("default/updateInterval").toInt();
	}
	else updateInterval = DEFAULT_UPDATE_INTERVAL;

    fbgui gui;
    gui.show();
    return app.exec();
}