2010-03-20 22:09:27 +03:00
/*
2015-04-19 18:17:47 +03:00
* Bittorrent Client using Qt and libtorrent .
2010-03-20 22:09:27 +03:00
* Copyright ( C ) 2006 Christophe Dumez
*
* 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 .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
*
* In addition , as a special exception , the copyright holders give permission to
* link this program with the OpenSSL project ' s " OpenSSL " library ( or with
* modified versions of it that use the same license as the " OpenSSL " library ) ,
* and distribute the linked executables . You must obey the GNU General Public
* License in all respects for all of the code used other than " OpenSSL " . If you
* modify file ( s ) , you may extend this exception to your version of the file ( s ) ,
* but you are not obligated to do so . If you do not wish to do so , delete this
* exception statement from your version .
*
* Contact : chris @ qbittorrent . org
*/
# include <QUrl>
# include <QDir>
# include <QFileInfo>
# include <QDateTime>
# include <QByteArray>
2011-01-06 15:12:07 +03:00
# include <QDebug>
2011-09-11 21:22:54 +04:00
# include <QProcess>
2011-10-02 18:56:00 +04:00
# include <QSettings>
2014-10-18 03:29:12 +04:00
# include <QThread>
2010-03-20 22:09:27 +03:00
# ifdef DISABLE_GUI
# include <QCoreApplication>
# else
# include <QApplication>
# include <QDesktopWidget>
# endif
2013-09-21 11:59:58 +04:00
# ifdef Q_OS_WIN
2010-06-09 13:48:14 +04:00
# include <windows.h>
2010-12-31 16:36:32 +03:00
# include <PowrProf.h>
2010-06-09 13:48:14 +04:00
const int UNLEN = 256 ;
# else
# include <unistd.h>
# include <sys/types.h>
2010-03-20 22:09:27 +03:00
# endif
2013-09-21 11:59:58 +04:00
# ifdef Q_OS_MAC
2010-03-20 22:09:27 +03:00
# include <CoreServices/CoreServices.h>
2010-08-17 14:50:14 +04:00
# include <Carbon/Carbon.h>
2010-03-20 22:09:27 +03:00
# endif
2011-01-15 11:42:32 +03:00
# ifndef DISABLE_GUI
2013-09-21 11:59:58 +04:00
# if (defined(Q_OS_UNIX) && !defined(Q_OS_MAC)) && defined(QT_DBUS_LIB)
2010-08-16 21:35:32 +04:00
# include <QDBusInterface>
# include <QDBusMessage>
# endif
2011-01-15 11:42:32 +03:00
# endif // DISABLE_GUI
2010-08-16 21:35:32 +04:00
2015-05-06 14:53:27 +03:00
# include "core/utils/string.h"
2015-04-19 18:17:47 +03:00
# include "misc.h"
2010-11-23 00:55:32 +03:00
2011-01-20 19:45:59 +03:00
static struct { const char * source ; const char * comment ; } units [ ] = {
2014-11-26 00:10:32 +03:00
QT_TRANSLATE_NOOP3 ( " misc " , " B " , " bytes " ) ,
QT_TRANSLATE_NOOP3 ( " misc " , " KiB " , " kibibytes (1024 bytes) " ) ,
QT_TRANSLATE_NOOP3 ( " misc " , " MiB " , " mebibytes (1024 kibibytes) " ) ,
QT_TRANSLATE_NOOP3 ( " misc " , " GiB " , " gibibytes (1024 mibibytes) " ) ,
QT_TRANSLATE_NOOP3 ( " misc " , " TiB " , " tebibytes (1024 gibibytes) " )
2011-03-21 22:01:36 +03:00
} ;
2010-12-02 21:21:45 +03:00
2011-01-15 11:42:32 +03:00
# ifndef DISABLE_GUI
2015-05-06 14:53:27 +03:00
void Utils : : Misc : : shutdownComputer ( ShutdownAction action )
2014-11-26 00:10:32 +03:00
{
2013-09-21 11:59:58 +04:00
# if (defined(Q_OS_UNIX) && !defined(Q_OS_MAC)) && defined(QT_DBUS_LIB)
2014-11-26 00:10:32 +03:00
// Use dbus to power off / suspend the system
2015-05-06 14:53:27 +03:00
if ( action ! = ShutdownAction : : Shutdown ) {
2014-11-26 00:10:32 +03:00
// Some recent systems use systemd's logind
QDBusInterface login1Iface ( " org.freedesktop.login1 " , " /org/freedesktop/login1 " ,
" org.freedesktop.login1.Manager " , QDBusConnection : : systemBus ( ) ) ;
if ( login1Iface . isValid ( ) ) {
2015-05-06 14:53:27 +03:00
if ( action = = ShutdownAction : : Suspend )
2014-11-26 00:10:32 +03:00
login1Iface . call ( " Suspend " , false ) ;
else
login1Iface . call ( " Hibernate " , false ) ;
return ;
}
// Else, other recent systems use UPower
QDBusInterface upowerIface ( " org.freedesktop.UPower " , " /org/freedesktop/UPower " ,
" org.freedesktop.UPower " , QDBusConnection : : systemBus ( ) ) ;
if ( upowerIface . isValid ( ) ) {
2015-05-06 14:53:27 +03:00
if ( action = = ShutdownAction : : Suspend )
2014-11-26 00:10:32 +03:00
upowerIface . call ( " Suspend " ) ;
else
upowerIface . call ( " Hibernate " ) ;
return ;
}
// HAL (older systems)
QDBusInterface halIface ( " org.freedesktop.Hal " , " /org/freedesktop/Hal/devices/computer " ,
" org.freedesktop.Hal.Device.SystemPowerManagement " ,
QDBusConnection : : systemBus ( ) ) ;
2015-05-06 14:53:27 +03:00
if ( action = = ShutdownAction : : Suspend )
2014-11-26 00:10:32 +03:00
halIface . call ( " Suspend " , 5 ) ;
else
halIface . call ( " Hibernate " ) ;
2013-12-23 15:41:07 +04:00
}
2014-11-26 00:10:32 +03:00
else {
// Some recent systems use systemd's logind
QDBusInterface login1Iface ( " org.freedesktop.login1 " , " /org/freedesktop/login1 " ,
" org.freedesktop.login1.Manager " , QDBusConnection : : systemBus ( ) ) ;
if ( login1Iface . isValid ( ) ) {
login1Iface . call ( " PowerOff " , false ) ;
return ;
}
// Else, other recent systems use ConsoleKit
QDBusInterface consolekitIface ( " org.freedesktop.ConsoleKit " , " /org/freedesktop/ConsoleKit/Manager " ,
" org.freedesktop.ConsoleKit.Manager " , QDBusConnection : : systemBus ( ) ) ;
if ( consolekitIface . isValid ( ) ) {
consolekitIface . call ( " Stop " ) ;
return ;
}
// HAL (older systems)
QDBusInterface halIface ( " org.freedesktop.Hal " , " /org/freedesktop/Hal/devices/computer " ,
" org.freedesktop.Hal.Device.SystemPowerManagement " ,
QDBusConnection : : systemBus ( ) ) ;
halIface . call ( " Shutdown " ) ;
2011-04-05 20:41:54 +04:00
}
2010-12-31 16:36:32 +03:00
# endif
2013-09-21 11:59:58 +04:00
# ifdef Q_OS_MAC
2014-11-26 00:10:32 +03:00
AEEventID EventToSend ;
2015-05-06 14:53:27 +03:00
if ( action ! = ShutdownAction : : Shutdown )
2014-11-26 00:10:32 +03:00
EventToSend = kAESleep ;
else
EventToSend = kAEShutDown ;
AEAddressDesc targetDesc ;
static const ProcessSerialNumber kPSNOfSystemProcess = { 0 , kSystemProcess } ;
AppleEvent eventReply = { typeNull , NULL } ;
AppleEvent appleEventToSend = { typeNull , NULL } ;
2015-05-14 14:22:36 +03:00
OSStatus error = AECreateDesc ( typeProcessSerialNumber , & kPSNOfSystemProcess ,
2014-11-26 00:10:32 +03:00
sizeof ( kPSNOfSystemProcess ) , & targetDesc ) ;
if ( error ! = noErr )
return ;
error = AECreateAppleEvent ( kCoreEventClass , EventToSend , & targetDesc ,
kAutoGenerateReturnID , kAnyTransactionID , & appleEventToSend ) ;
AEDisposeDesc ( & targetDesc ) ;
if ( error ! = noErr )
return ;
error = AESend ( & appleEventToSend , & eventReply , kAENoReply ,
kAENormalPriority , kAEDefaultTimeout , NULL , NULL ) ;
AEDisposeDesc ( & appleEventToSend ) ;
if ( error ! = noErr )
return ;
AEDisposeDesc ( & eventReply ) ;
2010-08-16 21:42:21 +04:00
# endif
2013-09-21 11:59:58 +04:00
# ifdef Q_OS_WIN
2014-11-26 00:10:32 +03:00
HANDLE hToken ; // handle to process token
TOKEN_PRIVILEGES tkp ; // pointer to token structure
if ( ! OpenProcessToken ( GetCurrentProcess ( ) , TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY , & hToken ) )
return ;
// Get the LUID for shutdown privilege.
LookupPrivilegeValue ( NULL , SE_SHUTDOWN_NAME ,
& tkp . Privileges [ 0 ] . Luid ) ;
tkp . PrivilegeCount = 1 ; // one privilege to set
tkp . Privileges [ 0 ] . Attributes = SE_PRIVILEGE_ENABLED ;
// Get shutdown privilege for this process.
AdjustTokenPrivileges ( hToken , FALSE , & tkp , 0 ,
( PTOKEN_PRIVILEGES ) NULL , 0 ) ;
// Cannot test the return value of AdjustTokenPrivileges.
if ( GetLastError ( ) ! = ERROR_SUCCESS )
return ;
2015-05-06 14:53:27 +03:00
if ( action = = ShutdownAction : : Suspend )
2014-11-26 00:10:32 +03:00
SetSuspendState ( false , false , false ) ;
2015-05-06 14:53:27 +03:00
else if ( action = = ShutdownAction : : Hibernate )
2014-11-26 00:10:32 +03:00
SetSuspendState ( true , false , false ) ;
else
InitiateSystemShutdownA ( 0 , QCoreApplication : : translate ( " misc " , " qBittorrent will shutdown the computer now because all downloads are complete. " ) . toLocal8Bit ( ) . data ( ) , 10 , true , false ) ;
// Disable shutdown privilege.
tkp . Privileges [ 0 ] . Attributes = 0 ;
AdjustTokenPrivileges ( hToken , FALSE , & tkp , 0 ,
( PTOKEN_PRIVILEGES ) NULL , 0 ) ;
2010-08-16 21:57:15 +04:00
# endif
2010-08-16 21:35:32 +04:00
}
2011-01-15 11:48:20 +03:00
# endif // DISABLE_GUI
2010-08-16 21:35:32 +04:00
2010-03-20 22:09:27 +03:00
# ifndef DISABLE_GUI
// Get screen center
2015-05-06 14:53:27 +03:00
QPoint Utils : : Misc : : screenCenter ( QWidget * win )
2014-11-26 00:10:32 +03:00
{
int scrn = 0 ;
const QWidget * w = win - > window ( ) ;
if ( w )
scrn = QApplication : : desktop ( ) - > screenNumber ( w ) ;
else if ( QApplication : : desktop ( ) - > isVirtualDesktop ( ) )
scrn = QApplication : : desktop ( ) - > screenNumber ( QCursor : : pos ( ) ) ;
else
scrn = QApplication : : desktop ( ) - > screenNumber ( win ) ;
QRect desk ( QApplication : : desktop ( ) - > availableGeometry ( scrn ) ) ;
return QPoint ( ( desk . width ( ) - win - > frameGeometry ( ) . width ( ) ) / 2 , ( desk . height ( ) - win - > frameGeometry ( ) . height ( ) ) / 2 ) ;
2010-03-20 22:09:27 +03:00
}
# endif
2011-09-11 21:22:54 +04:00
/**
* Detects the version of python by calling
* " python --version " and parsing the output .
*/
2015-05-06 14:53:27 +03:00
int Utils : : Misc : : pythonVersion ( )
2014-11-26 00:10:32 +03:00
{
static int version = - 1 ;
if ( version < 0 ) {
QProcess python_proc ;
python_proc . start ( " python " , QStringList ( ) < < " --version " , QIODevice : : ReadOnly ) ;
if ( ! python_proc . waitForFinished ( ) ) return - 1 ;
if ( python_proc . exitCode ( ) < 0 ) return - 1 ;
QByteArray output = python_proc . readAllStandardOutput ( ) ;
if ( output . isEmpty ( ) )
output = python_proc . readAllStandardError ( ) ;
const QByteArray version_str = output . split ( ' ' ) . last ( ) ;
qDebug ( ) < < " Python version is: " < < version_str . trimmed ( ) ;
if ( version_str . startsWith ( " 3. " ) )
version = 3 ;
else
version = 2 ;
}
return version ;
2011-09-11 21:22:54 +04:00
}
2010-03-20 22:09:27 +03:00
// return best userfriendly storage unit (B, KiB, MiB, GiB, TiB)
// use Binary prefix standards from IEC 60027-2
// see http://en.wikipedia.org/wiki/Kilobyte
// value must be given in bytes
2014-08-08 03:46:54 +04:00
// to send numbers instead of strings with suffixes
2015-05-06 14:53:27 +03:00
QString Utils : : Misc : : friendlyUnit ( qreal val , bool is_speed )
2014-11-26 00:10:32 +03:00
{
if ( val < 0 )
return QCoreApplication : : translate ( " misc " , " Unknown " , " Unknown (size) " ) ;
int i = 0 ;
while ( val > = 1024. & & i + + < 6 )
val / = 1024. ;
QString ret ;
if ( i = = 0 )
ret = QString : : number ( ( long ) val ) + " " + QCoreApplication : : translate ( " misc " , units [ 0 ] . source , units [ 0 ] . comment ) ;
else
2015-05-06 14:53:27 +03:00
ret = Utils : : String : : fromDouble ( val , 1 ) + " " + QCoreApplication : : translate ( " misc " , units [ i ] . source , units [ i ] . comment ) ;
2014-11-26 00:10:32 +03:00
if ( is_speed )
ret + = QCoreApplication : : translate ( " misc " , " /s " , " per second " ) ;
return ret ;
2010-03-20 22:09:27 +03:00
}
2015-05-06 14:53:27 +03:00
bool Utils : : Misc : : isPreviewable ( const QString & extension )
2014-11-26 00:10:32 +03:00
{
static QSet < QString > multimedia_extensions ;
if ( multimedia_extensions . empty ( ) ) {
multimedia_extensions . insert ( " 3GP " ) ;
multimedia_extensions . insert ( " AAC " ) ;
multimedia_extensions . insert ( " AC3 " ) ;
multimedia_extensions . insert ( " AIF " ) ;
multimedia_extensions . insert ( " AIFC " ) ;
multimedia_extensions . insert ( " AIFF " ) ;
multimedia_extensions . insert ( " ASF " ) ;
multimedia_extensions . insert ( " AU " ) ;
multimedia_extensions . insert ( " AVI " ) ;
multimedia_extensions . insert ( " FLAC " ) ;
multimedia_extensions . insert ( " FLV " ) ;
multimedia_extensions . insert ( " M3U " ) ;
multimedia_extensions . insert ( " M4A " ) ;
multimedia_extensions . insert ( " M4P " ) ;
multimedia_extensions . insert ( " M4V " ) ;
multimedia_extensions . insert ( " MID " ) ;
multimedia_extensions . insert ( " MKV " ) ;
multimedia_extensions . insert ( " MOV " ) ;
multimedia_extensions . insert ( " MP2 " ) ;
multimedia_extensions . insert ( " MP3 " ) ;
multimedia_extensions . insert ( " MP4 " ) ;
multimedia_extensions . insert ( " MPC " ) ;
multimedia_extensions . insert ( " MPE " ) ;
multimedia_extensions . insert ( " MPEG " ) ;
multimedia_extensions . insert ( " MPG " ) ;
multimedia_extensions . insert ( " MPP " ) ;
multimedia_extensions . insert ( " OGG " ) ;
multimedia_extensions . insert ( " OGM " ) ;
multimedia_extensions . insert ( " OGV " ) ;
multimedia_extensions . insert ( " QT " ) ;
multimedia_extensions . insert ( " RA " ) ;
multimedia_extensions . insert ( " RAM " ) ;
multimedia_extensions . insert ( " RM " ) ;
multimedia_extensions . insert ( " RMV " ) ;
multimedia_extensions . insert ( " RMVB " ) ;
multimedia_extensions . insert ( " SWA " ) ;
multimedia_extensions . insert ( " SWF " ) ;
multimedia_extensions . insert ( " VOB " ) ;
multimedia_extensions . insert ( " WAV " ) ;
multimedia_extensions . insert ( " WMA " ) ;
multimedia_extensions . insert ( " WMV " ) ;
}
2012-11-11 21:23:10 +04:00
2014-11-26 00:10:32 +03:00
if ( extension . isEmpty ( ) )
return false ;
return multimedia_extensions . contains ( extension . toUpper ( ) ) ;
2010-03-20 22:09:27 +03:00
}
2015-05-06 14:53:27 +03:00
QString Utils : : Misc : : bcLinkToMagnet ( QString bc_link )
2014-11-26 00:10:32 +03:00
{
QByteArray raw_bc = bc_link . toUtf8 ( ) ;
raw_bc = raw_bc . mid ( 8 ) ; // skip bc://bt/
raw_bc = QByteArray : : fromBase64 ( raw_bc ) ; // Decode base64
// Format is now AA/url_encoded_filename/size_bytes/info_hash/ZZ
QStringList parts = QString ( raw_bc ) . split ( " / " ) ;
if ( parts . size ( ) ! = 5 ) return QString : : null ;
QString filename = parts . at ( 1 ) ;
QString hash = parts . at ( 3 ) ;
QString magnet = " magnet:?xt=urn:btih: " + hash ;
magnet + = " &dn= " + filename ;
return magnet ;
2010-07-23 02:19:42 +04:00
}
2010-03-20 22:09:27 +03:00
// Take a number of seconds and return an user-friendly
// time duration like "1d 2h 10m".
2015-05-06 14:53:27 +03:00
QString Utils : : Misc : : userFriendlyDuration ( qlonglong seconds )
2014-11-26 00:10:32 +03:00
{
if ( seconds < 0 | | seconds > = MAX_ETA )
return QString : : fromUtf8 ( " ∞ " ) ;
if ( seconds = = 0 )
return " 0 " ;
if ( seconds < 60 )
return QCoreApplication : : translate ( " misc " , " < 1m " , " < 1 minute " ) ;
int minutes = seconds / 60 ;
if ( minutes < 60 )
return QCoreApplication : : translate ( " misc " , " %1m " , " e.g: 10minutes " ) . arg ( QString : : number ( minutes ) ) ;
int hours = minutes / 60 ;
minutes = minutes - hours * 60 ;
if ( hours < 24 )
return QCoreApplication : : translate ( " misc " , " %1h %2m " , " e.g: 3hours 5minutes " ) . arg ( QString : : number ( hours ) ) . arg ( QString : : number ( minutes ) ) ;
int days = hours / 24 ;
hours = hours - days * 24 ;
if ( days < 100 )
return QCoreApplication : : translate ( " misc " , " %1d %2h " , " e.g: 2days 10hours " ) . arg ( QString : : number ( days ) ) . arg ( QString : : number ( hours ) ) ;
2010-03-20 22:09:27 +03:00
return QString : : fromUtf8 ( " ∞ " ) ;
}
2010-06-05 22:59:05 +04:00
2015-05-06 14:53:27 +03:00
QString Utils : : Misc : : getUserIDString ( )
2014-11-26 00:10:32 +03:00
{
QString uid = " 0 " ;
2013-09-21 11:59:58 +04:00
# ifdef Q_OS_WIN
2015-01-20 17:54:41 +03:00
WCHAR buffer [ UNLEN + 1 ] = { 0 } ;
DWORD buffer_len = sizeof ( buffer ) / sizeof ( * buffer ) ;
if ( GetUserNameW ( buffer , & buffer_len ) )
uid = QString : : fromWCharArray ( buffer ) ;
2010-06-09 13:48:14 +04:00
# else
2014-11-26 00:10:32 +03:00
uid = QString : : number ( getuid ( ) ) ;
2010-06-09 13:48:14 +04:00
# endif
2014-11-26 00:10:32 +03:00
return uid ;
2010-06-09 13:48:14 +04:00
}
2015-05-06 14:53:27 +03:00
QStringList Utils : : Misc : : toStringList ( const QList < bool > & l )
2014-11-26 00:10:32 +03:00
{
QStringList ret ;
foreach ( const bool & b , l )
ret < < ( b ? " 1 " : " 0 " ) ;
return ret ;
2010-06-05 22:59:05 +04:00
}
2015-05-06 14:53:27 +03:00
QList < int > Utils : : Misc : : intListfromStringList ( const QStringList & l )
2014-11-26 00:10:32 +03:00
{
QList < int > ret ;
foreach ( const QString & s , l )
ret < < s . toInt ( ) ;
return ret ;
2010-06-05 22:59:05 +04:00
}
2015-05-06 14:53:27 +03:00
QList < bool > Utils : : Misc : : boolListfromStringList ( const QStringList & l )
2014-11-26 00:10:32 +03:00
{
QList < bool > ret ;
foreach ( const QString & s , l )
ret < < ( s = = " 1 " ) ;
return ret ;
2010-06-05 22:59:05 +04:00
}
2010-10-25 23:34:42 +04:00
2015-05-06 14:53:27 +03:00
bool Utils : : Misc : : isUrl ( const QString & s )
2010-12-30 22:12:03 +03:00
{
2014-11-26 00:10:32 +03:00
const QString scheme = QUrl ( s ) . scheme ( ) ;
QRegExp is_url ( " http[s]?|ftp " , Qt : : CaseInsensitive ) ;
return is_url . exactMatch ( scheme ) ;
2010-12-30 22:12:03 +03:00
}
2015-05-06 14:53:27 +03:00
QString Utils : : Misc : : parseHtmlLinks ( const QString & raw_text )
2011-04-04 21:16:34 +04:00
{
2014-11-26 00:10:32 +03:00
QString result = raw_text ;
static QRegExp reURL (
" ( \\ s|^) " //start with whitespace or beginning of line
" ( "
" ( " //case 1 -- URL with scheme
" (http(s?)) \\ :// " //start with scheme
" ([a-zA-Z0-9_-]+ \\ .)+ " // domainpart. at least one of these must exist
" ([a-zA-Z0-9 \\ ?%=&/_ \\ .:#;-]+) " // everything to 1st non-URI char, must be at least one char after the previous dot (cannot use ".*" because it can be too greedy)
" ) "
" | "
" ( " //case 2a -- no scheme, contains common TLD example.com
" ([a-zA-Z0-9_-]+ \\ .)+ " // domainpart. at least one of these must exist
" (?= " // must be followed by TLD
" AERO|aero| " //N.B. assertions are non-capturing
" ARPA|arpa| "
" ASIA|asia| "
" BIZ|biz| "
" CAT|cat| "
" COM|com| "
" COOP|coop| "
" EDU|edu| "
" GOV|gov| "
" INFO|info| "
" INT|int| "
" JOBS|jobs| "
" MIL|mil| "
" MOBI|mobi| "
" MUSEUM|museum| "
" NAME|name| "
" NET|net| "
" ORG|org| "
" PRO|pro| "
" RO|ro| "
" RU|ru| "
" TEL|tel| "
" TRAVEL|travel "
" ) "
" ([a-zA-Z0-9 \\ ?%=&/_ \\ .:#;-]+) " // everything to 1st non-URI char, must be at least one char after the previous dot (cannot use ".*" because it can be too greedy)
" ) "
" | "
" ( " // case 2b no scheme, no TLD, must have at least 2 aphanum strings plus uncommon TLD string --> del.icio.us
" ([a-zA-Z0-9_-]+ \\ .) {2,} " //2 or more domainpart. --> del.icio.
" [a-zA-Z]{2,} " //one ab (2 char or longer) --> us
" ([a-zA-Z0-9 \\ ?%=&/_ \\ .:#;-]*) " // everything to 1st non-URI char, maybe nothing in case of del.icio.us/path
" ) "
" ) "
) ;
// Capture links
result . replace ( reURL , " \\ 1<a href= \" \\ 2 \" > \\ 2</a> " ) ;
// Capture links without scheme
static QRegExp reNoScheme ( " <a \\ s+href= \" (?!http(s?) ) ( [ a - zA - Z0 - 9 \ \ ? % = & / _ \ \ . - : # ] + ) \ \ s * \ " > " ) ;
result . replace ( reNoScheme , " <a href= \" http:// \\ 1 \" > " ) ;
return result ;
2011-04-04 21:16:34 +04:00
}
2012-05-15 20:57:31 +04:00
2015-05-06 14:53:27 +03:00
namespace
2014-11-02 22:19:27 +03:00
{
2015-05-06 14:53:27 +03:00
// Trick to get a portable sleep() function
class SleeperThread : public QThread
2014-10-18 03:29:12 +04:00
{
2015-05-06 14:53:27 +03:00
public :
static void msleep ( unsigned long msecs )
{
QThread : : msleep ( msecs ) ;
}
} ;
2014-10-18 03:29:12 +04:00
}
2015-05-06 14:53:27 +03:00
void Utils : : Misc : : msleep ( unsigned long msecs )
2014-11-26 00:10:32 +03:00
{
SleeperThread : : msleep ( msecs ) ;
2014-10-18 03:29:12 +04:00
}