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