952f8fa8513e7381a86b1a7031f9d6c966c5f7a0
[quassel.git] / src / common / quassel.h
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 #pragma once
22
23 #include <functional>
24 #include <memory>
25 #include <vector>
26
27 #include <QCoreApplication>
28 #include <QFile>
29 #include <QObject>
30 #include <QLocale>
31 #include <QString>
32 #include <QStringList>
33
34 #include "abstractcliparser.h"
35
36 class QFile;
37
38 class Quassel : public QObject
39 {
40     // TODO Qt5: Use Q_GADGET
41     Q_OBJECT
42
43 public:
44     enum RunMode {
45         Monolithic,
46         ClientOnly,
47         CoreOnly
48     };
49
50     struct BuildInfo {
51         QString fancyVersionString; // clickable rev
52         QString plainVersionString; // no <a> tag
53
54         QString baseVersion;
55         QString generatedVersion;
56         QString commitHash;
57         QString commitDate;
58
59         uint protocolVersion; // deprecated
60
61         QString applicationName;
62         QString coreApplicationName;
63         QString clientApplicationName;
64         QString organizationName;
65         QString organizationDomain;
66     };
67
68     /**
69      * This enum defines the optional features supported by cores/clients prior to version 0.13.
70      *
71      * Since the number of features declared this way is limited to 16 (due to the enum not having a defined
72      * width in cores/clients prior to 0.13), and for more robustness when negotiating features on connect,
73      * the bitfield-based representation was replaced by a string-based representation in 0.13, support for
74      * which is indicated by having the ExtendedFeatures flag set. Extended features are defined in the Feature
75      * enum.
76      *
77      * @warning Do not alter this enum; new features must be added (only) to the @a Feature enum.
78      *
79      * @sa Feature
80      */
81     enum class LegacyFeature : quint32 {
82         SynchronizedMarkerLine = 0x0001,
83         SaslAuthentication     = 0x0002,
84         SaslExternal           = 0x0004,
85         HideInactiveNetworks   = 0x0008,
86         PasswordChange         = 0x0010,
87         CapNegotiation         = 0x0020,
88         VerifyServerSSL        = 0x0040,
89         CustomRateLimits       = 0x0080,
90         // DccFileTransfer     = 0x0100,  // never in use
91         AwayFormatTimestamp    = 0x0200,
92         Authenticators         = 0x0400,
93         BufferActivitySync     = 0x0800,
94         CoreSideHighlights     = 0x1000,
95         SenderPrefixes         = 0x2000,
96         RemoteDisconnect       = 0x4000,
97         ExtendedFeatures       = 0x8000,
98     };
99     Q_FLAGS(LegacyFeature)
100     Q_DECLARE_FLAGS(LegacyFeatures, LegacyFeature)
101
102     /**
103      * A list of features that are optional in core and/or client, but need runtime checking.
104      *
105      * Some features require an uptodate counterpart, but don't justify a protocol break.
106      * This is what we use this enum for. Add such features to it and check at runtime on the other
107      * side for their existence.
108      *
109      * For feature negotiation, these enum values are serialized as strings, so order does not matter. However,
110      * do not rename existing enum values to avoid breaking compatibility.
111      *
112      * This list should be cleaned up after every protocol break, as we can assume them to be present then.
113      */
114     #if QT_VERSION >= 0x050000
115     enum class Feature : uint32_t {
116     #else
117     enum Feature {
118     #endif
119         SynchronizedMarkerLine,
120         SaslAuthentication,
121         SaslExternal,
122         HideInactiveNetworks,
123         PasswordChange,           ///< Remote password change
124         CapNegotiation,           ///< IRCv3 capability negotiation, account tracking
125         VerifyServerSSL,          ///< IRC server SSL validation
126         CustomRateLimits,         ///< IRC server custom message rate limits
127         AwayFormatTimestamp,      ///< Timestamp formatting in away (e.g. %%hh:mm%%)
128         Authenticators,           ///< Whether or not the core supports auth backends
129         BufferActivitySync,       ///< Sync buffer activity status
130         CoreSideHighlights,       ///< Core-Side highlight configuration and matching
131         SenderPrefixes,           ///< Show prefixes for senders in backlog
132         RemoteDisconnect,         ///< Allow this peer to be remotely disconnected
133         ExtendedFeatures,         ///< Extended features
134         LongTime,                 ///< Serialize time as 64-bit values
135         RichMessages,             ///< Real Name and Avatar URL in backlog
136         BacklogFilterType,        ///< BacklogManager supports filtering backlog by MessageType
137 #if QT_VERSION >= 0x050500
138         EcdsaCertfpKeys,          ///< ECDSA keys for CertFP in identities
139 #endif
140         LongMessageId,            ///< 64-bit IDs for messages
141         SyncedCoreInfo,           ///< CoreInfo dynamically updated using signals
142     };
143     Q_ENUMS(Feature)
144
145     class Features;
146
147     static Quassel *instance();
148
149     static void setupBuildInfo();
150     static const BuildInfo &buildInfo();
151     static RunMode runMode();
152
153     static QString configDirPath();
154
155     //! Returns a list of data directory paths
156     /** There are several locations for applications to install their data files in. On Unix,
157     *  a common location is /usr/share; others include $PREFIX/share and additional directories
158     *  specified in the env variable XDG_DATA_DIRS.
159     *  \return A list of directory paths to look for data files in
160     */
161     static QStringList dataDirPaths();
162
163     //! Searches for a data file in the possible data directories
164     /** Data files can reside in $DATA_DIR/apps/quassel, where $DATA_DIR is one of the directories
165     *  returned by \sa dataDirPaths().
166     *  \Note With KDE integration enabled, files are searched (only) in KDE's appdata dirs.
167     *  \return The full path to the data file if found; a null QString else
168     */
169     static QString findDataFilePath(const QString &filename);
170
171     static QString translationDirPath();
172
173     //! Returns a list of directories we look for scripts in
174     /** We look for a subdirectory named "scripts" in the configdir and in all datadir paths.
175     *   \return A list of directory paths containing executable scripts for /exec
176     */
177     static QStringList scriptDirPaths();
178
179     static void loadTranslation(const QLocale &locale);
180
181     static void setCliParser(std::shared_ptr<AbstractCliParser> cliParser);
182     static QString optionValue(const QString &option);
183     static bool isOptionSet(const QString &option);
184
185     enum LogLevel {
186         DebugLevel,
187         InfoLevel,
188         WarningLevel,
189         ErrorLevel
190     };
191
192     static LogLevel logLevel();
193     static void setLogLevel(LogLevel logLevel);
194     static QFile *logFile();
195     static bool logToSyslog();
196
197     static void logFatalMessage(const char *msg);
198
199     using ReloadHandler = std::function<bool()>;
200
201     static void registerReloadHandler(ReloadHandler handler);
202
203     using QuitHandler = std::function<void()>;
204
205     static void registerQuitHandler(QuitHandler quitHandler);
206
207 protected:
208     static bool init();
209     static void destroy();
210
211     static void setRunMode(Quassel::RunMode runMode);
212
213     static void setDataDirPaths(const QStringList &paths);
214     static QStringList findDataDirPaths();
215     static void disableCrashHandler();
216
217     friend class CoreApplication;
218     friend class QtUiApplication;
219     friend class MonolithicApplication;
220
221 private:
222     Quassel();
223     void setupEnvironment();
224     void registerMetaTypes();
225
226     const QString &coreDumpFileName();
227
228     /**
229      * Requests a reload of relevant runtime configuration.
230      *
231      * Calls any registered reload handlers, and returns the cumulative result. If no handlers are registered,
232      * does nothing and returns true.
233      *
234      * @returns True if configuration reload successful, otherwise false
235      */
236     bool reloadConfig();
237
238     /**
239      * Requests to quit the application.
240      *
241      * Calls any registered quit handlers. If no handlers are registered, calls QCoreApplication::quit().
242      */
243     void quit();
244
245     void logBacktrace(const QString &filename);
246
247     static void handleSignal(int signal);
248
249 private:
250     BuildInfo _buildInfo;
251     RunMode _runMode;
252     bool _initialized{false};
253     bool _handleCrashes{true};
254
255     QString _coreDumpFileName;
256     QString _configDirPath;
257     QStringList _dataDirPaths;
258     QString _translationDirPath;
259
260     LogLevel _logLevel{InfoLevel};
261     bool _logToSyslog{false};
262     std::unique_ptr<QFile> _logFile;
263
264     std::shared_ptr<AbstractCliParser> _cliParser;
265
266     std::vector<ReloadHandler> _reloadHandlers;
267     std::vector<QuitHandler> _quitHandlers;
268 };
269
270 // --------------------------------------------------------------------------------------------------------------------
271
272 /**
273  * Class representing a set of supported core/client features.
274  *
275  * @sa Quassel::Feature
276  */
277 class Quassel::Features
278 {
279 public:
280     /**
281      * Default constructor.
282      *
283      * Creates a Feature instance with all known features (i.e., all values declared in the Quassel::Feature enum) set.
284      * This is useful for easily creating a Feature instance that represent the current version's capabilities.
285      */
286     Features();
287
288     /**
289      * Constructs a Feature instance holding the given list of features.
290      *
291      * Both the @a features and the @a legacyFeatures arguments are considered (additively).
292      * This is useful when receiving a list of features from another peer.
293      *
294      * @param features       A list of strings matching values in the Quassel::Feature enum. Strings that don't match are
295      *                       can be accessed after construction via unknownFeatures(), but are otherwise ignored.
296      * @param legacyFeatures Holds a bit-wise combination of LegacyFeature flag values, which are each added to the list of
297      *                       features represented by this Features instance.
298      */
299     Features(const QStringList &features, LegacyFeatures legacyFeatures);
300
301     /**
302      * Check if a given feature is marked as enabled in this Features instance.
303      *
304      * @param feature The feature to be queried
305      * @returns Whether the given feature is marked as enabled
306      */
307     bool isEnabled(Feature feature) const;
308
309     /**
310      * Provides a list of all features marked as either enabled or disabled (as indicated by the @a enabled argument) as strings.
311      *
312      * @param enabled Whether to return the enabled or the disabled features
313      * @return A string list containing all enabled or disabled features
314      */
315     QStringList toStringList(bool enabled = true) const;
316
317     /**
318      * Provides a list of all enabled legacy features (i.e. features defined prior to v0.13) as bit-wise combination in a
319      * LegacyFeatures type.
320      *
321      * @note Extended features cannot be represented this way, and are thus ignored even if set.
322      * @return A LegacyFeatures type holding the bit-wise combination of all legacy features enabled in this Features instance
323      */
324     LegacyFeatures toLegacyFeatures() const;
325
326     /**
327      * Provides the list of strings that could not be mapped to Quassel::Feature enum values on construction.
328      *
329      * Useful for debugging/logging purposes.
330      *
331      * @returns A list of strings that could not be mapped to the Feature enum on construction of this Features instance, if any
332      */
333     QStringList unknownFeatures() const;
334
335 private:
336     std::vector<bool> _features;
337     QStringList _unknownFeatures;
338 };