1 /***************************************************************************
2 * Copyright (C) 2005-08 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
24 #include "coresession.h"
25 #include "networkconnection.h"
27 #include "signalproxy.h"
28 #include "buffersyncer.h"
29 #include "corebacklogmanager.h"
30 #include "corebufferviewmanager.h"
35 #include "ircchannel.h"
39 #include "coreusersettings.h"
41 CoreSession::CoreSession(UserId uid, bool restoreState, QObject *parent)
44 _signalProxy(new SignalProxy(SignalProxy::Server, 0, this)),
45 _bufferSyncer(new BufferSyncer(this)),
46 _backlogManager(new CoreBacklogManager(this)),
47 _bufferViewManager(new CoreBufferViewManager(_signalProxy, this)),
48 scriptEngine(new QScriptEngine(this))
51 SignalProxy *p = signalProxy();
52 connect(p, SIGNAL(peerRemoved(QIODevice *)), this, SLOT(removeClient(QIODevice *)));
54 //p->attachSlot(SIGNAL(disconnectFromNetwork(NetworkId)), this, SLOT(disconnectFromNetwork(NetworkId))); // FIXME
55 p->attachSlot(SIGNAL(sendInput(BufferInfo, QString)), this, SLOT(msgFromClient(BufferInfo, QString)));
56 p->attachSignal(this, SIGNAL(displayMsg(Message)));
57 p->attachSignal(this, SIGNAL(displayStatusMsg(QString, QString)));
58 p->attachSignal(this, SIGNAL(bufferInfoUpdated(BufferInfo)));
60 p->attachSignal(this, SIGNAL(identityCreated(const Identity &)));
61 p->attachSignal(this, SIGNAL(identityRemoved(IdentityId)));
62 p->attachSlot(SIGNAL(createIdentity(const Identity &)), this, SLOT(createIdentity(const Identity &)));
63 p->attachSlot(SIGNAL(updateIdentity(const Identity &)), this, SLOT(updateIdentity(const Identity &)));
64 p->attachSlot(SIGNAL(removeIdentity(IdentityId)), this, SLOT(removeIdentity(IdentityId)));
66 p->attachSignal(this, SIGNAL(networkCreated(NetworkId)));
67 p->attachSignal(this, SIGNAL(networkRemoved(NetworkId)));
68 p->attachSlot(SIGNAL(createNetwork(const NetworkInfo &)), this, SLOT(createNetwork(const NetworkInfo &)));
69 p->attachSlot(SIGNAL(updateNetwork(const NetworkInfo &)), this, SLOT(updateNetwork(const NetworkInfo &)));
70 p->attachSlot(SIGNAL(removeNetwork(NetworkId)), this, SLOT(removeNetwork(NetworkId)));
76 QHash<BufferId, MsgId> lastSeenHash = Core::bufferLastSeenMsgIds(user());
77 foreach(BufferId id, lastSeenHash.keys())
78 _bufferSyncer->requestSetLastSeenMsg(id, lastSeenHash[id]);
80 connect(_bufferSyncer, SIGNAL(lastSeenMsgSet(BufferId, MsgId)), this, SLOT(storeBufferLastSeenMsg(BufferId, MsgId)));
81 connect(_bufferSyncer, SIGNAL(removeBufferRequested(BufferId)), this, SLOT(removeBufferRequested(BufferId)));
82 connect(this, SIGNAL(bufferRemoved(BufferId)), _bufferSyncer, SLOT(removeBuffer(BufferId)));
83 connect(this, SIGNAL(bufferRenamed(BufferId, QString)), _bufferSyncer, SLOT(renameBuffer(BufferId, QString)));
84 p->synchronize(_bufferSyncer);
87 // init BacklogManager;
88 p->synchronize(_backlogManager);
90 // Restore session state
91 if(restoreState) restoreSessionState();
96 CoreSession::~CoreSession() {
98 foreach(NetworkConnection *conn, _connections.values()) {
101 foreach(Network *net, _networks.values()) {
106 UserId CoreSession::user() const {
110 Network *CoreSession::network(NetworkId id) const {
111 if(_networks.contains(id)) return _networks[id];
115 NetworkConnection *CoreSession::networkConnection(NetworkId id) const {
116 if(_connections.contains(id)) return _connections[id];
120 Identity *CoreSession::identity(IdentityId id) const {
121 if(_identities.contains(id)) return _identities[id];
125 void CoreSession::loadSettings() {
126 CoreUserSettings s(user());
128 foreach(IdentityId id, s.identityIds()) {
129 Identity *i = new Identity(s.identity(id), this);
131 qWarning() << QString("Invalid identity! Removing...");
132 s.removeIdentity(id);
136 if(_identities.contains(i->id())) {
137 qWarning() << "Duplicate identity, ignoring!";
141 _identities[i->id()] = i;
142 signalProxy()->synchronize(i);
144 if(!_identities.count()) {
147 i.setIdentityName(tr("Default Identity"));
151 foreach(NetworkInfo info, Core::networks(user())) {
156 void CoreSession::saveSessionState() const {
160 void CoreSession::restoreSessionState() {
161 QList<NetworkId> nets = Core::connectedNetworks(user());
162 foreach(NetworkId id, nets) {
163 connectToNetwork(id);
167 void CoreSession::updateBufferInfo(UserId uid, const BufferInfo &bufinfo) {
168 if(uid == user()) emit bufferInfoUpdated(bufinfo);
171 void CoreSession::connectToNetwork(NetworkId id) {
172 Network *net = network(id);
174 qWarning() << "Connect to unknown network requested! net:" << id << "user:" << user();
178 NetworkConnection *conn = networkConnection(id);
180 conn = new NetworkConnection(net, this);
181 _connections[id] = conn;
182 attachNetworkConnection(conn);
184 conn->connectToIrc();
187 void CoreSession::attachNetworkConnection(NetworkConnection *conn) {
188 connect(conn, SIGNAL(connected(NetworkId)), this, SLOT(networkConnected(NetworkId)));
189 connect(conn, SIGNAL(quitRequested(NetworkId)), this, SLOT(networkDisconnected(NetworkId)));
191 // I guess we don't need these anymore, client-side can just connect the network's signals directly
192 //signalProxy()->attachSignal(conn, SIGNAL(connected(NetworkId)), SIGNAL(networkConnected(NetworkId)));
193 //signalProxy()->attachSignal(conn, SIGNAL(disconnected(NetworkId)), SIGNAL(networkDisconnected(NetworkId)));
195 connect(conn, SIGNAL(displayMsg(Message::Type, BufferInfo::Type, QString, QString, QString, quint8)),
196 this, SLOT(recvMessageFromServer(Message::Type, BufferInfo::Type, QString, QString, QString, quint8)));
197 connect(conn, SIGNAL(displayStatusMsg(QString)), this, SLOT(recvStatusMsgFromServer(QString)));
199 connect(conn, SIGNAL(nickChanged(const NetworkId &, const QString &, const QString &)),
200 this, SLOT(renameBuffer(const NetworkId &, const QString &, const QString &)));
201 connect(conn, SIGNAL(channelJoined(NetworkId, const QString &, const QString &)),
202 this, SLOT(channelJoined(NetworkId, const QString &, const QString &)));
203 connect(conn, SIGNAL(channelParted(NetworkId, const QString &)),
204 this, SLOT(channelParted(NetworkId, const QString &)));
207 void CoreSession::disconnectFromNetwork(NetworkId id) {
208 if(!_connections.contains(id)) return;
209 _connections[id]->disconnectFromIrc();
212 void CoreSession::networkStateRequested() {
215 void CoreSession::addClient(QObject *dev) { // this is QObject* so we can use it in signal connections
216 QIODevice *device = qobject_cast<QIODevice *>(dev);
218 qWarning() << "Invoking CoreSession::addClient with a QObject that is not a QIODevice!";
220 signalProxy()->addPeer(device);
222 reply["MsgType"] = "SessionInit";
223 reply["SessionState"] = sessionState();
224 SignalProxy::writeDataToDevice(device, reply);
228 void CoreSession::removeClient(QIODevice *iodev) {
229 // no checks for validity check - privateslot...
230 QTcpSocket *socket = qobject_cast<QTcpSocket *>(iodev);
232 qDebug() << qPrintable(tr("Client %1 disconnected (UserId: %2).").arg(socket->peerAddress().toString()).arg(user().toInt()));
234 qDebug() << "Local client disconnedted.";
235 disconnect(socket, 0, this, 0);
236 socket->deleteLater();
239 SignalProxy *CoreSession::signalProxy() const {
243 // FIXME we need a sane way for creating buffers!
244 void CoreSession::networkConnected(NetworkId networkid) {
245 Core::bufferInfo(user(), networkid, BufferInfo::StatusBuffer); // create status buffer
246 Core::setNetworkConnected(user(), networkid, true);
249 // called now only on /quit and requested disconnects, not on normal disconnects!
250 void CoreSession::networkDisconnected(NetworkId networkid) {
251 // if the network has already been removed, we don't have a networkconnection left either, so we don't do anything
252 // make sure to not depend on the network still existing when calling this function!
253 if(_connections.contains(networkid)) {
254 Core::setNetworkConnected(user(), networkid, false);
255 _connections.take(networkid)->deleteLater();
259 void CoreSession::channelJoined(NetworkId id, const QString &channel, const QString &key) {
260 Core::setChannelPersistent(user(), id, channel, true);
261 Core::setPersistentChannelKey(user(), id, channel, key);
264 void CoreSession::channelParted(NetworkId id, const QString &channel) {
265 Core::setChannelPersistent(user(), id, channel, false);
268 QHash<QString, QString> CoreSession::persistentChannels(NetworkId id) const {
269 return Core::persistentChannels(user(), id);
270 return QHash<QString, QString>();
273 // FIXME switch to BufferId
274 void CoreSession::msgFromClient(BufferInfo bufinfo, QString msg) {
275 NetworkConnection *conn = networkConnection(bufinfo.networkId());
277 conn->userInput(bufinfo, msg);
279 qWarning() << "Trying to send to unconnected network:" << msg;
283 // ALL messages coming pass through these functions before going to the GUI.
284 // So this is the perfect place for storing the backlog and log stuff.
285 void CoreSession::recvMessageFromServer(Message::Type type, BufferInfo::Type bufferType, QString target, QString text, QString sender, quint8 flags) {
286 NetworkConnection *netCon = qobject_cast<NetworkConnection*>(this->sender());
289 BufferInfo bufferInfo = Core::bufferInfo(user(), netCon->networkId(), bufferType, target);
290 Message msg(bufferInfo, type, text, sender, flags);
291 msg.setMsgId(Core::storeMessage(msg));
292 Q_ASSERT(msg.msgId() != 0);
293 emit displayMsg(msg);
296 void CoreSession::recvStatusMsgFromServer(QString msg) {
297 NetworkConnection *s = qobject_cast<NetworkConnection*>(sender());
299 emit displayStatusMsg(s->networkName(), msg);
302 QList<BufferInfo> CoreSession::buffers() const {
303 return Core::requestBuffers(user());
307 QVariant CoreSession::sessionState() {
311 foreach(BufferInfo id, buffers()) bufs << qVariantFromValue(id);
312 v["BufferInfos"] = bufs;
313 QVariantList networkids;
314 foreach(NetworkId id, _networks.keys()) networkids << qVariantFromValue(id);
315 v["NetworkIds"] = networkids;
317 quint32 ircusercount = 0;
318 quint32 ircchannelcount = 0;
319 foreach(Network *net, _networks.values()) {
320 ircusercount += net->ircUserCount();
321 ircchannelcount += net->ircChannelCount();
323 v["IrcUserCount"] = ircusercount;
324 v["IrcChannelCount"] = ircchannelcount;
326 QList<QVariant> idlist;
327 foreach(Identity *i, _identities.values()) idlist << qVariantFromValue(*i);
328 v["Identities"] = idlist;
330 //v["Payload"] = QByteArray(100000000, 'a'); // for testing purposes
334 void CoreSession::storeBufferLastSeenMsg(BufferId buffer, const MsgId &msgId) {
335 Core::setBufferLastSeenMsg(user(), buffer, msgId);
338 void CoreSession::initScriptEngine() {
339 signalProxy()->attachSlot(SIGNAL(scriptRequest(QString)), this, SLOT(scriptRequest(QString)));
340 signalProxy()->attachSignal(this, SIGNAL(scriptResult(QString)));
343 //QScriptValue storage_ = scriptEngine->newQObject(storage);
344 //scriptEngine->globalObject().setProperty("storage", storage_);
347 void CoreSession::scriptRequest(QString script) {
348 emit scriptResult(scriptEngine->evaluate(script).toString());
351 /*** Identity Handling ***/
353 void CoreSession::createIdentity(const Identity &id) {
356 for(i = 1; i <= _identities.count(); i++) {
357 if(!_identities.keys().contains(i)) break;
359 //qDebug() << "found free id" << i;
360 Identity *newId = new Identity(id, this);
362 _identities[i] = newId;
363 signalProxy()->synchronize(newId);
364 CoreUserSettings s(user());
365 s.storeIdentity(*newId);
366 emit identityCreated(*newId);
369 void CoreSession::updateIdentity(const Identity &id) {
370 if(!_identities.contains(id.id())) {
371 qWarning() << "Update request for unknown identity received!";
374 _identities[id.id()]->update(id);
376 CoreUserSettings s(user());
380 void CoreSession::removeIdentity(IdentityId id) {
381 Identity *i = _identities.take(id);
383 emit identityRemoved(id);
384 CoreUserSettings s(user());
385 s.removeIdentity(id);
390 /*** Network Handling ***/
392 void CoreSession::createNetwork(const NetworkInfo &info_) {
393 NetworkInfo info = info_;
396 if(!info.networkId.isValid())
397 Core::createNetwork(user(), info);
399 Q_ASSERT(info.networkId.isValid());
401 id = info.networkId.toInt();
402 Q_ASSERT(!_networks.contains(id));
404 Network *net = new Network(id, this);
405 connect(net, SIGNAL(connectRequested(NetworkId)), this, SLOT(connectToNetwork(NetworkId)));
406 connect(net, SIGNAL(disconnectRequested(NetworkId)), this, SLOT(disconnectFromNetwork(NetworkId)));
407 net->setNetworkInfo(info);
408 net->setProxy(signalProxy());
410 signalProxy()->synchronize(net);
411 emit networkCreated(id);
414 void CoreSession::updateNetwork(const NetworkInfo &info) {
415 if(!_networks.contains(info.networkId)) {
416 qWarning() << "Update request for unknown network received!";
419 _networks[info.networkId]->setNetworkInfo(info);
420 Core::updateNetwork(user(), info);
423 void CoreSession::removeNetwork(NetworkId id) {
424 // Make sure the network is disconnected!
425 NetworkConnection *conn = _connections.value(id, 0);
427 if(conn->connectionState() != Network::Disconnected) {
428 connect(conn, SIGNAL(disconnected(NetworkId)), this, SLOT(destroyNetwork(NetworkId)));
429 conn->disconnectFromIrc();
431 _connections.take(id)->deleteLater(); // TODO make this saner
439 void CoreSession::destroyNetwork(NetworkId id) {
440 if(_connections.contains(id)) {
441 // this can happen if the network was reconnecting while being removed
442 _connections.take(id)->deleteLater();
444 Network *net = _networks.take(id);
445 if(net && Core::removeNetwork(user(), id)) {
446 emit networkRemoved(id);
451 void CoreSession::removeBufferRequested(BufferId bufferId) {
452 BufferInfo bufferInfo = Core::getBufferInfo(user(), bufferId);
453 if(!bufferInfo.isValid()) {
454 qWarning() << "CoreSession::removeBufferRequested(): invalid BufferId:" << bufferId << "for User:" << user();
458 if(bufferInfo.type() == BufferInfo::StatusBuffer) {
459 qWarning() << "CoreSession::removeBufferRequested(): Status Buffers cannot be removed!";
463 if(bufferInfo.type() == BufferInfo::ChannelBuffer) {
464 Network *net = network(bufferInfo.networkId());
466 IrcChannel *chan = net->ircChannel(bufferInfo.bufferName());
468 qWarning() << "CoreSession::removeBufferRequested(): Unable to remove Buffer for joined Channel:" << bufferInfo.bufferName();
472 if(Core::removeBuffer(user(), bufferId))
473 emit bufferRemoved(bufferId);
476 void CoreSession::renameBuffer(const NetworkId &networkId, const QString &newName, const QString &oldName) {
477 BufferId bufferId = Core::renameBuffer(user(), networkId, newName, oldName);
478 if(bufferId.isValid()) {
479 emit bufferRenamed(bufferId, newName);