Now using FindFirstFileEx() on supported OS. Should be a bit faster, as we can request the FindExSearchLimitToDirectories search limit.

This commit is contained in:
LoRd_MuldeR 2012-03-30 15:28:47 +02:00
parent 602e1691c4
commit 18b0993d3b
4 changed files with 53 additions and 15 deletions

View File

@ -34,6 +34,7 @@ a:visited { color: #0000EE; }
<li>Implemented coalescing of update signals to reduce the CPU usage of the LameXP process (<a href="http://forum.doom9.org/showpost.php?p=1539631&postcount=507" target="_blank">details</a>) <li>Implemented coalescing of update signals to reduce the CPU usage of the LameXP process (<a href="http://forum.doom9.org/showpost.php?p=1539631&postcount=507" target="_blank">details</a>)
<li>Run more than four instances in parallel on systems with more than four CPU cores (<a href="FAQ.html#89cbd3d0" target="_blank">details</a>) <li>Run more than four instances in parallel on systems with more than four CPU cores (<a href="FAQ.html#89cbd3d0" target="_blank">details</a>)
<li>Improved handling of different character encodings for Playlist and Cue Sheet import <li>Improved handling of different character encodings for Playlist and Cue Sheet import
<li>Tweaked directory outline on "output folder" tab for improved performance (hopefully)
<li>Improved LameXP inter-process communication by adding queue support <li>Improved LameXP inter-process communication by adding queue support
<li>Workaround for a bug that causes MediaInfo to not detect the duration of Wave files (64-Bit only) <li>Workaround for a bug that causes MediaInfo to not detect the duration of Wave files (64-Bit only)
<li>Prevent LameXP from blocking a system shutdown (encoding process is aborted, if necessary) <li>Prevent LameXP from blocking a system shutdown (encoding process is aborted, if necessary)

View File

@ -29,8 +29,8 @@
#define VER_LAMEXP_MINOR_HI 0 #define VER_LAMEXP_MINOR_HI 0
#define VER_LAMEXP_MINOR_LO 4 #define VER_LAMEXP_MINOR_LO 4
#define VER_LAMEXP_TYPE Beta #define VER_LAMEXP_TYPE Beta
#define VER_LAMEXP_PATCH 10 #define VER_LAMEXP_PATCH 11
#define VER_LAMEXP_BUILD 939 #define VER_LAMEXP_BUILD 942
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Tool versions (minimum expected versions!) // Tool versions (minimum expected versions!)

View File

@ -25,10 +25,13 @@
#include <QApplication> #include <QApplication>
#include <QFileIconProvider> #include <QFileIconProvider>
#include <QDesktopServices> #include <QDesktopServices>
#include <QLibrary>
#define IS_DIR(ATTR) (((ATTR) & FILE_ATTRIBUTE_DIRECTORY) && (!((ATTR) & FILE_ATTRIBUTE_HIDDEN))) #define IS_DIR(ATTR) (((ATTR) & FILE_ATTRIBUTE_DIRECTORY) && (!((ATTR) & FILE_ATTRIBUTE_HIDDEN)))
#define NO_DOT_OR_DOTDOT(STR) (wcscmp((STR), L".") && wcscmp((STR), L"..")) #define NO_DOT_OR_DOTDOT(STR) (wcscmp((STR), L".") && wcscmp((STR), L".."))
typedef HANDLE (WINAPI *FindFirstFileExFun)(LPCWSTR lpFileName, FINDEX_INFO_LEVELS fInfoLevelId, LPVOID lpFindFileData, FINDEX_SEARCH_OPS fSearchOp, LPVOID lpSearchFilter, DWORD dwAdditionalFlags);
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
// Dummy QFileIconProvider class // Dummy QFileIconProvider class
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
@ -157,7 +160,7 @@ bool QFileSystemModelEx::hasChildren(const QModelIndex &parent) const
{ {
if(parent.isValid()) if(parent.isValid())
{ {
return (QFileSystemModel::rowCount(parent) > 0) || hasSubfoldersCached(filePath(parent)); return /*(QFileSystemModel::rowCount(parent) > 0) ||*/ hasSubfoldersCached(filePath(parent));
} }
return true; return true;
@ -183,38 +186,71 @@ void QFileSystemModelEx::fetchMore(const QModelIndex &parent)
QFileSystemModel::fetchMore(parent); QFileSystemModel::fetchMore(parent);
} }
QModelIndex QFileSystemModelEx::index(const QString &path, int column) const
{
QFileInfo info(path);
if(info.exists() && info.isDir())
{
QStringList parts = QDir::fromNativeSeparators(info.canonicalFilePath()).split('/', QString::SkipEmptyParts);
for(int i = 2; i <= parts.count(); i++)
{
QFileInfo currentPath(((QStringList) parts.mid(0, i)).join("/"));
if((!currentPath.exists()) || (!currentPath.isDir()) || currentPath.isHidden())
{
return QModelIndex();
}
}
return QFileSystemModel::index(path, column);
}
return QModelIndex();
}
/* ------------------------ */ /* ------------------------ */
/* STATIC FUNCTIONS BELOW */ /* STATIC FUNCTIONS BELOW */
/* ------------------------ */ /* ------------------------ */
QHash<const QString, bool> QFileSystemModelEx::s_hasFolderCache; QHash<const QString, bool> QFileSystemModelEx::s_hasSubfolderCache;
QMutex QFileSystemModelEx::s_hasFolderMutex; QMutex QFileSystemModelEx::s_hasSubfolderMutex;
bool QFileSystemModelEx::hasSubfoldersCached(const QString &path) bool QFileSystemModelEx::hasSubfoldersCached(const QString &path)
{ {
QMutexLocker lock(&s_hasFolderMutex); QMutexLocker lock(&s_hasSubfolderMutex);
if(s_hasFolderCache.contains(path)) if(s_hasSubfolderCache.contains(path))
{ {
return s_hasFolderCache.value(path); return s_hasSubfolderCache.value(path);
} }
bool bChildren = hasSubfolders(path); bool bChildren = hasSubfolders(path);
s_hasFolderCache.insert(path, bChildren); s_hasSubfolderCache.insert(path, bChildren);
return bChildren; return bChildren;
} }
void QFileSystemModelEx::removeFromCache(const QString &path) void QFileSystemModelEx::removeFromCache(const QString &path)
{ {
QMutexLocker lock(&s_hasFolderMutex); QMutexLocker lock(&s_hasSubfolderMutex);
s_hasFolderCache.remove(path); s_hasSubfolderCache.remove(path);
} }
bool QFileSystemModelEx::hasSubfolders(const QString &path) bool QFileSystemModelEx::hasSubfolders(const QString &path)
{ {
bool bChildren = false; WIN32_FIND_DATAW findData; static bool FindFirstFileExInitialized = false;
HANDLE h = FindFirstFileW(QWCHAR(QDir::toNativeSeparators(path + "/*")), &findData); static FindFirstFileExFun FindFirstFileExPtr = NULL;
if(!FindFirstFileExInitialized)
{
QLibrary Kernel32Lib("kernel32.dll");
FindFirstFileExPtr = (FindFirstFileExFun) Kernel32Lib.resolve("FindFirstFileExW");
FindFirstFileExInitialized = true;
}
WIN32_FIND_DATAW findData;
bool bChildren = false;
HANDLE h = (FindFirstFileExPtr)
? FindFirstFileExPtr(QWCHAR(QDir::toNativeSeparators(path + "/*")), FindExInfoStandard, &findData, FindExSearchLimitToDirectories, NULL, 0)
: FindFirstFileW(QWCHAR(QDir::toNativeSeparators(path + "/*")), &findData);
if(h != INVALID_HANDLE_VALUE) if(h != INVALID_HANDLE_VALUE)
{ {
if(NO_DOT_OR_DOTDOT(findData.cFileName)) if(NO_DOT_OR_DOTDOT(findData.cFileName))

View File

@ -35,12 +35,13 @@ public:
virtual bool hasChildren(const QModelIndex &parent = QModelIndex()) const; virtual bool hasChildren(const QModelIndex &parent = QModelIndex()) const;
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const; virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
virtual void fetchMore(const QModelIndex &parent); virtual void fetchMore(const QModelIndex &parent);
virtual QModelIndex index(const QString &path, int column = 0) const;
private: private:
QFileIconProviderEx *m_myIconProvider; QFileIconProviderEx *m_myIconProvider;
static QHash<const QString, bool> s_hasFolderCache; static QHash<const QString, bool> s_hasSubfolderCache;
static QMutex s_hasFolderMutex; static QMutex s_hasSubfolderMutex;
static bool hasSubfolders(const QString &path); static bool hasSubfolders(const QString &path);
static bool hasSubfoldersCached(const QString &path); static bool hasSubfoldersCached(const QString &path);