Replace build date with commit date (#159)
[quassel.git] / src / common / quassel.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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 "quassel.h"
22
23 #include <iostream>
24 #include <signal.h>
25 #if !defined Q_OS_WIN && !defined Q_OS_MAC
26 #  include <sys/types.h>
27 #  include <sys/time.h>
28 #  include <sys/resource.h>
29 #endif
30
31 #include <QCoreApplication>
32 #include <QDateTime>
33 #include <QFileInfo>
34 #include <QHostAddress>
35 #include <QLibraryInfo>
36 #include <QSettings>
37 #include <QTranslator>
38 #include <QUuid>
39
40 #include "bufferinfo.h"
41 #include "identity.h"
42 #include "logger.h"
43 #include "message.h"
44 #include "network.h"
45 #include "peer.h"
46 #include "protocol.h"
47 #include "syncableobject.h"
48 #include "types.h"
49
50 #include "../../version.h"
51
52 Quassel::BuildInfo Quassel::_buildInfo;
53 AbstractCliParser *Quassel::_cliParser = 0;
54 Quassel::RunMode Quassel::_runMode;
55 QString Quassel::_configDirPath;
56 QString Quassel::_translationDirPath;
57 QStringList Quassel::_dataDirPaths;
58 bool Quassel::_initialized = false;
59 bool Quassel::DEBUG = false;
60 QString Quassel::_coreDumpFileName;
61 Quassel *Quassel::_instance = 0;
62 bool Quassel::_handleCrashes = true;
63 Quassel::LogLevel Quassel::_logLevel = InfoLevel;
64 QFile *Quassel::_logFile = 0;
65 bool Quassel::_logToSyslog = false;
66
67 Quassel::Quassel()
68 {
69     Q_ASSERT(!_instance);
70     _instance = this;
71
72     // We catch SIGTERM and SIGINT (caused by Ctrl+C) to graceful shutdown Quassel.
73     signal(SIGTERM, handleSignal);
74     signal(SIGINT, handleSignal);
75 }
76
77
78 Quassel::~Quassel()
79 {
80     if (logFile()) {
81         logFile()->close();
82         logFile()->deleteLater();
83     }
84     delete _cliParser;
85 }
86
87
88 bool Quassel::init()
89 {
90     if (_initialized)
91         return true;  // allow multiple invocations because of MonolithicApplication
92
93     if (_handleCrashes) {
94         // we have crashhandler for win32 and unix (based on execinfo).
95 #if defined(Q_OS_WIN) || defined(HAVE_EXECINFO)
96 # ifndef Q_OS_WIN
97         // we only handle crashes ourselves if coredumps are disabled
98         struct rlimit *limit = (rlimit *)malloc(sizeof(struct rlimit));
99         int rc = getrlimit(RLIMIT_CORE, limit);
100
101         if (rc == -1 || !((long)limit->rlim_cur > 0 || limit->rlim_cur == RLIM_INFINITY)) {
102 # endif /* Q_OS_WIN */
103         signal(SIGABRT, handleSignal);
104         signal(SIGSEGV, handleSignal);
105 # ifndef Q_OS_WIN
106         signal(SIGBUS, handleSignal);
107     }
108     free(limit);
109 # endif /* Q_OS_WIN */
110 #endif /* Q_OS_WIN || HAVE_EXECINFO */
111     }
112
113     _initialized = true;
114     qsrand(QTime(0, 0, 0).secsTo(QTime::currentTime()));
115
116     setupEnvironment();
117     registerMetaTypes();
118
119     Network::setDefaultCodecForServer("ISO-8859-1");
120     Network::setDefaultCodecForEncoding("UTF-8");
121     Network::setDefaultCodecForDecoding("ISO-8859-15");
122
123     if (isOptionSet("help")) {
124         cliParser()->usage();
125         return false;
126     }
127
128     if (isOptionSet("version")) {
129         std::cout << qPrintable("Quassel IRC: " + Quassel::buildInfo().plainVersionString) << std::endl;
130         return false;
131     }
132
133     DEBUG = isOptionSet("debug");
134
135     // set up logging
136     if (Quassel::runMode() != Quassel::ClientOnly) {
137         if (isOptionSet("loglevel")) {
138             QString level = optionValue("loglevel");
139
140             if (level == "Debug") _logLevel = DebugLevel;
141             else if (level == "Info") _logLevel = InfoLevel;
142             else if (level == "Warning") _logLevel = WarningLevel;
143             else if (level == "Error") _logLevel = ErrorLevel;
144         }
145
146         QString logfilename = optionValue("logfile");
147         if (!logfilename.isEmpty()) {
148             _logFile = new QFile(logfilename);
149             if (!_logFile->open(QIODevice::Append | QIODevice::Text)) {
150                 qWarning() << "Could not open log file" << logfilename << ":" << _logFile->errorString();
151                 _logFile->deleteLater();
152                 _logFile = 0;
153             }
154         }
155 #ifdef HAVE_SYSLOG
156         _logToSyslog = isOptionSet("syslog");
157 #endif
158     }
159
160     return true;
161 }
162
163
164 void Quassel::quit()
165 {
166     QCoreApplication::quit();
167 }
168
169
170 //! Register our custom types with Qt's Meta Object System.
171 /**  This makes them available for QVariant and in signals/slots, among other things.
172 *
173 */
174 void Quassel::registerMetaTypes()
175 {
176     // Complex types
177     qRegisterMetaType<Message>("Message");
178     qRegisterMetaType<BufferInfo>("BufferInfo");
179     qRegisterMetaType<NetworkInfo>("NetworkInfo");
180     qRegisterMetaType<Network::Server>("Network::Server");
181     qRegisterMetaType<Identity>("Identity");
182
183     qRegisterMetaTypeStreamOperators<Message>("Message");
184     qRegisterMetaTypeStreamOperators<BufferInfo>("BufferInfo");
185     qRegisterMetaTypeStreamOperators<NetworkInfo>("NetworkInfo");
186     qRegisterMetaTypeStreamOperators<Network::Server>("Network::Server");
187     qRegisterMetaTypeStreamOperators<Identity>("Identity");
188
189     qRegisterMetaType<IdentityId>("IdentityId");
190     qRegisterMetaType<BufferId>("BufferId");
191     qRegisterMetaType<NetworkId>("NetworkId");
192     qRegisterMetaType<UserId>("UserId");
193     qRegisterMetaType<AccountId>("AccountId");
194     qRegisterMetaType<MsgId>("MsgId");
195
196     qRegisterMetaType<QHostAddress>("QHostAddress");
197     qRegisterMetaTypeStreamOperators<QHostAddress>("QHostAddress");
198     qRegisterMetaType<QUuid>("QUuid");
199     qRegisterMetaTypeStreamOperators<QUuid>("QUuid");
200
201     qRegisterMetaTypeStreamOperators<IdentityId>("IdentityId");
202     qRegisterMetaTypeStreamOperators<BufferId>("BufferId");
203     qRegisterMetaTypeStreamOperators<NetworkId>("NetworkId");
204     qRegisterMetaTypeStreamOperators<UserId>("UserId");
205     qRegisterMetaTypeStreamOperators<AccountId>("AccountId");
206     qRegisterMetaTypeStreamOperators<MsgId>("MsgId");
207
208     qRegisterMetaType<Protocol::SessionState>("Protocol::SessionState");
209     qRegisterMetaType<PeerPtr>("PeerPtr");
210     qRegisterMetaTypeStreamOperators<PeerPtr>("PeerPtr");
211
212     // Versions of Qt prior to 4.7 didn't define QVariant as a meta type
213     if (!QMetaType::type("QVariant")) {
214         qRegisterMetaType<QVariant>("QVariant");
215         qRegisterMetaTypeStreamOperators<QVariant>("QVariant");
216     }
217 }
218
219
220 void Quassel::setupEnvironment()
221 {
222     // On modern Linux systems, XDG_DATA_DIRS contains a list of directories containing application data. This
223     // is, for example, used by Qt for finding icons and other things. In case Quassel is installed in a non-standard
224     // prefix (or run from the build directory), it makes sense to add this to XDG_DATA_DIRS so we don't have to
225     // hack extra search paths into various places.
226 #ifdef Q_OS_UNIX
227     QString xdgDataVar = QFile::decodeName(qgetenv("XDG_DATA_DIRS"));
228     if (xdgDataVar.isEmpty())
229         xdgDataVar = QLatin1String("/usr/local/share:/usr/share"); // sane defaults
230
231     QStringList xdgDirs = xdgDataVar.split(QLatin1Char(':'), QString::SkipEmptyParts);
232
233     // Add our install prefix (if we're not in a bindir, this just adds the current workdir)
234     QString appDir = QCoreApplication::applicationDirPath();
235     int binpos = appDir.lastIndexOf("/bin");
236     if (binpos >= 0) {
237         appDir.replace(binpos, 4, "/share");
238         xdgDirs.append(appDir);
239         // Also append apps/quassel, this is only for QIconLoader to find icons there
240         xdgDirs.append(appDir + "/apps/quassel");
241     } else
242         xdgDirs.append(appDir);  // build directory is always the last fallback
243
244     xdgDirs.removeDuplicates();
245
246     qputenv("XDG_DATA_DIRS", QFile::encodeName(xdgDirs.join(":")));
247 #endif
248 }
249
250
251 void Quassel::setupBuildInfo()
252 {
253     _buildInfo.applicationName = "quassel";
254     _buildInfo.coreApplicationName = "quasselcore";
255     _buildInfo.clientApplicationName = "quasselclient";
256     _buildInfo.organizationName = "Quassel Project";
257     _buildInfo.organizationDomain = "quassel-irc.org";
258
259     _buildInfo.protocolVersion = 10; // FIXME: deprecated, will be removed
260
261     _buildInfo.baseVersion = QUASSEL_VERSION_STRING;
262     _buildInfo.generatedVersion = GIT_DESCRIBE;
263
264     // Check if we got a commit hash
265     if (!QString(GIT_HEAD).isEmpty()) {
266         _buildInfo.commitHash = GIT_HEAD;
267         QDateTime date;
268         date.setTime_t(GIT_COMMIT_DATE);
269         _buildInfo.commitDate = date.toString();
270     }
271     else if (!QString(DIST_HASH).contains("Format")) {
272         _buildInfo.commitHash = DIST_HASH;
273         _buildInfo.commitDate = QString(DIST_DATE);
274     }
275
276     // create a nice version string
277     if (_buildInfo.generatedVersion.isEmpty()) {
278         if (!_buildInfo.commitHash.isEmpty()) {
279             // dist version
280             _buildInfo.plainVersionString = QString("v%1 (dist-%2)")
281                                             .arg(_buildInfo.baseVersion)
282                                             .arg(_buildInfo.commitHash.left(7));
283             _buildInfo.fancyVersionString = QString("v%1 (dist-<a href=\"http://git.quassel-irc.org/?p=quassel.git;a=commit;h=%3\">%2</a>)")
284                                             .arg(_buildInfo.baseVersion)
285                                             .arg(_buildInfo.commitHash.left(7))
286                                             .arg(_buildInfo.commitHash);
287         }
288         else {
289             // we only have a base version :(
290             _buildInfo.plainVersionString = QString("v%1 (unknown revision)").arg(_buildInfo.baseVersion);
291         }
292     }
293     else {
294         // analyze what we got from git-describe
295         QRegExp rx("(.*)-(\\d+)-g([0-9a-f]+)(-dirty)?$");
296         if (rx.exactMatch(_buildInfo.generatedVersion)) {
297             QString distance = rx.cap(2) == "0" ? QString() : QString("%1+%2 ").arg(rx.cap(1), rx.cap(2));
298             _buildInfo.plainVersionString = QString("v%1 (%2git-%3%4)")
299                                             .arg(_buildInfo.baseVersion, distance, rx.cap(3), rx.cap(4));
300             if (!_buildInfo.commitHash.isEmpty()) {
301                 _buildInfo.fancyVersionString = QString("v%1 (%2git-<a href=\"http://git.quassel-irc.org/?p=quassel.git;a=commit;h=%5\">%3</a>%4)")
302                                                 .arg(_buildInfo.baseVersion, distance, rx.cap(3), rx.cap(4), _buildInfo.commitHash);
303             }
304         }
305         else {
306             _buildInfo.plainVersionString = QString("v%1 (invalid revision)").arg(_buildInfo.baseVersion);
307         }
308     }
309     if (_buildInfo.fancyVersionString.isEmpty())
310         _buildInfo.fancyVersionString = _buildInfo.plainVersionString;
311 }
312
313
314 //! Signal handler for graceful shutdown.
315 void Quassel::handleSignal(int sig)
316 {
317     switch (sig) {
318     case SIGTERM:
319     case SIGINT:
320         qWarning("%s", qPrintable(QString("Caught signal %1 - exiting.").arg(sig)));
321         if (_instance)
322             _instance->quit();
323         else
324             QCoreApplication::quit();
325         break;
326     case SIGABRT:
327     case SIGSEGV:
328 #ifndef Q_OS_WIN
329     case SIGBUS:
330 #endif
331         logBacktrace(coreDumpFileName());
332         exit(EXIT_FAILURE);
333         break;
334     default:
335         break;
336     }
337 }
338
339
340 void Quassel::logFatalMessage(const char *msg)
341 {
342 #ifdef Q_OS_MAC
343     Q_UNUSED(msg)
344 #else
345     QFile dumpFile(coreDumpFileName());
346     dumpFile.open(QIODevice::Append);
347     QTextStream dumpStream(&dumpFile);
348
349     dumpStream << "Fatal: " << msg << '\n';
350     dumpStream.flush();
351     dumpFile.close();
352 #endif
353 }
354
355
356 Quassel::Features Quassel::features()
357 {
358     Features feats = 0;
359     for (int i = 1; i <= NumFeatures; i <<= 1)
360         feats |= (Feature)i;
361
362     return feats;
363 }
364
365
366 const QString &Quassel::coreDumpFileName()
367 {
368     if (_coreDumpFileName.isEmpty()) {
369         QDir configDir(configDirPath());
370         _coreDumpFileName = configDir.absoluteFilePath(QString("Quassel-Crash-%1.log").arg(QDateTime::currentDateTime().toString("yyyyMMdd-hhmm")));
371         QFile dumpFile(_coreDumpFileName);
372         dumpFile.open(QIODevice::Append);
373         QTextStream dumpStream(&dumpFile);
374         dumpStream << "Quassel IRC: " << _buildInfo.baseVersion << ' ' << _buildInfo.commitHash << '\n';
375         qDebug() << "Quassel IRC: " << _buildInfo.baseVersion << ' ' << _buildInfo.commitHash;
376         dumpStream.flush();
377         dumpFile.close();
378     }
379     return _coreDumpFileName;
380 }
381
382
383 QString Quassel::configDirPath()
384 {
385     if (!_configDirPath.isEmpty())
386         return _configDirPath;
387
388     if (Quassel::isOptionSet("datadir")) {
389         qWarning() << "Obsolete option --datadir used!";
390         _configDirPath = Quassel::optionValue("datadir");
391     }
392     else if (Quassel::isOptionSet("configdir")) {
393         _configDirPath = Quassel::optionValue("configdir");
394     }
395     else {
396 #ifdef Q_OS_MAC
397         // On Mac, the path is always the same
398         _configDirPath = QDir::homePath() + "/Library/Application Support/Quassel/";
399 #else
400         // We abuse QSettings to find us a sensible path on the other platforms
401 #  ifdef Q_OS_WIN
402         // don't use the registry
403         QSettings::Format format = QSettings::IniFormat;
404 #  else
405         QSettings::Format format = QSettings::NativeFormat;
406 #  endif
407         QSettings s(format, QSettings::UserScope, QCoreApplication::organizationDomain(), buildInfo().applicationName);
408         QFileInfo fileInfo(s.fileName());
409         _configDirPath = fileInfo.dir().absolutePath();
410 #endif /* Q_OS_MAC */
411     }
412
413     if (!_configDirPath.endsWith(QDir::separator()) && !_configDirPath.endsWith('/'))
414         _configDirPath += QDir::separator();
415
416     QDir qDir(_configDirPath);
417     if (!qDir.exists(_configDirPath)) {
418         if (!qDir.mkpath(_configDirPath)) {
419             qCritical() << "Unable to create Quassel config directory:" << qPrintable(qDir.absolutePath());
420             return QString();
421         }
422     }
423
424     return _configDirPath;
425 }
426
427
428 QStringList Quassel::dataDirPaths()
429 {
430     return _dataDirPaths;
431 }
432
433
434 QStringList Quassel::findDataDirPaths() const
435 {
436     // We don't use QStandardPaths for now, as we still need to provide fallbacks for Qt4 and
437     // want to stay consistent.
438
439     QStringList dataDirNames;
440 #ifdef Q_OS_WIN
441     dataDirNames << qgetenv("APPDATA") + QCoreApplication::organizationDomain() + "/share/apps/quassel/"
442                  << qgetenv("APPDATA") + QCoreApplication::organizationDomain()
443                  << QCoreApplication::applicationDirPath();
444 #elif defined Q_OS_MAC
445     dataDirNames << QDir::homePath() + "/Library/Application Support/Quassel/"
446                  << QCoreApplication::applicationDirPath();
447 #else
448     // Linux et al
449
450     // XDG_DATA_HOME is the location for users to override system-installed files, usually in .local/share
451     // This should thus come first.
452     QString xdgDataHome = QFile::decodeName(qgetenv("XDG_DATA_HOME"));
453     if (xdgDataHome.isEmpty())
454         xdgDataHome = QDir::homePath() + QLatin1String("/.local/share");
455     dataDirNames << xdgDataHome;
456
457     // Now whatever is configured through XDG_DATA_DIRS
458     QString xdgDataDirs = QFile::decodeName(qgetenv("XDG_DATA_DIRS"));
459     if (xdgDataDirs.isEmpty())
460         dataDirNames << "/usr/local/share" << "/usr/share";
461     else
462         dataDirNames << xdgDataDirs.split(':', QString::SkipEmptyParts);
463
464     // Just in case, also check our install prefix
465     dataDirNames << QCoreApplication::applicationDirPath() + "/../share";
466
467     // Normalize and append our application name
468     for (int i = 0; i < dataDirNames.count(); i++)
469         dataDirNames[i] = QDir::cleanPath(dataDirNames.at(i)) + "/quassel/";
470
471 #endif
472
473     // Add resource path and workdir just in case.
474     // Workdir should have precedence
475     dataDirNames.prepend(QCoreApplication::applicationDirPath() + "/data/");
476     dataDirNames.append(":/data/");
477
478     // Append trailing '/' and check for existence
479     auto iter = dataDirNames.begin();
480     while (iter != dataDirNames.end()) {
481         if (!iter->endsWith(QDir::separator()) && !iter->endsWith('/'))
482             iter->append(QDir::separator());
483         if (!QFile::exists(*iter))
484             iter = dataDirNames.erase(iter);
485         else
486             ++iter;
487     }
488
489     dataDirNames.removeDuplicates();
490
491     return dataDirNames;
492 }
493
494
495 QString Quassel::findDataFilePath(const QString &fileName)
496 {
497     QStringList dataDirs = dataDirPaths();
498     foreach(QString dataDir, dataDirs) {
499         QString path = dataDir + fileName;
500         if (QFile::exists(path))
501             return path;
502     }
503     return QString();
504 }
505
506
507 QStringList Quassel::scriptDirPaths()
508 {
509     QStringList res(configDirPath() + "scripts/");
510     foreach(QString path, dataDirPaths())
511     res << path + "scripts/";
512     return res;
513 }
514
515
516 QString Quassel::translationDirPath()
517 {
518     if (_translationDirPath.isEmpty()) {
519         // We support only one translation dir; fallback mechanisms wouldn't work else.
520         // This means that if we have a $data/translations dir, the internal :/i18n resource won't be considered.
521         foreach(const QString &dir, dataDirPaths()) {
522             if (QFile::exists(dir + "translations/")) {
523                 _translationDirPath = dir + "translations/";
524                 break;
525             }
526         }
527         if (_translationDirPath.isEmpty())
528             _translationDirPath = ":/i18n/";
529     }
530     return _translationDirPath;
531 }
532
533
534 void Quassel::loadTranslation(const QLocale &locale)
535 {
536     QTranslator *qtTranslator = QCoreApplication::instance()->findChild<QTranslator *>("QtTr");
537     QTranslator *quasselTranslator = QCoreApplication::instance()->findChild<QTranslator *>("QuasselTr");
538
539     if (qtTranslator)
540         qApp->removeTranslator(qtTranslator);
541     if (quasselTranslator)
542         qApp->removeTranslator(quasselTranslator);
543
544     // We use QLocale::C to indicate that we don't want a translation
545     if (locale.language() == QLocale::C)
546         return;
547
548     qtTranslator = new QTranslator(qApp);
549     qtTranslator->setObjectName("QtTr");
550     qApp->installTranslator(qtTranslator);
551
552     quasselTranslator = new QTranslator(qApp);
553     quasselTranslator->setObjectName("QuasselTr");
554     qApp->installTranslator(quasselTranslator);
555
556 #if QT_VERSION >= 0x040800 && !defined Q_OS_MAC
557     bool success = qtTranslator->load(locale, QString("qt_"), translationDirPath());
558     if (!success)
559         qtTranslator->load(locale, QString("qt_"), QLibraryInfo::location(QLibraryInfo::TranslationsPath));
560     quasselTranslator->load(locale, QString(""), translationDirPath());
561 #else
562     bool success = qtTranslator->load(QString("qt_%1").arg(locale.name()), translationDirPath());
563     if (!success)
564         qtTranslator->load(QString("qt_%1").arg(locale.name()), QLibraryInfo::location(QLibraryInfo::TranslationsPath));
565     quasselTranslator->load(QString("%1").arg(locale.name()), translationDirPath());
566 #endif
567 }