Bring back lastSeen support. Buffer has been hacked even closer to death now.
[quassel.git] / src / client / buffer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 #include <QDebug>
21
22 #include "buffer.h"
23
24 #include "buffersyncer.h"
25 #include "client.h"
26 #include "networkmodel.h"
27 #include "quasselui.h"
28 #include "util.h"
29
30
31 Buffer::Buffer(BufferInfo bufferid, QObject *parent)
32   : QObject(parent),
33     _bufferInfo(bufferid),
34     _isVisible(false),
35     _activityLevel(NoActivity)
36 {
37
38 }
39
40 BufferInfo Buffer::bufferInfo() const {
41   // still needed by the gui *sigh* to request the backlogs *sigh*
42   return _bufferInfo;
43 }
44
45 const QList<AbstractUiMsg *> &Buffer::contents() const {
46   return layoutedMsgs;
47 }
48
49 void Buffer::appendMsg(const Message &msg) {
50   updateActivityLevel(msg);
51   AbstractUiMsg *m = Client::layoutMsg(msg);
52   layoutedMsgs.append(m);
53   emit msgAppended(m);
54 }
55
56 void Buffer::prependMsg(const Message &msg) {
57   // check for duplicate first
58   if(!layoutedMsgs.isEmpty()  && msg.msgId() >= layoutedMsgs.first()->msgId()) {
59     return;
60   }
61   updateActivityLevel(msg);
62   layoutQueue.append(msg);
63 }
64
65 bool Buffer::layoutMsg() {
66   if(layoutQueue.isEmpty())
67     return false;
68
69   AbstractUiMsg *m = Client::layoutMsg(layoutQueue.takeFirst());
70   layoutedMsgs.prepend(m);
71   emit msgPrepended(m);
72
73   return !layoutQueue.isEmpty();
74 }
75
76 void Buffer::setVisible(bool visible) {
77   _isVisible = visible;
78   setActivityLevel(NoActivity);
79   //if(layoutedMsgs.isEmpty())
80   //  return;
81   //setLastSeenMsg(layoutedMsgs.last()->msgId());
82   if(_lastRcvdMsg.msgId() > 0) setLastSeenMsg(_lastRcvdMsg.msgId());
83   //qDebug() << "setting last seen" << _lastRcvdMsg.msgId();
84 }
85
86 void Buffer::setLastSeenMsg(const MsgId &msgId) {
87   // qDebug() << "want to set lastSeen:" << bufferInfo() << seen << lastSeen();
88   const MsgId oldLastSeen = lastSeenMsg();
89   if(!oldLastSeen.isValid() || (msgId.isValid() && msgId > oldLastSeen)) {
90     //qDebug() << "setting:" << bufferInfo().bufferName() << seen;
91     _lastSeenMsg = msgId;
92     Client::setBufferLastSeenMsg(bufferInfo().bufferId(), msgId);
93     //qDebug() << "setting lastSeen:" << bufferInfo() << lastSeen();
94     setActivityLevel(NoActivity);
95   }
96 }
97
98 void Buffer::setActivityLevel(ActivityLevel level) {
99   _activityLevel = level;
100   if(bufferInfo().bufferId() > 0) {
101     Client::networkModel()->setBufferActivity(bufferInfo(), level);
102     //qDebug() << "setting level:" << bufferInfo() << lastSeen() << level;
103   }
104 }
105
106 void Buffer::updateActivityLevel(const Message &msg) {
107   // FIXME dirty hack to allow the lastSeen stuff to continue to work
108   //       will be made much nicer once Buffer dies, I hope...
109   if(msg.msgId() > _lastRcvdMsg.msgId()) _lastRcvdMsg = msg;
110
111   if(isVisible())
112     return;
113
114   if(msg.flags() & Message::Self)       // don't update activity for our own messages
115     return;
116
117   if(lastSeenMsg().isValid() && lastSeenMsg() >= msg.msgId())
118     return;
119
120   ActivityLevel level = activityLevel() | OtherActivity;
121   if(msg.type() & (Message::Plain | Message::Notice | Message::Action))
122     level |= NewMessage;
123
124   if(msg.flags() & Message::Highlight)
125     level |= Highlight;
126
127   if(level != activityLevel())
128     setActivityLevel(level);
129 }