more default nick and realname improvements
[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 QDataStream &operator<<(QDataStream &out, const Message &msg) {
48   out << msg.msgId() << (quint32)msg.timestamp().toTime_t() << (quint32)msg.type() << (quint8)msg.flags()
49       << msg.bufferInfo() << msg.sender().toUtf8() << msg.contents().toUtf8();
50   return out;
51 }
52
53 QDataStream &operator>>(QDataStream &in, Message &msg) {
54   quint8 f;
55   quint32 t;
56   quint32 ts;
57   QByteArray s, m;
58   BufferInfo buf;
59   in >> msg._msgId >> ts >> t >> f >> buf >> s >> m;
60   msg._type = (Message::Type)t;
61   msg._flags = (Message::Flags)f;
62   msg._bufferInfo = buf;
63   msg._timestamp = QDateTime::fromTime_t(ts);
64   msg._sender = QString::fromUtf8(s);
65   msg._contents = QString::fromUtf8(m);
66   return in;
67 }
68
69 QDebug operator<<(QDebug dbg, const Message &msg) {
70   dbg.nospace() << qPrintable(QString("Message(MsgId:")) << msg.msgId()
71               << qPrintable(QString(",")) << msg.timestamp()
72               << qPrintable(QString(", Type:")) << msg.type()
73               << qPrintable(QString(", Flags:")) << msg.flags() << qPrintable(QString(")"))
74               << msg.sender() << ":" << msg.contents();
75   return dbg;
76 }