Browse Source

Merge pull request #7282 from glassez/fsutils

Improve utils/fs.* and fix coding style
adaptive-webui-19844
sledgehammer999 7 years ago committed by GitHub
parent
commit
cccb22f0e3
  1. 47
      src/base/utils/fs.cpp
  2. 8
      src/base/utils/fs.h

47
src/base/utils/fs.cpp

@ -72,26 +72,26 @@ QString Utils::Fs::fromNativePath(const QString &path)
QString Utils::Fs::fileExtension(const QString &filename) QString Utils::Fs::fileExtension(const QString &filename)
{ {
QString ext = QString(filename).remove(QB_EXT); QString ext = QString(filename).remove(QB_EXT);
const int point_index = ext.lastIndexOf("."); const int pointIndex = ext.lastIndexOf(".");
return (point_index >= 0) ? ext.mid(point_index + 1) : QString(); return (pointIndex >= 0) ? ext.mid(pointIndex + 1) : QString();
} }
QString Utils::Fs::fileName(const QString& file_path) QString Utils::Fs::fileName(const QString &filePath)
{ {
QString path = fromNativePath(file_path); QString path = fromNativePath(filePath);
const int slash_index = path.lastIndexOf("/"); const int slashIndex = path.lastIndexOf("/");
if (slash_index == -1) if (slashIndex == -1)
return path; return path;
return path.mid(slash_index + 1); return path.mid(slashIndex + 1);
} }
QString Utils::Fs::folderName(const QString& file_path) QString Utils::Fs::folderName(const QString &filePath)
{ {
QString path = fromNativePath(file_path); QString path = fromNativePath(filePath);
const int slash_index = path.lastIndexOf("/"); const int slashIndex = path.lastIndexOf("/");
if (slash_index == -1) if (slashIndex == -1)
return path; return path;
return path.left(slash_index); return path.left(slashIndex);
} }
/** /**
@ -102,7 +102,7 @@ QString Utils::Fs::folderName(const QString& file_path)
bool Utils::Fs::smartRemoveEmptyFolderTree(const QString &path) bool Utils::Fs::smartRemoveEmptyFolderTree(const QString &path)
{ {
if (path.isEmpty() || !QDir(path).exists()) if (path.isEmpty() || !QDir(path).exists())
return false; return true;
static const QStringList deleteFilesList = { static const QStringList deleteFilesList = {
// Windows // Windows
@ -119,7 +119,9 @@ bool Utils::Fs::smartRemoveEmptyFolderTree(const QString& path)
QDirIterator iter(path, (QDir::AllDirs | QDir::NoDotAndDotDot), QDirIterator::Subdirectories); QDirIterator iter(path, (QDir::AllDirs | QDir::NoDotAndDotDot), QDirIterator::Subdirectories);
while (iter.hasNext()) while (iter.hasNext())
dirList << iter.next() + "/"; dirList << iter.next() + "/";
std::sort(dirList.begin(), dirList.end(), [](const QString &l, const QString &r) { return l.count("/") > r.count("/"); }); // sort descending by directory depth // sort descending by directory depth
std::sort(dirList.begin(), dirList.end()
, [](const QString &l, const QString &r) { return l.count("/") > r.count("/"); });
for (const QString &p : dirList) { for (const QString &p : dirList) {
// remove unwanted files // remove unwanted files
@ -147,9 +149,9 @@ bool Utils::Fs::smartRemoveEmptyFolderTree(const QString& path)
* *
* This function will try to fix the file permissions before removing it. * This function will try to fix the file permissions before removing it.
*/ */
bool Utils::Fs::forceRemove(const QString& file_path) bool Utils::Fs::forceRemove(const QString &filePath)
{ {
QFile f(file_path); QFile f(filePath);
if (!f.exists()) if (!f.exists())
return true; return true;
// Make sure we have read/write permissions // Make sure we have read/write permissions
@ -236,9 +238,9 @@ qint64 Utils::Fs::freeDiskSpaceOnPath(const QString &path)
return QStorageInfo(path).bytesAvailable(); return QStorageInfo(path).bytesAvailable();
} }
QString Utils::Fs::branchPath(const QString& file_path, QString* removed) QString Utils::Fs::branchPath(const QString &filePath, QString *removed)
{ {
QString ret = fromNativePath(file_path); QString ret = fromNativePath(filePath);
if (ret.endsWith("/")) if (ret.endsWith("/"))
ret.chop(1); ret.chop(1);
const int slashIndex = ret.lastIndexOf("/"); const int slashIndex = ret.lastIndexOf("/");
@ -261,7 +263,7 @@ bool Utils::Fs::sameFileNames(const QString &first, const QString &second)
QString Utils::Fs::expandPath(const QString &path) QString Utils::Fs::expandPath(const QString &path)
{ {
QString ret = fromNativePath(path.trimmed()); QString ret = path.trimmed();
if (ret.isEmpty()) if (ret.isEmpty())
return ret; return ret;
@ -270,12 +272,7 @@ QString Utils::Fs::expandPath(const QString &path)
QString Utils::Fs::expandPathAbs(const QString &path) QString Utils::Fs::expandPathAbs(const QString &path)
{ {
QString ret = expandPath(path); return QDir(expandPath(path)).absolutePath();
if (!QDir::isAbsolutePath(ret))
ret = QDir(ret).absolutePath();
return ret;
} }
QString Utils::Fs::tempPath() QString Utils::Fs::tempPath()

8
src/base/utils/fs.h

@ -44,21 +44,21 @@ namespace Utils
QString toNativePath(const QString &path); QString toNativePath(const QString &path);
QString fromNativePath(const QString &path); QString fromNativePath(const QString &path);
QString fileExtension(const QString &filename); QString fileExtension(const QString &filename);
QString fileName(const QString& file_path); QString fileName(const QString &filePath);
QString folderName(const QString& file_path); QString folderName(const QString &filePath);
qint64 computePathSize(const QString &path); qint64 computePathSize(const QString &path);
bool sameFiles(const QString &path1, const QString &path2); bool sameFiles(const QString &path1, const QString &path2);
QString toValidFileSystemName(const QString &name, bool allowSeparators = false QString toValidFileSystemName(const QString &name, bool allowSeparators = false
, const QString &pad = QLatin1String(" ")); , const QString &pad = QLatin1String(" "));
bool isValidFileSystemName(const QString &name, bool allowSeparators = false); bool isValidFileSystemName(const QString &name, bool allowSeparators = false);
qint64 freeDiskSpaceOnPath(const QString &path); qint64 freeDiskSpaceOnPath(const QString &path);
QString branchPath(const QString& file_path, QString* removed = 0); QString branchPath(const QString &filePath, QString *removed = 0);
bool sameFileNames(const QString &first, const QString &second); bool sameFileNames(const QString &first, const QString &second);
QString expandPath(const QString &path); QString expandPath(const QString &path);
QString expandPathAbs(const QString &path); QString expandPathAbs(const QString &path);
bool smartRemoveEmptyFolderTree(const QString &path); bool smartRemoveEmptyFolderTree(const QString &path);
bool forceRemove(const QString& file_path); bool forceRemove(const QString &filePath);
void removeDirRecursive(const QString &path); void removeDirRecursive(const QString &path);
QString tempPath(); QString tempPath();

Loading…
Cancel
Save