mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 04:54:18 +00:00
- Code cleanup
This commit is contained in:
parent
65c4da6f0e
commit
13c670b96d
63
src/misc.h
63
src/misc.h
@ -92,24 +92,6 @@ class misc : public QObject{
|
|||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
// template <class T> static T fromQString::fromUtf8(const QString& s) {
|
|
||||||
// T x;
|
|
||||||
// std::istringstream i((const char*)s.toUtf8());
|
|
||||||
// if(!(i>>x)) {
|
|
||||||
// throw std::runtime_error("::fromString()");
|
|
||||||
// }
|
|
||||||
// return x;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// template <class T> static T fromQByteArray(const QByteArray& s) {
|
|
||||||
// T x;
|
|
||||||
// std::istringstream i((const char*)s);
|
|
||||||
// if(!(i>>x)) {
|
|
||||||
// throw std::runtime_error("::fromString()");
|
|
||||||
// }
|
|
||||||
// return x;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return best userfriendly storage unit (B, KiB, MiB, GiB, TiB)
|
// return best userfriendly storage unit (B, KiB, MiB, GiB, TiB)
|
||||||
// use Binary prefix standards from IEC 60027-2
|
// use Binary prefix standards from IEC 60027-2
|
||||||
// see http://en.wikipedia.org/wiki/Kilobyte
|
// see http://en.wikipedia.org/wiki/Kilobyte
|
||||||
@ -180,51 +162,6 @@ class misc : public QObject{
|
|||||||
return qBtPath;
|
return qBtPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not used anymore because it is not safe
|
|
||||||
// static bool removePath(QString path) {
|
|
||||||
// qDebug((QString::fromUtf8("file to delete:") + path).toUtf8());
|
|
||||||
// if(!QFile::remove(path)) {
|
|
||||||
// // Probably a folder
|
|
||||||
// QDir current_dir(path);
|
|
||||||
// if(current_dir.exists()) {
|
|
||||||
// //Remove sub items
|
|
||||||
// QStringList subItems = current_dir.entryList();
|
|
||||||
// QString item;
|
|
||||||
// foreach(item, subItems) {
|
|
||||||
// if(item != QString::fromUtf8(".") && item != QString::fromUtf8("..")) {
|
|
||||||
// qDebug("-> Removing "+(path+QDir::separator()+item).toUtf8());
|
|
||||||
// removePath(path+QDir::separator()+item);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // Remove empty folder
|
|
||||||
// if(current_dir.rmdir(path)) {
|
|
||||||
// return true;
|
|
||||||
// }else{
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// }else{
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// return true;
|
|
||||||
// }
|
|
||||||
|
|
||||||
static QString findFileInDir(QString dir_path, QString fileName) {
|
|
||||||
QDir dir(dir_path);
|
|
||||||
if(dir.exists(fileName)) {
|
|
||||||
return dir.filePath(fileName);
|
|
||||||
}
|
|
||||||
QStringList subDirs = dir.entryList(QDir::Dirs);
|
|
||||||
QString subdir_name;
|
|
||||||
foreach(subdir_name, subDirs) {
|
|
||||||
QString result = findFileInDir(dir.path()+QDir::separator()+subdir_name, fileName);
|
|
||||||
if(!result.isNull()) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return QString();
|
|
||||||
}
|
|
||||||
|
|
||||||
static void fixTrackersTiers(std::vector<announce_entry> trackers) {
|
static void fixTrackersTiers(std::vector<announce_entry> trackers) {
|
||||||
unsigned int nbTrackers = trackers.size();
|
unsigned int nbTrackers = trackers.size();
|
||||||
for(unsigned int i=0; i<nbTrackers; ++i) {
|
for(unsigned int i=0; i<nbTrackers; ++i) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user