Add comment requested by @digitalcircuit
[quassel.git] / src / common / message.cpp
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 #include "message.h"
22
23 #include "util.h"
24
25 #include <QDataStream>
26
27 Message::Message(const BufferInfo &bufferInfo, Type type, const QString &contents, const QString &sender, const QString &senderPrefixes, Flags flags)
28     : _timestamp(QDateTime::currentDateTime().toUTC()),
29     _bufferInfo(bufferInfo),
30     _contents(contents),
31     _sender(sender),
32     _senderPrefixes(senderPrefixes),
33     _type(type),
34     _flags(flags)
35 {
36 }
37
38
39 Message::Message(const QDateTime &ts, const BufferInfo &bufferInfo, Type type, const QString &contents, const QString &sender, const QString &senderPrefixes, Flags flags)
40     : _timestamp(ts),
41     _bufferInfo(bufferInfo),
42     _contents(contents),
43     _sender(sender),
44     _senderPrefixes(senderPrefixes),
45     _type(type),
46     _flags(flags)
47 {
48 }
49
50
51 QDataStream &operator<<(QDataStream &out, const Message &msg)
52 {
53     // We do not serialize the sender prefixes until we have a new protocol or client-features implemented
54     out << msg.msgId() << (quint32)msg.timestamp().toTime_t() << (quint32)msg.type() << (quint8)msg.flags()
55     << msg.bufferInfo() << msg.sender().toUtf8() << msg.contents().toUtf8();
56     return out;
57 }
58
59
60 QDataStream &operator>>(QDataStream &in, Message &msg)
61 {
62     quint8 f;
63     quint32 t;
64     quint32 ts;
65     QByteArray s, m;
66     BufferInfo buf;
67     in >> msg._msgId >> ts >> t >> f >> buf >> s >> m;
68     msg._type = (Message::Type)t;
69     msg._flags = (Message::Flags)f;
70     msg._bufferInfo = buf;
71     msg._timestamp = QDateTime::fromTime_t(ts);
72     msg._sender = QString::fromUtf8(s);
73     // We do not serialize the sender prefixes until we have a new protocol or client-features implemented
74     msg._senderPrefixes = QString("");
75     msg._contents = QString::fromUtf8(m);
76     return in;
77 }
78
79
80 QDebug operator<<(QDebug dbg, const Message &msg)
81 {
82     dbg.nospace() << qPrintable(QString("Message(MsgId:")) << msg.msgId()
83     << qPrintable(QString(",")) << msg.timestamp()
84     << qPrintable(QString(", Type:")) << msg.type()
85     << qPrintable(QString(", Flags:")) << msg.flags() << qPrintable(QString(")"))
86     << msg.sender() << ":" << msg.contents();
87     return dbg;
88 }