6ddb6e864b46ef5818004775281be98616d546a7
[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   /* 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 the NetworkId for a network name.
138   /** \note This method is threadsafe.
139    *
140    *  \param user    The core user
141    *  \param network The name of the network
142    *  \return The NetworkId corresponding to the given network.
143    */
144   static inline NetworkId networkId(UserId user, const QString &network) {
145     return instance()->storage->getNetworkId(user, network);
146   }
147
148   //! Get a list of Networks to restore
149   /** Return a list of networks the user was connected at the time of core shutdown
150    *  \note This method is threadsafe.
151    *
152    *  \param user  The User Id in question
153    */
154   static inline QList<NetworkId> connectedNetworks(UserId user) {
155     return instance()->storage->connectedNetworks(user);
156   }
157
158   //! Update the connected state of a network
159   /** \note This method is threadsafe
160    *
161    *  \param user        The Id of the networks owner
162    *  \param networkId   The Id of the network
163    *  \param isConnected whether the network is connected or not
164    */
165   static inline void setNetworkConnected(UserId user, const NetworkId &networkId, bool isConnected) {
166     return instance()->storage->setNetworkConnected(user, networkId, isConnected);
167   }
168
169   //! Get a hash of channels with their channel keys for a given network
170   /** The keys are channel names and values are passwords (possibly empty)
171    *  \note This method is threadsafe
172    *
173    *  \param user       The id of the networks owner
174    *  \param networkId  The Id of the network
175    */
176   static inline QHash<QString, QString> persistentChannels(UserId user, const NetworkId &networkId) {
177     return instance()->storage->persistentChannels(user, networkId);
178   }
179
180   //! Update the connected state of a channel
181   /** \note This method is threadsafe
182    *
183    *  \param user       The Id of the networks owner
184    *  \param networkId  The Id of the network
185    *  \param channel    The name of the channel
186    *  \param isJoined   whether the channel is connected or not
187    */
188   static inline void setChannelPersistent(UserId user, const NetworkId &networkId, const QString &channel, bool isJoined) {
189     return instance()->storage->setChannelPersistent(user, networkId, channel, isJoined);
190   }
191
192   //! Update the key of a channel
193   /** \note This method is threadsafe
194    *
195    *  \param user       The Id of the networks owner
196    *  \param networkId  The Id of the network
197    *  \param channel    The name of the channel
198    *  \param key        The key of the channel (possibly empty)
199    */
200   static inline void setPersistentChannelKey(UserId user, const NetworkId &networkId, const QString &channel, const QString &key) {
201     return instance()->storage->setPersistentChannelKey(user, networkId, channel, key);
202   }
203
204   //! Get the unique BufferInfo for the given combination of network and buffername for a user.
205   /** \note This method is threadsafe.
206    *
207    *  \param user      The core user who owns this buffername
208    *  \param networkId The network id
209    *  \param type      The type of the buffer (StatusBuffer, Channel, etc.)
210    *  \param buffer    The buffer name (if empty, the net's status buffer is returned)
211    *  \return The BufferInfo corresponding to the given network and buffer name, or 0 if not found
212    */
213   static inline BufferInfo bufferInfo(UserId user, const NetworkId &networkId, BufferInfo::Type type, const QString &buffer = "") {
214     return instance()->storage->getBufferInfo(user, networkId, type, buffer);
215   }
216
217   //! Get the unique BufferInfo for a bufferId
218   /** \note This method is threadsafe
219    *  \param user      The core user who owns this buffername
220    *  \param bufferId  The id of the buffer
221    *  \return The BufferInfo corresponding to the given buffer id, or an invalid BufferInfo if not found.
222    */
223   static inline BufferInfo getBufferInfo(UserId user, const BufferId &bufferId) {
224     return instance()->storage->getBufferInfo(user, bufferId);
225   }
226
227   //! Store a Message in the backlog.
228   /** \note This method is threadsafe.
229    *
230    *  \param msg  The message object to be stored
231    *  \return The globally unique id for the stored message
232    */
233   static inline MsgId storeMessage(const Message &message) {
234     return instance()->storage->logMessage(message);
235   }
236
237   //! Request a certain number messages stored in a given buffer.
238   /** \param buffer   The buffer we request messages from
239    *  \param first    if != -1 return only messages with a MsgId >= first
240    *  \param last     if != -1 return only messages with a MsgId < last
241    *  \param limit    if != -1 limit the returned list to a max of \limit entries
242    *  \return The requested list of messages
243    */
244   static inline QList<Message> requestMsgs(UserId user, BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1) {
245     return instance()->storage->requestMsgs(user, bufferId, first, last, limit);
246   }
247
248   //! Request a certain number of messages across all buffers
249   /** \param first    if != -1 return only messages with a MsgId >= first
250    *  \param last     if != -1 return only messages with a MsgId < last
251    *  \param limit    Max amount of messages
252    *  \return The requested list of messages
253    */
254   static inline QList<Message> requestAllMsgs(UserId user, MsgId first = -1, MsgId last = -1, int limit = -1) {
255     return instance()->storage->requestAllMsgs(user, first, last, limit);
256   }
257
258   //! Request a list of all buffers known to a user.
259   /** This method is used to get a list of all buffers we have stored a backlog from.
260    *  \note This method is threadsafe.
261    *
262    *  \param user  The user whose buffers we request
263    *  \return A list of the BufferInfos for all buffers as requested
264    */
265   static inline QList<BufferInfo> requestBuffers(UserId user) {
266     return instance()->storage->requestBuffers(user);
267   }
268
269   //! Request a list of BufferIds for a given NetworkId
270   /** \note This method is threadsafe.
271    *
272    *  \param user  The user whose buffers we request
273    *  \param networkId  The NetworkId of the network in question
274    *  \return List of BufferIds belonging to the Network
275    */
276   static inline QList<BufferId> requestBufferIdsForNetwork(UserId user, NetworkId networkId) {
277     return instance()->storage->requestBufferIdsForNetwork(user, networkId);
278   }
279
280   //! Remove permanently a buffer and it's content from the storage backend
281   /** This call cannot be reverted!
282    *  \note This method is threadsafe.
283    *
284    *  \param user      The user who is the owner of the buffer
285    *  \param bufferId  The bufferId
286    *  \return true if successfull
287    */
288   static inline bool removeBuffer(const UserId &user, const BufferId &bufferId) {
289     return instance()->storage->removeBuffer(user, bufferId);
290   }
291
292   //! Rename a Buffer
293   /** \note This method is threadsafe.
294    *  \param user      The id of the buffer owner
295    *  \param bufferId  The bufferId
296    *  \param newName   The new name of the buffer
297    *  \return true if successfull
298    */
299   static inline bool renameBuffer(const UserId &user, const BufferId &bufferId, const QString &newName) {
300     return instance()->storage->renameBuffer(user, bufferId, newName);
301   }
302
303   //! Update the LastSeenDate for a Buffer
304   /** This Method is used to make the LastSeenDate of a Buffer persistent
305    *  \note This method is threadsafe.
306    *
307    * \param user      The Owner of that Buffer
308    * \param bufferId  The buffer id
309    * \param MsgId     The Message id of the message that has been just seen
310    */
311   static inline void setBufferLastSeenMsg(UserId user, const BufferId &bufferId, const MsgId &msgId) {
312     return instance()->storage->setBufferLastSeenMsg(user, bufferId, msgId);
313   }
314
315   //! Get a Hash of all last seen message ids
316   /** This Method is called when the Quassel Core is started to restore the lastSeenMsgIds
317    *  \note This method is threadsafe.
318    *
319    * \param user      The Owner of the buffers
320    */
321   static inline QHash<BufferId, MsgId> bufferLastSeenMsgIds(UserId user) {
322     return instance()->storage->bufferLastSeenMsgIds(user);
323   }
324
325   const QDateTime &startTime() const { return _startTime; }
326
327 public slots:
328   //! Make storage data persistent
329   /** \note This method is threadsafe.
330    */
331   void syncStorage();
332   void setupInternalClientSession(SignalProxy *proxy);
333 signals:
334   //! Sent when a BufferInfo is updated in storage.
335   void bufferInfoUpdated(UserId user, const BufferInfo &info);
336
337   //! Relay From CoreSession::sessionState(const QVariant &). Used for internal connection only
338   void sessionState(const QVariant &);
339
340 private slots:
341   bool startListening();
342   void stopListening(const QString &msg = QString());
343   void incomingConnection();
344   void clientHasData();
345   void clientDisconnected();
346
347   bool initStorage(QVariantMap dbSettings, bool setup = false);
348
349 #ifdef HAVE_SSL
350   void sslErrors(const QList<QSslError> &errors);
351 #endif
352   void socketError(QAbstractSocket::SocketError);
353
354 private:
355   Core();
356   ~Core();
357   void init();
358   static Core *instanceptr;
359
360   SessionThread *createSession(UserId userId, bool restoreState = false);
361   void setupClientSession(QTcpSocket *socket, UserId uid);
362   void processClientMessage(QTcpSocket *socket, const QVariantMap &msg);
363   //void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
364   QString setupCoreForInternalUsage();
365   QString setupCore(QVariantMap setupData);
366
367   bool registerStorageBackend(Storage *);
368   void unregisterStorageBackend(Storage *);
369
370   QHash<UserId, SessionThread *> sessions;
371   Storage *storage;
372   QTimer _storageSyncTimer;
373
374 #ifdef HAVE_SSL
375   SslServer _server, _v6server;
376 #else
377   QTcpServer _server, _v6server;
378 #endif
379
380   QHash<QTcpSocket *, quint32> blocksizes;
381   QHash<QTcpSocket *, QVariantMap> clientInfo;
382
383   QHash<QString, Storage *> _storageBackends;
384
385   QDateTime _startTime;
386
387   bool configured;
388 };
389
390 #endif