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
|
|
|
|
|
2017-04-19 23:54:00 +02:00
|
|
|
#include <MUtils/Global.h>
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
#include <QStringList>
|
2013-10-06 19:26:08 +02:00
|
|
|
#include <QHash>
|
|
|
|
#include <QSet>
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
class AudioFileModel;
|
2011-01-30 21:49:32 +01:00
|
|
|
class QFile;
|
|
|
|
class QDir;
|
|
|
|
class QFileInfo;
|
2012-01-14 01:11:58 +01:00
|
|
|
class LockedFile;
|
2013-10-06 19:26:08 +02:00
|
|
|
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);
|
2012-01-14 01:11:58 +01:00
|
|
|
~FileAnalyzer(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
void run();
|
2017-04-19 23:54:00 +02:00
|
|
|
bool getSuccess(void) { return (!isRunning()) && (!m_bAborted) && MUTILS_BOOLIFY(m_bSuccess); }
|
2012-05-04 04:01:10 +02:00
|
|
|
|
2010-11-11 19:37:16 +01:00
|
|
|
unsigned int filesAccepted(void);
|
|
|
|
unsigned int filesRejected(void);
|
|
|
|
unsigned int filesDenied(void);
|
2011-03-19 15:35:17 +01:00
|
|
|
unsigned int filesDummyCDDA(void);
|
2011-05-17 01:14:50 +02:00
|
|
|
unsigned int filesCueSheet(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void fileSelected(const QString &fileName);
|
|
|
|
void fileAnalyzed(const AudioFileModel &file);
|
2012-05-06 04:57:00 +02:00
|
|
|
void progressValChanged(unsigned int);
|
|
|
|
void progressMaxChanged(unsigned int);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2011-05-16 21:02:24 +02:00
|
|
|
public slots:
|
2017-04-18 21:05:28 +02:00
|
|
|
void abortProcess(void) { m_bAborted.ref(); exit(-1); }
|
2013-10-06 19:26:08 +02:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void initializeTasks(void);
|
|
|
|
void taskFileAnalyzed(const unsigned int taskId, const int fileType, const AudioFileModel &file);
|
|
|
|
void taskThreadFinish(const unsigned int);
|
2011-05-16 21:02:24 +02:00
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
private:
|
2013-10-06 19:26:08 +02:00
|
|
|
bool analyzeNextFile(void);
|
|
|
|
void handlePlaylistFiles(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2017-10-30 22:14:57 +01:00
|
|
|
QScopedPointer<QThreadPool> m_pool;
|
|
|
|
QScopedPointer<QElapsedTimer> m_timer;
|
2013-10-06 19:26:08 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2011-05-21 21:08:10 +02:00
|
|
|
QStringList m_inputFiles;
|
2013-10-06 19:26:08 +02:00
|
|
|
|
|
|
|
QSet<unsigned int> m_completedTaskIds;
|
|
|
|
QSet<unsigned int> m_runningTaskIds;
|
|
|
|
QHash<unsigned int, AudioFileModel> m_completedFiles;
|
2011-05-16 21:02:24 +02:00
|
|
|
|
2012-01-14 01:11:58 +01:00
|
|
|
static const char *g_tags_gen[];
|
|
|
|
static const char *g_tags_aud[];
|
|
|
|
|
2017-04-18 21:05:28 +02:00
|
|
|
QAtomicInt m_bAborted;
|
|
|
|
QAtomicInt m_bSuccess;
|
2010-11-06 23:04:47 +01:00
|
|
|
};
|