Move QssParser out of UiStyle
[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 "message.h"
30 #include "storage.h"
31
32 class CoreBacklogManager;
33 class CoreBufferSyncer;
34 class CoreBufferViewManager;
35 class CoreIrcListHelper;
36 class CoreNetworkConfig;
37 class Identity;
38 class CoreIdentity;
39 class NetworkConnection;
40 class CoreNetwork;
41 struct NetworkInfo;
42 class SignalProxy;
43
44 class QScriptEngine;
45
46 class CoreSession : public QObject {
47   Q_OBJECT
48
49 public:
50   CoreSession(UserId, bool restoreState, QObject *parent = 0);
51   ~CoreSession();
52
53   QList<BufferInfo> buffers() const;
54   inline UserId user() const { return _user; }
55   CoreNetwork *network(NetworkId) const;
56   CoreIdentity *identity(IdentityId) const;
57   inline CoreNetworkConfig *networkConfig() const { return _networkConfig; }
58   NetworkConnection *networkConnection(NetworkId) const;
59
60   QVariant sessionState();
61
62   inline SignalProxy *signalProxy() const { return _signalProxy; }
63
64   const AliasManager &aliasManager() const { return _aliasManager; }
65   AliasManager &aliasManager() { return _aliasManager; }
66
67   inline CoreIrcListHelper *ircListHelper() const { return _ircListHelper; }
68
69 //   void attachNetworkConnection(NetworkConnection *conn);
70
71   //! Return necessary data for restoring the session after restarting the core
72   void saveSessionState() const;
73   void restoreSessionState();
74
75 public slots:
76   void addClient(QIODevice *device);
77   void addClient(SignalProxy *proxy);
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, const QVariantMap &additional);
85   void createIdentity(const CoreIdentity &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, const QStringList &persistentChannels = QStringList());
96
97   //! Remove network and propagate that fact to the clients.
98   /** \param network The id of the network to be removed.
99    */
100   void removeNetwork(NetworkId network);
101
102   //! Rename a Buffer for a given network
103   /* \param networkId The id of the network the buffer belongs to
104    * \param newName   The new name of the buffer
105    * \param oldName   The old name of the buffer
106    */
107   void renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName);
108
109   QHash<QString, QString> persistentChannels(NetworkId) const;
110
111 signals:
112   void initialized();
113   void sessionState(const QVariant &);
114
115   //void msgFromGui(uint netid, QString buf, QString message);
116   void displayMsg(Message message);
117   void displayStatusMsg(QString, QString);
118
119   void scriptResult(QString result);
120
121   //! Identity has been created.
122   /** This signal is propagated to the clients to tell them that the given identity has been created.
123    *  \param identity The new identity.
124    */
125   void identityCreated(const Identity &identity);
126
127   //! Identity has been removed.
128   /** This signal is propagated to the clients to inform them about the removal of the given identity.
129    *  \param identity The identity that has been removed.
130    */
131   void identityRemoved(IdentityId identity);
132
133   void networkCreated(NetworkId);
134   void networkRemoved(NetworkId);
135
136 private slots:
137   void removeClient(QIODevice *dev);
138
139   void recvStatusMsgFromServer(QString msg);
140   void recvMessageFromServer(NetworkId networkId, Message::Type, BufferInfo::Type, const QString &target, const QString &text, const QString &sender = "", Message::Flags flags = Message::None);
141
142   void destroyNetwork(NetworkId);
143
144   void scriptRequest(QString script);
145
146   void clientsConnected();
147   void clientsDisconnected();
148
149   void updateIdentityBySender();
150
151 protected:
152   virtual void customEvent(QEvent *event);
153
154 private:
155   void loadSettings();
156   void initScriptEngine();
157   void processMessages();
158
159   UserId _user;
160
161   SignalProxy *_signalProxy;
162   CoreAliasManager _aliasManager;
163   // QHash<NetworkId, NetworkConnection *> _connections;
164   QHash<NetworkId, CoreNetwork *> _networks;
165   //  QHash<NetworkId, CoreNetwork *> _networksToRemove;
166   QHash<IdentityId, CoreIdentity *> _identities;
167
168   CoreBufferSyncer *_bufferSyncer;
169   CoreBacklogManager *_backlogManager;
170   CoreBufferViewManager *_bufferViewManager;
171   CoreIrcListHelper *_ircListHelper;
172   CoreNetworkConfig *_networkConfig;
173   CoreCoreInfo _coreInfo;
174
175   QScriptEngine *scriptEngine;
176
177   struct RawMessage {
178     NetworkId networkId;
179     Message::Type type;
180     BufferInfo::Type bufferType;
181     QString target;
182     QString text;
183     QString sender;
184     Message::Flags flags;
185     RawMessage(NetworkId networkId, Message::Type type, BufferInfo::Type bufferType, const QString &target, const QString &text, const QString &sender, Message::Flags flags)
186       : networkId(networkId), type(type), bufferType(bufferType), target(target), text(text), sender(sender), flags(flags) {}
187   };
188   QList<RawMessage> _messageQueue;
189   bool _processMessages;
190 };
191
192 #endif