core: Allow clean shutdown of the core
[quassel.git] / src / core / abstractsqlstorage.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 "storage.h"
24
25 #include <memory>
26
27 #include <QSqlDatabase>
28 #include <QSqlQuery>
29 #include <QSqlError>
30
31 class AbstractSqlMigrationReader;
32 class AbstractSqlMigrationWriter;
33
34 class AbstractSqlStorage : public Storage
35 {
36     Q_OBJECT
37
38 public:
39     AbstractSqlStorage(QObject *parent = 0);
40     virtual ~AbstractSqlStorage();
41
42     virtual std::unique_ptr<AbstractSqlMigrationReader> createMigrationReader() { return {}; }
43     virtual std::unique_ptr<AbstractSqlMigrationWriter> createMigrationWriter() { return {}; }
44
45 public slots:
46     virtual State init(const QVariantMap &settings = QVariantMap(),
47                        const QProcessEnvironment &environment = {},
48                        bool loadFromEnvironment = false);
49     virtual bool setup(const QVariantMap &settings = QVariantMap(),
50                        const QProcessEnvironment &environment = {},
51                        bool loadFromEnvironment = false);
52
53 protected:
54     inline virtual void sync() {};
55
56     QSqlDatabase logDb();
57
58     /**
59      * Fetch an SQL query string by name and optional schema version
60      *
61      * Loads the named SQL query from the built-in SQL resource collection, returning it as a
62      * string.  If a version is specified, it'll be loaded from the schema version-specific folder
63      * instead.
64      *
65      * @see schemaVersion()
66      *
67      * @param[in] queryName  File name of the SQL query, minus the .sql extension
68      * @param[in] version
69      * @parblock
70      * SQL schema version; if 0, fetches from current version, otherwise loads from the specified
71      * schema version instead of the current schema files.
72      * @endparblock
73      * @return String with the requested SQL query, ready for parameter substitution
74      */
75     QString queryString(const QString &queryName, int version = 0);
76
77     QStringList setupQueries();
78
79     QStringList upgradeQueries(int ver);
80     bool upgradeDb();
81
82     bool watchQuery(QSqlQuery &query);
83
84     int schemaVersion();
85     virtual int installedSchemaVersion() { return -1; };
86     virtual bool updateSchemaVersion(int newVersion) = 0;
87     virtual bool setupSchemaVersion(int version) = 0;
88
89     virtual void setConnectionProperties(const QVariantMap &properties,
90                                          const QProcessEnvironment &environment,
91                                          bool loadFromEnvironment) = 0;
92     virtual QString driverName() = 0;
93     inline virtual QString hostName() { return QString(); }
94     inline virtual int port() { return -1; }
95     virtual QString databaseName() = 0;
96     inline virtual QString userName() { return QString(); }
97     inline virtual QString password() { return QString(); }
98
99     //! Initialize db specific features on connect
100     /** This is called every time a connection to a specific SQL backend is established
101      *  the default implementation does nothing.
102      *
103      *  When reimplementing this method, don't use logDB() inside this function as
104      *  this would cause as we're just about to initialize that DB connection.
105      */
106     inline virtual bool initDbSession(QSqlDatabase & /* db */) { return true; }
107
108 private slots:
109     void connectionDestroyed();
110
111 private:
112     void addConnectionToPool();
113     void dbConnect(QSqlDatabase &db);
114
115     int _schemaVersion;
116     bool _debug;
117
118     static int _nextConnectionId;
119     QMutex _connectionPoolMutex;
120     // we let a Connection Object manage each actual db connection
121     // those objects reside in the thread the connection belongs to
122     // which allows us thread safe termination of a connection
123     class Connection;
124     QHash<QThread *, Connection *> _connectionPool;
125 };
126
127 struct SenderData {
128     QString sender;
129     QString realname;
130     QString avatarurl;
131
132     friend uint qHash(const SenderData &key);
133     friend bool operator==(const SenderData &a, const SenderData &b);
134 };
135
136 // ========================================
137 //  AbstractSqlStorage::Connection
138 // ========================================
139 class AbstractSqlStorage::Connection : public QObject
140 {
141     Q_OBJECT
142
143 public:
144     Connection(const QString &name, QObject *parent = 0);
145     ~Connection();
146
147     inline QLatin1String name() const { return QLatin1String(_name); }
148
149 private:
150     QByteArray _name;
151 };
152
153
154 // ========================================
155 //  AbstractSqlMigrator
156 // ========================================
157 class AbstractSqlMigrator
158 {
159 public:
160     // migration objects
161     struct QuasselUserMO {
162         UserId id;
163         QString username;
164         QString password;
165         int hashversion;
166         QString authenticator;
167     };
168
169     struct SenderMO {
170         qint64 senderId;
171         QString sender;
172         QString realname;
173         QString avatarurl;
174         SenderMO() : senderId(0) {}
175     };
176
177     struct IdentityMO {
178         IdentityId id;
179         UserId userid;
180         QString identityname;
181         QString realname;
182         QString awayNick;
183         bool awayNickEnabled;
184         QString awayReason;
185         bool awayReasonEnabled;
186         bool autoAwayEnabled;
187         int autoAwayTime;
188         QString autoAwayReason;
189         bool autoAwayReasonEnabled;
190         bool detachAwayEnabled;
191         QString detachAwayReason;
192         bool detachAwayReasonEnabled;
193         QString ident;
194         QString kickReason;
195         QString partReason;
196         QString quitReason;
197         QByteArray sslCert;
198         QByteArray sslKey;
199     };
200
201     struct IdentityNickMO {
202         int nickid;
203         IdentityId identityId;
204         QString nick;
205     };
206
207     struct NetworkMO {
208         UserId userid;
209         QString networkname;
210         QString perform;
211         QString autoidentifyservice;
212         QString autoidentifypassword;
213         QString saslaccount;
214         QString saslpassword;
215         QString servercodec;
216         QString encodingcodec;
217         QString decodingcodec;
218         QString usermode;
219         QString awaymessage;
220         QString attachperform;
221         QString detachperform;
222         NetworkId networkid;
223         IdentityId identityid;
224         int messagerateburstsize;
225         int messageratedelay;
226         int autoreconnectinterval;
227         int autoreconnectretries;
228         bool rejoinchannels;
229         bool userandomserver;
230         bool useautoidentify;
231         bool usesasl;
232         bool useautoreconnect;
233         bool unlimitedconnectretries;
234         bool usecustommessagerate;
235         bool unlimitedmessagerate;
236         bool connected;
237     };
238
239     struct BufferMO {
240         BufferId bufferid;
241         UserId userid;
242         int groupid;
243         NetworkId networkid;
244         QString buffername;
245         QString buffercname;
246         int buffertype;
247         qint64 lastmsgid;
248         qint64 lastseenmsgid;
249         qint64 markerlinemsgid;
250         int bufferactivity;
251         int highlightcount;
252         QString key;
253         bool joined;
254         QString cipher;
255     };
256
257     struct BacklogMO {
258         MsgId messageid;
259         QDateTime time; // has to be in UTC!
260         BufferId bufferid;
261         int type;
262         int flags;
263         qint64 senderid;
264         QString senderprefixes;
265         QString message;
266     };
267
268     struct IrcServerMO {
269         int serverid;
270         UserId userid;
271         NetworkId networkid;
272         QString hostname;
273         int port;
274         QString password;
275         bool ssl;
276         bool sslverify;     /// If true, validate SSL certificates
277         int sslversion;
278         bool useproxy;
279         int proxytype;
280         QString proxyhost;
281         int proxyport;
282         QString proxyuser;
283         QString proxypass;
284     };
285
286     struct UserSettingMO {
287         UserId userid;
288         QString settingname;
289         QByteArray settingvalue;
290     };
291
292     struct CoreStateMO {
293         QString key;
294         QByteArray value;
295     };
296
297     enum MigrationObject {
298         QuasselUser,
299         Sender,
300         Identity,
301         IdentityNick,
302         Network,
303         Buffer,
304         Backlog,
305         IrcServer,
306         UserSetting,
307         CoreState
308     };
309
310     AbstractSqlMigrator();
311     virtual ~AbstractSqlMigrator() {}
312
313     static QString migrationObject(MigrationObject moType);
314
315 protected:
316     void newQuery(const QString &query, QSqlDatabase db);
317     virtual void resetQuery();
318     virtual bool prepareQuery(MigrationObject mo) = 0;
319     bool exec();
320     inline bool next() { return _query->next(); }
321     inline QVariant value(int index) { return _query->value(index); }
322     inline void bindValue(const QString &placeholder, const QVariant &val) { _query->bindValue(placeholder, val); }
323     inline void bindValue(int pos, const QVariant &val) { _query->bindValue(pos, val); }
324
325     inline QSqlError lastError() { return _query ? _query->lastError() : QSqlError(); }
326     void dumpStatus();
327     inline QString executedQuery() { return _query ? _query->executedQuery() : QString(); }
328     inline QVariantList boundValues();
329
330     virtual bool transaction() = 0;
331     virtual void rollback() = 0;
332     virtual bool commit() = 0;
333
334 private:
335     QSqlQuery *_query;
336 };
337
338
339 class AbstractSqlMigrationReader : public AbstractSqlMigrator
340 {
341 public:
342     AbstractSqlMigrationReader();
343
344     virtual bool readMo(QuasselUserMO &user) = 0;
345     virtual bool readMo(IdentityMO &identity) = 0;
346     virtual bool readMo(IdentityNickMO &identityNick) = 0;
347     virtual bool readMo(NetworkMO &network) = 0;
348     virtual bool readMo(BufferMO &buffer) = 0;
349     virtual bool readMo(SenderMO &sender) = 0;
350     virtual bool readMo(BacklogMO &backlog) = 0;
351     virtual bool readMo(IrcServerMO &ircserver) = 0;
352     virtual bool readMo(UserSettingMO &userSetting) = 0;
353     virtual bool readMo(CoreStateMO &coreState) = 0;
354
355     bool migrateTo(AbstractSqlMigrationWriter *writer);
356
357 private:
358     void abortMigration(const QString &errorMsg = QString());
359     bool finalizeMigration();
360
361     template<typename T> bool transferMo(MigrationObject moType, T &mo);
362
363     AbstractSqlMigrationWriter *_writer;
364 };
365
366
367 class AbstractSqlMigrationWriter : public AbstractSqlMigrator
368 {
369 public:
370     virtual bool writeMo(const QuasselUserMO &user) = 0;
371     virtual bool writeMo(const IdentityMO &identity) = 0;
372     virtual bool writeMo(const IdentityNickMO &identityNick) = 0;
373     virtual bool writeMo(const NetworkMO &network) = 0;
374     virtual bool writeMo(const BufferMO &buffer) = 0;
375     virtual bool writeMo(const SenderMO &sender) = 0;
376     virtual bool writeMo(const BacklogMO &backlog) = 0;
377     virtual bool writeMo(const IrcServerMO &ircserver) = 0;
378     virtual bool writeMo(const UserSettingMO &userSetting) = 0;
379     virtual bool writeMo(const CoreStateMO &coreState) = 0;
380
381     inline bool migrateFrom(AbstractSqlMigrationReader *reader) { return reader->migrateTo(this); }
382
383     // called after migration process
384     virtual inline bool postProcess() { return true; }
385     friend class AbstractSqlMigrationReader;
386 };