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