de3bfcf6d7bbb686a4a5ee672936a65395232575
[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 }
83
84 void Buffer::setLastSeenMsg(const MsgId &msgId) {
85   // qDebug() << "want to set lastSeen:" << bufferInfo() << seen << lastSeen();
86   const MsgId oldLastSeen = lastSeenMsg();
87   if(!oldLastSeen.isValid() || (msgId.isValid() && msgId > oldLastSeen)) {
88     //qDebug() << "setting:" << bufferInfo().bufferName() << seen;
89     _lastSeenMsg = msgId;
90     Client::setBufferLastSeenMsg(bufferInfo().bufferId(), msgId);
91     //qDebug() << "setting lastSeen:" << bufferInfo() << lastSeen();
92     setActivityLevel(NoActivity);
93   }
94 }
95
96 void Buffer::setActivityLevel(ActivityLevel level) {
97   _activityLevel = level;
98   if(bufferInfo().bufferId() > 0) {
99     Client::networkModel()->setBufferActivity(bufferInfo(), level);
100     //qDebug() << "setting level:" << bufferInfo() << lastSeen() << level;
101   }
102 }
103
104 void Buffer::updateActivityLevel(const Message &msg) {
105   if(isVisible())
106     return;
107
108   if(msg.flags() & Message::Self)       // don't update activity for our own messages
109     return;
110
111   if(lastSeenMsg().isValid() && lastSeenMsg() >= msg.msgId())
112     return;
113
114   ActivityLevel level = activityLevel() | OtherActivity;
115   if(msg.type() & (Message::Plain | Message::Notice | Message::Action))
116     level |= NewMessage;
117
118   if(msg.flags() & Message::Highlight)
119     level |= Highlight;
120
121   if(level != activityLevel())
122     setActivityLevel(level);
123 }