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