- Improved the speed of IrcServerHandler (and other BasicHandler
[quassel.git] / src / common / bufferinfo.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 <QString>
22 #include <QDataStream>
23 #include <QDebug>
24 #include <QByteArray>
25
26 #include "bufferinfo.h"
27
28 #include "util.h"
29
30 BufferInfo::BufferInfo()
31   : _id(0),
32     _netid(0),
33     _gid(0),
34     _networkName(QString()),
35     _bufferName(QString()) {
36 }
37
38 BufferInfo::BufferInfo(uint id, uint networkid, uint gid, QString net, QString buf)
39   : _id(id),
40     _netid(networkid),
41     _gid(gid),
42     _networkName(net),
43     _bufferName(buf) {
44 }
45
46 QString BufferInfo::buffer() const {
47   if(isChannelName(_bufferName))
48     return _bufferName;
49   else
50     return nickFromMask(_bufferName);  // FIXME get rid of global functions and use the Network stuff instead!
51 }
52
53 QDebug operator<<(QDebug dbg, const BufferInfo &b) {
54   dbg.nospace() << "(bufId: " << b.uid() << ", netId: " << b.networkId() << ", groupId: " << b.groupId()
55                 << ", net: " << b.network() << ", buf: " << b.buffer() << ")";
56
57   return dbg.space();
58 }
59
60 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo) {
61   out << bufferInfo._id << bufferInfo._netid << bufferInfo._gid << bufferInfo._networkName.toUtf8() << bufferInfo._bufferName.toUtf8();
62   return out;
63 }
64
65 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo) {
66   QByteArray n, b;
67   in >> bufferInfo._id >> bufferInfo._netid >> bufferInfo._gid >> n >> b;
68   bufferInfo._networkName = QString::fromUtf8(n);
69   bufferInfo._bufferName = QString::fromUtf8(b);
70   return in;
71 }
72
73 uint qHash(const BufferInfo &bufferid) {
74   return qHash(bufferid._id);
75 }
76