Don't show migration warnings if we don't have old settings to migrate
[quassel.git] / src / common / util.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 "util.h"
22
23 #include <QCoreApplication>
24 #include <QDebug>
25 #include <QFile>
26 #include <QLibraryInfo>
27 #include <QTextCodec>
28 #include <QTranslator>
29
30 #include "quassel.h"
31
32 class QMetaMethod;
33
34 QString nickFromMask(QString mask) {
35   return mask.section('!', 0, 0);
36 }
37
38 QString userFromMask(QString mask) {
39   QString userhost = mask.section('!', 1);
40   if(userhost.isEmpty()) return QString();
41   return userhost.section('@', 0, 0);
42 }
43
44 QString hostFromMask(QString mask) {
45   QString userhost = mask.section('!', 1);
46   if(userhost.isEmpty()) return QString();
47   return userhost.section('@', 1);
48 }
49
50 bool isChannelName(QString str) {
51   return QString("#&!+").contains(str[0]);
52 }
53
54 QString stripFormatCodes(QString str) {
55   str.remove(QRegExp("\x03(\\d\\d?(,\\d\\d?)?)?"));
56   str.remove('\x02');
57   str.remove('\x0f');
58   str.remove('\x12');
59   str.remove('\x16');
60   str.remove('\x1d');
61   str.remove('\x1f');
62   return str;
63 }
64
65 QString decodeString(const QByteArray &input, QTextCodec *codec) {
66   // First, we check if it's utf8. It is very improbable to encounter a string that looks like
67   // valid utf8, but in fact is not. This means that if the input string passes as valid utf8, it
68   // is safe to assume that it is.
69   // Q_ASSERT(sizeof(const char) == sizeof(quint8));  // In God we trust...
70   bool isUtf8 = true;
71   int cnt = 0;
72   for(int i = 0; i < input.size(); i++) {
73     if(cnt) {
74       // We check a part of a multibyte char. These need to be of the form 10yyyyyy.
75       if((input[i] & 0xc0) != 0x80) { isUtf8 = false; break; }
76       cnt--;
77       continue;
78     }
79     if((input[i] & 0x80) == 0x00) continue; // 7 bit is always ok
80     if((input[i] & 0xf8) == 0xf0) { cnt = 3; continue; }  // 4-byte char 11110xxx 10yyyyyy 10zzzzzz 10vvvvvv
81     if((input[i] & 0xf0) == 0xe0) { cnt = 2; continue; }  // 3-byte char 1110xxxx 10yyyyyy 10zzzzzz
82     if((input[i] & 0xe0) == 0xc0) { cnt = 1; continue; }  // 2-byte char 110xxxxx 10yyyyyy
83     isUtf8 = false; break;  // 8 bit char, but not utf8!
84   }
85   if(isUtf8 && cnt == 0) {
86     QString s = QString::fromUtf8(input);
87     //qDebug() << "Detected utf8:" << s;
88     return s;
89   }
90   //QTextCodec *codec = QTextCodec::codecForName(encoding.toAscii());
91   if(!codec) return QString::fromAscii(input);
92   return codec->toUnicode(input);
93 }
94
95 uint editingDistance(const QString &s1, const QString &s2) {
96   uint n = s1.size()+1;
97   uint m = s2.size()+1;
98   QVector< QVector< uint > >matrix(n,QVector<uint>(m,0));
99
100   for(uint i = 0; i < n; i++)
101     matrix[i][0] = i;
102
103   for(uint i = 0; i < m; i++)
104     matrix[0][i] = i;
105
106   uint min;
107   for(uint i = 1; i < n; i++) {
108     for(uint j = 1; j < m; j++) {
109       uint deleteChar = matrix[i-1][j] + 1;
110       uint insertChar = matrix[i][j-1] + 1;
111
112       if(deleteChar < insertChar)
113         min = deleteChar;
114       else
115         min = insertChar;
116
117       if(s1[i-1] == s2[j-1]) {
118         uint inheritChar = matrix[i-1][j-1];
119         if(inheritChar < min)
120           min = inheritChar;
121       }
122
123       matrix[i][j] = min;
124     }
125   }
126   return matrix[n-1][m-1];
127 }
128
129 void loadTranslation(const QLocale &locale) {
130   QTranslator *qtTranslator = QCoreApplication::instance()->findChild<QTranslator *>("QtTr");
131   QTranslator *quasselTranslator = QCoreApplication::instance()->findChild<QTranslator *>("QuasselTr");
132
133   if(!qtTranslator) {
134     qtTranslator = new QTranslator(qApp);
135     qtTranslator->setObjectName("QtTr");
136     qApp->installTranslator(qtTranslator);
137   }
138   if(!quasselTranslator) {
139     quasselTranslator = new QTranslator(qApp);
140     quasselTranslator->setObjectName("QuasselTr");
141     qApp->installTranslator(quasselTranslator);
142   }
143
144   QLocale::setDefault(locale);
145
146   if(locale.language() == QLocale::C)
147     return;
148
149   bool success = qtTranslator->load(QString(":i18n/qt_%1").arg(locale.name()));
150   if(!success)
151     qtTranslator->load(QString("%2/qt_%1").arg(locale.name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)));
152   quasselTranslator->load(QString(":i18n/quassel_%1").arg(locale.name()));
153 }
154
155 QString secondsToString(int timeInSeconds) {
156     QList< QPair<int, QString> > timeUnit;
157     timeUnit.append(qMakePair(365*24*60*60, QCoreApplication::translate("Quassel::secondsToString()", "year")));
158     timeUnit.append(qMakePair(24*60*60, QCoreApplication::translate("Quassel::secondsToString()", "day")));
159     timeUnit.append(qMakePair(60*60, QCoreApplication::translate("Quassel::secondsToString()", "h")));
160     timeUnit.append(qMakePair(60, QCoreApplication::translate("Quassel::secondsToString()", "min")));
161     timeUnit.append(qMakePair(1, QCoreApplication::translate("Quassel::secondsToString()", "sec")));
162
163     QStringList returnString;
164     for(int i=0; i < timeUnit.size(); i++) {
165       int n = timeInSeconds / timeUnit[i].first;
166       if(n > 0) {
167         returnString += QString("%1 %2").arg(QString::number(n), timeUnit[i].second);
168       }
169       timeInSeconds = timeInSeconds % timeUnit[i].first;
170     }
171     return returnString.join(", ");
172 }