X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fevent.cpp;h=b933fa6472fc99db15ecb7d096d103ae62147e76;hb=74226102118400b228618f7373137a4a01e7d85f;hp=dbd46ccb2b189411a11e37e577c889b0c5991f1b;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/common/event.cpp b/src/common/event.cpp index dbd46ccb..b933fa64 100644 --- a/src/common/event.cpp +++ b/src/common/event.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,13 +15,15 @@ * 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 "ctcpevent.h" #include "ircevent.h" #include "networkevent.h" #include "messageevent.h" +#include "peer.h" +#include "signalproxy.h" Event::Event(EventManager::EventType type) : _type(type) @@ -40,16 +42,33 @@ Event::Event(EventManager::EventType type, QVariantMap &map) return; } + Q_ASSERT(SignalProxy::current()); + Q_ASSERT(SignalProxy::current()->sourcePeer()); + setFlags(static_cast(map.take("flags").toInt())); // TODO sanity check? - setTimestamp(QDateTime::fromTime_t(map.take("timestamp").toUInt())); + + if (SignalProxy::current()->sourcePeer()->hasFeature(Quassel::Feature::LongTime)) { + // timestamp is a qint64, signed rather than unsigned + setTimestamp(QDateTime::fromMSecsSinceEpoch(map.take("timestamp").toLongLong())); + } else { + setTimestamp(QDateTime::fromTime_t(map.take("timestamp").toUInt())); + } } void Event::toVariantMap(QVariantMap &map) const { + Q_ASSERT(SignalProxy::current()); + Q_ASSERT(SignalProxy::current()->targetPeer()); + map["type"] = static_cast(type()); map["flags"] = static_cast(flags()); - map["timestamp"] = timestamp().toTime_t(); + if (SignalProxy::current()->targetPeer()->hasFeature(Quassel::Feature::LongTime)) { + // toMSecs returns a qint64, signed rather than unsigned + map["timestamp"] = timestamp().toMSecsSinceEpoch(); + } else { + map["timestamp"] = timestamp().toTime_t(); + } }