Cleaning up the closet... or at least the code. Tried to reduce the number of #includ...
[quassel.git] / src / common / util.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel 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 "util.h"
22
23 QString nickFromMask(QString mask) {
24   return mask.section('!', 0, 0);
25 }
26
27 QString userFromMask(QString mask) {
28   QString userhost = mask.section('!', 1);
29   if(userhost.isEmpty()) return QString();
30   return userhost.section('@', 0, 0);
31 }
32
33 QString hostFromMask(QString mask) {
34   QString userhost = mask.section('!', 1);
35   if(userhost.isEmpty()) return QString();
36   return userhost.section('@', 1);
37 }
38
39 bool isChannelName(QString str) {
40   return QString("#&!+").contains(str[0]);
41 }
42
43 void writeDataToDevice(QIODevice *dev, const QVariant &item) {
44   QByteArray block;
45   QDataStream out(&block, QIODevice::WriteOnly);
46   out.setVersion(QDataStream::Qt_4_2);
47   out << (quint32)0 << item;
48   out.device()->seek(0);
49   out << (quint32)(block.size() - sizeof(quint32));
50   dev->write(block);
51 }
52
53 bool readDataFromDevice(QIODevice *dev, quint32 &blockSize, QVariant &item) {
54   QDataStream in(dev);
55   in.setVersion(QDataStream::Qt_4_2);
56
57   if(blockSize == 0) {
58     if(dev->bytesAvailable() < (int)sizeof(quint32)) return false;
59     in >> blockSize;
60   }
61   if(dev->bytesAvailable() < blockSize) return false;
62   in >> item;
63   return true;
64 }