first version of postgres backend
[quassel.git] / src / core / core.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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   /* Identity handling */
83   static inline IdentityId createIdentity(UserId user, CoreIdentity &identity) {
84     return instance()->_storage->createIdentity(user, identity);
85   }
86   static bool updateIdentity(UserId user, const CoreIdentity &identity) {
87     return instance()->_storage->updateIdentity(user, identity);
88   }
89   static void removeIdentity(UserId user, IdentityId identityId) {
90     instance()->_storage->removeIdentity(user, identityId);
91   }
92   static QList<CoreIdentity> identities(UserId user) {
93     return instance()->_storage->identities(user);
94   }
95
96   //! Create a Network in the Storage and store it's Id in the given NetworkInfo
97   /** \note This method is thredsafe.
98    *
99    *  \param user        The core user
100    *  \param networkInfo a NetworkInfo definition to store the newly created ID in
101    *  \return true if successfull.
102    */
103   static bool createNetwork(UserId user, NetworkInfo &info);
104
105   //! Apply the changes to NetworkInfo info to the storage engine
106   /** \note This method is thredsafe.
107    *
108    *  \param user        The core user
109    *  \param networkInfo The Updated NetworkInfo
110    *  \return true if successfull.
111    */
112   static inline bool updateNetwork(UserId user, const NetworkInfo &info) {
113     return instance()->_storage->updateNetwork(user, info);
114   }
115
116   //! Permanently remove a Network and all the data associated with it.
117   /** \note This method is thredsafe.
118    *
119    *  \param user        The core user
120    *  \param networkId   The network to delete
121    *  \return true if successfull.
122    */
123   static inline bool removeNetwork(UserId user, const NetworkId &networkId) {
124     return instance()->_storage->removeNetwork(user, networkId);
125   }
126
127   //! Returns a list of all NetworkInfos for the given UserId user
128   /** \note This method is thredsafe.
129    *
130    *  \param user        The core user
131    *  \return QList<NetworkInfo>.
132    */
133   static inline QList<NetworkInfo> networks(UserId user) {
134     return instance()->_storage->networks(user);
135   }
136
137   //! Get a list of Networks to restore
138   /** Return a list of networks the user was connected at the time of core shutdown
139    *  \note This method is threadsafe.
140    *
141    *  \param user  The User Id in question
142    */
143   static inline QList<NetworkId> connectedNetworks(UserId user) {
144     return instance()->_storage->connectedNetworks(user);
145   }
146
147   //! Update the connected state of a network
148   /** \note This method is threadsafe
149    *
150    *  \param user        The Id of the networks owner
151    *  \param networkId   The Id of the network
152    *  \param isConnected whether the network is connected or not
153    */
154   static inline void setNetworkConnected(UserId user, const NetworkId &networkId, bool isConnected) {
155     return instance()->_storage->setNetworkConnected(user, networkId, isConnected);
156   }
157
158   //! Get a hash of channels with their channel keys for a given network
159   /** The keys are channel names and values are passwords (possibly empty)
160    *  \note This method is threadsafe
161    *
162    *  \param user       The id of the networks owner
163    *  \param networkId  The Id of the network
164    */
165   static inline QHash<QString, QString> persistentChannels(UserId user, const NetworkId &networkId) {
166     return instance()->_storage->persistentChannels(user, networkId);
167   }
168
169   //! Update the connected state of a channel
170   /** \note This method is threadsafe
171    *
172    *  \param user       The Id of the networks owner
173    *  \param networkId  The Id of the network
174    *  \param channel    The name of the channel
175    *  \param isJoined   whether the channel is connected or not
176    */
177   static inline void setChannelPersistent(UserId user, const NetworkId &networkId, const QString &channel, bool isJoined) {
178     return instance()->_storage->setChannelPersistent(user, networkId, channel, isJoined);
179   }
180
181   //! Update the key of a channel
182   /** \note This method is threadsafe
183    *
184    *  \param user       The Id of the networks owner
185    *  \param networkId  The Id of the network
186    *  \param channel    The name of the channel
187    *  \param key        The key of the channel (possibly empty)
188    */
189   static inline void setPersistentChannelKey(UserId user, const NetworkId &networkId, const QString &channel, const QString &key) {
190     return instance()->_storage->setPersistentChannelKey(user, networkId, channel, key);
191   }
192
193   //! retrieve last known away message for session restore
194   /** \note This method is threadsafe
195    *
196    *  \param user       The Id of the networks owner
197    *  \param networkId  The Id of the network
198    */
199   static inline QString awayMessage(UserId user, NetworkId networkId) {
200     return instance()->_storage->awayMessage(user, networkId);
201   }
202
203   //! Make away message persistent for session restore
204   /** \note This method is threadsafe
205    *
206    *  \param user       The Id of the networks owner
207    *  \param networkId  The Id of the network
208    *  \param awayMsg    The current away message of own user
209    */
210   static inline void setAwayMessage(UserId user, NetworkId networkId, const QString &awayMsg) {
211     return instance()->_storage->setAwayMessage(user, networkId, awayMsg);
212   }
213
214   //! retrieve last known user mode for session restore
215   /** \note This method is threadsafe
216    *
217    *  \param user       The Id of the networks owner
218    *  \param networkId  The Id of the network
219    */
220   static inline QString userModes(UserId user, NetworkId networkId) {
221     return instance()->_storage->userModes(user, networkId);
222   }
223
224   //! Make our user modes persistent for session restore
225   /** \note This method is threadsafe
226    *
227    *  \param user       The Id of the networks owner
228    *  \param networkId  The Id of the network
229    *  \param userModes  The current user modes of own user
230    */
231   static inline void setUserModes(UserId user, NetworkId networkId, const QString &userModes) {
232     return instance()->_storage->setUserModes(user, networkId, userModes);
233   }
234
235   //! Get the unique BufferInfo for the given combination of network and buffername for a user.
236   /** \note This method is threadsafe.
237    *
238    *  \param user      The core user who owns this buffername
239    *  \param networkId The network id
240    *  \param type      The type of the buffer (StatusBuffer, Channel, etc.)
241    *  \param buffer    The buffer name (if empty, the net's status buffer is returned)
242    *  \param create    Whether or not the buffer should be created if it doesnt exist
243    *  \return The BufferInfo corresponding to the given network and buffer name, or 0 if not found
244    */
245   static inline BufferInfo bufferInfo(UserId user, const NetworkId &networkId, BufferInfo::Type type, const QString &buffer = "", bool create = true) {
246     return instance()->_storage->bufferInfo(user, networkId, type, buffer, create);
247   }
248
249   //! Get the unique BufferInfo for a bufferId
250   /** \note This method is threadsafe
251    *  \param user      The core user who owns this buffername
252    *  \param bufferId  The id of the buffer
253    *  \return The BufferInfo corresponding to the given buffer id, or an invalid BufferInfo if not found.
254    */
255   static inline BufferInfo getBufferInfo(UserId user, const BufferId &bufferId) {
256     return instance()->_storage->getBufferInfo(user, bufferId);
257   }
258
259   //! Store a Message in the backlog.
260   /** \note This method is threadsafe.
261    *
262    *  \param msg  The message object to be stored
263    *  \return The globally unique id for the stored message
264    */
265   static inline MsgId storeMessage(const Message &message) {
266     return instance()->_storage->logMessage(message);
267   }
268
269   //! Request a certain number messages stored in a given buffer.
270   /** \param buffer   The buffer we request messages from
271    *  \param first    if != -1 return only messages with a MsgId >= first
272    *  \param last     if != -1 return only messages with a MsgId < last
273    *  \param limit    if != -1 limit the returned list to a max of \limit entries
274    *  \return The requested list of messages
275    */
276   static inline QList<Message> requestMsgs(UserId user, BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1) {
277     return instance()->_storage->requestMsgs(user, bufferId, first, last, limit);
278   }
279
280   //! Request a certain number of messages across all buffers
281   /** \param first    if != -1 return only messages with a MsgId >= first
282    *  \param last     if != -1 return only messages with a MsgId < last
283    *  \param limit    Max amount of messages
284    *  \return The requested list of messages
285    */
286   static inline QList<Message> requestAllMsgs(UserId user, MsgId first = -1, MsgId last = -1, int limit = -1) {
287     return instance()->_storage->requestAllMsgs(user, first, last, limit);
288   }
289
290   //! Request a list of all buffers known to a user.
291   /** This method is used to get a list of all buffers we have stored a backlog from.
292    *  \note This method is threadsafe.
293    *
294    *  \param user  The user whose buffers we request
295    *  \return A list of the BufferInfos for all buffers as requested
296    */
297   static inline QList<BufferInfo> requestBuffers(UserId user) {
298     return instance()->_storage->requestBuffers(user);
299   }
300
301   //! Request a list of BufferIds for a given NetworkId
302   /** \note This method is threadsafe.
303    *
304    *  \param user  The user whose buffers we request
305    *  \param networkId  The NetworkId of the network in question
306    *  \return List of BufferIds belonging to the Network
307    */
308   static inline QList<BufferId> requestBufferIdsForNetwork(UserId user, NetworkId networkId) {
309     return instance()->_storage->requestBufferIdsForNetwork(user, networkId);
310   }
311
312   //! Remove permanently a buffer and it's content from the storage backend
313   /** This call cannot be reverted!
314    *  \note This method is threadsafe.
315    *
316    *  \param user      The user who is the owner of the buffer
317    *  \param bufferId  The bufferId
318    *  \return true if successfull
319    */
320   static inline bool removeBuffer(const UserId &user, const BufferId &bufferId) {
321     return instance()->_storage->removeBuffer(user, bufferId);
322   }
323
324   //! Rename a Buffer
325   /** \note This method is threadsafe.
326    *  \param user      The id of the buffer owner
327    *  \param bufferId  The bufferId
328    *  \param newName   The new name of the buffer
329    *  \return true if successfull
330    */
331   static inline bool renameBuffer(const UserId &user, const BufferId &bufferId, const QString &newName) {
332     return instance()->_storage->renameBuffer(user, bufferId, newName);
333   }
334
335   //! Merge the content of two Buffers permanently. This cannot be reversed!
336   /** \note This method is threadsafe.
337    *  \param user      The id of the buffer owner
338    *  \param bufferId1 The bufferId of the remaining buffer
339    *  \param bufferId2 The buffer that is about to be removed
340    *  \return true if successfulln
341    */
342   static inline bool mergeBuffersPermanently(const UserId &user, const BufferId &bufferId1, const BufferId &bufferId2) {
343     return instance()->_storage->mergeBuffersPermanently(user, bufferId1, bufferId2);
344   }
345
346   //! Update the LastSeenDate for a Buffer
347   /** This Method is used to make the LastSeenDate of a Buffer persistent
348    *  \note This method is threadsafe.
349    *
350    * \param user      The Owner of that Buffer
351    * \param bufferId  The buffer id
352    * \param MsgId     The Message id of the message that has been just seen
353    */
354   static inline void setBufferLastSeenMsg(UserId user, const BufferId &bufferId, const MsgId &msgId) {
355     return instance()->_storage->setBufferLastSeenMsg(user, bufferId, msgId);
356   }
357
358   //! Get a Hash of all last seen message ids
359   /** This Method is called when the Quassel Core is started to restore the lastSeenMsgIds
360    *  \note This method is threadsafe.
361    *
362    * \param user      The Owner of the buffers
363    */
364   static inline QHash<BufferId, MsgId> bufferLastSeenMsgIds(UserId user) {
365     return instance()->_storage->bufferLastSeenMsgIds(user);
366   }
367
368   const QDateTime &startTime() const { return _startTime; }
369
370   static inline QTimer &syncTimer() { return instance()->_storageSyncTimer; }
371
372 public slots:
373   //! Make storage data persistent
374   /** \note This method is threadsafe.
375    */
376   void syncStorage();
377   void setupInternalClientSession(SignalProxy *proxy);
378 signals:
379   //! Sent when a BufferInfo is updated in storage.
380   void bufferInfoUpdated(UserId user, const BufferInfo &info);
381
382   //! Relay From CoreSession::sessionState(const QVariant &). Used for internal connection only
383   void sessionState(const QVariant &);
384
385 private slots:
386   bool startListening();
387   void stopListening(const QString &msg = QString());
388   void incomingConnection();
389   void clientHasData();
390   void clientDisconnected();
391
392   bool initStorage(QVariantMap dbSettings, bool setup = false);
393
394 #ifdef HAVE_SSL
395   void sslErrors(const QList<QSslError> &errors);
396 #endif
397   void socketError(QAbstractSocket::SocketError);
398
399 private:
400   Core();
401   ~Core();
402   void init();
403   static Core *instanceptr;
404
405   SessionThread *createSession(UserId userId, bool restoreState = false);
406   void setupClientSession(QTcpSocket *socket, UserId uid);
407   void processClientMessage(QTcpSocket *socket, const QVariantMap &msg);
408   //void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
409   QString setupCoreForInternalUsage();
410   QString setupCore(QVariantMap setupData);
411
412   bool registerStorageBackend(Storage *);
413   void unregisterStorageBackend(Storage *);
414
415   QHash<UserId, SessionThread *> sessions;
416   Storage *_storage;
417   QTimer _storageSyncTimer;
418
419 #ifdef HAVE_SSL
420   SslServer _server, _v6server;
421 #else
422   QTcpServer _server, _v6server;
423 #endif
424
425   QHash<QTcpSocket *, quint32> blocksizes;
426   QHash<QTcpSocket *, QVariantMap> clientInfo;
427
428   QHash<QString, Storage *> _storageBackends;
429
430   QDateTime _startTime;
431
432   bool _configured;
433 };
434
435 #endif