Finaly got rid of the synchronizers, making Quassel quite a bit more lightweight...
[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 #include <QDebug>
23 #include <QTextCodec>
24
25 class QMetaMethod;
26
27 QString nickFromMask(QString mask) {
28   return mask.section('!', 0, 0);
29 }
30
31 QString userFromMask(QString mask) {
32   QString userhost = mask.section('!', 1);
33   if(userhost.isEmpty()) return QString();
34   return userhost.section('@', 0, 0);
35 }
36
37 QString hostFromMask(QString mask) {
38   QString userhost = mask.section('!', 1);
39   if(userhost.isEmpty()) return QString();
40   return userhost.section('@', 1);
41 }
42
43 bool isChannelName(QString str) {
44   return QString("#&!+").contains(str[0]);
45 }
46
47 QString decodeString(QByteArray input, QString encoding) {
48   // First, we check if it's utf8. It is very improbable to encounter a string that looks like
49   // valid utf8, but in fact is not. This means that if the input string passes as valid utf8, it
50   // is safe to assume that it is.
51   Q_ASSERT(sizeof(const char) == sizeof(quint8));  // just to make sure
52   bool isUtf8 = true;
53   int cnt = 0;
54   for(int i = 0; i < input.size(); i++) {
55     if(cnt) {
56       // We check a part of a multibyte char. These need to be of the form 10yyyyyy.
57       if((input[i] & 0xc0) != 0x80) { isUtf8 = false; break; }
58       cnt--;
59       continue;
60     }
61     if((input[i] & 0x80) == 0x00) continue; // 7 bit is always ok
62     if((input[i] & 0xf8) == 0xf0) { cnt = 3; continue; }  // 4-byte char 11110xxx 10yyyyyy 10zzzzzz 10vvvvvv
63     if((input[i] & 0xf0) == 0xe0) { cnt = 2; continue; }  // 3-byte char 1110xxxx 10yyyyyy 10zzzzzz
64     if((input[i] & 0xe0) == 0xc0) { cnt = 1; continue; }  // 2-byte char 110xxxxx 10yyyyyy
65     isUtf8 = false; break;  // 8 bit char, but not utf8!
66   }
67   if(isUtf8 && cnt == 0) {
68     QString s = QString::fromUtf8(input);
69     //qDebug() << "Detected utf8:" << s;
70     return s;
71   }
72   QTextCodec *codec = QTextCodec::codecForName(encoding.toAscii());
73   if(!codec) {
74     qWarning() << QString("Invalid encoding: %1").arg(encoding);
75     return QString::fromAscii(input);
76   }
77   return codec->toUnicode(input);
78 }
79
80 void writeDataToDevice(QIODevice *dev, const QVariant &item) {
81   QByteArray block;
82   QDataStream out(&block, QIODevice::WriteOnly);
83   out.setVersion(QDataStream::Qt_4_2);
84   out << (quint32)0 << item;
85   out.device()->seek(0);
86   out << (quint32)(block.size() - sizeof(quint32));
87   dev->write(block);
88 }
89
90 bool readDataFromDevice(QIODevice *dev, quint32 &blockSize, QVariant &item) {
91   QDataStream in(dev);
92   in.setVersion(QDataStream::Qt_4_2);
93
94   if(blockSize == 0) {
95     if(dev->bytesAvailable() < (int)sizeof(quint32)) return false;
96     in >> blockSize;
97   }
98   if(dev->bytesAvailable() < blockSize) return false;
99   in >> item;
100   return true;
101 }
102
103
104 uint editingDistance(const QString &s1, const QString &s2) {
105   uint n = s1.size()+1;
106   uint m = s2.size()+1;
107   //uint matrix[n][m];
108   QVector< QVector< uint > >matrix(n,QVector<uint>(m,0));
109
110   for(uint i = 0; i < n; i++)
111     matrix[i][0] = i;
112
113   for(uint i = 0; i < m; i++)
114     matrix[0][i] = i;
115
116   uint min;
117   for(uint i = 1; i < n; i++) {
118     for(uint j = 1; j < m; j++) {
119       uint deleteChar = matrix[i-1][j] + 1;
120       uint insertChar = matrix[i][j-1] + 1;
121
122       if(deleteChar < insertChar)
123         min = deleteChar;
124       else
125         min = insertChar;
126       
127       if(s1[i-1] == s2[j-1]) {
128         uint inheritChar = matrix[i-1][j-1];
129         if(inheritChar < min)
130           min = inheritChar;
131       }
132
133       matrix[i][j] = min;
134     }
135   }
136   return matrix[n-1][m-1];
137 }
138
139 QByteArray methodName(const QMetaMethod &method) {
140   QByteArray sig(method.signature());
141   return sig.left(sig.indexOf("("));
142 }