a516e2521e099464a299e18e8d16f923877171b1
[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 "coreconnection.h"
29 #include "types.h"
30
31 class Message;
32 class MessageModel;
33 class AbstractMessageProcessor;
34
35 class Identity;
36 class CertIdentity;
37 class Network;
38
39 class AbstractUi;
40 class AbstractUiMsg;
41 class NetworkModel;
42 class BufferModel;
43 class BufferSyncer;
44 class BufferViewOverlay;
45 class ClientAliasManager;
46 class ClientBacklogManager;
47 class ClientBufferViewManager;
48 class ClientIgnoreListManager;
49 class ClientIrcListHelper;
50 class ClientUserInputHandler;
51 class CoreAccountModel;
52 class CoreConnection;
53 class IrcUser;
54 class IrcChannel;
55 class NetworkConfig;
56 class SignalProxy;
57 struct NetworkInfo;
58
59 class Client : public QObject {
60   Q_OBJECT
61
62 public:
63   enum ClientMode {
64     LocalCore,
65     RemoteCore
66   };
67
68   static bool instanceExists();
69   static Client *instance();
70   static void destroy();
71   static void init(AbstractUi *);
72   static AbstractUi *mainUi();
73
74   static QList<NetworkId> networkIds();
75   static const Network * network(NetworkId);
76
77   static QList<IdentityId> identityIds();
78   static const Identity *identity(IdentityId);
79
80   //! Request creation of an identity with the given data.
81   /** The request will be sent to the core, and will be propagated back to all the clients
82    *  with a new valid IdentityId.
83    *  \param identity The identity template for the new identity. It does not need to have a valid ID.
84    */
85   static void createIdentity(const CertIdentity &identity);
86
87   //! Request update of an identity with the given data.
88   /** The request will be sent to the core, and will be propagated back to all the clients.
89    *  \param id The identity to be updated.
90    *  \param serializedData The identity's content (cf. SyncableObject::toVariantMap())
91    */
92   static void updateIdentity(IdentityId id, const QVariantMap &serializedData);
93
94   //! Request removal of the identity with the given ID from the core (and all the clients, of course).
95   /** \param id The ID of the identity to be removed.
96    */
97   static void removeIdentity(IdentityId id);
98
99   static void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
100   static void updateNetwork(const NetworkInfo &info);
101   static void removeNetwork(NetworkId id);
102
103   static inline NetworkModel *networkModel() { return instance()->_networkModel; }
104   static inline BufferModel *bufferModel() { return instance()->_bufferModel; }
105   static inline MessageModel *messageModel() { return instance()->_messageModel; }
106   static inline AbstractMessageProcessor *messageProcessor() { return instance()->_messageProcessor; }
107   static inline SignalProxy *signalProxy() { return instance()->_signalProxy; }
108
109   static inline ClientAliasManager *aliasManager() { return instance()->_aliasManager; }
110   static inline ClientBacklogManager *backlogManager() { return instance()->_backlogManager; }
111   static inline ClientIrcListHelper *ircListHelper() { return instance()->_ircListHelper; }
112   static inline ClientBufferViewManager *bufferViewManager() { return instance()->_bufferViewManager; }
113   static inline BufferViewOverlay *bufferViewOverlay() { return instance()->_bufferViewOverlay; }
114   static inline ClientUserInputHandler *inputHandler() { return instance()->_inputHandler; }
115   static inline NetworkConfig *networkConfig() { return instance()->_networkConfig; }
116   static inline ClientIgnoreListManager *ignoreListManager() { return instance()->_ignoreListManager; }
117
118   static inline CoreAccountModel *coreAccountModel() { return instance()->_coreAccountModel; }
119   static inline CoreConnection *coreConnection() { return instance()->_coreConnection; }
120   static inline CoreAccount currentCoreAccount() { return coreConnection()->currentAccount(); }
121
122   static bool isConnected();
123   static bool isSynced();
124   static bool internalCore();
125
126   static void userInput(const BufferInfo &bufferInfo, const QString &message);
127
128   static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients
129   static void removeBuffer(BufferId id);
130   static void renameBuffer(BufferId bufferId, const QString &newName);
131   static void mergeBuffersPermanently(BufferId bufferId1, BufferId bufferId2);
132   static void purgeKnownBufferIds();
133
134   static void logMessage(QtMsgType type, const char *msg);
135   static inline const QString &debugLog() { return instance()->_debugLogBuffer; }
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 logUpdated(const QString &msg);
171
172 public slots:
173   void disconnectFromCore();
174
175   void bufferRemoved(BufferId bufferId);
176   void bufferRenamed(BufferId bufferId, const QString &newName);
177   void buffersPermanentlyMerged(BufferId bufferId1, BufferId bufferId2);
178
179 private slots:
180   void setSyncedToCore();
181   void setDisconnectedFromCore();
182   void connectionStateChanged(CoreConnection::ConnectionState);
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 requestInitialBacklog();
194   void createDefaultBufferView();
195
196   void sendBufferedUserInput();
197
198 private:
199   Client(QObject *parent = 0);
200   virtual ~Client();
201   void init();
202
203   static void addNetwork(Network *);
204   static inline BufferSyncer *bufferSyncer() { return instance()->_bufferSyncer; }
205
206   static QPointer<Client> instanceptr;
207
208   SignalProxy * _signalProxy;
209   AbstractUi * _mainUi;
210   NetworkModel * _networkModel;
211   BufferModel * _bufferModel;
212   BufferSyncer * _bufferSyncer;
213   ClientAliasManager *_aliasManager;
214   ClientBacklogManager *_backlogManager;
215   ClientBufferViewManager *_bufferViewManager;
216   BufferViewOverlay *_bufferViewOverlay;
217   ClientIrcListHelper *_ircListHelper;
218   ClientUserInputHandler *_inputHandler;
219   NetworkConfig *_networkConfig;
220   ClientIgnoreListManager *_ignoreListManager;
221
222   MessageModel *_messageModel;
223   AbstractMessageProcessor *_messageProcessor;
224
225   CoreAccountModel *_coreAccountModel;
226   CoreConnection *_coreConnection;
227
228   ClientMode clientMode;
229
230   QHash<NetworkId, Network *> _networks;
231   QHash<IdentityId, Identity *> _identities;
232
233   QString _debugLogBuffer;
234   QTextStream _debugLog;
235
236   QList<QPair<BufferInfo, QString> > _userInputBuffer;
237
238   friend class CoreConnection;
239 };
240
241 #endif