64c3bb63df9d50a74a22cd3b9a03d01e4025e695
[quassel.git] / src / common / buffersyncer.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 "buffersyncer.h"
22
23 BufferSyncer::BufferSyncer(QObject *parent) : SyncableObject(parent) {
24
25
26 }
27
28
29 QDateTime BufferSyncer::lastSeen(BufferId buffer) const {
30   if(_lastSeen.contains(buffer)) return _lastSeen[buffer];
31   return QDateTime();
32 }
33
34 bool BufferSyncer::setLastSeen(BufferId buffer, const QDateTime &time) {
35   if(_lastSeen[buffer] < time) {
36     _lastSeen[buffer] = time;
37     emit lastSeenSet(buffer, time);
38     return true;
39   }
40   return false;
41 }
42
43 QVariantList BufferSyncer::initLastSeen() const {
44   QVariantList list;
45   foreach(BufferId id, _lastSeen.keys()) {
46     list << QVariant::fromValue<BufferId>(id) << _lastSeen[id];
47   }
48   return list;
49 }
50
51 void BufferSyncer::initSetLastSeen(const QVariantList &list) {
52   _lastSeen.clear();
53   Q_ASSERT(list.count() % 2 == 0);
54   for(int i = 0; i < list.count(); i += 2) {
55     setLastSeen(list[i].value<BufferId>(), list[i+1].toDateTime());
56   }
57 }
58
59 void BufferSyncer::requestSetLastSeen(BufferId buffer, const QDateTime &time) {
60   if(setLastSeen(buffer, time)) emit setLastSeenRequested(buffer, time);
61 }
62
63
64 void BufferSyncer::requestRemoveBuffer(BufferId buffer) {
65   emit removeBufferRequested(buffer);
66 }
67
68 void BufferSyncer::removeBuffer(BufferId buffer) {
69   emit bufferRemoved(buffer);
70 }