X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreirclisthelper.cpp;h=1c4bfde5b02e2b22d3331c6764df7eec91e39645;hb=f12d6496251729f7d21f4fbcb0814dec7fba4b75;hp=542923654e915c17d65465481945e7af44b7919c;hpb=9d54503555534a2c554f09a33df6afa33d6308ec;p=quassel.git diff --git a/src/core/coreirclisthelper.cpp b/src/core/coreirclisthelper.cpp index 54292365..1c4bfde5 100644 --- a/src/core/coreirclisthelper.cpp +++ b/src/core/coreirclisthelper.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,6 +23,8 @@ #include "corenetwork.h" #include "coreuserinputhandler.h" +constexpr auto kTimeoutMs = 5000; + INIT_SYNCABLE_OBJECT(CoreIrcListHelper) QVariantList CoreIrcListHelper::requestChannelList(const NetworkId &netId, const QStringList &channelFilters) { @@ -45,6 +47,9 @@ bool CoreIrcListHelper::addChannel(const NetworkId &netId, const QString &channe return false; _channelLists[netId] << ChannelDescription(channelName, userCount, topic); + if (_queryTimeoutByNetId.contains(netId)) + _queryTimeoutByNetId[netId]->start(kTimeoutMs, this); + return true; } @@ -55,7 +60,12 @@ bool CoreIrcListHelper::dispatchQuery(const NetworkId &netId, const QString &que if (network) { _channelLists[netId] = QList(); network->userInputHandler()->handleList(BufferInfo(), query); - _queryTimeout[startTimer(10000)] = netId; + + auto timer = std::make_shared(); + timer->start(kTimeoutMs, this); + _queryTimeoutByNetId[netId] = timer; + _queryTimeoutByTimerId[timer->timerId()] = netId; + return true; } else { @@ -66,6 +76,12 @@ bool CoreIrcListHelper::dispatchQuery(const NetworkId &netId, const QString &que bool CoreIrcListHelper::endOfChannelList(const NetworkId &netId) { + if (_queryTimeoutByNetId.contains(netId)) { + // If we recieved an actual RPL_LISTEND, remove the timer + int timerId = _queryTimeoutByNetId.take(netId)->timerId(); + _queryTimeoutByTimerId.remove(timerId); + } + if (_queuedQuery.contains(netId)) { // we're no longer interessted in the current data. drop it and issue a new request. return dispatchQuery(netId, _queuedQuery.take(netId)); @@ -92,8 +108,14 @@ bool CoreIrcListHelper::endOfChannelList(const NetworkId &netId) void CoreIrcListHelper::timerEvent(QTimerEvent *event) { - int timerId = event->timerId(); - killTimer(timerId); - NetworkId netId = _queryTimeout.take(timerId); + if (!_queryTimeoutByTimerId.contains(event->timerId())) { + IrcListHelper::timerEvent(event); + return; + } + + NetworkId netId = _queryTimeoutByTimerId.take(event->timerId()); + _queryTimeoutByNetId.remove(netId); + + event->accept(); endOfChannelList(netId); }