Some more info for KAboutData
[quassel.git] / src / common / main.cpp
index f6da8f5..444d16e 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
-#include "global.h"
-#include "settings.h"
-#include <QString>
-#include <QTranslator>
+#include <cstdlib>
 
-#if defined BUILD_CORE
-#include <QCoreApplication>
-#include <QDir>
-#include "core.h"
-#include "message.h"
+#ifdef HAVE_KDE
+#  include <KCmdLineArgs>
+#  include <KAboutData>
+#endif
 
+#ifdef BUILD_CORE
+#  include "coreapplication.h"
 #elif defined BUILD_QTUI
-#include <QApplication>
-#include "client.h"
-#include "qtui.h"
-
+#  include "qtuiapplication.h"
 #elif defined BUILD_MONO
-#include <QApplication>
-#include "client.h"
-#include "core.h"
-#include "coresession.h"
-#include "qtui.h"
+#  include "monoapplication.h"
 
 #else
 #error "Something is wrong - you need to #define a build mode!"
 #endif
 
-#include <signal.h>
-
-//! Signal handler for graceful shutdown.
-void handle_signal(int sig) {
-  qWarning(QString("Caught signal %1 - exiting.").arg(sig).toAscii());
-  QCoreApplication::quit();
-}
+#include "quassel.h"
 
 int main(int argc, char **argv) {
-  // We catch SIGTERM and SIGINT (caused by Ctrl+C) to graceful shutdown Quassel.
-  signal(SIGTERM, handle_signal);
-  signal(SIGINT, handle_signal);
-
-  qRegisterMetaType<QVariant>("QVariant");
-  qRegisterMetaType<Message>("Message");
-  qRegisterMetaType<BufferInfo>("BufferInfo");
-  qRegisterMetaTypeStreamOperators<QVariant>("QVariant");
-  qRegisterMetaTypeStreamOperators<Message>("Message");
-  qRegisterMetaTypeStreamOperators<BufferInfo>("BufferInfo");
-
-#if defined BUILD_CORE
-  Global::runMode = Global::CoreOnly;
-  QCoreApplication app(argc, argv);
-#elif defined BUILD_QTUI
-  Global::runMode = Global::ClientOnly;
-  QApplication app(argc, argv);
-#else
-  Global::runMode = Global::Monolithic;
-  QApplication app(argc, argv);
+  Q_INIT_RESOURCE(i18n);
+
+  // Setup build information and version string
+  # include "version.gen"
+  buildinfo.append(QString(",%1,%2").arg(__DATE__, __TIME__));
+  Quassel::setupBuildInfo(buildinfo);
+  QCoreApplication::setApplicationName(Quassel::buildInfo().applicationName);
+  QCoreApplication::setOrganizationName(Quassel::buildInfo().organizationName);
+  QCoreApplication::setOrganizationDomain(Quassel::buildInfo().organizationDomain);
+
+#ifdef HAVE_KDE
+  // We need to init KCmdLineArgs first
+  // TODO: build an AboutData compat class to replace our aboutDlg strings
+  KAboutData aboutData("quassel", 0, ki18n("Quassel IRC"), Quassel::buildInfo().plainVersionString.toUtf8(),
+                        ki18n("A modern, distributed IRC client"));
+  aboutData.addLicense(KAboutData::License_GPL_V2);
+  aboutData.addLicense(KAboutData::License_GPL_V3);
+  aboutData.setOrganizationDomain(Quassel::buildInfo().organizationDomain.toUtf8());
+  KCmdLineArgs::init(argc, argv, &aboutData);
 #endif
 
-  // Set up i18n support
-  QLocale locale = QLocale::system();
-  QTranslator translator;
-  translator.load(QString(":i18n/quassel_%1").arg(locale.name()));
-  app.installTranslator(&translator);
-
-  QCoreApplication::setOrganizationDomain("quassel-irc.org");
-  QCoreApplication::setApplicationName("Quassel IRC");
-  QCoreApplication::setOrganizationName("Quassel IRC Development Team");  // FIXME
+  // Initialize CLI arguments
+  // NOTE: We can't use tr() at this point, since app is not yet created
+  CliParser *cliParser = Quassel::cliParser();
 
-#ifndef BUILD_QTUI
-  Core::instance();  // create and init the core
-#endif
-
-  //Settings::init();
+  // put shared client&core arguments here
+  cliParser->addSwitch("debug",'d', "Enable debug output");
+  cliParser->addSwitch("help",'h', "Display this help and exit");
 
 #ifndef BUILD_CORE
-  QtUi *gui = new QtUi();
-  Client::init(gui);
-  gui->init();
+  // put client-only arguments here
+  cliParser->addSwitch("debugbufferswitches", 0, "Enables debugging for bufferswitches");
+  cliParser->addSwitch("debugmodel", 0, "Enables debugging for models");
 #endif
-
-#ifndef BUILD_QTUI
-  if(!QCoreApplication::arguments().contains("--norestore")) {
-    Core::restoreState();
-  }
+#ifndef BUILD_QTCLIENT
+  // put core-only arguments here
+  cliParser->addOption("port <port>",'p', "The port quasselcore will listen at", QString("4242"));
+  cliParser->addSwitch("norestore", 'n', "Don't restore last core's state");
+  cliParser->addOption("logfile <path>", 'l', "Path to logfile");
+  cliParser->addOption("loglevel <level>", 'L', "Loglevel Debug|Info|Warning|Error", "Info");
+  cliParser->addOption("datadir <path>", 0, "Specify the directory holding datafiles like the Sqlite DB and the SSL Cert");
 #endif
 
-  int exitCode = app.exec();
-
-#ifndef BUILD_QTUI
-  Core::saveState();
+#ifdef HAVE_KDE
+  // the KDE version needs this extra call to parse argc/argv before app is instantiated
+  if(!cliParser->init()) {
+    cliParser->usage();
+    return EXIT_FAILURE;
+  }
 #endif
 
-#ifndef BUILD_CORE
-  // the mainWin has to be deleted before the Core
-  // if not Quassel will crash on exit under certain conditions since the gui
-  // still wants to access clientdata
-  delete gui;
-  Client::destroy();
-#endif
-#ifndef BUILD_QTUI
-  Core::destroy();
+#  if defined BUILD_CORE
+    CoreApplication app(argc, argv);
+#  elif defined BUILD_QTUI
+    QtUiApplication app(argc, argv);
+#  elif defined BUILD_MONO
+    MonolithicApplication app(argc, argv);
+#  endif
+
+#ifndef HAVE_KDE
+  // the non-KDE version parses after app has been instantiated
+  if(!cliParser->init(app.arguments())) {
+    cliParser->usage();
+    return false;
+  }
 #endif
 
-  return exitCode;
+  if(!app.init()) return EXIT_FAILURE;
+  return app.exec();
 }