saner amount for cached ids (postgres only)
[quassel.git] / src / core / coresession.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 CORESESSION_H
22 #define CORESESSION_H
23
24 #include <QString>
25 #include <QVariant>
26
27 #include "corecoreinfo.h"
28 #include "corealiasmanager.h"
29 #include "message.h"
30 #include "storage.h"
31
32 class CoreBacklogManager;
33 class CoreBufferSyncer;
34 class CoreBufferViewManager;
35 class CoreIrcListHelper;
36 class Identity;
37 class CoreIdentity;
38 class NetworkConnection;
39 class CoreNetwork;
40 struct NetworkInfo;
41 class SignalProxy;
42
43 class QScriptEngine;
44
45 class CoreSession : public QObject {
46   Q_OBJECT
47
48 public:
49   CoreSession(UserId, bool restoreState, QObject *parent = 0);
50   ~CoreSession();
51
52   QList<BufferInfo> buffers() const;
53   inline UserId user() const { return _user; }
54   CoreNetwork *network(NetworkId) const;
55   NetworkConnection *networkConnection(NetworkId) const;
56   CoreIdentity *identity(IdentityId) const;
57
58   QVariant sessionState();
59
60   inline SignalProxy *signalProxy() const { return _signalProxy; }
61
62   const AliasManager &aliasManager() const { return _aliasManager; }
63   AliasManager &aliasManager() { return _aliasManager; }
64
65   inline CoreIrcListHelper *ircListHelper() const { return _ircListHelper; }
66
67 //   void attachNetworkConnection(NetworkConnection *conn);
68
69   //! Return necessary data for restoring the session after restarting the core
70   void saveSessionState() const;
71   void restoreSessionState();
72
73 public slots:
74   void addClient(QIODevice *device);
75   void addClient(SignalProxy *proxy);
76
77   void msgFromClient(BufferInfo, QString message);
78
79   //! Create an identity and propagate the changes to the clients.
80   /** \param identity The identity to be created.
81    */
82   void createIdentity(const Identity &identity, const QVariantMap &additional);
83   void createIdentity(const CoreIdentity &identity);
84
85   //! Remove identity and propagate that fact to the clients.
86   /** \param identity The identity to be removed.
87    */
88   void removeIdentity(IdentityId identity);
89
90   //! Create a network and propagate the changes to the clients.
91   /** \param info The network's settings.
92    */
93   void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
94
95   //! Remove network and propagate that fact to the clients.
96   /** \param network The id of the network to be removed.
97    */
98   void removeNetwork(NetworkId network);
99
100   //! Rename a Buffer for a given network
101   /* \param networkId The id of the network the buffer belongs to
102    * \param newName   The new name of the buffer
103    * \param oldName   The old name of the buffer
104    */
105   void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
106
107   QHash<QString, QString> persistentChannels(NetworkId) const;
108
109 signals:
110   void initialized();
111   void sessionState(const QVariant &);
112
113   //void msgFromGui(uint netid, QString buf, QString message);
114   void displayMsg(Message message);
115   void displayStatusMsg(QString, QString);
116
117   void scriptResult(QString result);
118
119   //! Identity has been created.
120   /** This signal is propagated to the clients to tell them that the given identity has been created.
121    *  \param identity The new identity.
122    */
123   void identityCreated(const Identity &identity);
124
125   //! Identity has been removed.
126   /** This signal is propagated to the clients to inform them about the removal of the given identity.
127    *  \param identity The identity that has been removed.
128    */
129   void identityRemoved(IdentityId identity);
130
131   void networkCreated(NetworkId);
132   void networkRemoved(NetworkId);
133
134 private slots:
135   void removeClient(QIODevice *dev);
136
137   void recvStatusMsgFromServer(QString msg);
138   void recvMessageFromServer(NetworkId networkId, Message::Type, BufferInfo::Type, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None);
139
140   void destroyNetwork(NetworkId);
141
142   void scriptRequest(QString script);
143
144   void clientsConnected();
145   void clientsDisconnected();
146
147   void updateIdentityBySender();
148
149 protected:
150   virtual void customEvent(QEvent *event);
151
152 private:
153   void loadSettings();
154   void initScriptEngine();
155   void processMessages();
156
157   UserId _user;
158
159   SignalProxy *_signalProxy;
160   CoreAliasManager _aliasManager;
161   // QHash<NetworkId, NetworkConnection *> _connections;
162   QHash<NetworkId, CoreNetwork *> _networks;
163   //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
164   QHash<IdentityId, CoreIdentity *> _identities;
165
166   CoreBufferSyncer *_bufferSyncer;
167   CoreBacklogManager *_backlogManager;
168   CoreBufferViewManager *_bufferViewManager;
169   CoreIrcListHelper *_ircListHelper;
170   CoreCoreInfo _coreInfo;
171
172   QScriptEngine *scriptEngine;
173
174   struct RawMessage {
175     NetworkId networkId;
176     Message::Type type;
177     BufferInfo::Type bufferType;
178     QString target;
179     QString text;
180     QString sender;
181     Message::Flags flags;
182     RawMessage(NetworkId networkId, Message::Type type, BufferInfo::Type bufferType, const QString &target, const QString &text, const QString &sender, Message::Flags flags)
183       : networkId(networkId), type(type), bufferType(bufferType), target(target), text(text), sender(sender), flags(flags) {}
184   };
185   QList<RawMessage> _messageQueue;
186   bool _processMessages;
187 };
188
189 #endif