1 /***************************************************************************
2 * Copyright (C) 2005-2020 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
21 #include "ctcpevent.h"
23 #include "messageevent.h"
24 #include "networkevent.h"
26 #include "signalproxy.h"
28 Event::Event(EventManager::EventType type)
32 Event::Event(EventManager::EventType type, QVariantMap& map)
35 if (!map.contains("flags") || !map.contains("timestamp")) {
36 qWarning() << "Received invalid serialized event:" << map;
41 Q_ASSERT(SignalProxy::current());
42 Q_ASSERT(SignalProxy::current()->sourcePeer());
44 setFlags(static_cast<EventManager::EventFlags>(map.take("flags").toInt())); // TODO sanity check?
46 if (SignalProxy::current()->sourcePeer()->hasFeature(Quassel::Feature::LongTime)) {
47 // timestamp is a qint64, signed rather than unsigned
48 setTimestamp(QDateTime::fromMSecsSinceEpoch(map.take("timestamp").toLongLong()));
51 setTimestamp(QDateTime::fromTime_t(map.take("timestamp").toUInt()));
55 void Event::toVariantMap(QVariantMap& map) const
57 Q_ASSERT(SignalProxy::current());
58 Q_ASSERT(SignalProxy::current()->targetPeer());
60 map["type"] = static_cast<int>(type());
61 map["flags"] = static_cast<int>(flags());
62 if (SignalProxy::current()->targetPeer()->hasFeature(Quassel::Feature::LongTime)) {
63 // toMSecs returns a qint64, signed rather than unsigned
64 map["timestamp"] = timestamp().toMSecsSinceEpoch();
67 map["timestamp"] = timestamp().toTime_t();
71 QVariantMap Event::toVariantMap() const
78 Event* Event::fromVariantMap(QVariantMap& map, Network* network)
80 int inttype = map.take("type").toInt();
81 // sanity check if we have a valid enum value
82 if (EventManager::enumName(inttype).isEmpty()) {
83 qWarning() << "Received a serialized event with unknown type" << inttype;
87 auto type = static_cast<EventManager::EventType>(inttype);
88 if (type == EventManager::Invalid || type == EventManager::GenericEvent)
91 auto group = static_cast<EventManager::EventType>(type & EventManager::EventGroupMask);
95 // we use static create() functions to keep group-specific special cases in the files they belong
96 // e.g. IrcEventRawMessage
98 case EventManager::NetworkEvent:
99 e = NetworkEvent::create(type, map, network);
101 case EventManager::IrcServerEvent:
104 case EventManager::IrcEvent:
105 e = IrcEvent::create(type, map, network);
107 case EventManager::MessageEvent:
108 e = MessageEvent::create(type, map, network);
110 case EventManager::CtcpEvent:
111 e = CtcpEvent::create(type, map, network);
118 qWarning() << "Can't create event of type" << type;
122 if (!map.isEmpty()) {
123 qWarning() << "Event creation from map did not consume all data:" << map;
129 QDebug operator<<(QDebug dbg, Event* e)
131 dbg.nospace() << qPrintable(e->className()) << "("
132 << "type = 0x" << qPrintable(QString::number(e->type(), 16));
134 //<< ", data = " << e->data(); // we don't use data anywhere yet
135 dbg.nospace() << ", flags = 0x" << qPrintable(QString::number(e->flags(), 16)) << ")";