First check-in of the Qtopia build system. See qtopia-build/README.
[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 void renameUser(UserId user, QString newName);
52     virtual UserId validateUser(QString user, QString password);
53     virtual void delUser(UserId user);
54
55     /* Buffer handling */
56
57     virtual BufferId getBufferId(UserId user, QString network, QString buffer = "");
58     virtual QList<BufferId> requestBuffers(UserId user, QDateTime since = QDateTime());
59
60     /* Message handling */
61
62     virtual MsgId logMessage(Message msg);
63     virtual QList<Message> requestMsgs(BufferId buffer, int lastmsgs = -1, int offset = -1);
64     virtual QList<Message> requestMsgs(BufferId buffer, QDateTime since, int offset = -1);
65     virtual QList<Message> requestMsgRange(BufferId buffer, int first, int last);
66
67   public slots:
68     //! This is just for importing the old file-based backlog */
69     /** This slot needs to be implemented in the storage backends.
70      *  It should first prepare (delete?) the database, then call initBackLogOld(UserId id).
71      *  If the importing was successful, backLogEnabledOld will be true afterwards.
72      */
73     void importOldBacklog();
74
75   signals:
76     void bufferIdUpdated(BufferId);
77
78   protected:
79
80   private:
81     void initDb();
82     void createBuffer(UserId user, QString network, QString buffer);
83     QSqlQuery *logMessageQuery;
84     QSqlQuery *addSenderQuery;
85     QSqlQuery *getLastMessageIdQuery;
86     QSqlQuery *requestMsgsQuery;
87     QSqlQuery *requestMsgsOffsetQuery;
88     QSqlQuery *requestMsgsSinceQuery;
89     QSqlQuery *requestMsgsSinceOffsetQuery;
90     QSqlQuery *requestMsgRangeQuery;
91     QSqlQuery *createNetworkQuery;
92     QSqlQuery *createBufferQuery;
93     QSqlQuery *getBufferIdQuery;
94 };
95
96
97 #endif