adding new settings for proper message redirection
[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   inline UserId user() const { return _user; }
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(QIODevice *device);
75   void addClient(SignalProxy *proxy);
76
77   void connectToNetwork(NetworkId);
78   void disconnectFromNetwork(NetworkId id);
79
80   void msgFromClient(BufferInfo, QString message);
81
82   //! Create an identity and propagate the changes to the clients.
83   /** \param identity The identity to be created.
84    */
85   void createIdentity(const Identity &identity);
86
87   //! Remove identity and propagate that fact to the clients.
88   /** \param identity The identity to be removed.
89    */
90   void removeIdentity(IdentityId identity);
91
92   //! Create a network and propagate the changes to the clients.
93   /** \param info The network's settings.
94    */
95   void createNetwork(const NetworkInfo &info);
96
97   //! Remove identity and propagate that fact to the clients.
98   /** \param identity The identity to be removed.
99    */
100   void removeNetwork(NetworkId network);
101
102   //! Remove a buffer and it's backlog permanently
103   /** \param bufferId The id of the buffer to be removed.
104    *  emits bufferRemoved(bufferId) on success.
105    */
106   void removeBufferRequested(BufferId bufferId);
107
108   //! Rename a Buffer for a given network
109   /* \param networkId The id of the network the buffer belongs to
110    * \param newName   The new name of the buffer
111    * \param oldName   The old name of the buffer
112    * emits bufferRenamed(bufferId, newName) on success.
113    */
114   void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
115
116   void channelJoined(NetworkId id, const QString &channel, const QString &key = QString());
117   void channelParted(NetworkId, const QString &channel);
118   QHash<QString, QString> persistentChannels(NetworkId) const;
119
120 signals:
121   void initialized();
122   void sessionState(const QVariant &);
123
124   //void msgFromGui(uint netid, QString buf, QString message);
125   void displayMsg(Message message);
126   void displayStatusMsg(QString, QString);
127
128   //void connectToIrc(QString net);
129   //void disconnectFromIrc(QString net);
130
131   void bufferInfoUpdated(BufferInfo);
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   void bufferRemoved(BufferId);
150   void bufferRenamed(BufferId, QString);
151
152 private slots:
153   void removeClient(QIODevice *dev);
154
155   void recvStatusMsgFromServer(QString msg);
156   void recvMessageFromServer(Message::Type, BufferInfo::Type, QString target, QString text, QString sender = "", Message::Flags flags = Message::None);
157   void networkConnected(NetworkId networkid);
158   void networkDisconnected(NetworkId networkid);
159
160   void destroyNetwork(NetworkId);
161
162   void identityUpdated(const QVariantMap &);
163
164   //! Called when storage updated a BufferInfo.
165   /** This emits bufferInfoUpdated() via SignalProxy, iff it's one of our buffers.
166    *  \param user       The buffer's owner (not necessarily us)
167    *  \param bufferInfo The updated BufferInfo
168    */
169   void updateBufferInfo(UserId user, const BufferInfo &bufferInfo);
170
171   void storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId);
172
173   void scriptRequest(QString script);
174
175   void clientsConnected();
176   void clientsDisconnected();
177
178 private:
179   void loadSettings();
180   void initScriptEngine();
181
182   UserId _user;
183
184   SignalProxy *_signalProxy;
185   CoreAliasManager _aliasManager;
186   QHash<NetworkId, NetworkConnection *> _connections;
187   QHash<NetworkId, CoreNetwork *> _networks;
188   //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
189   QHash<IdentityId, Identity *> _identities;
190
191   BufferSyncer *_bufferSyncer;
192   CoreBacklogManager *_backlogManager;
193   CoreBufferViewManager *_bufferViewManager;
194   CoreIrcListHelper *_ircListHelper;
195   CoreCoreInfo _coreInfo;
196
197   QScriptEngine *scriptEngine;
198
199 };
200
201 #endif