Started to reorganize the Buffer{Model|View|Filter}. Mostly cleanup at the moment.
[quassel.git] / src / common / bufferinfo.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development Team             *
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) any later version.                                   *
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 <QByteArray>
24
25 #include "bufferinfo.h"
26
27 #include "util.h"
28
29 BufferInfo::BufferInfo()
30   : _id(0),
31     _netid(0),
32     _gid(0),
33     _networkName(QString()),
34     _bufferName(QString()) {
35 }
36
37 BufferInfo::BufferInfo(uint id, uint networkid, uint gid, QString net, QString buf)
38   : _id(id),
39     _netid(networkid),
40     _gid(gid),
41     _networkName(net),
42     _bufferName(buf) {
43 }
44
45 QString BufferInfo::buffer() const {
46   if(isChannelName(_bufferName))
47     return _bufferName;
48   else
49     return nickFromMask(_bufferName);
50 }
51
52 QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo) {
53   out << bufferInfo._id << bufferInfo._netid << bufferInfo._gid << bufferInfo._networkName.toUtf8() << bufferInfo._bufferName.toUtf8();
54   return out;
55 }
56
57 QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo) {
58   QByteArray n, b;
59   in >> bufferInfo._id >> bufferInfo._netid >> bufferInfo._gid >> n >> b;
60   bufferInfo._networkName = QString::fromUtf8(n);
61   bufferInfo._bufferName = QString::fromUtf8(b);
62   return in;
63 }
64
65 uint qHash(const BufferInfo &bufferid) {
66   return qHash(bufferid._id);
67 }
68