Remove legacy core/client protocol version checks
[quassel.git] / src / core / coresession.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 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
31 class BufferSyncer;
32 class CoreBacklogManager;
33 class CoreBufferViewManager;
34 class CoreIrcListHelper;
35 class Identity;
36 class NetworkConnection;
37 class CoreNetwork;
38 struct NetworkInfo;
39 class SignalProxy;
40
41 class QScriptEngine;
42
43 class CoreSession : public QObject {
44   Q_OBJECT
45
46 public:
47   CoreSession(UserId, bool restoreState, QObject *parent = 0);
48   ~CoreSession();
49
50   QList<BufferInfo> buffers() const;
51   UserId user() const;
52   CoreNetwork *network(NetworkId) const;
53   NetworkConnection *networkConnection(NetworkId) const;
54   Identity *identity(IdentityId) const;
55
56   QVariant sessionState();
57
58   SignalProxy *signalProxy() const;
59
60   const AliasManager &aliasManager() const { return _aliasManager; }
61   AliasManager &aliasManager() { return _aliasManager; }
62
63   inline CoreIrcListHelper *ircListHelper() const { return _ircListHelper; }
64
65   void attachNetworkConnection(NetworkConnection *conn);
66
67   //! Return necessary data for restoring the session after restarting the core
68   void saveSessionState() const;
69   void restoreSessionState();
70
71 public slots:
72   void networkStateRequested();
73
74   void addClient(QObject *socket);
75
76   void connectToNetwork(NetworkId);
77   void disconnectFromNetwork(NetworkId id);
78
79   void msgFromClient(BufferInfo, QString message);
80
81   //! Create an identity and propagate the changes to the clients.
82   /** \param identity The identity to be created.
83    */
84   void createIdentity(const Identity &identity);
85
86   //! Remove identity and propagate that fact to the clients.
87   /** \param identity The identity to be removed.
88    */
89   void removeIdentity(IdentityId identity);
90
91   //! Create a network and propagate the changes to the clients.
92   /** \param info The network's settings.
93    */
94   void createNetwork(const NetworkInfo &info);
95
96   //! Remove identity and propagate that fact to the clients.
97   /** \param identity The identity to be removed.
98    */
99   void removeNetwork(NetworkId network);
100
101   //! Remove a buffer and it's backlog permanently
102   /** \param bufferId The id of the buffer to be removed.
103    *  emits bufferRemoved(bufferId) on success.
104    */
105   void removeBufferRequested(BufferId bufferId);
106
107   //! Rename a Buffer for a given network
108   /* \param networkId The id of the network the buffer belongs to
109    * \param newName   The new name of the buffer
110    * \param oldName   The old name of the buffer
111    * emits bufferRenamed(bufferId, newName) on success.
112    */
113   void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
114
115   void channelJoined(NetworkId id, const QString &channel, const QString &key = QString());
116   void channelParted(NetworkId, const QString &channel);
117   QHash<QString, QString> persistentChannels(NetworkId) const;
118
119 signals:
120   void initialized();
121
122   //void msgFromGui(uint netid, QString buf, QString message);
123   void displayMsg(Message message);
124   void displayStatusMsg(QString, QString);
125
126   //void connectToIrc(QString net);
127   //void disconnectFromIrc(QString net);
128
129   void bufferInfoUpdated(BufferInfo);
130
131   void scriptResult(QString result);
132
133   //! Identity has been created.
134   /** This signal is propagated to the clients to tell them that the given identity has been created.
135    *  \param identity The new identity.
136    */
137   void identityCreated(const Identity &identity);
138
139   //! Identity has been removed.
140   /** This signal is propagated to the clients to inform them about the removal of the given identity.
141    *  \param identity The identity that has been removed.
142    */
143   void identityRemoved(IdentityId identity);
144
145   void networkCreated(NetworkId);
146   void networkRemoved(NetworkId);
147   void bufferRemoved(BufferId);
148   void bufferRenamed(BufferId, QString);
149
150 private slots:
151   void removeClient(QIODevice *dev);
152
153   void recvStatusMsgFromServer(QString msg);
154   void recvMessageFromServer(Message::Type, BufferInfo::Type, QString target, QString text, QString sender = "", Message::Flags flags = Message::None);
155   void networkConnected(NetworkId networkid);
156   void networkDisconnected(NetworkId networkid);
157
158   void destroyNetwork(NetworkId);
159
160   void identityUpdated(const QVariantMap &);
161
162   //! Called when storage updated a BufferInfo.
163   /** This emits bufferInfoUpdated() via SignalProxy, iff it's one of our buffers.
164    *  \param user       The buffer's owner (not necessarily us)
165    *  \param bufferInfo The updated BufferInfo
166    */
167   void updateBufferInfo(UserId user, const BufferInfo &bufferInfo);
168
169   void storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId);
170
171   void scriptRequest(QString script);
172
173 private:
174   void loadSettings();
175   void initScriptEngine();
176
177   UserId _user;
178
179   SignalProxy *_signalProxy;
180   CoreAliasManager _aliasManager;
181   QHash<NetworkId, NetworkConnection *> _connections;
182   QHash<NetworkId, CoreNetwork *> _networks;
183   //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
184   QHash<IdentityId, Identity *> _identities;
185
186   BufferSyncer *_bufferSyncer;
187   CoreBacklogManager *_backlogManager;
188   CoreBufferViewManager *_bufferViewManager;
189   CoreIrcListHelper *_ircListHelper;
190   CoreCoreInfo _coreInfo;
191
192   QScriptEngine *scriptEngine;
193
194 };
195
196 #endif