Yay! After months, distributed client/core operation is working again!
[quassel.git] / src / core / sqlitestorage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
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) any later version.                                   *
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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _SQLITESTORAGE_H_
22 #define _SQLITESTORAGE_H_
23
24 #include <QCryptographicHash>
25
26 #include "global.h"
27 #include "storage.h"
28
29 class QSqlQuery;
30
31 class SqliteStorage : public Storage {
32   Q_OBJECT
33
34   public:
35     SqliteStorage();
36     virtual ~SqliteStorage();
37
38     static void init();
39
40     /* General */
41
42     static bool isAvailable();
43     static QString displayName();
44
45     // TODO: Add functions for configuring the backlog handling, i.e. defining auto-cleanup settings etc
46
47     /* User handling */
48
49     virtual UserId addUser(QString user, QString password);
50     virtual void updateUser(UserId user, QString password);
51     virtual UserId validateUser(QString user, QString password);
52     virtual void delUser(UserId user);
53
54     /* Buffer handling */
55
56     virtual BufferId getBufferId(UserId user, QString network, QString buffer = "");
57     virtual QList<BufferId> requestBuffers(UserId user, QDateTime since = QDateTime());
58
59     /* Message handling */
60
61     virtual MsgId logMessage(Message msg);
62     virtual QList<Message> requestMsgs(BufferId buffer, int lastmsgs = -1, int offset = -1);
63     virtual QList<Message> requestMsgs(BufferId buffer, QDateTime since, int offset = -1);
64     virtual QList<Message> requestMsgRange(BufferId buffer, int first, int last);
65
66   public slots:
67     //! This is just for importing the old file-based backlog */
68     /** This slot needs to be implemented in the storage backends.
69      *  It should first prepare (delete?) the database, then call initBackLogOld(UserId id).
70      *  If the importing was successful, backLogEnabledOld will be true afterwards.
71      */
72     void importOldBacklog();
73
74   signals:
75     void bufferIdUpdated(BufferId);
76
77   protected:
78
79   private:
80     void initDb();
81     void createBuffer(UserId user, QString network, QString buffer);
82     QSqlQuery *logMessageQuery;
83     QSqlQuery *addSenderQuery;
84     QSqlQuery *getLastMessageIdQuery;
85     QSqlQuery *requestMsgsQuery;
86     QSqlQuery *requestMsgsOffsetQuery;
87     QSqlQuery *requestMsgsSinceQuery;
88     QSqlQuery *requestMsgsSinceOffsetQuery;
89     QSqlQuery *requestMsgRangeQuery;
90     QSqlQuery *createNetworkQuery;
91     QSqlQuery *createBufferQuery;
92     QSqlQuery *getBufferIdQuery;
93 };
94
95
96 #endif