89ef829da0674e7e6ce677d644e99315d907b629
[quassel.git] / src / client / client.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #include <QList>
24 #include <QPointer>
25
26 #include "bufferinfo.h"
27 #include "coreaccount.h"
28 #include "coreconnection.h"
29 #include "highlightrulemanager.h"
30 #include "quassel.h"
31 #include "types.h"
32
33 class Message;
34 class MessageModel;
35 class AbstractMessageProcessor;
36
37 class Identity;
38 class CertIdentity;
39 class Network;
40
41 class AbstractUi;
42 class AbstractUiMsg;
43 class NetworkModel;
44 class BufferModel;
45 class BufferSyncer;
46 class BufferViewOverlay;
47 class ClientAliasManager;
48 class ClientBacklogManager;
49 class ClientBufferViewManager;
50 class ClientIgnoreListManager;
51 class ClientIrcListHelper;
52 class ClientTransferManager;
53 class ClientUserInputHandler;
54 class CoreAccountModel;
55 class CoreConnection;
56 class DccConfig;
57 class IrcUser;
58 class IrcChannel;
59 class NetworkConfig;
60 class SignalProxy;
61 class TransferModel;
62
63 struct NetworkInfo;
64
65 class Client : public QObject
66 {
67     Q_OBJECT
68
69 public:
70     enum ClientMode {
71         LocalCore,
72         RemoteCore
73     };
74
75     static bool instanceExists();
76     static Client *instance();
77     static void destroy();
78     static void init(AbstractUi *);
79     static AbstractUi *mainUi();
80
81     static QList<NetworkId> networkIds();
82     static const Network *network(NetworkId);
83
84     static QList<IdentityId> identityIds();
85     static const Identity *identity(IdentityId);
86
87     //! Request creation 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      *  with a new valid IdentityId.
90      *  \param identity The identity template for the new identity. It does not need to have a valid ID.
91      */
92     static void createIdentity(const CertIdentity &identity);
93
94     //! Request update of an identity with the given data.
95     /** The request will be sent to the core, and will be propagated back to all the clients.
96      *  \param id The identity to be updated.
97      *  \param serializedData The identity's content (cf. SyncableObject::toVariantMap())
98      */
99     static void updateIdentity(IdentityId id, const QVariantMap &serializedData);
100
101     //! Request removal of the identity with the given ID from the core (and all the clients, of course).
102     /** \param id The ID of the identity to be removed.
103      */
104     static void removeIdentity(IdentityId id);
105
106     static void createNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
107     static void updateNetwork(const NetworkInfo &info);
108     static void removeNetwork(NetworkId id);
109
110     static inline NetworkModel *networkModel() { return instance()->_networkModel; }
111     static inline BufferModel *bufferModel() { return instance()->_bufferModel; }
112     static inline MessageModel *messageModel() { return instance()->_messageModel; }
113     static inline AbstractMessageProcessor *messageProcessor() { return instance()->_messageProcessor; }
114     static inline SignalProxy *signalProxy() { return instance()->_signalProxy; }
115
116     static inline ClientAliasManager *aliasManager() { return instance()->_aliasManager; }
117     static inline ClientBacklogManager *backlogManager() { return instance()->_backlogManager; }
118     static inline DccConfig *dccConfig() { return instance()->_dccConfig; }
119     static inline ClientIrcListHelper *ircListHelper() { return instance()->_ircListHelper; }
120     static inline ClientBufferViewManager *bufferViewManager() { return instance()->_bufferViewManager; }
121     static inline BufferViewOverlay *bufferViewOverlay() { return instance()->_bufferViewOverlay; }
122     static inline ClientUserInputHandler *inputHandler() { return instance()->_inputHandler; }
123     static inline NetworkConfig *networkConfig() { return instance()->_networkConfig; }
124     static inline ClientIgnoreListManager *ignoreListManager() { return instance()->_ignoreListManager; }
125     static inline HighlightRuleManager *highlightRuleManager() { return instance()->_highlightRuleManager; }
126     static inline ClientTransferManager *transferManager() { return instance()->_transferManager; }
127     static inline TransferModel *transferModel() { return instance()->_transferModel; }
128
129     static inline BufferSyncer *bufferSyncer() { return instance()->_bufferSyncer; }
130
131     static inline CoreAccountModel *coreAccountModel() { return instance()->_coreAccountModel; }
132     static inline CoreConnection *coreConnection() { return instance()->_coreConnection; }
133     static inline CoreAccount currentCoreAccount() { return coreConnection()->currentAccount(); }
134     static inline Quassel::Features coreFeatures() { return _coreFeatures; }
135
136     static void setCoreFeatures(Quassel::Features features);
137
138     static bool isConnected();
139     static bool internalCore();
140
141     static void userInput(const BufferInfo &bufferInfo, const QString &message);
142
143     static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients
144     static void setMarkerLine(BufferId id, const MsgId &msgId); // this is synced to core and other clients
145     static MsgId markerLine(BufferId id);
146
147     static void removeBuffer(BufferId id);
148     static void renameBuffer(BufferId bufferId, const QString &newName);
149     static void mergeBuffersPermanently(BufferId bufferId1, BufferId bufferId2);
150     static void purgeKnownBufferIds();
151
152     static void changePassword(const QString &oldPassword, const QString &newPassword);
153     static void kickClient(int peerId);
154
155 #if QT_VERSION < 0x050000
156     static void logMessage(QtMsgType type, const char *msg);
157 #else
158     static void logMessage(QtMsgType, const QMessageLogContext&, const QString&);
159 #endif
160     static inline const QString &debugLog() { return instance()->_debugLogBuffer; }
161
162 signals:
163     void requestNetworkStates();
164
165     void showConfigWizard(const QVariantMap &coredata);
166
167     void connected();
168     void disconnected();
169     void coreConnectionStateChanged(bool);
170
171     //! The identity with the given ID has been newly created in core and client.
172     /** \param id The ID of the newly created identity.
173      */
174     void identityCreated(IdentityId id);
175
176     //! The identity with the given ID has been removed.
177     /** Upon emitting this signal, the identity is already gone from the core, and it will
178      *  be deleted from the client immediately afterwards, so connected slots need to clean
179      *  up their stuff.
180      *  \param id The ID of the identity about to be removed.
181      */
182     void identityRemoved(IdentityId id);
183
184     //! Sent to the core when an identity shall be created. Should not be used elsewhere.
185     void requestCreateIdentity(const Identity &, const QVariantMap &);
186     //! Sent to the core when an identity shall be removed. Should not be used elsewhere.
187     void requestRemoveIdentity(IdentityId);
188
189     void networkCreated(NetworkId id);
190     void networkRemoved(NetworkId id);
191
192     void requestCreateNetwork(const NetworkInfo &info, const QStringList &persistentChannels = QStringList());
193     void requestRemoveNetwork(NetworkId);
194
195     void logUpdated(const QString &msg);
196
197     //! Emitted when a buffer has been marked as read
198     /** This is currently triggered by setting lastSeenMsg, either local or remote,
199      *  or by bringing the window to front.
200      *  \param id The buffer that has been marked as read
201      */
202     void bufferMarkedAsRead(BufferId id);
203
204     //! Requests a password change (user name must match the currently logged in user)
205     void requestPasswordChange(PeerPtr peer, const QString &userName, const QString &oldPassword, const QString &newPassword);
206
207     void requestKickClient(int peerId);
208     void passwordChanged(bool success);
209
210 public slots:
211     void disconnectFromCore();
212
213     void bufferRemoved(BufferId bufferId);
214     void bufferRenamed(BufferId bufferId, const QString &newName);
215     void buffersPermanentlyMerged(BufferId bufferId1, BufferId bufferId2);
216
217     void markBufferAsRead(BufferId id);
218
219 private slots:
220     void setSyncedToCore();
221     void setDisconnectedFromCore();
222     void connectionStateChanged(CoreConnection::ConnectionState);
223
224     void recvMessage(const Message &message);
225     void recvStatusMsg(QString network, QString message);
226
227     void networkDestroyed();
228     void coreIdentityCreated(const Identity &);
229     void coreIdentityRemoved(IdentityId);
230     void coreNetworkCreated(NetworkId);
231     void coreNetworkRemoved(NetworkId);
232
233     void corePasswordChanged(PeerPtr, bool success);
234
235     void finishConnectionInitialization();
236
237     void sendBufferedUserInput();
238
239 private:
240     Client(QObject *parent = 0);
241     virtual ~Client();
242     void init();
243
244     void requestInitialBacklog();
245
246     static void addNetwork(Network *);
247
248     static QPointer<Client> instanceptr;
249
250     SignalProxy *_signalProxy;
251     AbstractUi *_mainUi;
252     NetworkModel *_networkModel;
253     BufferModel *_bufferModel;
254     BufferSyncer *_bufferSyncer;
255     ClientAliasManager *_aliasManager;
256     ClientBacklogManager *_backlogManager;
257     ClientBufferViewManager *_bufferViewManager;
258     BufferViewOverlay *_bufferViewOverlay;
259     DccConfig *_dccConfig;
260     ClientIrcListHelper *_ircListHelper;
261     ClientUserInputHandler *_inputHandler;
262     NetworkConfig *_networkConfig;
263     ClientIgnoreListManager *_ignoreListManager;
264     HighlightRuleManager *_highlightRuleManager;
265     ClientTransferManager *_transferManager;
266     TransferModel *_transferModel;
267
268     MessageModel *_messageModel;
269     AbstractMessageProcessor *_messageProcessor;
270
271     CoreAccountModel *_coreAccountModel;
272     CoreConnection *_coreConnection;
273
274     ClientMode clientMode;
275
276     QHash<NetworkId, Network *> _networks;
277     QHash<IdentityId, Identity *> _identities;
278
279     bool _connected;
280     static Quassel::Features _coreFeatures;
281
282     QString _debugLogBuffer;
283     QTextStream _debugLog;
284
285     QList<QPair<BufferInfo, QString> > _userInputBuffer;
286
287     friend class CoreConnection;
288 };