X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclient.cpp;h=d29726343f51b5b3cede3055276664853675c289;hp=113338fac89569e9f68ae105b5caa635f9475c99;hb=9950dd55446bedbccba1e7a27c4d042fb896d3c6;hpb=bedd08ea58926e41e6ad1d0bf256a97cae97fb3c diff --git a/src/client/client.cpp b/src/client/client.cpp index 113338fa..d2972634 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -20,6 +20,7 @@ #include "client.h" +#include "abstractmessageprocessor.h" #include "bufferinfo.h" #include "buffermodel.h" #include "buffersettings.h" @@ -72,12 +73,13 @@ Client::Client(QObject *parent) _bufferViewManager(0), _ircListHelper(new ClientIrcListHelper(this)), _messageModel(0), + _messageProcessor(0), _connectedToCore(false), _syncedToCore(false) { _monitorBuffer = new Buffer(BufferInfo(), this); _signalProxy->synchronize(_ircListHelper); - + connect(_backlogManager, SIGNAL(backlog(BufferId, const QVariantList &)), this, SLOT(receiveBacklog(BufferId, const QVariantList &))); } @@ -97,6 +99,7 @@ void Client::init() { _bufferModel = new BufferModel(_networkModel); _messageModel = mainUi->createMessageModel(this); + _messageProcessor = mainUi->createMessageProcessor(this); SignalProxy *p = signalProxy(); @@ -126,11 +129,6 @@ void Client::init() { connect(this, SIGNAL(connected()), mainUi, SLOT(connectedToCore())); connect(this, SIGNAL(disconnected()), mainUi, SLOT(disconnectedFromCore())); - layoutTimer = new QTimer(this); - layoutTimer->setInterval(0); - layoutTimer->setSingleShot(false); - connect(layoutTimer, SIGNAL(timeout()), this, SLOT(layoutMsg())); - } /*** public static methods ***/ @@ -321,7 +319,7 @@ void Client::setSyncedToCore() { // create a new BufferViewManager _bufferViewManager = new BufferViewManager(signalProxy(), this); - + _syncedToCore = true; emit connected(); emit coreConnectionStateChanged(true); @@ -335,7 +333,7 @@ void Client::disconnectFromCore() { if(!isConnected()) return; _connectedToCore = false; - + if(socket) { socket->close(); socket->deleteLater(); @@ -357,6 +355,7 @@ void Client::disconnectFromCore() { _bufferViewManager = 0; } + _messageModel->clear(); _networkModel->clear(); QHash::iterator bufferIter = _buffers.begin(); @@ -389,8 +388,6 @@ void Client::disconnectFromCore() { } Q_ASSERT(_identities.isEmpty()); - layoutQueue.clear(); - layoutTimer->stop(); } void Client::setCoreConfiguration(const QVariantMap &settings) { @@ -437,88 +434,26 @@ void Client::networkDestroyed() { } } -void Client::recvMessage(const Message &msg) { - //checkForHighlight(msg); - _messageModel->insertMessage(msg); -} - +// Hmm... we never used this... void Client::recvStatusMsg(QString /*net*/, QString /*msg*/) { //recvMessage(net, Message::server("", QString("[STATUS] %1").arg(msg))); } +void Client::recvMessage(const Message &msg_) { + Message msg = msg_; + messageProcessor()->process(msg); +} + void Client::receiveBacklog(BufferId bufferId, const QVariantList &msgs) { - //checkForHighlight(msg); //QTime start = QTime::currentTime(); + QList msglist; foreach(QVariant v, msgs) { - _messageModel->insertMessage(v.value()); + msglist << v.value(); } + messageProcessor()->process(msglist); //qDebug() << "processed" << msgs.count() << "backlog lines in" << start.msecsTo(QTime::currentTime()); } -void Client::layoutMsg() { - if(layoutQueue.isEmpty()) { - layoutTimer->stop(); - return; - } - - Buffer *buffer = layoutQueue.takeFirst(); - if(buffer->layoutMsg()) { - layoutQueue.append(buffer); // Buffer has more messages in its queue --> Round Robin - return; - } - - if(layoutQueue.isEmpty()) - layoutTimer->stop(); -} - -AbstractUiMsg *Client::layoutMsg(const Message &msg) { - return instance()->mainUi->layoutMsg(msg); -} - -void Client::checkForHighlight(Message &msg) { - NotificationSettings notificationSettings; - const Network *net = network(msg.bufferInfo().networkId()); - if(net && !net->myNick().isEmpty()) { - QStringList nickList; - if(notificationSettings.highlightNick() == NotificationSettings::CurrentNick) { - nickList << net->myNick(); - } else if(notificationSettings.highlightNick() == NotificationSettings::AllNicks) { - const Identity *myIdentity = identity(net->identity()); - if(myIdentity) - nickList = myIdentity->nicks(); - } - foreach(QString nickname, nickList) { - QRegExp nickRegExp("^(.*\\W)?" + QRegExp::escape(nickname) + "(\\W.*)?$"); - if((msg.type() & (Message::Plain | Message::Notice | Message::Action)) - && !(msg.flags() & Message::Self) - && nickRegExp.exactMatch(msg.contents())) { - msg.setFlags(msg.flags() | Message::Highlight); - return; - } - } - - foreach(QVariant highlight, notificationSettings.highlightList()) { - QVariantMap highlightRule = highlight.toMap(); - if(!highlightRule["enable"].toBool()) - continue; - Qt::CaseSensitivity caseSensitivity = highlightRule["cs"].toBool() ? Qt::CaseSensitive : Qt::CaseInsensitive; - QString name = highlightRule["name"].toString(); - QRegExp userRegExp; - if(highlightRule["regex"].toBool()) { - userRegExp = QRegExp(name, caseSensitivity); - } else { - userRegExp = QRegExp("^(.*\\W)?" + QRegExp::escape(name) + "(\\W.*)?$", caseSensitivity); - } - if((msg.type() & (Message::Plain | Message::Notice | Message::Action)) - && !(msg.flags() & Message::Self) - && userRegExp.exactMatch(msg.contents())) { - msg.setFlags(msg.flags() | Message::Highlight); - return; - } - } - } -} - void Client::updateLastSeenMsg(BufferId id, const MsgId &msgId) { Buffer *b = buffer(id); if(!b) { @@ -544,7 +479,6 @@ void Client::bufferRemoved(BufferId bufferId) { Buffer *buff = 0; if(_buffers.contains(bufferId)) { buff = _buffers.take(bufferId); - layoutQueue.removeAll(buff); disconnect(buff, 0, this, 0); }