Merge pull request #117 from mamarley/oldcoresslconfig
[quassel.git] / src / common / main.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include <cstdlib>
22
23 #include <QTextCodec>
24
25 #ifdef BUILD_CORE
26 #  include "coreapplication.h"
27 #elif defined BUILD_QTUI
28 #  include "aboutdata.h"
29 #  include "qtuiapplication.h"
30 #elif defined BUILD_MONO
31 #  include "aboutdata.h"
32 #  include "monoapplication.h"
33
34 #else
35 #error "Something is wrong - you need to #define a build mode!"
36 #endif
37
38 // We don't want quasselcore to depend on KDE
39 #if defined HAVE_KDE4 && defined BUILD_CORE
40 #  undef HAVE_KDE4
41 #endif
42 // We don't want quasselcore to depend on KDE
43 #if defined HAVE_KF5 && defined BUILD_CORE
44 #  undef HAVE_KF5
45 #endif
46
47 #ifdef HAVE_KDE4
48 #  include <KAboutData>
49 #  include "kcmdlinewrapper.h"
50 #elif defined HAVE_KF5
51 #  include <KCoreAddons/KAboutData>
52 #  include <KCoreAddons/Kdelibs4ConfigMigrator>
53 #  include "qt5cliparser.h"
54 #elif defined HAVE_QT5
55 #  include "qt5cliparser.h"
56 #else
57 #  include "cliparser.h"
58 #endif
59
60 #if !defined(BUILD_CORE) && defined(STATIC)
61 #include <QtPlugin>
62 Q_IMPORT_PLUGIN(qjpeg)
63 Q_IMPORT_PLUGIN(qgif)
64 #endif
65
66 #include "quassel.h"
67
68 int main(int argc, char **argv)
69 {
70 #if QT_VERSION < 0x050000
71     // All our source files are in UTF-8, and Qt5 even requires that
72     QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
73     QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
74 #endif
75
76     Quassel::setupBuildInfo();
77     QCoreApplication::setApplicationName(Quassel::buildInfo().applicationName);
78     QCoreApplication::setApplicationVersion(Quassel::buildInfo().plainVersionString);
79     QCoreApplication::setOrganizationName(Quassel::buildInfo().organizationName);
80     QCoreApplication::setOrganizationDomain(Quassel::buildInfo().organizationDomain);
81
82     // on OSX with Qt4, raster seems to fix performance issues
83 #if QT_VERSION < 0x050000 && defined Q_OS_MAC && !defined BUILD_CORE
84     QApplication::setGraphicsSystem("raster");
85 #endif
86
87     // We need to explicitly initialize the required resources when linking statically
88 #ifndef BUILD_QTUI
89     Q_INIT_RESOURCE(sql);
90 #endif
91 #ifndef BUILD_CORE
92     Q_INIT_RESOURCE(pics);
93     Q_INIT_RESOURCE(hicolor);
94 #endif
95
96 #ifdef EMBED_DATA
97     Q_INIT_RESOURCE(i18n);
98 # ifndef BUILD_CORE
99     Q_INIT_RESOURCE(data);
100 #   ifdef WITH_OXYGEN
101     Q_INIT_RESOURCE(oxygen);
102 #   endif
103 # endif
104 #endif
105
106     // Migrate settings from KDE4 to KF5 if appropriate
107 #ifdef HAVE_KF5
108     Kdelibs4ConfigMigrator migrator(QCoreApplication::applicationName());
109     migrator.setConfigFiles(QStringList() << "quasselrc" << "quassel.notifyrc");
110     migrator.migrate();
111 #endif
112
113     AbstractCliParser *cliParser;
114
115 #ifdef HAVE_KDE4
116     // We need to init KCmdLineArgs first
117     KAboutData aboutData("quassel", "kdelibs4", ki18n("Quassel IRC"), Quassel::buildInfo().plainVersionString.toUtf8(),
118         ki18n("A modern, distributed IRC client"));
119     aboutData.addLicense(KAboutData::License_GPL_V2);
120     aboutData.addLicense(KAboutData::License_GPL_V3);
121     aboutData.setBugAddress("http://bugs.quassel-irc.org/projects/quassel-irc/issues/new");
122     aboutData.setOrganizationDomain(Quassel::buildInfo().organizationDomain.toUtf8());
123     KCmdLineArgs::init(argc, argv, &aboutData);
124
125     cliParser = new KCmdLineWrapper();
126 #elif defined HAVE_QT5
127     cliParser = new Qt5CliParser();
128 #else
129     cliParser = new CliParser();
130 #endif
131     Quassel::setCliParser(cliParser);
132
133     // Initialize CLI arguments
134     // NOTE: We can't use tr() at this point, since app is not yet created
135     // TODO: Change this once we get rid of KDE4 and can initialize the parser after creating the app
136
137     // put shared client&core arguments here
138     cliParser->addSwitch("debug", 'd', "Enable debug output");
139     cliParser->addSwitch("help", 'h', "Display this help and exit");
140     cliParser->addSwitch("version", 'v', "Display version information");
141 #ifdef BUILD_QTUI
142     cliParser->addOption("configdir", 'c', "Specify the directory holding the client configuration", "path");
143 #else
144     cliParser->addOption("configdir", 'c', "Specify the directory holding configuration files, the SQlite database and the SSL certificate", "path");
145 #endif
146     cliParser->addOption("datadir", 0, "DEPRECATED - Use --configdir instead", "path");
147
148 #ifndef BUILD_CORE
149     // put client-only arguments here
150     cliParser->addOption("icontheme", 0, "Override the system icon theme ('oxygen' is recommended)", "theme");
151     cliParser->addOption("qss", 0, "Load a custom application stylesheet", "file.qss");
152     cliParser->addSwitch("debugbufferswitches", 0, "Enables debugging for bufferswitches");
153     cliParser->addSwitch("debugmodel", 0, "Enables debugging for models");
154     cliParser->addSwitch("hidewindow", 0, "Start the client minimized to the system tray");
155 #endif
156 #ifndef BUILD_QTUI
157     // put core-only arguments here
158     cliParser->addOption("listen", 0, "The address(es) quasselcore will listen on", "<address>[,<address>[,...]]", "::,0.0.0.0");
159     cliParser->addOption("port", 'p', "The port quasselcore will listen at", "port", "4242");
160     cliParser->addSwitch("norestore", 'n', "Don't restore last core's state");
161     cliParser->addOption("loglevel", 'L', "Loglevel Debug|Info|Warning|Error", "level", "Info");
162 #ifdef HAVE_SYSLOG
163     cliParser->addSwitch("syslog", 0, "Log to syslog");
164 #endif
165     cliParser->addOption("logfile", 'l', "Log to a file", "path");
166     cliParser->addOption("select-backend", 0, "Switch storage backend (migrating data if possible)", "backendidentifier");
167     cliParser->addSwitch("add-user", 0, "Starts an interactive session to add a new core user");
168     cliParser->addOption("change-userpass", 0, "Starts an interactive session to change the password of the user identified by <username>", "username");
169     cliParser->addSwitch("oidentd", 0, "Enable oidentd integration");
170     cliParser->addOption("oidentd-conffile", 0, "Set path to oidentd configuration file", "file");
171 #ifdef HAVE_SSL
172     cliParser->addSwitch("require-ssl", 0, "Require SSL for remote (non-loopback) client connections");
173 #endif
174     cliParser->addSwitch("enable-experimental-dcc", 0, "Enable highly experimental and unfinished support for CTCP DCC (DANGEROUS)");
175 #endif
176
177 #ifdef HAVE_KDE4
178     // the KDE version needs this extra call to parse argc/argv before app is instantiated
179     if (!cliParser->init()) {
180         cliParser->usage();
181         return EXIT_FAILURE;
182     }
183 #endif
184
185 #  if defined BUILD_CORE
186     CoreApplication app(argc, argv);
187 #  elif defined BUILD_QTUI
188     QtUiApplication app(argc, argv);
189 #  elif defined BUILD_MONO
190     MonolithicApplication app(argc, argv);
191 #  endif
192
193 #ifndef HAVE_KDE4
194     // the non-KDE version parses after app has been instantiated
195     if (!cliParser->init(app.arguments())) {
196         cliParser->usage();
197         return false;
198     }
199 #endif
200
201 #ifdef HAVE_KF5
202     // FIXME: This should be done after loading the translation catalogue, but still in main()
203     AboutData aboutData;
204     AboutData::setQuasselPersons(&aboutData);
205     KAboutData::setApplicationData(aboutData.kAboutData());
206 #endif
207
208     if (!app.init())
209         return EXIT_FAILURE;
210
211     return app.exec();
212 }