8ccaa4b0cea4fb96b9d4dbc8c401433d6c842855
[quassel.git] / src / client / clientbacklogmanager.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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, int limit, int offset, QVariantList msgs) {
39   Q_UNUSED(limit)
40   Q_UNUSED(offset)
41
42   if(msgs.isEmpty())
43     return;
44
45   emit messagesReceived(bufferId, msgs.count());
46
47   MessageList msglist;
48   foreach(QVariant v, msgs) {
49     Message msg = v.value<Message>();
50     msg.setFlags(msg.flags() | Message::Backlog);
51     msglist << msg;
52   }
53
54   if(isBuffering()) {
55     if(!_requester->buffer(bufferId, msglist)) {
56       // this was the last part to buffer
57       stopBuffering();
58     }
59   } else {
60     dispatchMessages(msglist);
61   }
62 }
63
64 void ClientBacklogManager::requestInitialBacklog() {
65   if(_requester) {
66     qWarning() << "ClientBacklogManager::requestInitialBacklog() called twice in the same session! (Backlog has already been requested)";
67     return;
68   }
69
70   BacklogSettings settings;
71   switch(settings.requesterType()) {
72   case BacklogRequester::GlobalUnread:
73   case BacklogRequester::PerBufferUnread:
74   case BacklogRequester::PerBufferFixed:
75   default:
76     _requester = new FixedBacklogRequester(this);
77   };
78
79   _requester->requestBacklog();
80 }
81
82 void ClientBacklogManager::stopBuffering() {
83   Q_ASSERT(_requester);
84
85   dispatchMessages(_requester->bufferedMessages(), true);
86   reset();
87 }
88
89 bool ClientBacklogManager::isBuffering() {
90   return _requester && _requester->isBuffering();
91 }
92
93 void ClientBacklogManager::dispatchMessages(const MessageList &messages, bool sort) {
94   MessageList msgs = messages;
95
96   clock_t start_t = clock();
97   if(sort)
98     qSort(msgs);
99   Client::messageProcessor()->process(msgs);
100   clock_t end_t = clock();
101
102   emit messagesProcessed(tr("Processed %1 messages in %2 seconds.").arg(msgs.count()).arg((float)(end_t - start_t) / CLOCKS_PER_SEC));
103 }
104
105 void ClientBacklogManager::reset() {
106   delete _requester;
107   _requester = 0;
108 }