even faster backlog replay
[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 "backlogrequester.h"
25 #include "client.h"
26
27 #include <QDebug>
28
29 ClientBacklogManager::ClientBacklogManager(QObject *parent)
30   : BacklogManager(parent),
31     _buffer(true)
32 {
33 }
34
35 void ClientBacklogManager::receiveBacklog(BufferId bufferId, int lastMsgs, int offset, QVariantList msgs) {
36   Q_UNUSED(lastMsgs)
37   Q_UNUSED(offset)
38
39   if(msgs.isEmpty())
40     return;
41
42   //QTime start = QTime::currentTime();
43   QList<Message> 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(_buffer) {
51     _messageBuffer << msglist;
52     _buffersWaiting.remove(bufferId);
53     if(_buffersWaiting.isEmpty()) {
54       _buffer = false;
55       clock_t start_t = clock();
56       qSort(_messageBuffer);
57       Client::messageProcessor()->process(_messageBuffer);
58       clock_t end_t = clock();
59       qDebug() << "Processed" << _messageBuffer.count() << "Messages in" << (float)(end_t - start_t) / CLOCKS_PER_SEC << "seconds ==" << end_t - start_t << "clocks.";
60       _messageBuffer.clear();
61     }
62   } else {
63     Client::messageProcessor()->process(msglist);
64   }
65   //qDebug() << "processed" << msgs.count() << "backlog lines in" << start.msecsTo(QTime::currentTime());
66 }
67
68 QVariantList ClientBacklogManager::requestBacklog(BufferId bufferId, int lastMsgs, int offset) {
69   if(_buffer)
70     _buffersWaiting << bufferId;
71
72   return BacklogManager::requestBacklog(bufferId, lastMsgs, offset);
73 }
74
75 void ClientBacklogManager::requestInitialBacklog() {
76   FixedBacklogRequester backlogRequester(this);
77   backlogRequester.requestBacklog();
78 }