Create playlist file + serialize filename generation, just to be sure.
This commit is contained in:
parent
cffa6a2454
commit
970f2cd8fb
@ -25,7 +25,7 @@
|
|||||||
#define VER_LAMEXP_MAJOR 4
|
#define VER_LAMEXP_MAJOR 4
|
||||||
#define VER_LAMEXP_MINOR_HI 0
|
#define VER_LAMEXP_MINOR_HI 0
|
||||||
#define VER_LAMEXP_MINOR_LO 0
|
#define VER_LAMEXP_MINOR_LO 0
|
||||||
#define VER_LAMEXP_BUILD 54
|
#define VER_LAMEXP_BUILD 57
|
||||||
#define VER_LAMEXP_SUFFIX TechPreview
|
#define VER_LAMEXP_SUFFIX TechPreview
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -58,14 +58,12 @@
|
|||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
|
||||||
//Helper macros
|
//Helper macros
|
||||||
#define ABORT_IF_BUSY \
|
#define ABORT_IF_BUSY if(m_banner->isVisible() || m_delayedFileTimer->isActive()) { MessageBeep(MB_ICONEXCLAMATION); return; }
|
||||||
if(m_banner->isVisible() || m_delayedFileTimer->isActive()) \
|
#define SET_TEXT_COLOR(WIDGET,COLOR) { QPalette _palette = WIDGET->palette(); _palette.setColor(QPalette::WindowText, COLOR); WIDGET->setPalette(_palette); }
|
||||||
{ \
|
#define SET_FONT_BOLD(WIDGET,BOLD) { QFont _font = WIDGET->font(); _font.setBold(BOLD); WIDGET->setFont(_font); }
|
||||||
MessageBeep(MB_ICONEXCLAMATION); \
|
|
||||||
return; \
|
|
||||||
}
|
|
||||||
#define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(URL)
|
#define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(URL)
|
||||||
|
|
||||||
|
|
||||||
//Helper class
|
//Helper class
|
||||||
class Index: public QObjectUserData
|
class Index: public QObjectUserData
|
||||||
{
|
{
|
||||||
@ -86,7 +84,8 @@ MainWindow::MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, S
|
|||||||
m_fileListModel(fileListModel),
|
m_fileListModel(fileListModel),
|
||||||
m_metaData(metaInfo),
|
m_metaData(metaInfo),
|
||||||
m_settings(settingsModel),
|
m_settings(settingsModel),
|
||||||
m_accepted(false)
|
m_accepted(false),
|
||||||
|
m_firstTimeShown(true)
|
||||||
{
|
{
|
||||||
//Init the dialog, from the .ui file
|
//Init the dialog, from the .ui file
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
@ -117,6 +116,8 @@ MainWindow::MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, S
|
|||||||
m_dropNoteLabel = new QLabel(sourceFileView);
|
m_dropNoteLabel = new QLabel(sourceFileView);
|
||||||
m_dropNoteLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
|
m_dropNoteLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
|
||||||
m_dropNoteLabel->setText("» You can drop in audio files here! «");
|
m_dropNoteLabel->setText("» You can drop in audio files here! «");
|
||||||
|
SET_FONT_BOLD(m_dropNoteLabel, true);
|
||||||
|
SET_TEXT_COLOR(m_dropNoteLabel, Qt::darkGray);
|
||||||
connect(buttonAddFiles, SIGNAL(clicked()), this, SLOT(addFilesButtonClicked()));
|
connect(buttonAddFiles, SIGNAL(clicked()), this, SLOT(addFilesButtonClicked()));
|
||||||
connect(buttonRemoveFile, SIGNAL(clicked()), this, SLOT(removeFileButtonClicked()));
|
connect(buttonRemoveFile, SIGNAL(clicked()), this, SLOT(removeFileButtonClicked()));
|
||||||
connect(buttonClearFiles, SIGNAL(clicked()), this, SLOT(clearFilesButtonClicked()));
|
connect(buttonClearFiles, SIGNAL(clicked()), this, SLOT(clearFilesButtonClicked()));
|
||||||
@ -154,9 +155,11 @@ MainWindow::MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, S
|
|||||||
metaDataView->verticalHeader()->hide();
|
metaDataView->verticalHeader()->hide();
|
||||||
metaDataView->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
|
metaDataView->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
|
||||||
while(writeMetaDataCheckBox->isChecked() != m_settings->writeMetaTags()) writeMetaDataCheckBox->click();
|
while(writeMetaDataCheckBox->isChecked() != m_settings->writeMetaTags()) writeMetaDataCheckBox->click();
|
||||||
|
while(generatePlaylistCheckBox->isChecked() != m_settings->createPlaylist()) generatePlaylistCheckBox->click();
|
||||||
connect(buttonEditMeta, SIGNAL(clicked()), this, SLOT(editMetaButtonClicked()));
|
connect(buttonEditMeta, SIGNAL(clicked()), this, SLOT(editMetaButtonClicked()));
|
||||||
connect(buttonClearMeta, SIGNAL(clicked()), this, SLOT(clearMetaButtonClicked()));
|
connect(buttonClearMeta, SIGNAL(clicked()), this, SLOT(clearMetaButtonClicked()));
|
||||||
connect(writeMetaDataCheckBox, SIGNAL(clicked()), this, SLOT(metaTagsEnabledChanged()));
|
connect(writeMetaDataCheckBox, SIGNAL(clicked()), this, SLOT(metaTagsEnabledChanged()));
|
||||||
|
connect(generatePlaylistCheckBox, SIGNAL(clicked()), this, SLOT(playlistEnabledChanged()));
|
||||||
|
|
||||||
//Setup "Compression" tab
|
//Setup "Compression" tab
|
||||||
m_encoderButtonGroup = new QButtonGroup(this);
|
m_encoderButtonGroup = new QButtonGroup(this);
|
||||||
@ -322,7 +325,13 @@ void MainWindow::showEvent(QShowEvent *event)
|
|||||||
m_accepted = false;
|
m_accepted = false;
|
||||||
m_dropNoteLabel->setGeometry(0, 0, sourceFileView->width(), sourceFileView->height());
|
m_dropNoteLabel->setGeometry(0, 0, sourceFileView->width(), sourceFileView->height());
|
||||||
modelReset();
|
modelReset();
|
||||||
|
tabWidget->setCurrentIndex(0);
|
||||||
|
|
||||||
|
if(m_firstTimeShown)
|
||||||
|
{
|
||||||
|
m_firstTimeShown = false;
|
||||||
QTimer::singleShot(0, this, SLOT(windowShown()));
|
QTimer::singleShot(0, this, SLOT(windowShown()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::dragEnterEvent(QDragEnterEvent *event)
|
void MainWindow::dragEnterEvent(QDragEnterEvent *event)
|
||||||
@ -1076,3 +1085,11 @@ void MainWindow::metaTagsEnabledChanged(void)
|
|||||||
{
|
{
|
||||||
m_settings->writeMetaTags(writeMetaDataCheckBox->isChecked());
|
m_settings->writeMetaTags(writeMetaDataCheckBox->isChecked());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Playlist enabled changed
|
||||||
|
*/
|
||||||
|
void MainWindow::playlistEnabledChanged(void)
|
||||||
|
{
|
||||||
|
m_settings->createPlaylist(generatePlaylistCheckBox->isChecked());
|
||||||
|
}
|
||||||
|
@ -79,6 +79,7 @@ private slots:
|
|||||||
void rowsChanged(const QModelIndex &parent, int start, int end);
|
void rowsChanged(const QModelIndex &parent, int start, int end);
|
||||||
void modelReset(void);
|
void modelReset(void);
|
||||||
void metaTagsEnabledChanged(void);
|
void metaTagsEnabledChanged(void);
|
||||||
|
void playlistEnabledChanged(void);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void showEvent(QShowEvent *event);
|
void showEvent(QShowEvent *event);
|
||||||
@ -91,6 +92,7 @@ private:
|
|||||||
void addFiles(const QStringList &files);
|
void addFiles(const QStringList &files);
|
||||||
|
|
||||||
bool m_accepted;
|
bool m_accepted;
|
||||||
|
bool m_firstTimeShown;
|
||||||
FileListModel *m_fileListModel;
|
FileListModel *m_fileListModel;
|
||||||
QFileSystemModel *m_fileSystemModel;
|
QFileSystemModel *m_fileSystemModel;
|
||||||
QActionGroup *m_tabActionGroup;
|
QActionGroup *m_tabActionGroup;
|
||||||
|
@ -37,6 +37,9 @@
|
|||||||
#include <QCloseEvent>
|
#include <QCloseEvent>
|
||||||
#include <QDesktopServices>
|
#include <QDesktopServices>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
#include <QUuid>
|
||||||
|
#include <QFileInfo>
|
||||||
|
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
@ -173,6 +176,7 @@ void ProcessingDialog::initEncoding(void)
|
|||||||
m_runningThreads = 0;
|
m_runningThreads = 0;
|
||||||
m_currentFile = 0;
|
m_currentFile = 0;
|
||||||
m_userAborted = false;
|
m_userAborted = false;
|
||||||
|
m_playList.clear();
|
||||||
|
|
||||||
label_progress->setText("Encoding files, please wait...");
|
label_progress->setText("Encoding files, please wait...");
|
||||||
m_progressIndicator->start();
|
m_progressIndicator->start();
|
||||||
@ -224,6 +228,13 @@ void ProcessingDialog::doneEncoding(void)
|
|||||||
|
|
||||||
qDebug("Running jobs: %u", m_runningThreads);
|
qDebug("Running jobs: %u", m_runningThreads);
|
||||||
|
|
||||||
|
if(!m_userAborted && m_settings->createPlaylist() && !m_settings->outputDir().isEmpty())
|
||||||
|
{
|
||||||
|
label_progress->setText("Creatig the play list, please wait...");
|
||||||
|
QApplication::processEvents();
|
||||||
|
writePlayList();
|
||||||
|
}
|
||||||
|
|
||||||
label_progress->setText(m_userAborted ? "Process was aborted by the user!" : "Alle files completed successfully.");
|
label_progress->setText(m_userAborted ? "Process was aborted by the user!" : "Alle files completed successfully.");
|
||||||
m_progressIndicator->stop();
|
m_progressIndicator->stop();
|
||||||
|
|
||||||
@ -234,6 +245,14 @@ void ProcessingDialog::doneEncoding(void)
|
|||||||
progressBar->setValue(100);
|
progressBar->setValue(100);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ProcessingDialog::processFinished(const QUuid &jobId, const QString &outFileName, bool success)
|
||||||
|
{
|
||||||
|
if(success)
|
||||||
|
{
|
||||||
|
m_playList.append(outFileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Private Functions
|
// Private Functions
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
@ -268,10 +287,43 @@ void ProcessingDialog::startNextJob(void)
|
|||||||
connect(thread, SIGNAL(finished()), this, SLOT(doneEncoding()), Qt::QueuedConnection);
|
connect(thread, SIGNAL(finished()), this, SLOT(doneEncoding()), Qt::QueuedConnection);
|
||||||
connect(thread, SIGNAL(processStateInitialized(QUuid,QString,QString,int)), m_progressModel, SLOT(addJob(QUuid,QString,QString,int)), Qt::QueuedConnection);
|
connect(thread, SIGNAL(processStateInitialized(QUuid,QString,QString,int)), m_progressModel, SLOT(addJob(QUuid,QString,QString,int)), Qt::QueuedConnection);
|
||||||
connect(thread, SIGNAL(processStateChanged(QUuid,QString,int)), m_progressModel, SLOT(updateJob(QUuid,QString,int)), Qt::QueuedConnection);
|
connect(thread, SIGNAL(processStateChanged(QUuid,QString,int)), m_progressModel, SLOT(updateJob(QUuid,QString,int)), Qt::QueuedConnection);
|
||||||
|
connect(thread, SIGNAL(processStateFinished(QUuid,QString,bool)), this, SLOT(processFinished(QUuid,QString,bool)), Qt::QueuedConnection);
|
||||||
m_runningThreads++;
|
m_runningThreads++;
|
||||||
thread->start();
|
thread->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ProcessingDialog::writePlayList(void)
|
||||||
|
{
|
||||||
|
QString playListName = (m_metaInfo->fileAlbum().isEmpty() ? "Playlist" : m_metaInfo->fileAlbum());
|
||||||
|
|
||||||
|
const static char *invalidChars = "\\/:*?\"<>|";
|
||||||
|
for(int i = 0; invalidChars[i]; i++)
|
||||||
|
{
|
||||||
|
playListName.replace(invalidChars[i], ' ');
|
||||||
|
playListName = playListName.simplified();
|
||||||
|
}
|
||||||
|
|
||||||
|
QString playListFile = QString("%1/%2.m3u").arg(m_settings->outputDir(), playListName);
|
||||||
|
|
||||||
|
int counter = 1;
|
||||||
|
while(QFileInfo(playListFile).exists())
|
||||||
|
{
|
||||||
|
playListFile = QString("%1/%2 (%3).m3u").arg(m_settings->outputDir(), playListName, QString::number(++counter));
|
||||||
|
}
|
||||||
|
|
||||||
|
QFile playList(playListFile);
|
||||||
|
if(playList.open(QIODevice::WriteOnly))
|
||||||
|
{
|
||||||
|
playList.write("#EXTM3U\r\n");
|
||||||
|
for(int i = 0; i < m_playList.count(); i++)
|
||||||
|
{
|
||||||
|
playList.write(QFileInfo(m_playList.at(i)).fileName().toUtf8().constData());
|
||||||
|
playList.write("\r\n");
|
||||||
|
}
|
||||||
|
playList.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
AudioFileModel ProcessingDialog::updateMetaInfo(const AudioFileModel &audioFile)
|
AudioFileModel ProcessingDialog::updateMetaInfo(const AudioFileModel &audioFile)
|
||||||
{
|
{
|
||||||
if(!m_settings->writeMetaTags())
|
if(!m_settings->writeMetaTags())
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
|
|
||||||
#include "../tmp/UIC_ProcessingDialog.h"
|
#include "../tmp/UIC_ProcessingDialog.h"
|
||||||
|
|
||||||
|
#include <QUuid>
|
||||||
|
|
||||||
class QMovie;
|
class QMovie;
|
||||||
class ProgressModel;
|
class ProgressModel;
|
||||||
class ProcessThread;
|
class ProcessThread;
|
||||||
@ -42,6 +44,7 @@ private slots:
|
|||||||
void initEncoding(void);
|
void initEncoding(void);
|
||||||
void doneEncoding(void);
|
void doneEncoding(void);
|
||||||
void abortEncoding(void);
|
void abortEncoding(void);
|
||||||
|
void processFinished(const QUuid &jobId, const QString &outFileName, bool success);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void showEvent(QShowEvent *event);
|
void showEvent(QShowEvent *event);
|
||||||
@ -52,7 +55,7 @@ private:
|
|||||||
void setCloseButtonEnabled(bool enabled);
|
void setCloseButtonEnabled(bool enabled);
|
||||||
void startNextJob(void);
|
void startNextJob(void);
|
||||||
AudioFileModel updateMetaInfo(const AudioFileModel &audioFile);
|
AudioFileModel updateMetaInfo(const AudioFileModel &audioFile);
|
||||||
|
void writePlayList(void);
|
||||||
|
|
||||||
QList<AudioFileModel> m_pendingJobs;
|
QList<AudioFileModel> m_pendingJobs;
|
||||||
SettingsModel *m_settings;
|
SettingsModel *m_settings;
|
||||||
@ -60,6 +63,7 @@ private:
|
|||||||
QList<ProcessThread*> m_threadList;
|
QList<ProcessThread*> m_threadList;
|
||||||
QMovie *m_progressIndicator;
|
QMovie *m_progressIndicator;
|
||||||
ProgressModel *m_progressModel;
|
ProgressModel *m_progressModel;
|
||||||
|
QStringList m_playList;
|
||||||
unsigned int m_runningThreads;
|
unsigned int m_runningThreads;
|
||||||
unsigned int m_currentFile;
|
unsigned int m_currentFile;
|
||||||
bool m_userAborted;
|
bool m_userAborted;
|
||||||
|
19
src/Main.cpp
19
src/Main.cpp
@ -52,7 +52,7 @@ int lamexp_main(int argc, char* argv[])
|
|||||||
|
|
||||||
//Print version info
|
//Print version info
|
||||||
qDebug("LameXP - Audio Encoder Front-End");
|
qDebug("LameXP - Audio Encoder Front-End");
|
||||||
qDebug("Version %d.%02d %s, Build %d [%s], MSVC compiler v%02d.%02d", lamexp_version_major(), lamexp_version_minor(), lamexp_version_release(), lamexp_version_build(), lamexp_version_date().toString(Qt::ISODate).toLatin1().constData(), _MSC_VER / 100, _MSC_VER % 100);
|
qDebug("Version %d.%02d %s, Build %d [%s], compiled with %s", lamexp_version_major(), lamexp_version_minor(), lamexp_version_release(), lamexp_version_build(), lamexp_version_date().toString(Qt::ISODate).toLatin1().constData(), lamexp_version_compiler());
|
||||||
qDebug("Copyright (C) 2004-%04d LoRd_MuldeR <MuldeR2@GMX.de>\n", max(lamexp_version_date().year(),QDate::currentDate().year()));
|
qDebug("Copyright (C) 2004-%04d LoRd_MuldeR <MuldeR2@GMX.de>\n", max(lamexp_version_date().year(),QDate::currentDate().year()));
|
||||||
|
|
||||||
//print license info
|
//print license info
|
||||||
@ -65,10 +65,10 @@ int lamexp_main(int argc, char* argv[])
|
|||||||
|
|
||||||
//Detect CPU capabilities
|
//Detect CPU capabilities
|
||||||
lamexp_cpu_t cpuFeatures = lamexp_detect_cpu_features();
|
lamexp_cpu_t cpuFeatures = lamexp_detect_cpu_features();
|
||||||
qDebug("CPU brand string: %s", cpuFeatures.brand);
|
qDebug("CPU brand string : %s", cpuFeatures.brand);
|
||||||
qDebug("CPU signature: Family: %d, Model: %d, Stepping: %d", cpuFeatures.family, cpuFeatures.model, cpuFeatures.stepping);
|
qDebug(" CPU signature : Family: %d, Model: %d, Stepping: %d", cpuFeatures.family, cpuFeatures.model, cpuFeatures.stepping);
|
||||||
qDebug("CPU capabilities: MMX: %s, SSE: %s, SSE2: %s, SSE3: %s, SSSE3: %s, x64: %s", LAMEXP_BOOL(cpuFeatures.mmx), LAMEXP_BOOL(cpuFeatures.sse), LAMEXP_BOOL(cpuFeatures.sse2), LAMEXP_BOOL(cpuFeatures.sse3), LAMEXP_BOOL(cpuFeatures.ssse3), LAMEXP_BOOL(cpuFeatures.x64));
|
qDebug("CPU capabilities : MMX: %s, SSE: %s, SSE2: %s, SSE3: %s, SSSE3: %s, x64: %s", LAMEXP_BOOL(cpuFeatures.mmx), LAMEXP_BOOL(cpuFeatures.sse), LAMEXP_BOOL(cpuFeatures.sse2), LAMEXP_BOOL(cpuFeatures.sse3), LAMEXP_BOOL(cpuFeatures.ssse3), LAMEXP_BOOL(cpuFeatures.x64));
|
||||||
qDebug("CPU no. of cores: %d\n", cpuFeatures.count);
|
qDebug("CPU no. of cores : %d\n", cpuFeatures.count);
|
||||||
|
|
||||||
//Initialize Qt
|
//Initialize Qt
|
||||||
lamexp_init_qt(argc, argv);
|
lamexp_init_qt(argc, argv);
|
||||||
@ -128,14 +128,16 @@ int lamexp_main(int argc, char* argv[])
|
|||||||
SplashScreen::showSplash(poInitializationThread);
|
SplashScreen::showSplash(poInitializationThread);
|
||||||
LAMEXP_DELETE(poInitializationThread);
|
LAMEXP_DELETE(poInitializationThread);
|
||||||
|
|
||||||
//Show main window
|
//Create main window
|
||||||
|
MainWindow *poMainWindow = new MainWindow(fileListModel, metaInfo, settingsModel);
|
||||||
|
|
||||||
|
//Main application loop
|
||||||
while(bAccepted)
|
while(bAccepted)
|
||||||
{
|
{
|
||||||
MainWindow *poMainWindow = new MainWindow(fileListModel, metaInfo, settingsModel);
|
//Show main window
|
||||||
poMainWindow->show();
|
poMainWindow->show();
|
||||||
iResult = QApplication::instance()->exec();
|
iResult = QApplication::instance()->exec();
|
||||||
bAccepted = poMainWindow->isAccepted();
|
bAccepted = poMainWindow->isAccepted();
|
||||||
LAMEXP_DELETE(poMainWindow);
|
|
||||||
|
|
||||||
//Show processing dialog
|
//Show processing dialog
|
||||||
if(bAccepted && fileListModel->rowCount() > 0)
|
if(bAccepted && fileListModel->rowCount() > 0)
|
||||||
@ -147,6 +149,7 @@ int lamexp_main(int argc, char* argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Free models
|
//Free models
|
||||||
|
LAMEXP_DELETE(poMainWindow);
|
||||||
LAMEXP_DELETE(fileListModel);
|
LAMEXP_DELETE(fileListModel);
|
||||||
LAMEXP_DELETE(metaInfo);
|
LAMEXP_DELETE(metaInfo);
|
||||||
LAMEXP_DELETE(settingsModel);
|
LAMEXP_DELETE(settingsModel);
|
||||||
|
@ -37,6 +37,7 @@ static const char *g_settingsId_compressionRCMode = "Compression/RCMode";
|
|||||||
static const char *g_settingsId_compressionBitrate = "Compression/Bitrate";
|
static const char *g_settingsId_compressionBitrate = "Compression/Bitrate";
|
||||||
static const char *g_settingsId_outputDir = "OutputDirectory";
|
static const char *g_settingsId_outputDir = "OutputDirectory";
|
||||||
static const char *g_settingsId_writeMetaTags = "WriteMetaTags";
|
static const char *g_settingsId_writeMetaTags = "WriteMetaTags";
|
||||||
|
static const char *g_settingsId_createPlaylist = "AutoCreatePlaylist";
|
||||||
|
|
||||||
#define MAKE_GETTER1(OPT,DEF) int SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toInt(); }
|
#define MAKE_GETTER1(OPT,DEF) int SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toInt(); }
|
||||||
#define MAKE_SETTER1(OPT) void SettingsModel::OPT(int value) { m_settings->setValue(g_settingsId_##OPT, value); }
|
#define MAKE_SETTER1(OPT) void SettingsModel::OPT(int value) { m_settings->setValue(g_settingsId_##OPT, value); }
|
||||||
@ -109,7 +110,7 @@ MAKE_SETTER1(compressionEncoder)
|
|||||||
MAKE_GETTER1(compressionRCMode, 0)
|
MAKE_GETTER1(compressionRCMode, 0)
|
||||||
MAKE_SETTER1(compressionRCMode)
|
MAKE_SETTER1(compressionRCMode)
|
||||||
|
|
||||||
MAKE_GETTER1(compressionBitrate, 0)
|
MAKE_GETTER1(compressionBitrate, 7)
|
||||||
MAKE_SETTER1(compressionBitrate)
|
MAKE_SETTER1(compressionBitrate)
|
||||||
|
|
||||||
MAKE_GETTER2(outputDir, QString())
|
MAKE_GETTER2(outputDir, QString())
|
||||||
@ -117,3 +118,6 @@ MAKE_SETTER2(outputDir)
|
|||||||
|
|
||||||
MAKE_GETTER3(writeMetaTags, true)
|
MAKE_GETTER3(writeMetaTags, true)
|
||||||
MAKE_SETTER3(writeMetaTags)
|
MAKE_SETTER3(writeMetaTags)
|
||||||
|
|
||||||
|
MAKE_GETTER3(createPlaylist, true)
|
||||||
|
MAKE_SETTER3(createPlaylist)
|
||||||
|
@ -64,6 +64,7 @@ public:
|
|||||||
MAKE_GETTER_DEC1(compressionBitrate);
|
MAKE_GETTER_DEC1(compressionBitrate);
|
||||||
MAKE_GETTER_DEC2(outputDir);
|
MAKE_GETTER_DEC2(outputDir);
|
||||||
MAKE_GETTER_DEC3(writeMetaTags);
|
MAKE_GETTER_DEC3(writeMetaTags);
|
||||||
|
MAKE_GETTER_DEC3(createPlaylist);
|
||||||
|
|
||||||
//Setters
|
//Setters
|
||||||
MAKE_SETTER_DEC1(licenseAccepted);
|
MAKE_SETTER_DEC1(licenseAccepted);
|
||||||
@ -73,6 +74,7 @@ public:
|
|||||||
MAKE_SETTER_DEC1(compressionEncoder);
|
MAKE_SETTER_DEC1(compressionEncoder);
|
||||||
MAKE_SETTER_DEC2(outputDir);
|
MAKE_SETTER_DEC2(outputDir);
|
||||||
MAKE_SETTER_DEC3(writeMetaTags);
|
MAKE_SETTER_DEC3(writeMetaTags);
|
||||||
|
MAKE_SETTER_DEC3(createPlaylist);
|
||||||
|
|
||||||
void validate(void);
|
void validate(void);
|
||||||
|
|
||||||
|
@ -31,10 +31,14 @@
|
|||||||
#include <QUuid>
|
#include <QUuid>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
#include <QMutex>
|
||||||
|
#include <QMutexLocker>
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
QMutex *ProcessThread::m_mutex_genFileName = NULL;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
// Constructor
|
// Constructor
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
@ -47,6 +51,11 @@ ProcessThread::ProcessThread(const AudioFileModel &audioFile, const QString &out
|
|||||||
m_jobId(QUuid::createUuid()),
|
m_jobId(QUuid::createUuid()),
|
||||||
m_aborted(false)
|
m_aborted(false)
|
||||||
{
|
{
|
||||||
|
if(m_mutex_genFileName)
|
||||||
|
{
|
||||||
|
m_mutex_genFileName = new QMutex;
|
||||||
|
}
|
||||||
|
|
||||||
connect(m_encoder, SIGNAL(statusUpdated(int)), this, SLOT(handleUpdate(int)), Qt::DirectConnection);
|
connect(m_encoder, SIGNAL(statusUpdated(int)), this, SLOT(handleUpdate(int)), Qt::DirectConnection);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -73,10 +82,13 @@ void ProcessThread::run()
|
|||||||
|
|
||||||
if(bSuccess)
|
if(bSuccess)
|
||||||
{
|
{
|
||||||
bSuccess = QFileInfo(outFileName).exists();
|
QFileInfo fileInfo(outFileName);
|
||||||
|
bSuccess = fileInfo.exists() && fileInfo.isFile() && (fileInfo.size() > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
emit processStateChanged(m_jobId, (bSuccess ? "Done." : (m_aborted ? "Aborted!" : "Failed!")), (bSuccess ? ProgressModel::JobComplete : ProgressModel::JobFailed));
|
emit processStateChanged(m_jobId, (bSuccess ? "Done." : (m_aborted ? "Aborted!" : "Failed!")), (bSuccess ? ProgressModel::JobComplete : ProgressModel::JobFailed));
|
||||||
|
emit processStateFinished(m_jobId, outFileName, bSuccess);
|
||||||
|
|
||||||
qDebug("Process thread is done.");
|
qDebug("Process thread is done.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -95,6 +107,8 @@ void ProcessThread::handleUpdate(int progress)
|
|||||||
|
|
||||||
QString ProcessThread::generateOutFileName(void)
|
QString ProcessThread::generateOutFileName(void)
|
||||||
{
|
{
|
||||||
|
QMutexLocker lock(m_mutex_genFileName);
|
||||||
|
|
||||||
int n = 1;
|
int n = 1;
|
||||||
|
|
||||||
QString baseName = QFileInfo(m_audioFile.filePath()).completeBaseName();
|
QString baseName = QFileInfo(m_audioFile.filePath()).completeBaseName();
|
||||||
@ -107,6 +121,12 @@ QString ProcessThread::generateOutFileName(void)
|
|||||||
outFileName = QString("%1/%2 (%3).%4").arg(targetDir, baseName, QString::number(++n), m_encoder->extension());
|
outFileName = QString("%1/%2 (%3).%4").arg(targetDir, baseName, QString::number(++n), m_encoder->extension());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QFile placeholder(outFileName);
|
||||||
|
if(placeholder.open(QIODevice::WriteOnly))
|
||||||
|
{
|
||||||
|
placeholder.close();
|
||||||
|
}
|
||||||
|
|
||||||
return outFileName;
|
return outFileName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,6 +27,8 @@
|
|||||||
#include "Model_AudioFile.h"
|
#include "Model_AudioFile.h"
|
||||||
#include "Encoder_Abstract.h"
|
#include "Encoder_Abstract.h"
|
||||||
|
|
||||||
|
class QMutex;
|
||||||
|
|
||||||
class ProcessThread: public QThread
|
class ProcessThread: public QThread
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -44,6 +46,7 @@ private slots:
|
|||||||
signals:
|
signals:
|
||||||
void processStateInitialized(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus, int jobInitialState);
|
void processStateInitialized(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus, int jobInitialState);
|
||||||
void processStateChanged(const QUuid &jobId, const QString &newStatus, int newState);
|
void processStateChanged(const QUuid &jobId, const QString &newStatus, int newState);
|
||||||
|
void processStateFinished(const QUuid &jobId, const QString &outFileName, bool success);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString generateOutFileName(void);
|
QString generateOutFileName(void);
|
||||||
@ -53,4 +56,6 @@ private:
|
|||||||
AbstractEncoder *m_encoder;
|
AbstractEncoder *m_encoder;
|
||||||
const QString m_outputDirectory;
|
const QString m_outputDirectory;
|
||||||
volatile bool m_aborted;
|
volatile bool m_aborted;
|
||||||
|
|
||||||
|
static QMutex *m_mutex_genFileName;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user