Reformat ALL the source!
[quassel.git] / src / core / coreapplication.cpp
index 3d8b159..f6212d7 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 #include "coreapplication.h"
 
 #include "core.h"
+#include "logger.h"
 
 CoreApplicationInternal::CoreApplicationInternal()
-  : _coreCreated(false)
+    : _coreCreated(false)
 {
-  Q_INIT_RESOURCE(sql);
-
-  // put core-only arguments here
-  CliParser *parser = Quassel::cliParser();
-  parser->addOption("port",'p', tr("The port quasselcore will listen at"), QString("4242"));
-  parser->addSwitch("norestore", 'n', tr("Don't restore last core's state"));
-  parser->addOption("logfile", 'l', tr("Path to logfile"));
-  parser->addOption("loglevel", 'L', tr("Loglevel Debug|Info|Warning|Error"), "Info");
-  parser->addOption("datadir", 0, tr("Specify the directory holding datafiles like the Sqlite DB and the SSL Cert"));
 }
 
-CoreApplicationInternal::~CoreApplicationInternal() {
-  if(_coreCreated) {
-    Core::saveState();
-    Core::destroy();
-  }
+
+CoreApplicationInternal::~CoreApplicationInternal()
+{
+    if (_coreCreated) {
+        Core::saveState();
+        Core::destroy();
+    }
 }
 
-bool CoreApplicationInternal::init() {
-  /* FIXME
-  This is an initial check if logfile is writable since the warning would spam stdout if done
-  in current Logger implementation. Can be dropped whenever the logfile is only opened once.
-  */
-  QFile logFile;
-  if(!Quassel::optionValue("logfile").isEmpty()) {
-    logFile.setFileName(Quassel::optionValue("logfile"));
-    if(!logFile.open(QIODevice::Append | QIODevice::Text))
-      qWarning("Warning: Couldn't open logfile '%s' - will log to stdout instead",qPrintable(logFile.fileName()));
-    else logFile.close();
-  }
-
-  Core::instance();  // create and init the core
-  _coreCreated = true;
-
-  if(!Quassel::isOptionSet("norestore")) {
-    Core::restoreState();
-  }
-  return true;
+
+bool CoreApplicationInternal::init()
+{
+    /* FIXME
+    This is an initial check if logfile is writable since the warning would spam stdout if done
+    in current Logger implementation. Can be dropped whenever the logfile is only opened once.
+    */
+    QFile logFile;
+    if (!Quassel::optionValue("logfile").isEmpty()) {
+        logFile.setFileName(Quassel::optionValue("logfile"));
+        if (!logFile.open(QIODevice::Append | QIODevice::Text))
+            qWarning("Warning: Couldn't open logfile '%s' - will log to stdout instead", qPrintable(logFile.fileName()));
+        else logFile.close();
+    }
+
+    Core::instance(); // create and init the core
+    _coreCreated = true;
+
+    if (!Quassel::isOptionSet("norestore"))
+        Core::restoreState();
+
+    return true;
 }
 
+
 /*****************************************************************************/
 
-CoreApplication::CoreApplication(int &argc, char **argv) : QCoreApplication(argc, argv), Quassel() {
-  setRunMode(Quassel::CoreOnly);
-  _internal = new CoreApplicationInternal();
+CoreApplication::CoreApplication(int &argc, char **argv)
+    : QCoreApplication(argc, argv), Quassel()
+{
+#ifdef Q_OS_MAC
+    disableCrashhandler();
+#endif /* Q_OS_MAC */
+
+    setRunMode(Quassel::CoreOnly);
+    _internal = new CoreApplicationInternal();
 }
 
-CoreApplication::~CoreApplication() {
-  delete _internal;
+
+CoreApplication::~CoreApplication()
+{
+    delete _internal;
 }
 
-bool CoreApplication::init() {
-  if(Quassel::init())
-    return _internal->init();
-  return false;
+
+bool CoreApplication::init()
+{
+    if (Quassel::init() && _internal->init()) {
+        qInstallMsgHandler(Logger::logMessage);
+        return true;
+    }
+    return false;
 }