Switched client-side account data to using AccountId now rather than the account...
[quassel.git] / src / client / client.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 _CLIENT_H_
22 #define _CLIENT_H_
23
24 #include <QAbstractSocket>
25 #include <QTcpSocket>
26 #include <QList>
27 #include <QPointer>
28
29 #include "buffer.h" // needed for activity lvl
30 class BufferInfo;
31 class Message;
32
33 class Identity;
34 class Network;
35
36
37 class AbstractUi;
38 class AbstractUiMsg;
39 class NetworkModel;
40 class BufferModel;
41 class IrcUser;
42 class IrcChannel;
43 class SignalProxy;
44 struct NetworkInfo;
45
46 class QTimer;
47
48
49 class Client : public QObject {
50   Q_OBJECT
51
52 public:
53   static Client *instance();
54   static void destroy();
55   static void init(AbstractUi *);
56
57   static QList<BufferInfo> allBufferInfos();
58   static QList<Buffer *> buffers();
59   static Buffer *buffer(BufferId bufferUid);
60   static Buffer *buffer(BufferInfo);
61   static Buffer *monitorBuffer();
62
63   static QList<NetworkId> networkIds();
64   static const Network * network(NetworkId);
65
66   static QList<IdentityId> identityIds();
67   static const Identity * identity(IdentityId);
68
69   //! Request creation of an identity with the given data.
70   /** The request will be sent to the core, and will be propagated back to all the clients
71    *  with a new valid IdentityId.
72    *  \param identity The identity template for the new identity. It does not need to have a valid ID.
73    */
74   static void createIdentity(const Identity &identity);
75
76   //! Request update of an identity with the given data.
77   /** The request will be sent to the core, and will be propagated back to all the clients.
78    *  \param identity The identity to be updated.
79    */
80   static void updateIdentity(const Identity &identity);
81
82   //! Request removal of the identity with the given ID from the core (and all the clients, of course).
83   /** \param id The ID of the identity to be removed.
84    */
85   static void removeIdentity(IdentityId id);
86
87   static void createNetwork(const NetworkInfo &info);
88   static void updateNetwork(const NetworkInfo &info);
89   static void removeNetwork(NetworkId id);
90
91   static NetworkModel *networkModel();
92   static BufferModel *bufferModel();
93   static SignalProxy *signalProxy();
94
95   static AccountId currentCoreAccount();
96
97   static AbstractUiMsg *layoutMsg(const Message &);
98
99   static bool isConnected();
100   static bool isSynced();
101
102   static void userInput(BufferInfo bufferInfo, QString message);
103
104   enum ClientMode { LocalCore, RemoteCore };
105
106 signals:
107   void sendInput(BufferInfo, QString message);
108   void showBuffer(Buffer *);
109   void bufferUpdated(BufferInfo bufferInfo);
110   void backlogReceived(Buffer *, QList<Message>);
111   void requestBacklog(BufferInfo, QVariant, QVariant);
112   void requestNetworkStates();
113
114   void showConfigWizard(const QVariantMap &coredata);
115
116   void connected();
117   void disconnected();
118   void coreConnectionStateChanged(bool);
119
120   //! The identity with the given ID has been newly created in core and client.
121   /** \param id The ID of the newly created identity.
122    */
123   void identityCreated(IdentityId id);
124
125   //! The identity with the given ID has been removed.
126   /** Upon emitting this signal, the identity is already gone from the core, and it will
127    *  be deleted from the client immediately afterwards, so connected slots need to clean
128    *  up their stuff.
129    *  \param id The ID of the identity about to be removed.
130    */
131   void identityRemoved(IdentityId id);
132
133   //! Sent to the core when an identity shall be created. Should not be used elsewhere.
134   void requestCreateIdentity(const Identity &);
135   //! Sent to the core when an identity shall be updated. Should not be used elsewhere.
136   void requestUpdateIdentity(const Identity &);
137   //! Sent to the core when an identity shall be removed. Should not be used elsewhere.
138   void requestRemoveIdentity(IdentityId);
139
140   void networkCreated(NetworkId id);
141   void networkRemoved(NetworkId id);
142
143   void requestCreateNetwork(const NetworkInfo &info);
144   void requestUpdateNetwork(const NetworkInfo &info);
145   void requestRemoveNetwork(NetworkId);
146
147 public slots:
148   //void selectBuffer(Buffer *);
149
150   void disconnectFromCore();
151
152   void setCoreConfiguration(const QVariantMap &settings);
153
154 private slots:
155   //void coreSocketError(QAbstractSocket::SocketError);
156
157   //void networkConnected(NetworkId);
158   //void networkDisconnected(NetworkId);
159
160   void recvMessage(const Message &message);
161   void recvStatusMsg(QString network, QString message);
162   void recvBacklogData(BufferInfo, QVariantList, bool);
163   void updateBufferInfo(BufferInfo);
164
165   void layoutMsg();
166
167   void bufferDestroyed();
168   void networkDestroyed();
169   void coreIdentityCreated(const Identity &);
170   void coreIdentityRemoved(IdentityId);
171   void coreNetworkCreated(NetworkId);
172   void coreNetworkRemoved(NetworkId);
173
174   void setConnectedToCore(QIODevice *socket, AccountId id);
175   void setSyncedToCore();
176
177 private:
178   Client(QObject *parent = 0);
179   virtual ~Client();
180   void init();
181
182   static void addNetwork(Network *);
183
184   static void setCurrentCoreAccount(AccountId);
185
186   static QPointer<Client> instanceptr;
187
188   QPointer<QIODevice> socket;
189   QPointer<SignalProxy> _signalProxy;
190   QPointer<AbstractUi> mainUi;
191   QPointer<NetworkModel> _networkModel;
192   QPointer<BufferModel> _bufferModel;
193
194   ClientMode clientMode;
195
196   bool _connectedToCore, _syncedToCore;
197
198   QHash<BufferId, Buffer *> _buffers;
199   QHash<NetworkId, Network *> _networks;
200   QHash<IdentityId, Identity *> _identities;
201
202   Buffer *_monitorBuffer;
203
204   QTimer *layoutTimer;
205   QList<Buffer *> layoutQueue;
206
207   static AccountId _currentCoreAccount;
208
209   friend class ClientSyncer;
210 };
211
212 #endif