Make button to edit identities from networks settings work
[quassel.git] / src / common / message.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, 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, Flags flags)
28   : _timestamp(QDateTime::currentDateTime().toUTC()),
29     _bufferInfo(bufferInfo),
30     _contents(contents),
31     _sender(sender),
32     _type(type),
33     _flags(flags)
34 {
35 }
36
37 Message::Message(const QDateTime &ts, const BufferInfo &bufferInfo, Type type, const QString &contents, const QString &sender, Flags flags)
38   : _timestamp(ts),
39     _bufferInfo(bufferInfo),
40     _contents(contents),
41     _sender(sender),
42     _type(type),
43     _flags(flags)
44 {
45 }
46
47 void Message::setFlags(Flags flags) {
48   _flags = flags;
49 }
50
51 QDataStream &operator<<(QDataStream &out, const Message &msg) {
52   out << msg.msgId() << (quint32)msg.timestamp().toTime_t() << (quint32)msg.type() << (quint8)msg.flags()
53       << msg.bufferInfo() << msg.sender().toUtf8() << msg.contents().toUtf8();
54   return out;
55 }
56
57 QDataStream &operator>>(QDataStream &in, Message &msg) {
58   quint8 f;
59   quint32 t;
60   quint32 ts;
61   QByteArray s, m;
62   BufferInfo buf;
63   in >> msg._msgId >> ts >> t >> f >> buf >> s >> m;
64   msg._type = (Message::Type)t;
65   msg._flags = (Message::Flags)f;
66   msg._bufferInfo = buf;
67   msg._timestamp = QDateTime::fromTime_t(ts);
68   msg._sender = QString::fromUtf8(s);
69   msg._contents = QString::fromUtf8(m);
70   return in;
71 }
72
73 QDebug operator<<(QDebug dbg, const Message &msg) {
74   dbg.nospace() << qPrintable(QString("Message(MsgId:")) << msg.msgId()
75               << qPrintable(QString(",")) << msg.timestamp()
76               << qPrintable(QString(", Type:")) << msg.type()
77               << qPrintable(QString(", Flags:")) << msg.flags() << qPrintable(QString(")"))
78               << msg.sender() << ":" << msg.contents();
79   return dbg;
80 }