LameXP/src/Thread_FileAnalyzer.h

103 lines
3.0 KiB
C
Raw Normal View History

2010-11-06 23:04:47 +01:00
///////////////////////////////////////////////////////////////////////////////
// LameXP - Audio Encoder Front-End
2020-03-28 15:31:01 +01:00
// Copyright (C) 2004-2020 LoRd_MuldeR <MuldeR2@GMX.de>
2010-11-06 23:04:47 +01:00
//
// This program is free software; you can redistribute it and/or modify
2020-03-28 15:31:01 +01:00
// it under the terms of the GNU GENERAL PUBLIC LICENSE as published by
2010-11-06 23:04:47 +01:00
// the Free Software Foundation; either version 2 of the License, or
2020-03-28 15:31:01 +01:00
// (at your option) any later version; always including the non-optional
// LAMEXP GNU GENERAL PUBLIC LICENSE ADDENDUM. See "License.txt" file!
2010-11-06 23:04:47 +01:00
//
// 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.
//
// http://www.gnu.org/licenses/gpl-2.0.txt
///////////////////////////////////////////////////////////////////////////////
#pragma once
#include <MUtils/Global.h>
2010-11-06 23:04:47 +01:00
#include <QThread>
#include <QStringList>
#include <QHash>
#include <QSet>
2010-11-06 23:04:47 +01:00
class AudioFileModel;
class QFile;
class QDir;
class QFileInfo;
class LockedFile;
class QThreadPool;
class QElapsedTimer;
2010-11-06 23:04:47 +01:00
////////////////////////////////////////////////////////////
// Splash Thread
////////////////////////////////////////////////////////////
class FileAnalyzer: public QThread
{
Q_OBJECT
public:
FileAnalyzer(const QStringList &inputFiles);
~FileAnalyzer(void);
2010-11-06 23:04:47 +01:00
void run();
bool getSuccess(void) { return (!isRunning()) && (!m_bAborted) && MUTILS_BOOLIFY(m_bSuccess); }
unsigned int filesAccepted(void);
unsigned int filesRejected(void);
unsigned int filesDenied(void);
unsigned int filesDummyCDDA(void);
unsigned int filesCueSheet(void);
2010-11-06 23:04:47 +01:00
signals:
void fileSelected(const QString &fileName);
void fileAnalyzed(const AudioFileModel &file);
void progressValChanged(unsigned int);
void progressMaxChanged(unsigned int);
2010-11-06 23:04:47 +01:00
public slots:
void abortProcess(void) { m_bAborted.ref(); exit(-1); }
private slots:
void initializeTasks(void);
void taskFileAnalyzed(const unsigned int taskId, const int fileType, const AudioFileModel &file);
void taskThreadFinish(const unsigned int);
2010-11-06 23:04:47 +01:00
private:
bool analyzeNextFile(void);
void handlePlaylistFiles(void);
2010-11-06 23:04:47 +01:00
QScopedPointer<QThreadPool> m_pool;
QScopedPointer<QElapsedTimer> m_timer;
unsigned int m_tasksCounterNext;
unsigned int m_tasksCounterDone;
unsigned int m_completedCounter;
unsigned int m_filesAccepted;
unsigned int m_filesRejected;
unsigned int m_filesDenied;
unsigned int m_filesDummyCDDA;
unsigned int m_filesCueSheet;
QStringList m_inputFiles;
QSet<unsigned int> m_completedTaskIds;
QSet<unsigned int> m_runningTaskIds;
QHash<unsigned int, AudioFileModel> m_completedFiles;
static const char *g_tags_gen[];
static const char *g_tags_aud[];
QAtomicInt m_bAborted;
QAtomicInt m_bSuccess;
2010-11-06 23:04:47 +01:00
};