Fixes
[quassel.git] / src / common / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include <cstdlib>
22
23 #ifdef HAVE_KDE
24 #  include <KCmdLineArgs>
25 #  include <KAboutData>
26 #endif
27
28 #ifdef BUILD_CORE
29 #  include "coreapplication.h"
30 #elif defined BUILD_QTUI
31 #  include "qtuiapplication.h"
32 #elif defined BUILD_MONO
33 #  include "monoapplication.h"
34
35 #else
36 #error "Something is wrong - you need to #define a build mode!"
37 #endif
38
39 #include "quassel.h"
40
41 int main(int argc, char **argv) {
42   Q_INIT_RESOURCE(i18n);
43
44   // Setup build information and version string
45   # include "version.gen"
46   buildinfo.append(QString(",%1,%2").arg(__DATE__, __TIME__));
47   Quassel::setupBuildInfo(buildinfo);
48   QCoreApplication::setApplicationName(Quassel::buildInfo().applicationName);
49   QCoreApplication::setOrganizationName(Quassel::buildInfo().organizationName);
50   QCoreApplication::setOrganizationDomain(Quassel::buildInfo().organizationDomain);
51
52 #ifdef HAVE_KDE
53   // We need to init KCmdLineArgs first
54   // TODO: build an AboutData compat class to replace our aboutDlg strings
55   KAboutData aboutData("quassel", 0, ki18n("Quassel IRC"), Quassel::buildInfo().plainVersionString.toUtf8());
56   aboutData.setOrganizationDomain(Quassel::buildInfo().organizationDomain.toUtf8());
57   KCmdLineArgs::init(argc, argv, &aboutData);
58 #endif
59
60   // Initialize CLI arguments
61   // NOTE: We can't use tr() at this point, since app is not yet created
62   CliParser *cliParser = Quassel::cliParser();
63
64   // put shared client&core arguments here
65   cliParser->addSwitch("debug",'d', "Enable debug output");
66   cliParser->addSwitch("help",'h', "Display this help and exit");
67
68 #ifndef BUILD_CORE
69   // put client-only arguments here
70   cliParser->addSwitch("debugbufferswitches", 0, "Enables debugging for bufferswitches");
71   cliParser->addSwitch("debugmodel", 0, "Enables debugging for models");
72 #endif
73 #ifndef BUILD_QTCLIENT
74   // put core-only arguments here
75   cliParser->addOption("port <port>",'p', "The port quasselcore will listen at", QString("4242"));
76   cliParser->addSwitch("norestore", 'n', "Don't restore last core's state");
77   cliParser->addOption("logfile <path>", 'l', "Path to logfile");
78   cliParser->addOption("loglevel <level>", 'L', "Loglevel Debug|Info|Warning|Error", "Info");
79   cliParser->addOption("datadir <path>", 0, "Specify the directory holding datafiles like the Sqlite DB and the SSL Cert");
80 #endif
81
82 #ifdef HAVE_KDE
83   // the KDE version needs this extra call to parse argc/argv before app is instantiated
84   if(!cliParser->init()) {
85     cliParser->usage();
86     return EXIT_FAILURE;
87   }
88 #endif
89
90 #  if defined BUILD_CORE
91     CoreApplication app(argc, argv);
92 #  elif defined BUILD_QTUI
93     QtUiApplication app(argc, argv);
94 #  elif defined BUILD_MONO
95     MonolithicApplication app(argc, argv);
96 #  endif
97
98 #ifndef HAVE_KDE
99   // the non-KDE version parses after app has been instantiated
100   if(!cliParser->init(app.arguments())) {
101     cliParser->usage();
102     return false;
103   }
104 #endif
105
106   if(!app.init()) return EXIT_FAILURE;
107   return app.exec();
108 }