X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fclient.cpp;h=1d44fd603f663619d729f7387b0a3a5d6b5a6559;hb=48979ba2c343ab50ae93a8bb1c355ce79115bd4f;hp=95748cb1e8c4e6c08207b0bfa706de0531e1707c;hpb=6609a6b6f50274e90ecca1aca2c0e2e9ad2e6327;p=quassel.git diff --git a/src/client/client.cpp b/src/client/client.cpp index 95748cb1..1d44fd60 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -94,11 +94,8 @@ Buffer *Client::buffer(BufferInfo id) { client, SLOT(userInput(BufferInfo, QString))); connect(buff, SIGNAL(bufferUpdated(Buffer *)), client, SIGNAL(bufferUpdated(Buffer *))); - connect(buff, SIGNAL(bufferDestroyed(Buffer *)), - client, SIGNAL(bufferDestroyed(Buffer *))); - connect(buff, SIGNAL(bufferDestroyed(Buffer *)), - client, SLOT(removeBuffer(Buffer *))); - + connect(buff, SIGNAL(destroyed()), + client, SLOT(bufferDestroyed())); client->_buffers[id.uid()] = buff; emit client->bufferUpdated(buff); } @@ -136,7 +133,7 @@ SignalProxy *Client::signalProxy() { Client::Client(QObject *parent) : QObject(parent), socket(0), - _signalProxy(new SignalProxy(SignalProxy::Client, 0, this)), + _signalProxy(new SignalProxy(SignalProxy::Client, this)), mainUi(0), _bufferModel(0), connectedToCore(false) @@ -196,10 +193,21 @@ bool Client::isConnected() { return instance()->connectedToCore; } +void Client::fakeInput(uint bufferUid, QString message) { + Buffer *buff = buffer(bufferUid); + if(!buff) + qWarning() << "No Buffer with uid" << bufferUid << "can't send Input" << message; + else + emit instance()->sendInput(buff->bufferInfo(), message); +} + +void Client::fakeInput(BufferInfo bufferInfo, QString message) { + fakeInput(bufferInfo, message); +} + void Client::connectToCore(const QVariantMap &conn) { // TODO implement SSL coreConnectionInfo = conn; - if(isConnected()) { emit coreConnectionError(tr("Already connected to Core!")); return; @@ -225,7 +233,7 @@ void Client::connectToCore(const QVariantMap &conn) { connect(sock, SIGNAL(readyRead()), this, SLOT(coreHasData())); connect(sock, SIGNAL(connected()), this, SLOT(coreSocketConnected())); connect(sock, SIGNAL(disconnected()), this, SLOT(coreSocketDisconnected())); - connect(signalProxy(), SIGNAL(peerDisconnected()), this, SLOT(coreSocketDisconnected())); + connect(signalProxy(), SIGNAL(disconnected()), this, SLOT(coreSocketDisconnected())); //connect(sock, SIGNAL(stateChanged(QAbstractSocket::SocketState)), this, SLOT(coreSocketStateChanged(QAbstractSocket::SocketState))); connect(sock, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(coreSocketError(QAbstractSocket::SocketError))); sock->connectToHost(conn["Host"].toString(), conn["Port"].toUInt()); @@ -234,8 +242,9 @@ void Client::connectToCore(const QVariantMap &conn) { void Client::disconnectFromCore() { socket->close(); - if(clientMode == LocalCore) + if(clientMode == LocalCore) { coreSocketDisconnected(); + } } void Client::coreSocketConnected() { @@ -256,16 +265,15 @@ void Client::coreSocketDisconnected() { /* Clear internal data. Hopefully nothing relies on it at this point. */ _bufferModel->clear(); - foreach(Buffer *buffer, _buffers.values()) { - delete buffer; + buffer->deleteLater(); } - Q_ASSERT(_buffers.empty()); + _buffers.clear(); foreach(NetworkInfo *networkinfo, _networkInfo.values()) { - delete networkinfo; + networkinfo->deleteLater(); } - Q_ASSERT(_networkInfo.empty()); + _networkInfo.clear(); coreConnectionInfo.clear(); sessionData.clear(); @@ -421,6 +429,7 @@ void Client::networkConnected(uint netid) { connect(netinfo, SIGNAL(initDone()), this, SLOT(updateCoreConnectionProgress())); connect(netinfo, SIGNAL(ircUserInitDone()), this, SLOT(updateCoreConnectionProgress())); connect(netinfo, SIGNAL(ircChannelInitDone()), this, SLOT(updateCoreConnectionProgress())); + connect(netinfo, SIGNAL(destroyed()), this, SLOT(networkInfoDestroyed())); _networkInfo[netid] = netinfo; } @@ -444,9 +453,18 @@ void Client::updateBufferInfo(BufferInfo id) { buffer(id)->updateBufferInfo(id); } +void Client::bufferDestroyed() { + Buffer *buffer = static_cast(sender()); + uint bufferUid = buffer->uid(); + if(_buffers.contains(bufferUid)) + _buffers.remove(bufferUid); +} -void Client::removeBuffer(Buffer *b) { - _buffers.remove(b->bufferInfo().uid()); +void Client::networkInfoDestroyed() { + NetworkInfo *netinfo = static_cast(sender()); + uint networkId = netinfo->networkId(); + if(_networkInfo.contains(networkId)) + _networkInfo.remove(networkId); } void Client::recvMessage(const Message &msg) {