X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbuffersyncer.cpp;h=1c432a487d06aa43df081e76caef5084f62a3196;hp=fe69db71d2918d0361da005b136ca7c36544c27e;hb=579e559a6322209df7cd51c34801fecff5fe734b;hpb=9f9d207ecf28dd5470ecef9d4076a3f447662a20 diff --git a/src/common/buffersyncer.cpp b/src/common/buffersyncer.cpp index fe69db71..1c432a48 100644 --- a/src/common/buffersyncer.cpp +++ b/src/common/buffersyncer.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,71 +15,182 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "buffersyncer.h" -BufferSyncer::BufferSyncer(QObject *parent) - : SyncableObject(parent) +#include + +BufferSyncer::BufferSyncer(QObject* parent) + : SyncableObject(parent) +{} + +BufferSyncer::BufferSyncer(QHash lastSeenMsg, + QHash markerLines, + QHash activities, + QHash highlightCounts, + QObject* parent) + : SyncableObject(parent) + , _lastSeenMsg(std::move(lastSeenMsg)) + , _markerLines(std::move(markerLines)) + , _bufferActivities(std::move(activities)) + , _highlightCounts(std::move(highlightCounts)) +{} + +MsgId BufferSyncer::lastSeenMsg(BufferId buffer) const { + return _lastSeenMsg.value(buffer, MsgId()); } +bool BufferSyncer::setLastSeenMsg(BufferId buffer, const MsgId& msgId) +{ + if (!msgId.isValid()) + return false; -MsgId BufferSyncer::lastSeenMsg(BufferId buffer) const { - if(_lastSeenMsg.contains(buffer)) - return _lastSeenMsg[buffer]; - return MsgId(); + const MsgId oldLastSeenMsg = lastSeenMsg(buffer); + if (!oldLastSeenMsg.isValid() || oldLastSeenMsg < msgId) { + _lastSeenMsg[buffer] = msgId; + SYNC(ARG(buffer), ARG(msgId)) + emit lastSeenMsgSet(buffer, msgId); + return true; + } + return false; } -bool BufferSyncer::setLastSeenMsg(BufferId buffer, const MsgId &msgId) { - if(!msgId.isValid()) - return false; +MsgId BufferSyncer::markerLine(BufferId buffer) const +{ + return _markerLines.value(buffer, MsgId()); +} - const MsgId oldLastSeenMsg = lastSeenMsg(buffer); - if(!oldLastSeenMsg.isValid() || oldLastSeenMsg < msgId) { - _lastSeenMsg[buffer] = msgId; - emit lastSeenMsgSet(buffer, msgId); +bool BufferSyncer::setMarkerLine(BufferId buffer, const MsgId& msgId) +{ + if (!msgId.isValid()) + return false; + + if (_markerLines.value(buffer) == msgId) + return false; + + _markerLines[buffer] = msgId; + SYNC(ARG(buffer), ARG(msgId)) + emit markerLineSet(buffer, msgId); return true; - } - return false; } -QVariantList BufferSyncer::initLastSeenMsg() const { - QVariantList list; - QHash::const_iterator iter = _lastSeenMsg.constBegin(); - while(iter != _lastSeenMsg.constEnd()) { - list << QVariant::fromValue(iter.key()) - << QVariant::fromValue(iter.value()); - iter++; - } - return list; +QVariantList BufferSyncer::initLastSeenMsg() const +{ + QVariantList list; + QHash::const_iterator iter = _lastSeenMsg.constBegin(); + while (iter != _lastSeenMsg.constEnd()) { + list << QVariant::fromValue(iter.key()) << QVariant::fromValue(iter.value()); + ++iter; + } + return list; +} + +void BufferSyncer::initSetLastSeenMsg(const QVariantList& list) +{ + _lastSeenMsg.clear(); + Q_ASSERT(list.count() % 2 == 0); + for (int i = 0; i < list.count(); i += 2) { + setLastSeenMsg(list.at(i).value(), list.at(i + 1).value()); + } +} + +QVariantList BufferSyncer::initMarkerLines() const +{ + QVariantList list; + QHash::const_iterator iter = _markerLines.constBegin(); + while (iter != _markerLines.constEnd()) { + list << QVariant::fromValue(iter.key()) << QVariant::fromValue(iter.value()); + ++iter; + } + return list; } -void BufferSyncer::initSetLastSeenMsg(const QVariantList &list) { - _lastSeenMsg.clear(); - Q_ASSERT(list.count() % 2 == 0); - for(int i = 0; i < list.count(); i += 2) { - setLastSeenMsg(list[i].value(), list[i+1].value()); - } +void BufferSyncer::initSetMarkerLines(const QVariantList& list) +{ + _markerLines.clear(); + Q_ASSERT(list.count() % 2 == 0); + for (int i = 0; i < list.count(); i += 2) { + setMarkerLine(list.at(i).value(), list.at(i + 1).value()); + } } -void BufferSyncer::requestSetLastSeenMsg(BufferId buffer, const MsgId &msgId) { - if(setLastSeenMsg(buffer, msgId)) - emit setLastSeenMsgRequested(buffer, msgId); +QVariantList BufferSyncer::initActivities() const +{ + QVariantList list; + auto iter = _bufferActivities.constBegin(); + while (iter != _bufferActivities.constEnd()) { + list << QVariant::fromValue(iter.key()) << QVariant::fromValue((int)iter.value()); + ++iter; + } + return list; } +void BufferSyncer::initSetActivities(const QVariantList& list) +{ + _bufferActivities.clear(); + Q_ASSERT(list.count() % 2 == 0); + for (int i = 0; i < list.count(); i += 2) { + setBufferActivity(list.at(i).value(), list.at(i + 1).value()); + } +} -void BufferSyncer::requestRemoveBuffer(BufferId buffer) { - emit removeBufferRequested(buffer); +Message::Types BufferSyncer::activity(BufferId buffer) const +{ + return _bufferActivities.value(buffer, Message::Types()); } -void BufferSyncer::removeBuffer(BufferId buffer) { - if(_lastSeenMsg.contains(buffer)) - _lastSeenMsg.remove(buffer); - emit bufferRemoved(buffer); +void BufferSyncer::removeBuffer(BufferId buffer) +{ + if (_lastSeenMsg.contains(buffer)) + _lastSeenMsg.remove(buffer); + if (_markerLines.contains(buffer)) + _markerLines.remove(buffer); + if (_bufferActivities.contains(buffer)) + _bufferActivities.remove(buffer); + if (_highlightCounts.contains(buffer)) + _highlightCounts.remove(buffer); + SYNC(ARG(buffer)) + emit bufferRemoved(buffer); } -void BufferSyncer::renameBuffer(BufferId buffer, QString newName) { - emit bufferRenamed(buffer, newName); +void BufferSyncer::mergeBuffersPermanently(BufferId buffer1, BufferId buffer2) +{ + if (_lastSeenMsg.contains(buffer2)) + _lastSeenMsg.remove(buffer2); + if (_markerLines.contains(buffer2)) + _markerLines.remove(buffer2); + if (_bufferActivities.contains(buffer2)) + _bufferActivities.remove(buffer2); + if (_highlightCounts.contains(buffer2)) + _highlightCounts.remove(buffer2); + SYNC(ARG(buffer1), ARG(buffer2)) + emit buffersPermanentlyMerged(buffer1, buffer2); +} + +int BufferSyncer::highlightCount(BufferId buffer) const +{ + return _highlightCounts.value(buffer, 0); +} + +QVariantList BufferSyncer::initHighlightCounts() const +{ + QVariantList list; + auto iter = _highlightCounts.constBegin(); + while (iter != _highlightCounts.constEnd()) { + list << QVariant::fromValue(iter.key()) << QVariant::fromValue((int)iter.value()); + ++iter; + } + return list; +} + +void BufferSyncer::initSetHighlightCounts(const QVariantList& list) +{ + _highlightCounts.clear(); + Q_ASSERT(list.count() % 2 == 0); + for (int i = 0; i < list.count(); i += 2) { + setHighlightCount(list.at(i).value(), list.at(i + 1).value()); + } }