1 /***************************************************************************
2 * Copyright (C) 2005-2014 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 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #include "clientbacklogmanager.h"
23 #include "abstractmessageprocessor.h"
24 #include "backlogsettings.h"
25 #include "backlogrequester.h"
32 INIT_SYNCABLE_OBJECT(ClientBacklogManager)
33 ClientBacklogManager::ClientBacklogManager(QObject *parent)
34 : BacklogManager(parent),
36 _initBacklogRequested(false)
41 QVariantList ClientBacklogManager::requestBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional)
43 _buffersRequested << bufferId;
44 return BacklogManager::requestBacklog(bufferId, first, last, limit, additional);
48 void ClientBacklogManager::receiveBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, QVariantList msgs)
50 Q_UNUSED(first) Q_UNUSED(last) Q_UNUSED(limit) Q_UNUSED(additional)
52 emit messagesReceived(bufferId, msgs.count());
55 foreach(QVariant v, msgs) {
56 Message msg = v.value<Message>();
57 msg.setFlags(msg.flags() | Message::Backlog);
62 bool lastPart = !_requester->buffer(bufferId, msglist);
63 updateProgress(_requester->totalBuffers() - _requester->buffersWaiting(), _requester->totalBuffers());
65 dispatchMessages(_requester->bufferedMessages(), true);
66 _requester->flushBuffer();
70 dispatchMessages(msglist);
75 void ClientBacklogManager::receiveBacklogAll(MsgId first, MsgId last, int limit, int additional, QVariantList msgs)
77 Q_UNUSED(first) Q_UNUSED(last) Q_UNUSED(limit) Q_UNUSED(additional)
80 foreach(QVariant v, msgs) {
81 Message msg = v.value<Message>();
82 msg.setFlags(msg.flags() | Message::Backlog);
86 dispatchMessages(msglist);
90 void ClientBacklogManager::requestInitialBacklog()
92 if (_initBacklogRequested) {
94 qWarning() << "ClientBacklogManager::requestInitialBacklog() called twice in the same session! (Backlog has already been requested)";
98 BacklogSettings settings;
99 switch (settings.requesterType()) {
100 case BacklogRequester::GlobalUnread:
101 _requester = new GlobalUnreadBacklogRequester(this);
103 case BacklogRequester::PerBufferUnread:
104 _requester = new PerBufferUnreadBacklogRequester(this);
106 case BacklogRequester::PerBufferFixed:
108 _requester = new FixedBacklogRequester(this);
111 _requester->requestInitialBacklog();
112 _initBacklogRequested = true;
113 if (_requester->isBuffering()) {
114 updateProgress(0, _requester->totalBuffers());
119 BufferIdList ClientBacklogManager::filterNewBufferIds(const BufferIdList &bufferIds)
121 BufferIdList newBuffers;
122 QSet<BufferId> availableBuffers = Client::networkModel()->allBufferIds().toSet();
123 foreach(BufferId bufferId, bufferIds) {
124 if (_buffersRequested.contains(bufferId) || !availableBuffers.contains(bufferId))
126 newBuffers << bufferId;
132 void ClientBacklogManager::checkForBacklog(const QList<BufferId> &bufferIds)
134 // we ingore all backlogrequests until we had our initial request
135 if (!_initBacklogRequested) {
140 // during client start up this message is to be expected in some situations.
141 qDebug() << "ClientBacklogManager::checkForBacklog(): no active backlog requester.";
144 switch (_requester->type()) {
145 case BacklogRequester::GlobalUnread:
147 case BacklogRequester::PerBufferUnread:
148 case BacklogRequester::PerBufferFixed:
151 BufferIdList buffers = filterNewBufferIds(bufferIds);
152 if (!buffers.isEmpty())
153 _requester->requestBacklog(buffers);
159 bool ClientBacklogManager::isBuffering()
161 return _requester && _requester->isBuffering();
165 void ClientBacklogManager::dispatchMessages(const MessageList &messages, bool sort)
167 if (messages.isEmpty())
170 MessageList msgs = messages;
172 clock_t start_t = clock();
175 Client::messageProcessor()->process(msgs);
176 clock_t end_t = clock();
178 emit messagesProcessed(tr("Processed %1 messages in %2 seconds.").arg(messages.count()).arg((float)(end_t - start_t) / CLOCKS_PER_SEC));
182 void ClientBacklogManager::reset()
186 _initBacklogRequested = false;
187 _buffersRequested.clear();