X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorebacklogmanager.cpp;h=1c3fae98b5604592b6626db83e12c8f2b8605c95;hp=5e3724f3cd984c72ed2c5fcd9968f0900910a549;hb=b64a1e62e2168dc21e350fccc6c42b0d0d5e2a35;hpb=335e1e55ee8df69b37b1b4d839950ced9ac08cc4 diff --git a/src/core/corebacklogmanager.cpp b/src/core/corebacklogmanager.cpp index 5e3724f3..1c3fae98 100644 --- a/src/core/corebacklogmanager.cpp +++ b/src/core/corebacklogmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -24,6 +24,7 @@ #include +INIT_SYNCABLE_OBJECT(CoreBacklogManager) CoreBacklogManager::CoreBacklogManager(CoreSession *coreSession) : BacklogManager(coreSession), _coreSession(coreSession) @@ -43,23 +44,30 @@ QVariantList CoreBacklogManager::requestBacklog(BufferId bufferId, MsgId first, } if(additional) { + MsgId oldestMessage; + if(!msgList.isEmpty()) { + if(msgList.first().msgId() < msgList.last().msgId()) + oldestMessage = msgList.first().msgId(); + else + oldestMessage = msgList.last().msgId(); + } + if(first != -1) { last = first; } else { - last = -1; - if(!msgList.isEmpty()) { - if(msgList.first().msgId() < msgList.last().msgId()) - last = msgList.first().msgId(); - else - last = msgList.last().msgId(); - } + last = oldestMessage; } - msgList = Core::requestMsgs(coreSession()->user(), bufferId, -1, last, additional); - msgIter = msgList.constBegin(); - msgListEnd = msgList.constEnd(); - while(msgIter != msgListEnd) { - backlog << qVariantFromValue(*msgIter); - msgIter++; + + // only fetch additional messages if they continue seemlessly + // that is, if the list of messages is not truncated by the limit + if(last == oldestMessage) { + msgList = Core::requestMsgs(coreSession()->user(), bufferId, -1, last, additional); + msgIter = msgList.constBegin(); + msgListEnd = msgList.constEnd(); + while(msgIter != msgListEnd) { + backlog << qVariantFromValue(*msgIter); + msgIter++; + } } } @@ -67,7 +75,6 @@ QVariantList CoreBacklogManager::requestBacklog(BufferId bufferId, MsgId first, } QVariantList CoreBacklogManager::requestBacklogAll(MsgId first, MsgId last, int limit, int additional) { - qDebug() << "CoreBacklogManager::requestBacklogAll" << first << last << limit << additional; QVariantList backlog; QList msgList; msgList = Core::requestAllMsgs(coreSession()->user(), first, last, limit);