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

                   
                                  
                               
                                
 


                

            










                                                                                                                    

                               
                                                          
                                  
 
                                           
                                                      

                                


                                                  


                                                                                 
 







                                                                  
 
                          
 
#include <iostream>
#include <stdlib.h>
#include "mainwindow/mainwindow.h"
#include "../shared/settings.h"
#include "serverapp/serverapp.h"

using std::cout;
using std::endl;

void usage()
{
	cout << "USAGE pvsmgr [OPTIONS]" << endl;
	cout << "OPTIONS: " << endl;
	cout << "--manager-only" << endl;
	cout << "    pvsmgr terminates if this computer is not a manager of a room" << endl;
	cout << "--config=INIFILE" << endl;
	cout << "    read configuration from INIFILE instead of default path (/opt/openslx/pvs2/pvs2.ini) " << endl;
	cout << "--usage" << endl;
	cout << "    shows this message" << endl;
}


int main(int argc, char** argv)
{
	qsrand(uint(QDateTime::currentMSecsSinceEpoch()));
	ServerApp app(argc, argv);

	for (QString a : app.arguments()) {
		if (a == "--usage" || a == "--help") {
			usage();
			exit(0);
		} else if (a.endsWith("pvsmgr")) {
			/* ignore */
		} else {
			qDebug() << "ignoring unknown argument: \"" << a << "\"";
		}
	}

	QStringList supportedStyles = QStyleFactory::keys();
	for (QString style : PREFERRED_STYLES) {
		if (supportedStyles.contains(style)) {
			qDebug() << "Setting style to: " << style;
			app.setStyle(style);
			break;
		}
	}

	return app.exec();
}