Improve performance of PostgreSQL for large databases.
[quassel.git] / src / core / coresession.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 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 "coreignorelistmanager.h"
30 #include "peer.h"
31 #include "protocol.h"
32 #include "message.h"
33 #include "storage.h"
34
35 class CoreBacklogManager;
36 class CoreBufferSyncer;
37 class CoreBufferViewManager;
38 class CoreDccConfig;
39 class CoreIdentity;
40 class CoreIrcListHelper;
41 class CoreNetwork;
42 class CoreNetworkConfig;
43 class CoreSessionEventProcessor;
44 class CoreTransferManager;
45 class CtcpParser;
46 class EventManager;
47 class EventStringifier;
48 class InternalPeer;
49 class IrcParser;
50 class MessageEvent;
51 class NetworkConnection;
52 class RemotePeer;
53 class SignalProxy;
54
55 struct NetworkInfo;
56
57 class QScriptEngine;
58
59 class CoreSession : public QObject
60 {
61     Q_OBJECT
62
63 public:
64     CoreSession(UserId, bool restoreState, QObject *parent = 0);
65     ~CoreSession();
66
67     QList<BufferInfo> buffers() const;
68     inline UserId user() const { return _user; }
69     CoreNetwork *network(NetworkId) const;
70     CoreIdentity *identity(IdentityId) const;
71     inline CoreNetworkConfig *networkConfig() const { return _networkConfig; }
72     NetworkConnection *networkConnection(NetworkId) const;
73
74     Protocol::SessionState sessionState() const;
75
76     inline SignalProxy *signalProxy() const { return _signalProxy; }
77
78     const AliasManager &aliasManager() const { return _aliasManager; }
79     AliasManager &aliasManager() { return _aliasManager; }
80
81     inline EventManager *eventManager() const { return _eventManager; }
82     inline EventStringifier *eventStringifier() const { return _eventStringifier; }
83     inline CoreSessionEventProcessor *sessionEventProcessor() const { return _sessionEventProcessor; }
84     inline CtcpParser *ctcpParser() const { return _ctcpParser; }
85     inline IrcParser *ircParser() const { return _ircParser; }
86
87     inline CoreIrcListHelper *ircListHelper() const { return _ircListHelper; }
88
89     inline CoreIgnoreListManager *ignoreListManager() { return &_ignoreListManager; }
90     inline CoreTransferManager *transferManager() const { return _transferManager; }
91     inline CoreDccConfig *dccConfig() const { return _dccConfig; }
92
93 //   void attachNetworkConnection(NetworkConnection *conn);
94
95     //! Return necessary data for restoring the session after restarting the core
96     void restoreSessionState();
97
98 public slots:
99     void addClient(RemotePeer *peer);
100     void addClient(InternalPeer *peer);
101
102     void msgFromClient(BufferInfo, QString message);
103
104     //! Create an identity and propagate the changes to the clients.
105     /** \param identity The identity to be created.
106      */
107     void createIdentity(const Identity &identity, const QVariantMap &additional);
108     void createIdentity(const CoreIdentity &identity);
109
110     //! Remove identity and propagate that fact to the clients.
111     /** \param identity The identity to be removed.
112      */
113     void removeIdentity(IdentityId identity);
114
115     //! Create a network and propagate the changes to the clients.
116     /** \param info The network's settings.
117      */
118     void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
119
120     //! Remove network and propagate that fact to the clients.
121     /** \param network The id of the network to be removed.
122      */
123     void removeNetwork(NetworkId network);
124
125     //! Rename a Buffer for a given network
126     /* \param networkId The id of the network the buffer belongs to
127      * \param newName   The new name of the buffer
128      * \param oldName   The old name of the buffer
129      */
130     void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
131
132     void changePassword(PeerPtr peer, const QString &userName, const QString &oldPassword, const QString &newPassword);
133
134     QHash<QString, QString> persistentChannels(NetworkId) const;
135
136     //! Marks us away (or unaway) on all networks
137     void globalAway(const QString &msg = QString());
138
139 signals:
140     void initialized();
141     void sessionState(const Protocol::SessionState &sessionState);
142
143     //void msgFromGui(uint netid, QString buf, QString message);
144     void displayMsg(Message message);
145     void displayStatusMsg(QString, QString);
146
147     void scriptResult(QString result);
148
149     //! Identity has been created.
150     /** This signal is propagated to the clients to tell them that the given identity has been created.
151      *  \param identity The new identity.
152      */
153     void identityCreated(const Identity &identity);
154
155     //! Identity has been removed.
156     /** This signal is propagated to the clients to inform them about the removal of the given identity.
157      *  \param identity The identity that has been removed.
158      */
159     void identityRemoved(IdentityId identity);
160
161     void networkCreated(NetworkId);
162     void networkRemoved(NetworkId);
163     void networkDisconnected(NetworkId);
164
165     void passwordChanged(PeerPtr peer, bool success);
166
167 protected:
168     virtual void customEvent(QEvent *event);
169
170 private slots:
171     void removeClient(Peer *peer);
172
173     void recvStatusMsgFromServer(QString msg);
174     void recvMessageFromServer(NetworkId networkId, Message::Type, BufferInfo::Type, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None);
175
176     void destroyNetwork(NetworkId);
177
178     void scriptRequest(QString script);
179
180     void clientsConnected();
181     void clientsDisconnected();
182
183     void updateIdentityBySender();
184
185     void saveSessionState() const;
186
187 private:
188     void processMessages();
189
190     void loadSettings();
191     void initScriptEngine();
192
193     /// Hook for converting events to the old displayMsg() handlers
194     Q_INVOKABLE void processMessageEvent(MessageEvent *event);
195
196     UserId _user;
197
198     SignalProxy *_signalProxy;
199     CoreAliasManager _aliasManager;
200     // QHash<NetworkId, NetworkConnection *> _connections;
201     QHash<NetworkId, CoreNetwork *> _networks;
202     //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
203     QHash<IdentityId, CoreIdentity *> _identities;
204
205     CoreBufferSyncer *_bufferSyncer;
206     CoreBacklogManager *_backlogManager;
207     CoreBufferViewManager *_bufferViewManager;
208     CoreDccConfig *_dccConfig;
209     CoreIrcListHelper *_ircListHelper;
210     CoreNetworkConfig *_networkConfig;
211     CoreCoreInfo _coreInfo;
212     CoreTransferManager *_transferManager;
213
214     EventManager *_eventManager;
215     EventStringifier *_eventStringifier; // should eventually move into client
216     CoreSessionEventProcessor *_sessionEventProcessor;
217     CtcpParser *_ctcpParser;
218     IrcParser *_ircParser;
219
220     QScriptEngine *scriptEngine;
221
222     QList<RawMessage> _messageQueue;
223     bool _processMessages;
224     CoreIgnoreListManager _ignoreListManager;
225 };
226
227
228 struct RawMessage {
229     NetworkId networkId;
230     Message::Type type;
231     BufferInfo::Type bufferType;
232     QString target;
233     QString text;
234     QString sender;
235     Message::Flags flags;
236     RawMessage(NetworkId networkId, Message::Type type, BufferInfo::Type bufferType, const QString &target, const QString &text, const QString &sender, Message::Flags flags)
237         : networkId(networkId), type(type), bufferType(bufferType), target(target), text(text), sender(sender), flags(flags) {}
238 };
239
240 #endif