X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fmain.cpp;h=bac4308450c4def85bc06a7a5d6e2427f4d83397;hp=d958e7a0c70b32cfb324d179dc5ff280a32939b3;hb=4be2513b86decea7720f930164b4e893b63e53e0;hpb=189c2def1996c6a25a8182794f2d6efbbf712867 diff --git a/src/common/main.cpp b/src/common/main.cpp index d958e7a0..bac43084 100644 --- a/src/common/main.cpp +++ b/src/common/main.cpp @@ -27,6 +27,7 @@ #include "logger.h" #include "network.h" #include "settings.h" +#include "cliparser.h" #if defined BUILD_CORE #include @@ -54,7 +55,7 @@ //! Signal handler for graceful shutdown. void handle_signal(int sig) { - qWarning(QString("Caught signal %1 - exiting.").arg(sig).toAscii()); + qWarning("%s", qPrintable(QString("Caught signal %1 - exiting.").arg(sig))); QCoreApplication::quit(); } @@ -66,8 +67,7 @@ int main(int argc, char **argv) { // Logger logger; Global::registerMetaTypes(); - -#include "../../version.inc" + Global::setupVersion(); #if defined BUILD_CORE Global::runMode = Global::CoreOnly; @@ -80,7 +80,28 @@ int main(int argc, char **argv) { QApplication app(argc, argv); #endif - qsrand(QDateTime::currentDateTime().toTime_t()); + Global::parser = CliParser(QCoreApplication::arguments()); + +#ifndef BUILD_QTUI +// put core-only arguments here + Global::parser.addOption("port",'p',"The port quasselcore will listen at",QString("4242")); + Global::parser.addSwitch("norestore", 'n', "Don't restore last core's state"); +#endif // BUILD_QTUI +#ifndef BUILD_CORE +// put client-only arguments here + Global::parser.addSwitch("debugbufferswitches",0,"Enables debugging for bufferswitches"); + Global::parser.addSwitch("debugmodel",0,"Enables debugging for models"); +#endif // BUILD_QTCORE +// put shared client&core arguments here + Global::parser.addSwitch("debug",'d',"Enable debug output"); + Global::parser.addSwitch("help",'h', "Display this help and exit"); + + if(!Global::parser.parse() || Global::parser.isSet("help")) { + Global::parser.usage(); + return 1; + } + + qsrand(QTime(0,0,0).secsTo(QTime::currentTime())); // Set up i18n support QLocale locale = QLocale::system(); @@ -101,17 +122,6 @@ int main(int argc, char **argv) { QCoreApplication::setApplicationName("Quassel IRC"); QCoreApplication::setOrganizationName("Quassel Project"); - // Check if a non-standard core port is requested - QStringList args = QCoreApplication::arguments(); // TODO Build a CLI parser - Global::SPUTDEV = args.contains("--sputdev"); // This enables various debug features for Sput. Do not touch. - - Global::defaultPort = 4242; - int idx; - if((idx = args.indexOf("-p")) > 0 && idx < args.count() - 1) { - int port = args[idx+1].toInt(); - if(port >= 1024 && port < 65536) Global::defaultPort = port; - } - #ifndef BUILD_QTUI Core::instance(); // create and init the core #endif @@ -127,7 +137,7 @@ int main(int argc, char **argv) { #endif #ifndef BUILD_QTUI - if(!args.contains("--norestore")) { + if(!Global::parser.isSet("norestore")) { Core::restoreState(); } #endif