7dd03c4b742422be2fd2166fb405b700c5015e31
[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   //! Update a network and propagate the changes to the clients.
97   /** \param info The updated network settings.
98    */
99   void updateNetwork(const NetworkInfo &info);
100
101   //! Remove identity and propagate that fact to the clients.
102   /** \param identity The identity to be removed.
103    */
104   void removeNetwork(NetworkId network);
105
106   //! Remove a buffer and it's backlog permanently
107   /** \param bufferId The id of the buffer to be removed.
108    *  emits bufferRemoved(bufferId) on success.
109    */
110   void removeBufferRequested(BufferId bufferId);
111
112   //! Rename a Buffer for a given network
113   /* \param networkId The id of the network the buffer belongs to
114    * \param newName   The new name of the buffer
115    * \param oldName   The old name of the buffer
116    * emits bufferRenamed(bufferId, newName) on success.
117    */
118   void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
119
120   void channelJoined(NetworkId id, const QString &channel, const QString &key = QString());
121   void channelParted(NetworkId, const QString &channel);
122   QHash<QString, QString> persistentChannels(NetworkId) const;
123
124 signals:
125   void initialized();
126
127   //void msgFromGui(uint netid, QString buf, QString message);
128   void displayMsg(Message message);
129   void displayStatusMsg(QString, QString);
130
131   //void connectToIrc(QString net);
132   //void disconnectFromIrc(QString net);
133
134   void bufferInfoUpdated(BufferInfo);
135
136   void scriptResult(QString result);
137
138   //! Identity has been created.
139   /** This signal is propagated to the clients to tell them that the given identity has been created.
140    *  \param identity The new identity.
141    */
142   void identityCreated(const Identity &identity);
143
144   //! Identity has been removed.
145   /** This signal is propagated to the clients to inform them about the removal of the given identity.
146    *  \param identity The identity that has been removed.
147    */
148   void identityRemoved(IdentityId identity);
149
150   void networkCreated(NetworkId);
151   void networkRemoved(NetworkId);
152   void bufferRemoved(BufferId);
153   void bufferRenamed(BufferId, QString);
154
155 private slots:
156   void removeClient(QIODevice *dev);
157
158   void recvStatusMsgFromServer(QString msg);
159   void recvMessageFromServer(Message::Type, BufferInfo::Type, QString target, QString text, QString sender = "", Message::Flags flags = Message::None);
160   void networkConnected(NetworkId networkid);
161   void networkDisconnected(NetworkId networkid);
162
163   void destroyNetwork(NetworkId);
164
165   void identityUpdated(const QVariantMap &);
166   //void networkUpdated(const QVariantMap &);
167
168   //! Called when storage updated a BufferInfo.
169   /** This emits bufferInfoUpdated() via SignalProxy, iff it's one of our buffers.
170    *  \param user       The buffer's owner (not necessarily us)
171    *  \param bufferInfo The updated BufferInfo
172    */
173   void updateBufferInfo(UserId user, const BufferInfo &bufferInfo);
174
175   void storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId);
176
177   void scriptRequest(QString script);
178
179 private:
180   void loadSettings();
181   void initScriptEngine();
182
183   UserId _user;
184
185   SignalProxy *_signalProxy;
186   CoreAliasManager _aliasManager;
187   QHash<NetworkId, NetworkConnection *> _connections;
188   QHash<NetworkId, CoreNetwork *> _networks;
189   //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
190   QHash<IdentityId, Identity *> _identities;
191
192   BufferSyncer *_bufferSyncer;
193   CoreBacklogManager *_backlogManager;
194   CoreBufferViewManager *_bufferViewManager;
195   CoreIrcListHelper *_ircListHelper;
196   CoreCoreInfo _coreInfo;
197
198   QScriptEngine *scriptEngine;
199
200 };
201
202 #endif