fixes #448 - progress indicator for backlog
[quassel.git] / src / client / clientbacklogmanager.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
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.                                           *
9  *                                                                         *
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.                          *
14  *                                                                         *
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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "clientbacklogmanager.h"
22
23 #include "abstractmessageprocessor.h"
24 #include "backlogsettings.h"
25 #include "backlogrequester.h"
26 #include "client.h"
27
28 #include <ctime>
29
30 #include <QDebug>
31
32 ClientBacklogManager::ClientBacklogManager(QObject *parent)
33   : BacklogManager(parent),
34     _requester(0)
35 {
36 }
37
38 void ClientBacklogManager::receiveBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, QVariantList msgs) {
39   Q_UNUSED(first) Q_UNUSED(last) Q_UNUSED(limit) Q_UNUSED(additional)
40
41   emit messagesReceived(bufferId, msgs.count());
42
43   MessageList msglist;
44   foreach(QVariant v, msgs) {
45     Message msg = v.value<Message>();
46     msg.setFlags(msg.flags() | Message::Backlog);
47     msglist << msg;
48   }
49
50   if(isBuffering()) {
51     bool lastPart = !_requester->buffer(bufferId, msglist);
52     updateProgress(_requester->totalBuffers() - _requester->buffersWaiting(), _requester->totalBuffers());
53     if(lastPart) {
54       stopBuffering();
55       reset();
56     }
57   } else {
58     dispatchMessages(msglist);
59   }
60 }
61
62 void ClientBacklogManager::receiveBacklogAll(MsgId first, MsgId last, int limit, int additional, QVariantList msgs) {
63   Q_UNUSED(first) Q_UNUSED(last) Q_UNUSED(limit) Q_UNUSED(additional)
64
65   MessageList msglist;
66   foreach(QVariant v, msgs) {
67     Message msg = v.value<Message>();
68     msg.setFlags(msg.flags() | Message::Backlog);
69     msglist << msg;
70   }
71
72   dispatchMessages(msglist);
73   reset();
74 }
75
76 void ClientBacklogManager::requestInitialBacklog() {
77   if(_requester) {
78     qWarning() << "ClientBacklogManager::requestInitialBacklog() called twice in the same session! (Backlog has already been requested)";
79     return;
80   }
81
82   BacklogSettings settings;
83   switch(settings.requesterType()) {
84   case BacklogRequester::GlobalUnread:
85     _requester = new GlobalUnreadBacklogRequester(this);
86     break;
87   case BacklogRequester::PerBufferUnread:
88     _requester = new PerBufferUnreadBacklogRequester(this);
89     break;
90   case BacklogRequester::PerBufferFixed:
91   default:
92     _requester = new FixedBacklogRequester(this);
93   };
94
95   _requester->requestBacklog();
96   if(_requester->isBuffering()) {
97     updateProgress(0, _requester->totalBuffers());
98   }
99 }
100
101 void ClientBacklogManager::stopBuffering() {
102   Q_ASSERT(_requester);
103
104   dispatchMessages(_requester->bufferedMessages(), true);
105 }
106
107 bool ClientBacklogManager::isBuffering() {
108   return _requester && _requester->isBuffering();
109 }
110
111 void ClientBacklogManager::dispatchMessages(const MessageList &messages, bool sort) {
112   if(messages.isEmpty())
113     return;
114
115   MessageList msgs = messages;
116
117   clock_t start_t = clock();
118   if(sort)
119     qSort(msgs);
120   Client::messageProcessor()->process(msgs);
121   clock_t end_t = clock();
122
123   emit messagesProcessed(tr("Processed %1 messages in %2 seconds.").arg(messages.count()).arg((float)(end_t - start_t) / CLOCKS_PER_SEC));
124 }
125
126 void ClientBacklogManager::reset() {
127   delete _requester;
128   _requester = 0;
129 }