8fa8725b18bb282e6b1835e30e564cfa8e0b9ffd
[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   inline SignalProxy *signalProxy() const { return _signalProxy; }
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 addClient(QIODevice *device);
73   void addClient(SignalProxy *proxy);
74
75   void msgFromClient(BufferInfo, QString message);
76
77   //! Create an identity and propagate the changes to the clients.
78   /** \param identity The identity to be created.
79    */
80   void createIdentity(const Identity &identity);
81
82   //! Remove identity and propagate that fact to the clients.
83   /** \param identity The identity to be removed.
84    */
85   void removeIdentity(IdentityId identity);
86
87   //! Create a network and propagate the changes to the clients.
88   /** \param info The network's settings.
89    */
90   void createNetwork(const NetworkInfo &info);
91
92   //! Remove identity and propagate that fact to the clients.
93   /** \param identity The identity to be removed.
94    */
95   void removeNetwork(NetworkId network);
96
97   //! Remove a buffer and it's backlog permanently
98   /** \param bufferId The id of the buffer to be removed.
99    *  emits bufferRemoved(bufferId) on success.
100    */
101   void removeBufferRequested(BufferId bufferId);
102
103   //! Rename a Buffer for a given network
104   /* \param networkId The id of the network the buffer belongs to
105    * \param newName   The new name of the buffer
106    * \param oldName   The old name of the buffer
107    * emits bufferRenamed(bufferId, newName) on success.
108    */
109   void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
110
111   QHash<QString, QString> persistentChannels(NetworkId) const;
112
113 signals:
114   void initialized();
115   void sessionState(const QVariant &);
116
117   //void msgFromGui(uint netid, QString buf, QString message);
118   void displayMsg(Message message);
119   void displayStatusMsg(QString, QString);
120
121   void scriptResult(QString result);
122
123   //! Identity has been created.
124   /** This signal is propagated to the clients to tell them that the given identity has been created.
125    *  \param identity The new identity.
126    */
127   void identityCreated(const Identity &identity);
128
129   //! Identity has been removed.
130   /** This signal is propagated to the clients to inform them about the removal of the given identity.
131    *  \param identity The identity that has been removed.
132    */
133   void identityRemoved(IdentityId identity);
134
135   void networkCreated(NetworkId);
136   void networkRemoved(NetworkId);
137   void bufferRemoved(BufferId);
138   void bufferRenamed(BufferId, QString);
139
140 private slots:
141   void removeClient(QIODevice *dev);
142
143   void recvStatusMsgFromServer(QString msg);
144   void recvMessageFromServer(Message::Type, BufferInfo::Type, QString target, QString text, QString sender = "", Message::Flags flags = Message::None);
145
146   void destroyNetwork(NetworkId);
147
148   void identityUpdated(const QVariantMap &);
149
150   void storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId);
151
152   void scriptRequest(QString script);
153
154   void clientsConnected();
155   void clientsDisconnected();
156
157 private:
158   void loadSettings();
159   void initScriptEngine();
160
161   UserId _user;
162
163   SignalProxy *_signalProxy;
164   CoreAliasManager _aliasManager;
165   // QHash<NetworkId, NetworkConnection *> _connections;
166   QHash<NetworkId, CoreNetwork *> _networks;
167   //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
168   QHash<IdentityId, Identity *> _identities;
169
170   BufferSyncer *_bufferSyncer;
171   CoreBacklogManager *_backlogManager;
172   CoreBufferViewManager *_bufferViewManager;
173   CoreIrcListHelper *_ircListHelper;
174   CoreCoreInfo _coreInfo;
175
176   QScriptEngine *scriptEngine;
177
178 };
179
180 #endif