ff6b4d89367c93317174efeaf86352c24626577a
[quassel.git] / src / client / client.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 CLIENT_H_
22 #define CLIENT_H_
23
24 #include <QList>
25 #include <QPointer>
26
27 #include "bufferinfo.h"
28 #include "types.h"
29
30 class Message;
31 class MessageModel;
32 class AbstractMessageProcessor;
33
34 class Identity;
35 class CertIdentity;
36 class Network;
37
38 class AbstractUi;
39 class AbstractUiMsg;
40 class NetworkModel;
41 class BufferModel;
42 class BufferSyncer;
43 class BufferViewOverlay;
44 class ClientAliasManager;
45 class ClientBacklogManager;
46 class ClientBufferViewManager;
47 class ClientIgnoreListManager;
48 class ClientIrcListHelper;
49 class ClientSyncer;
50 class ClientUserInputHandler;
51 class CoreAccountModel;
52 class IrcUser;
53 class IrcChannel;
54 class NetworkConfig;
55 class SignalProxy;
56 struct NetworkInfo;
57
58 class Client : public QObject {
59   Q_OBJECT
60
61 public:
62   enum ClientMode {
63     LocalCore,
64     RemoteCore
65   };
66
67   static bool instanceExists();
68   static Client *instance();
69   static void destroy();
70   static void init(AbstractUi *);
71   static AbstractUi *mainUi();
72
73   static QList<NetworkId> networkIds();
74   static const Network * network(NetworkId);
75
76   static QList<IdentityId> identityIds();
77   static const Identity *identity(IdentityId);
78
79   //! Request creation of an identity with the given data.
80   /** The request will be sent to the core, and will be propagated back to all the clients
81    *  with a new valid IdentityId.
82    *  \param identity The identity template for the new identity. It does not need to have a valid ID.
83    */
84   static void createIdentity(const CertIdentity &identity);
85
86   //! Request update of an identity with the given data.
87   /** The request will be sent to the core, and will be propagated back to all the clients.
88    *  \param id The identity to be updated.
89    *  \param serializedData The identity's content (cf. SyncableObject::toVariantMap())
90    */
91   static void updateIdentity(IdentityId id, const QVariantMap &serializedData);
92
93   //! Request removal of the identity with the given ID from the core (and all the clients, of course).
94   /** \param id The ID of the identity to be removed.
95    */
96   static void removeIdentity(IdentityId id);
97
98   static void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
99   static void updateNetwork(const NetworkInfo &info);
100   static void removeNetwork(NetworkId id);
101
102   static inline NetworkModel *networkModel() { return instance()->_networkModel; }
103   static inline BufferModel *bufferModel() { return instance()->_bufferModel; }
104   static inline MessageModel *messageModel() { return instance()->_messageModel; }
105   static inline AbstractMessageProcessor *messageProcessor() { return instance()->_messageProcessor; }
106   static inline SignalProxy *signalProxy() { return instance()->_signalProxy; }
107
108   static inline ClientAliasManager *aliasManager() { return instance()->_aliasManager; }
109   static inline ClientBacklogManager *backlogManager() { return instance()->_backlogManager; }
110   static inline ClientIrcListHelper *ircListHelper() { return instance()->_ircListHelper; }
111   static inline ClientBufferViewManager *bufferViewManager() { return instance()->_bufferViewManager; }
112   static inline BufferViewOverlay *bufferViewOverlay() { return instance()->_bufferViewOverlay; }
113   static inline ClientUserInputHandler *inputHandler() { return instance()->_inputHandler; }
114   static inline NetworkConfig *networkConfig() { return instance()->_networkConfig; }
115   static inline ClientIgnoreListManager *ignoreListManager() { return instance()->_ignoreListManager; }
116
117   static inline CoreAccountModel *coreAccountModel() { return instance()->_coreAccountModel; }
118   static AccountId currentCoreAccount();
119
120   static bool isConnected();
121   static bool isSynced();
122   static inline bool internalCore() { return instance()->_internalCore; }
123
124   static void userInput(const BufferInfo &bufferInfo, const QString &message);
125
126   static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients
127   static void removeBuffer(BufferId id);
128   static void renameBuffer(BufferId bufferId, const QString &newName);
129   static void mergeBuffersPermanently(BufferId bufferId1, BufferId bufferId2);
130   static void purgeKnownBufferIds();
131
132   static void logMessage(QtMsgType type, const char *msg);
133   static inline const QString &debugLog() { return instance()->_debugLogBuffer; }
134
135   static inline void registerClientSyncer(ClientSyncer *syncer) { emit instance()->newClientSyncer(syncer); }
136
137 signals:
138   void requestNetworkStates();
139
140   void showConfigWizard(const QVariantMap &coredata);
141
142   void connected();
143   void disconnected();
144   void coreConnectionStateChanged(bool);
145
146   //! The identity with the given ID has been newly created in core and client.
147   /** \param id The ID of the newly created identity.
148    */
149   void identityCreated(IdentityId id);
150
151   //! The identity with the given ID has been removed.
152   /** Upon emitting this signal, the identity is already gone from the core, and it will
153    *  be deleted from the client immediately afterwards, so connected slots need to clean
154    *  up their stuff.
155    *  \param id The ID of the identity about to be removed.
156    */
157   void identityRemoved(IdentityId id);
158
159   //! Sent to the core when an identity shall be created. Should not be used elsewhere.
160   void requestCreateIdentity(const Identity &, const QVariantMap &);
161   //! Sent to the core when an identity shall be removed. Should not be used elsewhere.
162   void requestRemoveIdentity(IdentityId);
163
164   void networkCreated(NetworkId id);
165   void networkRemoved(NetworkId id);
166
167   void requestCreateNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
168   void requestRemoveNetwork(NetworkId);
169
170   void newClientSyncer(ClientSyncer *);
171
172   void logUpdated(const QString &msg);
173
174 public slots:
175   void disconnectFromCore();
176
177   void bufferRemoved(BufferId bufferId);
178   void bufferRenamed(BufferId bufferId, const QString &newName);
179   void buffersPermanentlyMerged(BufferId bufferId1, BufferId bufferId2);
180
181 private slots:
182   void disconnectedFromCore();
183
184   void recvMessage(const Message &message);
185   void recvStatusMsg(QString network, QString message);
186
187   void networkDestroyed();
188   void coreIdentityCreated(const Identity &);
189   void coreIdentityRemoved(IdentityId);
190   void coreNetworkCreated(NetworkId);
191   void coreNetworkRemoved(NetworkId);
192
193   void setConnectedToCore(AccountId id, QIODevice *socket = 0);
194   void setSyncedToCore();
195   void requestInitialBacklog();
196   void createDefaultBufferView();
197
198   void sendBufferedUserInput();
199
200 private:
201   Client(QObject *parent = 0);
202   virtual ~Client();
203   void init();
204
205   static void addNetwork(Network *);
206   static void setCurrentCoreAccount(const AccountId &);
207   static inline BufferSyncer *bufferSyncer() { return instance()->_bufferSyncer; }
208
209   static QPointer<Client> instanceptr;
210
211   SignalProxy * _signalProxy;
212   AbstractUi * _mainUi;
213   NetworkModel * _networkModel;
214   BufferModel * _bufferModel;
215   BufferSyncer * _bufferSyncer;
216   ClientAliasManager *_aliasManager;
217   ClientBacklogManager *_backlogManager;
218   ClientBufferViewManager *_bufferViewManager;
219   BufferViewOverlay *_bufferViewOverlay;
220   ClientIrcListHelper *_ircListHelper;
221   ClientUserInputHandler *_inputHandler;
222   NetworkConfig *_networkConfig;
223   ClientIgnoreListManager *_ignoreListManager;
224
225   MessageModel *_messageModel;
226   AbstractMessageProcessor *_messageProcessor;
227
228   CoreAccountModel *_coreAccountModel;
229
230   ClientMode clientMode;
231
232   bool _connectedToCore, _syncedToCore;
233   bool _internalCore;
234
235   QHash<NetworkId, Network *> _networks;
236   QHash<IdentityId, Identity *> _identities;
237
238   static AccountId _currentCoreAccount;
239
240   QString _debugLogBuffer;
241   QTextStream _debugLog;
242
243   QList<QPair<BufferInfo, QString> > _userInputBuffer;
244
245   friend class ClientSyncer;
246 };
247
248 #endif