cd50158523583d1bd2a11a5d2df3d9a1b161dba6
[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     out << msg.msgId() << (quint32)msg.timestamp().toTime_t() << (quint32)msg.type() << (quint8)msg.flags()
54     << msg.bufferInfo() << msg.sender().toUtf8() << msg.contents().toUtf8();
55     return out;
56 }
57
58
59 QDataStream &operator>>(QDataStream &in, Message &msg)
60 {
61     quint8 f;
62     quint32 t;
63     quint32 ts;
64     QByteArray s, m;
65     BufferInfo buf;
66     in >> msg._msgId >> ts >> t >> f >> buf >> s >> m;
67     msg._type = (Message::Type)t;
68     msg._flags = (Message::Flags)f;
69     msg._bufferInfo = buf;
70     msg._timestamp = QDateTime::fromTime_t(ts);
71     msg._sender = QString::fromUtf8(s);
72     msg._senderPrefixes = QString("");
73     msg._contents = QString::fromUtf8(m);
74     return in;
75 }
76
77
78 QDebug operator<<(QDebug dbg, const Message &msg)
79 {
80     dbg.nospace() << qPrintable(QString("Message(MsgId:")) << msg.msgId()
81     << qPrintable(QString(",")) << msg.timestamp()
82     << qPrintable(QString(", Type:")) << msg.type()
83     << qPrintable(QString(", Flags:")) << msg.flags() << qPrintable(QString(")"))
84     << msg.sender() << ":" << msg.contents();
85     return dbg;
86 }