1cf66fd47af42df3f9a242f187b641877b584b04
[quassel.git] / src / core / corebuffersyncer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef COREBUFFERSYNCER_H
22 #define COREBUFFERSYNCER_H
23
24 #include "buffersyncer.h"
25
26 class CoreSession;
27
28 class CoreBufferSyncer : public BufferSyncer
29 {
30     SYNCABLE_OBJECT
31         Q_OBJECT
32
33 public:
34     explicit CoreBufferSyncer(CoreSession *parent);
35
36 public slots:
37     void requestSetLastSeenMsg(BufferId buffer, const MsgId &msgId) override;
38     void requestSetMarkerLine(BufferId buffer, const MsgId &msgId) override;
39
40     inline void requestRemoveBuffer(BufferId buffer) override { removeBuffer(buffer); }
41     void removeBuffer(BufferId bufferId) override;
42
43     void addBufferActivity(const Message &message) {
44         auto oldActivity = activity(message.bufferId());
45         if (!oldActivity.testFlag(message.type())) {
46             setBufferActivity(message.bufferId(), (int) (oldActivity | message.type()));
47         }
48     }
49
50     void setBufferActivity(BufferId buffer, int activity) override;
51
52     inline void requestRenameBuffer(BufferId buffer, QString newName) override { renameBuffer(buffer, newName); }
53     void renameBuffer(BufferId buffer, QString newName) override;
54
55     inline void requestMergeBuffersPermanently(BufferId buffer1, BufferId buffer2) override { mergeBuffersPermanently(buffer1, buffer2); }
56     void mergeBuffersPermanently(BufferId buffer1, BufferId buffer2) override;
57
58     void requestPurgeBufferIds() override;
59
60     inline void requestMarkBufferAsRead(BufferId buffer) override {
61         int activity = Message::Types();
62         setBufferActivity(buffer, activity);
63         markBufferAsRead(buffer);
64     }
65
66     void storeDirtyIds();
67
68 protected:
69     void customEvent(QEvent *event) override;
70
71 private:
72     CoreSession *_coreSession;
73     bool _purgeBuffers;
74
75     QSet<BufferId> dirtyLastSeenBuffers;
76     QSet<BufferId> dirtyMarkerLineBuffers;
77     QSet<BufferId> dirtyActivities;
78
79     void purgeBufferIds();
80 };
81
82
83 #endif //COREBUFFERSYNCER_H