2010-11-06 23:04:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2012-01-02 00:52:27 +01:00
|
|
|
// Copyright (C) 2004-2012 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
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// 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 "Model_AudioFile.h"
|
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
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;
|
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();
|
|
|
|
bool getSuccess(void) { return !isRunning() && 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:
|
|
|
|
void abortProcess(void) { m_abortFlag = true; }
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
private:
|
2011-05-17 01:14:50 +02:00
|
|
|
const AudioFileModel analyzeFile(const QString &filePath, int *type);
|
2012-01-14 01:11:58 +01:00
|
|
|
bool createTemplate(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2011-05-21 21:08:10 +02:00
|
|
|
QStringList m_inputFiles;
|
2012-01-14 01:11:58 +01:00
|
|
|
LockedFile *m_templateFile;
|
2011-05-16 21:02:24 +02:00
|
|
|
|
|
|
|
volatile bool m_abortFlag;
|
|
|
|
|
2012-01-14 01:11:58 +01:00
|
|
|
static const char *g_tags_gen[];
|
|
|
|
static const char *g_tags_aud[];
|
|
|
|
|
2011-05-16 21:02:24 +02:00
|
|
|
bool m_bAborted;
|
2010-11-06 23:04:47 +01:00
|
|
|
bool m_bSuccess;
|
|
|
|
};
|