X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbufferinfo.cpp;h=c45c8aa77a5a5783432b82840751b501ac19ff89;hp=c7cdd73ecbb4807cdb88ea62c84c6f876a78dd68;hb=ed2415135359b4f8a3f75f2634e028500c08c1fe;hpb=902c95728306e5ba115de84800fc8d5d239c9d62 diff --git a/src/common/bufferinfo.cpp b/src/common/bufferinfo.cpp index c7cdd73e..c45c8aa7 100644 --- a/src/common/bufferinfo.cpp +++ b/src/common/bufferinfo.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -20,6 +20,7 @@ #include #include +#include #include #include "bufferinfo.h" @@ -27,42 +28,54 @@ #include "util.h" BufferInfo::BufferInfo() - : _id(0), + : _bufferId(0), _netid(0), - _gid(0), - _networkName(QString()), - _bufferName(QString()) { + _type(InvalidBuffer), + _groupId(0), + _bufferName(QString()) +{ } -BufferInfo::BufferInfo(uint id, uint networkid, uint gid, QString net, QString buf) - : _id(id), +BufferInfo::BufferInfo(BufferId id, NetworkId networkid, Type type, uint gid, QString buf) + : _bufferId(id), _netid(networkid), - _gid(gid), - _networkName(net), - _bufferName(buf) { + _type(type), + _groupId(gid), + _bufferName(buf) +{ } -QString BufferInfo::buffer() const { +BufferInfo BufferInfo::fakeStatusBuffer(NetworkId networkId) { + return BufferInfo(0, networkId, StatusBuffer); +} + +QString BufferInfo::bufferName() const { if(isChannelName(_bufferName)) return _bufferName; else - return nickFromMask(_bufferName); + return nickFromMask(_bufferName); // FIXME get rid of global functions and use the Network stuff instead! +} + +QDebug operator<<(QDebug dbg, const BufferInfo &b) { + dbg.nospace() << "(bufId: " << b.bufferId() << ", netId: " << b.networkId() << ", groupId: " << b.groupId() << ", buf: " << b.bufferName() << ")"; + return dbg.space(); } QDataStream &operator<<(QDataStream &out, const BufferInfo &bufferInfo) { - out << bufferInfo._id << bufferInfo._netid << bufferInfo._gid << bufferInfo._networkName.toUtf8() << bufferInfo._bufferName.toUtf8(); + out << bufferInfo._bufferId << bufferInfo._netid << (qint16)bufferInfo._type << bufferInfo._groupId << bufferInfo._bufferName.toUtf8(); return out; } QDataStream &operator>>(QDataStream &in, BufferInfo &bufferInfo) { - QByteArray n, b; - in >> bufferInfo._id >> bufferInfo._netid >> bufferInfo._gid >> n >> b; - bufferInfo._networkName = QString::fromUtf8(n); - bufferInfo._bufferName = QString::fromUtf8(b); + QByteArray buffername; + qint16 bufferType; + in >> bufferInfo._bufferId >> bufferInfo._netid >> bufferType >> bufferInfo._groupId >> buffername; + bufferInfo._type = (BufferInfo::Type)bufferType; + bufferInfo._bufferName = QString::fromUtf8(buffername); return in; } uint qHash(const BufferInfo &bufferid) { - return qHash(bufferid._id); + return qHash(bufferid._bufferId); }