adding new backlog requesters
[quassel.git] / src / core / core.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef CORE_H
22 #define CORE_H
23
24 #include <QDateTime>
25 #include <QString>
26 #include <QVariant>
27 #include <QTimer>
28
29 #ifdef HAVE_SSL
30 #  include <QSslSocket>
31 #  include "sslserver.h"
32 #else
33 #  include <QTcpSocket>
34 #  include <QTcpServer>
35 #endif
36
37 #include "storage.h"
38 #include "bufferinfo.h"
39 #include "message.h"
40 #include "sessionthread.h"
41 #include "types.h"
42
43 class CoreSession;
44 class SessionThread;
45 class SignalProxy;
46 struct NetworkInfo;
47
48 class Core : public QObject {
49   Q_OBJECT
50
51   public:
52   static Core * instance();
53   static void destroy();
54
55   static void saveState();
56   static void restoreState();
57
58   /*** Storage access ***/
59   // These methods are threadsafe.
60
61   //! Store a user setting persistently
62   /**
63    * \param userId       The users Id
64    * \param settingName  The Name of the Setting
65    * \param data         The Value
66    */
67   static inline void setUserSetting(UserId userId, const QString &settingName, const QVariant &data) {
68     instance()->storage->setUserSetting(userId, settingName, data);
69   }
70
71   //! Retrieve a persistent user setting
72   /**
73    * \param userId       The users Id
74    * \param settingName  The Name of the Setting
75    * \param default      Value to return in case it's unset.
76    * \return the Value of the Setting or the default value if it is unset.
77    */
78   static inline QVariant getUserSetting(UserId userId, const QString &settingName, const QVariant &data = QVariant()) {
79     return instance()->storage->getUserSetting(userId, settingName, data);
80   }
81
82
83   //! Create a Network in the Storage and store it's Id in the given NetworkInfo
84   /** \note This method is thredsafe.
85    *
86    *  \param user        The core user
87    *  \param networkInfo a NetworkInfo definition to store the newly created ID in
88    *  \return true if successfull.
89    */
90   static bool createNetwork(UserId user, NetworkInfo &info);
91
92   //! Apply the changes to NetworkInfo info to the storage engine
93   /** \note This method is thredsafe.
94    *
95    *  \param user        The core user
96    *  \param networkInfo The Updated NetworkInfo
97    *  \return true if successfull.
98    */
99   static inline bool updateNetwork(UserId user, const NetworkInfo &info) {
100     return instance()->storage->updateNetwork(user, info);
101   }
102
103   //! Permanently remove a Network and all the data associated with it.
104   /** \note This method is thredsafe.
105    *
106    *  \param user        The core user
107    *  \param networkId   The network to delete
108    *  \return true if successfull.
109    */
110   static inline bool removeNetwork(UserId user, const NetworkId &networkId) {
111     return instance()->storage->removeNetwork(user, networkId);
112   }
113
114   //! Returns a list of all NetworkInfos for the given UserId user
115   /** \note This method is thredsafe.
116    *
117    *  \param user        The core user
118    *  \return QList<NetworkInfo>.
119    */
120   static inline QList<NetworkInfo> networks(UserId user) {
121     return instance()->storage->networks(user);
122   }
123
124   //! Get the NetworkId for a network name.
125   /** \note This method is threadsafe.
126    *
127    *  \param user    The core user
128    *  \param network The name of the network
129    *  \return The NetworkId corresponding to the given network.
130    */
131   static inline NetworkId networkId(UserId user, const QString &network) {
132     return instance()->storage->getNetworkId(user, network);
133   }
134
135   //! Get a list of Networks to restore
136   /** Return a list of networks the user was connected at the time of core shutdown
137    *  \note This method is threadsafe.
138    *
139    *  \param user  The User Id in question
140    */
141   static inline QList<NetworkId> connectedNetworks(UserId user) {
142     return instance()->storage->connectedNetworks(user);
143   }
144
145   //! Update the connected state of a network
146   /** \note This method is threadsafe
147    *
148    *  \param user        The Id of the networks owner
149    *  \param networkId   The Id of the network
150    *  \param isConnected whether the network is connected or not
151    */
152   static inline void setNetworkConnected(UserId user, const NetworkId &networkId, bool isConnected) {
153     return instance()->storage->setNetworkConnected(user, networkId, isConnected);
154   }
155
156   //! Get a hash of channels with their channel keys for a given network
157   /** The keys are channel names and values are passwords (possibly empty)
158    *  \note This method is threadsafe
159    *
160    *  \param user       The id of the networks owner
161    *  \param networkId  The Id of the network
162    */
163   static inline QHash<QString, QString> persistentChannels(UserId user, const NetworkId &networkId) {
164     return instance()->storage->persistentChannels(user, networkId);
165   }
166
167   //! Update the connected state of a channel
168   /** \note This method is threadsafe
169    *
170    *  \param user       The Id of the networks owner
171    *  \param networkId  The Id of the network
172    *  \param channel    The name of the channel
173    *  \param isJoined   whether the channel is connected or not
174    */
175   static inline void setChannelPersistent(UserId user, const NetworkId &networkId, const QString &channel, bool isJoined) {
176     return instance()->storage->setChannelPersistent(user, networkId, channel, isJoined);
177   }
178
179   //! Update the key of a channel
180   /** \note This method is threadsafe
181    *
182    *  \param user       The Id of the networks owner
183    *  \param networkId  The Id of the network
184    *  \param channel    The name of the channel
185    *  \param key        The key of the channel (possibly empty)
186    */
187   static inline void setPersistentChannelKey(UserId user, const NetworkId &networkId, const QString &channel, const QString &key) {
188     return instance()->storage->setPersistentChannelKey(user, networkId, channel, key);
189   }
190
191   //! Get the unique BufferInfo for the given combination of network and buffername for a user.
192   /** \note This method is threadsafe.
193    *
194    *  \param user      The core user who owns this buffername
195    *  \param networkId The network id
196    *  \param type      The type of the buffer (StatusBuffer, Channel, etc.)
197    *  \param buffer    The buffer name (if empty, the net's status buffer is returned)
198    *  \return The BufferInfo corresponding to the given network and buffer name, or 0 if not found
199    */
200   static inline BufferInfo bufferInfo(UserId user, const NetworkId &networkId, BufferInfo::Type type, const QString &buffer = "") {
201     return instance()->storage->getBufferInfo(user, networkId, type, buffer);
202   }
203
204   //! Get the unique BufferInfo for a bufferId
205   /** \note This method is threadsafe
206    *  \param user      The core user who owns this buffername
207    *  \param bufferId  The id of the buffer
208    *  \return The BufferInfo corresponding to the given buffer id, or an invalid BufferInfo if not found.
209    */
210   static inline BufferInfo getBufferInfo(UserId user, const BufferId &bufferId) {
211     return instance()->storage->getBufferInfo(user, bufferId);
212   }
213
214   //! Store a Message in the backlog.
215   /** \note This method is threadsafe.
216    *
217    *  \param msg  The message object to be stored
218    *  \return The globally unique id for the stored message
219    */
220   static inline MsgId storeMessage(const Message &message) {
221     return instance()->storage->logMessage(message);
222   }
223
224   //! Request a certain number messages stored in a given buffer.
225   /** \param buffer   The buffer we request messages from
226    *  \param first    if != -1 return only messages with a MsgId >= first
227    *  \param last     if != -1 return only messages with a MsgId < last
228    *  \param limit    if != -1 limit the returned list to a max of \limit entries
229    *  \return The requested list of messages
230    */
231   static inline QList<Message> requestMsgs(UserId user, BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1) {
232     return instance()->storage->requestMsgs(user, bufferId, first, last, limit);
233   }
234
235   //! Request a certain number of messages across all buffers
236   /** \param first    if != -1 return only messages with a MsgId >= first
237    *  \param last     if != -1 return only messages with a MsgId < last
238    *  \param limit    Max amount of messages
239    *  \return The requested list of messages
240    */
241   static inline QList<Message> requestAllMsgs(UserId user, MsgId first = -1, MsgId last = -1, int limit = -1) {
242     return instance()->storage->requestAllMsgs(user, first, last, limit);
243   }
244
245   //! Request a list of all buffers known to a user.
246   /** This method is used to get a list of all buffers we have stored a backlog from.
247    *  \note This method is threadsafe.
248    *
249    *  \param user  The user whose buffers we request
250    *  \return A list of the BufferInfos for all buffers as requested
251    */
252   static inline QList<BufferInfo> requestBuffers(UserId user) {
253     return instance()->storage->requestBuffers(user);
254   }
255
256   //! Request a list of BufferIds for a given NetworkId
257   /** \note This method is threadsafe.
258    *
259    *  \param user  The user whose buffers we request
260    *  \param networkId  The NetworkId of the network in question
261    *  \return List of BufferIds belonging to the Network
262    */
263   static inline QList<BufferId> requestBufferIdsForNetwork(UserId user, NetworkId networkId) {
264     return instance()->storage->requestBufferIdsForNetwork(user, networkId);
265   }
266
267   //! Remove permanently a buffer and it's content from the storage backend
268   /** This call cannot be reverted!
269    *  \note This method is threadsafe.
270    *
271    *  \param user      The user who is the owner of the buffer
272    *  \param bufferId  The bufferId
273    *  \return true if successfull
274    */
275   static inline bool removeBuffer(const UserId &user, const BufferId &bufferId) {
276     return instance()->storage->removeBuffer(user, bufferId);
277   }
278
279   //! Rename a Buffer
280   /** \note This method is threadsafe.
281    *  \param user      The id of the buffer owner
282    *  \param networkId The id of the network the buffer belongs to
283    *  \param newName   The new name of the buffer
284    *  \param oldName   The previous name of the buffer
285    *  \return the BufferId of the affected buffer or an invalid BufferId if not successfull
286    */
287   static inline BufferId renameBuffer(const UserId &user, const NetworkId &networkId, const QString &newName, const QString &oldName) {
288     return instance()->storage->renameBuffer(user, networkId, newName, oldName);
289   }
290
291   //! Update the LastSeenDate for a Buffer
292   /** This Method is used to make the LastSeenDate of a Buffer persistent
293    *  \note This method is threadsafe.
294    *
295    * \param user      The Owner of that Buffer
296    * \param bufferId  The buffer id
297    * \param MsgId     The Message id of the message that has been just seen
298    */
299   static inline void setBufferLastSeenMsg(UserId user, const BufferId &bufferId, const MsgId &msgId) {
300     return instance()->storage->setBufferLastSeenMsg(user, bufferId, msgId);
301   }
302
303   //! Get a Hash of all last seen message ids
304   /** This Method is called when the Quassel Core is started to restore the lastSeenMsgIds
305    *  \note This method is threadsafe.
306    *
307    * \param user      The Owner of the buffers
308    */
309   static inline QHash<BufferId, MsgId> bufferLastSeenMsgIds(UserId user) {
310     return instance()->storage->bufferLastSeenMsgIds(user);
311   }
312
313   const QDateTime &startTime() const { return _startTime; }
314
315 public slots:
316   //! Make storage data persistent
317   /** \note This method is threadsafe.
318    */
319   void syncStorage();
320   void setupInternalClientSession(SignalProxy *proxy);
321 signals:
322   //! Sent when a BufferInfo is updated in storage.
323   void bufferInfoUpdated(UserId user, const BufferInfo &info);
324
325   //! Relay From CoreSession::sessionState(const QVariant &). Used for internal connection only
326   void sessionState(const QVariant &);
327
328 private slots:
329   bool startListening();
330   void stopListening(const QString &msg = QString());
331   void incomingConnection();
332   void clientHasData();
333   void clientDisconnected();
334
335   bool initStorage(QVariantMap dbSettings, bool setup = false);
336
337 #ifdef HAVE_SSL
338   void sslErrors(const QList<QSslError> &errors);
339 #endif
340   void socketError(QAbstractSocket::SocketError);
341
342 private:
343   Core();
344   ~Core();
345   void init();
346   static Core *instanceptr;
347
348   SessionThread *createSession(UserId userId, bool restoreState = false);
349   void setupClientSession(QTcpSocket *socket, UserId uid);
350   void processClientMessage(QTcpSocket *socket, const QVariantMap &msg);
351   //void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
352   QString setupCoreForInternalUsage();
353   QString setupCore(QVariantMap setupData);
354
355   bool registerStorageBackend(Storage *);
356   void unregisterStorageBackend(Storage *);
357
358   QHash<UserId, SessionThread *> sessions;
359   Storage *storage;
360   QTimer _storageSyncTimer;
361
362 #ifdef HAVE_SSL
363   SslServer _server, _v6server;
364 #else
365   QTcpServer _server, _v6server;
366 #endif
367
368   QHash<QTcpSocket *, quint32> blocksizes;
369   QHash<QTcpSocket *, QVariantMap> clientInfo;
370
371   QHash<QString, Storage *> _storageBackends;
372
373   QDateTime _startTime;
374
375   bool configured;
376 };
377
378 #endif