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