OSDN Git Service

Bump version.
[lamexp/LameXP.git] / src / Dialog_Processing.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2018 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include "Dialog_Processing.h"
24
25 //UIC includes
26 #include "UIC_ProcessingDialog.h"
27
28 //Internal
29 #include "Global.h"
30 #include "Model_FileList.h"
31 #include "Model_Progress.h"
32 #include "Model_Settings.h"
33 #include "Model_FileExts.h"
34 #include "Thread_Process.h"
35 #include "Thread_CPUObserver.h"
36 #include "Thread_RAMObserver.h"
37 #include "Thread_DiskObserver.h"
38 #include "Dialog_LogView.h"
39 #include "Registry_Decoder.h"
40 #include "Registry_Encoder.h"
41 #include "Filter_Downmix.h"
42 #include "Filter_Normalize.h"
43 #include "Filter_Resample.h"
44 #include "Filter_ToneAdjust.h"
45
46 //MUtils
47 #include <MUtils/Global.h>
48 #include <MUtils/OSSupport.h>
49 #include <MUtils/GUI.h>
50 #include <MUtils/CPUFeatures.h>
51 #include <MUtils/Sound.h>
52 #include <MUtils/Taskbar7.h>
53
54 //Qt
55 #include <QApplication>
56 #include <QRect>
57 #include <QDesktopWidget>
58 #include <QMovie>
59 #include <QMessageBox>
60 #include <QTimer>
61 #include <QCloseEvent>
62 #include <QDesktopServices>
63 #include <QUrl>
64 #include <QUuid>
65 #include <QFileInfo>
66 #include <QDir>
67 #include <QMenu>
68 #include <QSystemTrayIcon>
69 #include <QProcess>
70 #include <QProgressDialog>
71 #include <QResizeEvent>
72 #include <QTime>
73 #include <QElapsedTimer>
74 #include <QThreadPool>
75
76 #include <math.h>
77 #include <float.h>
78 #include <stdint.h>
79
80 //Maximum number of parallel instances
81 #define MAX_INSTANCES 64U
82
83 ////////////////////////////////////////////////////////////
84
85 #define CHANGE_BACKGROUND_COLOR(WIDGET, COLOR) do \
86 { \
87         QPalette palette = WIDGET->palette(); \
88         palette.setColor(QPalette::Background, COLOR); \
89         WIDGET->setPalette(palette); \
90 } \
91 while(0)
92
93 #define SET_PROGRESS_TEXT(TXT) do \
94 { \
95         ui->label_progress->setText(TXT); \
96         if(!m_systemTray.isNull()) \
97         { \
98                 if(!m_systemTray->isVisible()) m_systemTray->setVisible(true); \
99                 m_systemTray->setToolTip(QString().sprintf("LameXP v%d.%02d\n%ls", lamexp_version_major(), lamexp_version_minor(), QString(TXT).utf16())); \
100         } \
101 } \
102 while(0)
103
104 #define SET_FONT_BOLD(WIDGET,BOLD) do \
105 { \
106         QFont _font = WIDGET->font(); \
107         _font.setBold(BOLD); WIDGET->setFont(_font); \
108 } \
109 while(0)
110
111 #define SET_TEXT_COLOR(WIDGET, COLOR) do \
112 { \
113         QPalette _palette = WIDGET->palette(); \
114         _palette.setColor(QPalette::WindowText, (COLOR)); \
115         _palette.setColor(QPalette::Text, (COLOR)); \
116         WIDGET->setPalette(_palette); \
117 } \
118 while(0)
119
120 #define UPDATE_MIN_WIDTH(WIDGET) do \
121 { \
122         if(WIDGET->width() > WIDGET->minimumWidth()) WIDGET->setMinimumWidth(WIDGET->width()); \
123 } \
124 while(0)
125
126 #define PLAY_SOUND_OPTIONAL(NAME, ASYNC) do \
127 { \
128         if(m_settings->soundsEnabled()) MUtils::Sound::play_sound((NAME), (ASYNC)); \
129 } \
130 while(0)
131
132 #define IS_VBR(RC_MODE) ((RC_MODE) == SettingsModel::VBRMode)
133
134 ////////////////////////////////////////////////////////////
135
136 //Dummy class for UserData
137 class IntUserData : public QObjectUserData
138 {
139 public:
140         IntUserData(int value) : m_value(value) {/*NOP*/}
141         int value(void) { return m_value; }
142         void setValue(int value) { m_value = value; }
143 private:
144         int m_value;
145 };
146
147 ////////////////////////////////////////////////////////////
148 // Constructor
149 ////////////////////////////////////////////////////////////
150
151 ProcessingDialog::ProcessingDialog(FileListModel *const fileListModel, const AudioFileModel_MetaInfo *const metaInfo, const SettingsModel *const settings, QWidget *const parent)
152 :
153         QDialog(parent),
154         ui(new Ui::ProcessingDialog),
155         m_systemTray(new QSystemTrayIcon(QIcon(":/icons/cd_go.png"), this)),
156         m_taskbar(new MUtils::Taskbar7(this)),
157         m_settings(settings),
158         m_metaInfo(metaInfo),
159         m_shutdownFlag(SHUTDOWN_FLAG_NONE),
160         m_progressViewFilter(-1),
161         m_initThreads(0),
162         m_defaultColor(new QColor()),
163         m_tempFolder(settings->customTempPathEnabled() ? settings->customTempPath() : MUtils::temp_folder()),
164         m_firstShow(true)
165 {
166         //Init the dialog, from the .ui file
167         ui->setupUi(this);
168         setWindowFlags(windowFlags() ^ Qt::WindowContextHelpButtonHint);
169         setMinimumSize(this->size());
170
171         //Update the window icon
172         MUtils::GUI::set_window_icon(this, lamexp_app_icon(), true);
173
174         //Update header icon
175         ui->label_headerIcon->setPixmap(lamexp_app_icon().pixmap(ui->label_headerIcon->size()));
176         
177         //Setup version info
178         ui->label_versionInfo->setText(QString().sprintf("v%d.%02d %s (Build %d)", lamexp_version_major(), lamexp_version_minor(), lamexp_version_release(), lamexp_version_build()));
179         ui->label_versionInfo->installEventFilter(this);
180
181         //Register meta type
182         qRegisterMetaType<QUuid>("QUuid");
183
184         //Adjust size to DPI settings and re-center
185         MUtils::GUI::scale_widget(this);
186
187         //Enable buttons
188         connect(ui->button_AbortProcess, SIGNAL(clicked()), this, SLOT(abortEncoding()));
189         
190         //Init progress indicator
191         m_progressIndicator.reset(new QMovie(":/images/Working.gif"));
192         m_progressIndicator->setCacheMode(QMovie::CacheAll);
193         ui->label_headerWorking->setMovie(m_progressIndicator.data());
194         ui->progressBar->setValue(0);
195
196         //Init progress model
197         m_progressModel.reset(new ProgressModel());
198         ui->view_log->setModel(m_progressModel.data());
199         ui->view_log->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents);
200         ui->view_log->verticalHeader()->hide();
201         ui->view_log->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
202         ui->view_log->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch);
203         ui->view_log->viewport()->installEventFilter(this);
204         connect(m_progressModel.data(), SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(progressModelChanged()));
205         connect(m_progressModel.data(), SIGNAL(rowsMoved(QModelIndex,int,int,QModelIndex,int)), this, SLOT(progressModelChanged()));
206         connect(m_progressModel.data(), SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SLOT(progressModelChanged()));
207         connect(m_progressModel.data(), SIGNAL(modelReset()), this, SLOT(progressModelChanged()));
208         connect(ui->view_log, SIGNAL(activated(QModelIndex)), this, SLOT(logViewDoubleClicked(QModelIndex)));
209         connect(ui->view_log->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(logViewSectionSizeChanged(int,int,int)));
210
211         //Create context menu
212         m_contextMenu.reset(new QMenu());
213         QAction *contextMenuDetailsAction  = m_contextMenu->addAction(QIcon(":/icons/zoom.png"), tr("Show details for selected job"));
214         QAction *contextMenuShowFileAction = m_contextMenu->addAction(QIcon(":/icons/folder_go.png"), tr("Browse Output File Location"));
215         m_contextMenu->addSeparator();
216
217         //Create "filter" context menu
218         m_progressViewFilterGroup.reset(new QActionGroup(this));
219         QAction *contextMenuFilterAction[5] = {NULL, NULL, NULL, NULL, NULL};
220         if(QMenu *filterMenu = m_contextMenu->addMenu(QIcon(":/icons/filter.png"), tr("Filter Log Items")))
221         {
222                 contextMenuFilterAction[0] = filterMenu->addAction(m_progressModel->getIcon(ProgressModel::JobRunning), tr("Show Running Only"));
223                 contextMenuFilterAction[1] = filterMenu->addAction(m_progressModel->getIcon(ProgressModel::JobComplete), tr("Show Succeeded Only"));
224                 contextMenuFilterAction[2] = filterMenu->addAction(m_progressModel->getIcon(ProgressModel::JobFailed), tr("Show Failed Only"));
225                 contextMenuFilterAction[3] = filterMenu->addAction(m_progressModel->getIcon(ProgressModel::JobSkipped), tr("Show Skipped Only"));
226                 contextMenuFilterAction[4] = filterMenu->addAction(m_progressModel->getIcon(ProgressModel::JobState(-1)), tr("Show All Items"));
227                 if(QAction *act = contextMenuFilterAction[0]) { m_progressViewFilterGroup->addAction(act); act->setCheckable(true); act->setData(ProgressModel::JobRunning); }
228                 if(QAction *act = contextMenuFilterAction[1]) { m_progressViewFilterGroup->addAction(act); act->setCheckable(true); act->setData(ProgressModel::JobComplete); }
229                 if(QAction *act = contextMenuFilterAction[2]) { m_progressViewFilterGroup->addAction(act); act->setCheckable(true); act->setData(ProgressModel::JobFailed); }
230                 if(QAction *act = contextMenuFilterAction[3]) { m_progressViewFilterGroup->addAction(act); act->setCheckable(true); act->setData(ProgressModel::JobSkipped); }
231                 if(QAction *act = contextMenuFilterAction[4]) { m_progressViewFilterGroup->addAction(act); act->setCheckable(true); act->setData(-1); act->setChecked(true); }
232         }
233
234         //Create info label
235         m_filterInfoLabel.reset(new QLabel(ui->view_log));
236         m_filterInfoLabel->setFrameShape(QFrame::NoFrame);
237         m_filterInfoLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
238         m_filterInfoLabel->setUserData(0, new IntUserData(-1));
239         SET_FONT_BOLD(m_filterInfoLabel, true);
240         SET_TEXT_COLOR(m_filterInfoLabel, Qt::darkGray);
241         m_filterInfoLabel->setContextMenuPolicy(Qt::CustomContextMenu);
242         connect(m_filterInfoLabel.data(), SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextMenuTriggered(QPoint)));
243         m_filterInfoLabel->hide();
244
245         m_filterInfoLabelIcon .reset(new QLabel(ui->view_log));
246         m_filterInfoLabelIcon->setFrameShape(QFrame::NoFrame);
247         m_filterInfoLabelIcon->setAlignment(Qt::AlignHCenter | Qt::AlignTop);
248         m_filterInfoLabelIcon->setContextMenuPolicy(Qt::CustomContextMenu);
249         const QIcon &ico = m_progressModel->getIcon(ProgressModel::JobState(-1));
250         m_filterInfoLabelIcon->setPixmap(ico.pixmap(16, 16));
251         connect(m_filterInfoLabelIcon.data(), SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextMenuTriggered(QPoint)));
252         m_filterInfoLabelIcon->hide();
253
254         //Connect context menu
255         ui->view_log->setContextMenuPolicy(Qt::CustomContextMenu);
256         connect(ui->view_log, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextMenuTriggered(QPoint)));
257         connect(contextMenuDetailsAction, SIGNAL(triggered(bool)), this, SLOT(contextMenuDetailsActionTriggered()));
258         connect(contextMenuShowFileAction, SIGNAL(triggered(bool)), this, SLOT(contextMenuShowFileActionTriggered()));
259         for(size_t i = 0; i < 5; i++)
260         {
261                 if(contextMenuFilterAction[i]) connect(contextMenuFilterAction[i], SIGNAL(triggered(bool)), this, SLOT(contextMenuFilterActionTriggered()));
262         }
263         SET_FONT_BOLD(contextMenuDetailsAction, true);
264
265         //Setup file extensions
266         if(!m_settings->renameFiles_fileExtension().isEmpty())
267         {
268                 m_fileExts.reset(new FileExtsModel());
269                 m_fileExts->importItems(m_settings->renameFiles_fileExtension());
270         }
271
272         //Enque jobs
273         if(fileListModel)
274         {
275                 for(int i = 0; i < fileListModel->rowCount(); i++)
276                 {
277                         m_pendingJobs.append(fileListModel->getFile(fileListModel->index(i,0)));
278                 }
279         }
280
281         //Translate
282         ui->label_headerStatus->setText(QString("<b>%1</b><br>%2").arg(tr("Encoding Files"), tr("Your files are being encoded, please be patient...")));
283         
284         //Enable system tray icon
285         connect(m_systemTray.data(), SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(systemTrayActivated(QSystemTrayIcon::ActivationReason)));
286
287         //Init other vars
288         m_runningThreads = 0;
289         m_currentFile = 0;
290         m_allJobs.clear();
291         m_succeededJobs.clear();
292         m_failedJobs.clear();
293         m_skippedJobs.clear();
294         m_userAborted = false;
295         m_forcedAbort = false;
296 }
297
298 ////////////////////////////////////////////////////////////
299 // Destructor
300 ////////////////////////////////////////////////////////////
301
302 ProcessingDialog::~ProcessingDialog(void)
303 {
304         ui->view_log->setModel(NULL);
305
306         if(!m_progressIndicator.isNull())
307         {
308                 m_progressIndicator->stop();
309         }
310
311         if(!m_diskObserver.isNull())
312         {
313                 m_diskObserver->stop();
314                 if(!m_diskObserver->wait(15000))
315                 {
316                         m_diskObserver->terminate();
317                         m_diskObserver->wait();
318                 }
319         }
320
321         if(!m_cpuObserver.isNull())
322         {
323                 m_cpuObserver->stop();
324                 if(!m_cpuObserver->wait(15000))
325                 {
326                         m_cpuObserver->terminate();
327                         m_cpuObserver->wait();
328                 }
329         }
330
331         if(!m_ramObserver.isNull())
332         {
333                 m_ramObserver->stop();
334                 if(!m_ramObserver->wait(15000))
335                 {
336                         m_ramObserver->terminate();
337                         m_ramObserver->wait();
338                 }
339         }
340
341         if(!m_threadPool.isNull())
342         {
343                 if(!m_threadPool->waitForDone(100))
344                 {
345                         emit abortRunningTasks();
346                         m_threadPool->waitForDone();
347                 }
348         }
349
350         m_taskbar->setOverlayIcon(NULL);
351         m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_NONE);
352         
353         MUTILS_DELETE(ui);
354 }
355
356 ////////////////////////////////////////////////////////////
357 // EVENTS
358 ////////////////////////////////////////////////////////////
359
360 void ProcessingDialog::showEvent(QShowEvent *event)
361 {
362         QDialog::showEvent(event);
363
364         if(m_firstShow)
365         {
366                 static const char *NA = " N/A";
367
368                 MUtils::GUI::enable_close_button(this, false);
369                 ui->button_closeDialog->setEnabled(false);
370                 ui->button_AbortProcess->setEnabled(false);
371                 
372                 MUtils::OS::change_process_priority(1);
373                 
374                 ui->label_cpu->setText(NA);
375                 ui->label_disk->setText(NA);
376                 ui->label_ram->setText(NA);
377
378                 QTimer::singleShot(500, this, SLOT(initEncoding()));
379                 m_firstShow = false;
380         }
381
382         //Force update geometry
383         resizeEvent(NULL);
384 }
385
386 void ProcessingDialog::closeEvent(QCloseEvent *event)
387 {
388         if(!ui->button_closeDialog->isEnabled())
389         {
390                 event->ignore();
391         }
392         else
393         {
394                 m_systemTray->setVisible(false);
395         }
396 }
397
398 bool ProcessingDialog::eventFilter(QObject *obj, QEvent *event)
399 {
400         if(obj == ui->label_versionInfo)
401         {
402                 if(event->type() == QEvent::Enter)
403                 {
404                         QPalette palette = ui->label_versionInfo->palette();
405                         *m_defaultColor = palette.color(QPalette::Normal, QPalette::WindowText);
406                         palette.setColor(QPalette::Normal, QPalette::WindowText, Qt::red);
407                         ui->label_versionInfo->setPalette(palette);
408                 }
409                 else if(event->type() == QEvent::Leave)
410                 {
411                         QPalette palette = ui->label_versionInfo->palette();
412                         palette.setColor(QPalette::Normal, QPalette::WindowText, *m_defaultColor);
413                         ui->label_versionInfo->setPalette(palette);
414                 }
415                 else if(event->type() == QEvent::MouseButtonPress)
416                 {
417                         QUrl url(lamexp_website_url());
418                         QDesktopServices::openUrl(url);
419                 }
420         }
421
422         return false;
423 }
424
425 bool ProcessingDialog::event(QEvent *e)
426 {
427         switch(e->type())
428         {
429         case MUtils::GUI::USER_EVENT_QUERYENDSESSION:
430                 qWarning("System is shutting down, preparing to abort...");
431                 if(!m_userAborted) abortEncoding(true);
432                 return true;
433         case MUtils::GUI::USER_EVENT_ENDSESSION:
434                 qWarning("System is shutting down, encoding will be aborted now...");
435                 if(isVisible())
436                 {
437                         while(!close())
438                         {
439                                 if(!m_userAborted) abortEncoding(true);
440                                 qApp->processEvents(QEventLoop::WaitForMoreEvents | QEventLoop::ExcludeUserInputEvents);
441                         }
442                 }
443                 m_pendingJobs.clear();
444                 return true;
445         default:
446                 return QDialog::event(e);
447         }
448 }
449
450 /*
451  * Window was resized
452  */
453 void ProcessingDialog::resizeEvent(QResizeEvent *event)
454 {
455         if(event) QDialog::resizeEvent(event);
456
457         if(QWidget *port = ui->view_log->viewport())
458         {
459                 QRect geom = port->geometry();
460                 m_filterInfoLabel->setGeometry(geom.left() + 16, geom.top() + 16, geom.width() - 32, 48);
461                 m_filterInfoLabelIcon->setGeometry(geom.left() + 16, geom.top() + 64, geom.width() - 32, geom.height() - 80);
462         }
463 }
464
465 ////////////////////////////////////////////////////////////
466 // SLOTS
467 ////////////////////////////////////////////////////////////
468
469 void ProcessingDialog::initEncoding(void)
470 {
471         qDebug("Initializing encoding process...");
472         
473         m_runningThreads = 0;
474         m_currentFile = 0;
475         m_allJobs.clear();
476         m_succeededJobs.clear();
477         m_failedJobs.clear();
478         m_skippedJobs.clear();
479         m_userAborted = m_forcedAbort = false;
480         m_playList.clear();
481         m_progressIndicator->start();
482
483         DecoderRegistry::configureDecoders(m_settings);
484
485         CHANGE_BACKGROUND_COLOR(ui->frame_header, QColor(Qt::white));
486         SET_PROGRESS_TEXT(tr("Encoding files, please wait..."));
487         
488         ui->button_closeDialog->setEnabled(false);
489         ui->button_AbortProcess->setEnabled(true);
490         ui->progressBar->setRange(0, m_pendingJobs.count());
491         ui->checkBox_shutdownComputer->setEnabled(true);
492         ui->checkBox_shutdownComputer->setChecked(false);
493
494         m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_NORMAL);
495         m_taskbar->setTaskbarProgress(0, m_pendingJobs.count());
496         m_taskbar->setOverlayIcon(&QIcon(":/icons/control_play_blue.png"));
497
498         if(!m_diskObserver)
499         {
500                 m_diskObserver.reset(new DiskObserverThread(m_tempFolder));
501                 connect(m_diskObserver.data(), SIGNAL(messageLogged(QString,int)), m_progressModel.data(), SLOT(addSystemMessage(QString,int)), Qt::QueuedConnection);
502                 connect(m_diskObserver.data(), SIGNAL(freeSpaceChanged(quint64)), this, SLOT(diskUsageHasChanged(quint64)), Qt::QueuedConnection);
503                 m_diskObserver->start();
504         }
505         if(!m_cpuObserver)
506         {
507                 m_cpuObserver.reset(new CPUObserverThread());
508                 connect(m_cpuObserver.data(), SIGNAL(currentUsageChanged(double)), this, SLOT(cpuUsageHasChanged(double)), Qt::QueuedConnection);
509                 m_cpuObserver->start();
510         }
511         if(!m_ramObserver)
512         {
513                 m_ramObserver.reset(new RAMObserverThread());
514                 connect(m_ramObserver.data(), SIGNAL(currentUsageChanged(double)), this, SLOT(ramUsageHasChanged(double)), Qt::QueuedConnection);
515                 m_ramObserver->start();
516         }
517
518         if(m_threadPool.isNull())
519         {
520                 m_threadPool.reset(createThreadPool());
521                 if (m_threadPool->maxThreadCount() > 1)
522                 {
523                         m_progressModel->addSystemMessage(tr("Multi-threading enabled: Running %1 instances in parallel!").arg(QString::number(m_threadPool->maxThreadCount())));
524                 }
525         }
526
527         m_initThreads = m_threadPool->maxThreadCount();
528         QTimer::singleShot(100, this, SLOT(initNextJob()));
529         
530         m_totalTime.reset(new QElapsedTimer());
531         m_totalTime->start();
532 }
533
534 void ProcessingDialog::initNextJob(void)
535 {
536         if((m_initThreads > 0) && (!m_userAborted))
537         {
538                 startNextJob();
539                 if(--m_initThreads > 0)
540                 {
541                         QTimer::singleShot(32, this, SLOT(initNextJob()));
542                 }
543         }
544 }
545
546 void ProcessingDialog::startNextJob(void)
547 {
548         if(m_pendingJobs.isEmpty())
549         {
550                 qWarning("No more files left, unable to start another job!");
551                 return;
552         }
553         
554         m_currentFile++;
555         m_runningThreads++;
556
557         //Fetch next file
558         AudioFileModel currentFile = m_pendingJobs.takeFirst();
559         updateMetaInfo(currentFile);
560
561         //Create encoder instance
562         AbstractEncoder *encoder = EncoderRegistry::createInstance(m_settings->compressionEncoder(), m_settings);
563
564         //Create processing thread
565         QScopedPointer<ProcessThread> thread(new ProcessThread
566         (
567                 currentFile,
568                 (m_settings->outputToSourceDir() ? QFileInfo(currentFile.filePath()).absolutePath() : m_settings->outputDir()),
569                 m_tempFolder,
570                 encoder,
571                 m_settings->prependRelativeSourcePath() && (!m_settings->outputToSourceDir())
572         ));
573
574         //Add audio filters
575         if(m_settings->forceStereoDownmix())
576         {
577                 thread->addFilter(new DownmixFilter());
578         }
579         if(m_settings->samplingRate() > 0)
580         {
581                 const int targetRate = SettingsModel::samplingRates[qBound(1, m_settings->samplingRate(), 6)];
582                 if((targetRate != currentFile.techInfo().audioSamplerate()) || (currentFile.techInfo().audioSamplerate() == 0))
583                 {
584                         if (encoder->toEncoderInfo()->isResamplingSupported())
585                         {
586                                 encoder->setSamplingRate(targetRate);
587                         }
588                         else
589                         {
590                                 thread->addFilter(new ResampleFilter(targetRate));
591                         }
592                 }
593         }
594         if((m_settings->toneAdjustBass() != 0) || (m_settings->toneAdjustTreble() != 0))
595         {
596                 thread->addFilter(new ToneAdjustFilter(m_settings->toneAdjustBass(), m_settings->toneAdjustTreble()));
597         }
598         if(m_settings->normalizationFilterEnabled())
599         {
600                 thread->addFilter(new NormalizeFilter(m_settings->normalizationFilterMaxVolume(), m_settings->normalizationFilterDynamic(), m_settings->normalizationFilterCoupled(), m_settings->normalizationFilterSize()));
601         }
602         if(m_settings->renameFiles_renameEnabled() && (!m_settings->renameFiles_renamePattern().simplified().isEmpty()))
603         {
604                 thread->setRenamePattern(m_settings->renameFiles_renamePattern());
605         }
606         if(m_settings->renameFiles_regExpEnabled() && (!m_settings->renameFiles_regExpSearch().trimmed().isEmpty()) && (!m_settings->renameFiles_regExpReplace().simplified().isEmpty()))
607         {
608                 thread->setRenameRegExp(m_settings->renameFiles_regExpSearch(), m_settings->renameFiles_regExpReplace());
609         }
610         if(!m_fileExts.isNull())
611         {
612                 thread->setRenameFileExt(m_fileExts->apply(QString::fromUtf8(EncoderRegistry::getEncoderInfo(m_settings->compressionEncoder())->extension())));
613         }
614         if(m_settings->overwriteMode() != SettingsModel::Overwrite_KeepBoth)
615         {
616                 thread->setOverwriteMode((m_settings->overwriteMode() == SettingsModel::Overwrite_SkipFile), (m_settings->overwriteMode() == SettingsModel::Overwrite_Replaces));
617         }
618         if (m_settings->keepOriginalDataTime())
619         {
620                 thread->setKeepDateTime(m_settings->keepOriginalDataTime());
621         }
622
623         //Save job UUID
624         m_allJobs.append(thread->getId());
625         
626         //Connect thread signals
627         connect(thread.data(), SIGNAL(processFinished()), this, SLOT(doneEncoding()), Qt::QueuedConnection);
628         connect(thread.data(), SIGNAL(processStateInitialized(QUuid,QString,QString,int)), m_progressModel.data(), SLOT(addJob(QUuid,QString,QString,int)), Qt::QueuedConnection);
629         connect(thread.data(), SIGNAL(processStateChanged(QUuid,QString,int)), m_progressModel.data(), SLOT(updateJob(QUuid,QString,int)), Qt::QueuedConnection);
630         connect(thread.data(), SIGNAL(processStateFinished(QUuid,QString,int)), this, SLOT(processFinished(QUuid,QString,int)), Qt::QueuedConnection);
631         connect(thread.data(), SIGNAL(processMessageLogged(QUuid,QString)), m_progressModel.data(), SLOT(appendToLog(QUuid,QString)), Qt::QueuedConnection);
632         connect(this, SIGNAL(abortRunningTasks()), thread.data(), SLOT(abort()), Qt::DirectConnection);
633
634         //Initialize thread object
635         if(!thread->init())
636         {
637                 qFatal("Fatal Error: Thread initialization has failed!");
638         }
639
640         //Give it a go!
641         if(!thread->start(m_threadPool.data()))
642         {
643                 qWarning("Job failed to start or the file was skipped!");
644                 return;
645         }
646
647         thread.take(); //will be auto-deleted by QThreadPool!
648 }
649
650 void ProcessingDialog::abortEncoding(bool force)
651 {
652         m_userAborted = true;
653         if(force) m_forcedAbort = true;
654         ui->button_AbortProcess->setEnabled(false);
655         SET_PROGRESS_TEXT(tr("Aborted! Waiting for running jobs to terminate..."));
656         emit abortRunningTasks();
657 }
658
659 void ProcessingDialog::doneEncoding(void)
660 {
661         m_runningThreads--;
662         ui->progressBar->setValue(ui->progressBar->value() + 1);
663         
664         if(!m_userAborted)
665         {
666                 SET_PROGRESS_TEXT(tr("Encoding: %n file(s) of %1 completed so far, please wait...", "", ui->progressBar->value()).arg(QString::number(ui->progressBar->maximum())));
667                 m_taskbar->setTaskbarProgress(ui->progressBar->value(), ui->progressBar->maximum());
668         }
669         
670         if((!m_pendingJobs.isEmpty()) && (!m_userAborted))
671         {
672                 QTimer::singleShot(0, this, SLOT(startNextJob()));
673                 qDebug("%d files left, starting next job...", m_pendingJobs.count());
674                 return;
675         }
676         
677         if(m_runningThreads > 0)
678         {
679                 qDebug("No files left, but still have %u running jobs.", m_runningThreads);
680                 return;
681         }
682
683         QApplication::setOverrideCursor(Qt::WaitCursor);
684         qDebug("Running jobs: %u", m_runningThreads);
685
686         if(!m_userAborted && m_settings->createPlaylist() && !m_settings->outputToSourceDir())
687         {
688                 SET_PROGRESS_TEXT(tr("Creating the playlist file, please wait..."));
689                 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
690                 writePlayList();
691         }
692         
693         if(m_userAborted)
694         {
695                 CHANGE_BACKGROUND_COLOR(ui->frame_header, QColor("#FFFFE0"));
696                 m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_ERROR);
697                 m_taskbar->setOverlayIcon(&QIcon(":/icons/error.png"));
698                 SET_PROGRESS_TEXT((m_succeededJobs.count() > 0) ? tr("Process was aborted by the user after %n file(s)!", "", m_succeededJobs.count()) : tr("Process was aborted prematurely by the user!"));
699                 m_systemTray->showMessage(tr("LameXP - Aborted"), tr("Process was aborted by the user."), QSystemTrayIcon::Warning);
700                 m_systemTray->setIcon(QIcon(":/icons/cd_delete.png"));
701                 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
702                 if(!m_forcedAbort) PLAY_SOUND_OPTIONAL("aborted", false);
703         }
704         else
705         {
706                 if((!m_totalTime.isNull()) && m_totalTime->isValid())
707                 {
708                         m_progressModel->addSystemMessage(tr("Process finished after %1.").arg(time2text(m_totalTime->elapsed())), ProgressModel::SysMsg_Performance);
709                         m_totalTime->invalidate();
710                 }
711
712                 if(m_failedJobs.count() > 0)
713                 {
714                         CHANGE_BACKGROUND_COLOR(ui->frame_header, QColor("#FFF0F0"));
715                         m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_ERROR);
716                         m_taskbar->setOverlayIcon(&QIcon(":/icons/exclamation.png"));
717                         if(m_skippedJobs.count() > 0)
718                         {
719                                 SET_PROGRESS_TEXT(tr("Error: %1 of %n file(s) failed (%2). Double-click failed items for detailed information!", "", m_failedJobs.count() + m_succeededJobs.count() + m_skippedJobs.count()).arg(QString::number(m_failedJobs.count()), tr("%n file(s) skipped", "", m_skippedJobs.count())));
720                         }
721                         else
722                         {
723                                 SET_PROGRESS_TEXT(tr("Error: %1 of %n file(s) failed. Double-click failed items for detailed information!", "", m_failedJobs.count() + m_succeededJobs.count()).arg(QString::number(m_failedJobs.count())));
724                         }
725                         m_systemTray->showMessage(tr("LameXP - Error"), tr("At least one file has failed!"), QSystemTrayIcon::Critical);
726                         m_systemTray->setIcon(QIcon(":/icons/cd_delete.png"));
727                         qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
728                         PLAY_SOUND_OPTIONAL("error", false);
729                 }
730                 else
731                 {
732                         CHANGE_BACKGROUND_COLOR(ui->frame_header, QColor("#F0FFF0"));
733                         m_taskbar->setTaskbarState(MUtils::Taskbar7::TASKBAR_STATE_NORMAL);
734                         m_taskbar->setOverlayIcon(&QIcon(":/icons/accept.png"));
735                         if(m_skippedJobs.count() > 0)
736                         {
737                                 SET_PROGRESS_TEXT(tr("All files completed successfully. Skipped %n file(s).", "", m_skippedJobs.count()));
738                         }
739                         else
740                         {
741                                 SET_PROGRESS_TEXT(tr("All files completed successfully."));
742                         }
743                         m_systemTray->showMessage(tr("LameXP - Done"), tr("All files completed successfully."), QSystemTrayIcon::Information);
744                         m_systemTray->setIcon(QIcon(":/icons/cd_add.png"));
745                         qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
746                         PLAY_SOUND_OPTIONAL("success", false);
747                 }
748         }
749         
750         MUtils::GUI::enable_close_button(this, true);
751         ui->button_closeDialog->setEnabled(true);
752         ui->button_AbortProcess->setEnabled(false);
753         ui->checkBox_shutdownComputer->setEnabled(false);
754
755         m_progressModel->restoreHiddenItems();
756         ui->view_log->scrollToBottom();
757         m_progressIndicator->stop();
758         ui->progressBar->setValue(ui->progressBar->maximum());
759         m_taskbar->setTaskbarProgress(ui->progressBar->value(), ui->progressBar->maximum());
760
761         QApplication::restoreOverrideCursor();
762
763         if(!m_userAborted && ui->checkBox_shutdownComputer->isChecked())
764         {
765                 if(shutdownComputer())
766                 {
767                         m_shutdownFlag = m_settings->hibernateComputer() ? SHUTDOWN_FLAG_HIBERNATE : SHUTDOWN_FLAG_POWER_OFF;
768                         accept();
769                 }
770         }
771 }
772
773 void ProcessingDialog::processFinished(const QUuid &jobId, const QString &outFileName, int success)
774 {
775         if(success > 0)
776         {
777                 m_playList.insert(jobId, outFileName);
778                 m_succeededJobs.append(jobId);
779         }
780         else if(success < 0)
781         {
782                 m_playList.insert(jobId, outFileName);
783                 m_skippedJobs.append(jobId);
784         }
785         else
786         {
787                 m_failedJobs.append(jobId);
788         }
789
790         //Update filter as soon as a job finished!
791         if(m_progressViewFilter >= 0)
792         {
793                 QTimer::singleShot(0, this, SLOT(progressViewFilterChanged()));
794         }
795 }
796
797 void ProcessingDialog::progressModelChanged(void)
798 {
799         //Update filter as soon as the model changes!
800         if(m_progressViewFilter >= 0)
801         {
802                 QTimer::singleShot(0, this, SLOT(progressViewFilterChanged()));
803         }
804
805         QTimer::singleShot(0, ui->view_log, SLOT(scrollToBottom()));
806 }
807
808 void ProcessingDialog::logViewDoubleClicked(const QModelIndex &index)
809 {
810         if(m_runningThreads == 0)
811         {
812                 const QStringList &logFile = m_progressModel->getLogFile(index);
813                 
814                 if(!logFile.isEmpty())
815                 {
816                         LogViewDialog *logView = new LogViewDialog(this);
817                         logView->setWindowTitle(QString("LameXP - [%1]").arg(m_progressModel->data(index, Qt::DisplayRole).toString()));
818                         logView->exec(logFile);
819                         MUTILS_DELETE(logView);
820                 }
821                 else
822                 {
823                         QMessageBox::information(this, windowTitle(), m_progressModel->data(m_progressModel->index(index.row(), 0)).toString());
824                 }
825         }
826         else
827         {
828                 MUtils::Sound::beep(MUtils::Sound::BEEP_WRN);
829         }
830 }
831
832 void ProcessingDialog::logViewSectionSizeChanged(int logicalIndex, int oldSize, int newSize)
833 {
834         if(logicalIndex == 1)
835         {
836                 if(QHeaderView *hdr = ui->view_log->horizontalHeader())
837                 {
838                         hdr->setMinimumSectionSize(qMax(hdr->minimumSectionSize(), hdr->sectionSize(1)));
839                 }
840         }
841 }
842
843 void ProcessingDialog::contextMenuTriggered(const QPoint &pos)
844 {
845         QAbstractScrollArea *scrollArea = dynamic_cast<QAbstractScrollArea*>(QObject::sender());
846         QWidget *sender = scrollArea ? scrollArea->viewport() : dynamic_cast<QWidget*>(QObject::sender());      
847
848         if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0)
849         {
850                 m_contextMenu->popup(sender->mapToGlobal(pos));
851         }
852 }
853
854 void ProcessingDialog::contextMenuDetailsActionTriggered(void)
855 {
856         QModelIndex index = ui->view_log->indexAt(ui->view_log->viewport()->mapFromGlobal(m_contextMenu->pos()));
857         logViewDoubleClicked(index.isValid() ? index : ui->view_log->currentIndex());
858 }
859
860 void ProcessingDialog::contextMenuShowFileActionTriggered(void)
861 {
862         QModelIndex index = ui->view_log->indexAt(ui->view_log->viewport()->mapFromGlobal(m_contextMenu->pos()));
863         const QUuid &jobId = m_progressModel->getJobId(index.isValid() ? index : ui->view_log->currentIndex());
864         QString filePath = m_playList.value(jobId, QString());
865
866         if(filePath.isEmpty())
867         {
868                 MUtils::Sound::beep(MUtils::Sound::BEEP_WRN);
869                 return;
870         }
871
872         if(QFileInfo(filePath).exists())
873         {
874                 QString systemRootPath;
875
876                 QDir systemRoot(MUtils::OS::known_folder(MUtils::OS::FOLDER_SYSTEMFOLDER));
877                 if(systemRoot.exists() && systemRoot.cdUp())
878                 {
879                         systemRootPath = systemRoot.canonicalPath();
880                 }
881
882                 if(!systemRootPath.isEmpty())
883                 {
884                         QFileInfo explorer(QString("%1/explorer.exe").arg(systemRootPath));
885                         if(explorer.exists() && explorer.isFile())
886                         {
887                                 QProcess::execute(explorer.canonicalFilePath(), QStringList() << "/select," << QDir::toNativeSeparators(QFileInfo(filePath).canonicalFilePath()));
888                                 return;
889                         }
890                 }
891                 else
892                 {
893                         qWarning("SystemRoot directory could not be detected!");
894                 }
895         }
896         else
897         {
898                 qWarning("File not found: %s", filePath.toLatin1().constData());
899                 MUtils::Sound::beep(MUtils::Sound::BEEP_ERR);
900         }
901 }
902
903 void ProcessingDialog::contextMenuFilterActionTriggered(void)
904 {
905         if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
906         {
907                 if(action->data().type() == QVariant::Int)
908                 {
909                         m_progressViewFilter = action->data().toInt();
910                         progressViewFilterChanged();
911                         QTimer::singleShot(0, this, SLOT(progressViewFilterChanged()));
912                         QTimer::singleShot(0, ui->view_log, SLOT(scrollToBottom()));
913                         action->setChecked(true);
914                 }
915         }
916 }
917
918 /*
919  * Filter progress items
920  */
921 void ProcessingDialog::progressViewFilterChanged(void)
922 {
923         bool matchFound = false;
924
925         for(int i = 0; i < ui->view_log->model()->rowCount(); i++)
926         {
927                 QModelIndex index = (m_progressViewFilter >= 0) ? m_progressModel->index(i, 0) : QModelIndex();
928                 const bool bHide = index.isValid() ? (m_progressModel->getJobState(index) != m_progressViewFilter) : false;
929                 ui->view_log->setRowHidden(i, bHide); matchFound = matchFound || (!bHide);
930         }
931
932         if((m_progressViewFilter >= 0) && (!matchFound))
933         {
934                 if(m_filterInfoLabel->isHidden() || (dynamic_cast<IntUserData*>(m_filterInfoLabel->userData(0))->value() != m_progressViewFilter))
935                 {
936                         dynamic_cast<IntUserData*>(m_filterInfoLabel->userData(0))->setValue(m_progressViewFilter);
937                         m_filterInfoLabel->setText(QString("<p>&raquo; %1 &laquo;</p>").arg(tr("None of the items matches the current filtering rules")));
938                         m_filterInfoLabel->show();
939                         m_filterInfoLabelIcon->setPixmap(m_progressModel->getIcon(static_cast<ProgressModel::JobState>(m_progressViewFilter)).pixmap(16, 16, QIcon::Disabled));
940                         m_filterInfoLabelIcon->show();
941                         resizeEvent(NULL);
942                 }
943         }
944         else if(!m_filterInfoLabel->isHidden())
945         {
946                 m_filterInfoLabel->hide();
947                 m_filterInfoLabelIcon->hide();
948         }
949 }
950
951 ////////////////////////////////////////////////////////////
952 // Private Functions
953 ////////////////////////////////////////////////////////////
954
955 QThreadPool *ProcessingDialog::createThreadPool(void)
956 {
957         quint32 maximumInstances = qBound(0U, m_settings->maximumInstances(), MAX_INSTANCES);
958         if (maximumInstances < 1U)
959         {
960                 const MUtils::CPUFetaures::cpu_info_t cpuFeatures = MUtils::CPUFetaures::detect();
961                 const quint32 nProcessors = qBound(1U, cpuFeatures.count, MAX_INSTANCES);
962                 maximumInstances = isFastSeekingDevice(m_tempFolder) ? nProcessors : cores2instances(nProcessors);
963         }
964         QThreadPool *const threadPool = new QThreadPool();
965         threadPool->setMaxThreadCount(qBound(1U, maximumInstances, static_cast<unsigned int>(m_pendingJobs.count())));
966         return threadPool;
967 }
968
969 void ProcessingDialog::writePlayList(void)
970 {
971         if(m_succeededJobs.count() <= 0 || m_allJobs.count() <= 0)
972         {
973                 qWarning("WritePlayList: Nothing to do!");
974                 return;
975         }
976         
977         //Init local variables
978         QStringList list;
979         QRegExp regExp1("\\[\\d\\d\\][^/\\\\]+$", Qt::CaseInsensitive);
980         QRegExp regExp2("\\(\\d\\d\\)[^/\\\\]+$", Qt::CaseInsensitive);
981         QRegExp regExp3("\\d\\d[^/\\\\]+$", Qt::CaseInsensitive);
982         bool usePrefix[3] = {true, true, true};
983         bool useUtf8 = false;
984         int counter = 1;
985
986         //Generate playlist name
987         QString playListName = (m_metaInfo->album().isEmpty() ? "Playlist" : m_metaInfo->album());
988         if(!m_metaInfo->artist().isEmpty())
989         {
990                 playListName = QString("%1 - %2").arg(m_metaInfo->artist(), playListName);
991         }
992
993         //Clean playlist name
994         playListName = MUtils::clean_file_name(playListName, true);
995
996         //Create list of audio files
997         for(int i = 0; i < m_allJobs.count(); i++)
998         {
999                 if(!m_succeededJobs.contains(m_allJobs.at(i))) continue;
1000                 list << QDir::toNativeSeparators(QDir(m_settings->outputDir()).relativeFilePath(m_playList.value(m_allJobs.at(i), "N/A")));
1001         }
1002
1003         //Use prefix?
1004         for(int i = 0; i < list.count(); i++)
1005         {
1006                 if(regExp1.indexIn(list.at(i)) < 0) usePrefix[0] = false;
1007                 if(regExp2.indexIn(list.at(i)) < 0) usePrefix[1] = false;
1008                 if(regExp3.indexIn(list.at(i)) < 0) usePrefix[2] = false;
1009         }
1010         if(usePrefix[0] || usePrefix[1] || usePrefix[2])
1011         {
1012                 playListName.prepend(usePrefix[0] ? "[00] " : (usePrefix[1] ? "(00) " : "00 "));
1013         }
1014
1015         //Do we need an UTF-8 playlist?
1016         for(int i = 0; i < list.count(); i++)
1017         {
1018                 if(wcscmp(MUTILS_WCHR(QString::fromLatin1(list.at(i).toLatin1().constData())), MUTILS_WCHR(list.at(i))))
1019                 {
1020                         useUtf8 = true;
1021                         break;
1022                 }
1023         }
1024
1025         //Generate playlist output file
1026         QString playListFile = QString("%1/%2.%3").arg(m_settings->outputDir(), playListName, (useUtf8 ? "m3u8" : "m3u"));
1027         while(QFileInfo(playListFile).exists())
1028         {
1029                 playListFile = QString("%1/%2 (%3).%4").arg(m_settings->outputDir(), playListName, QString::number(++counter), (useUtf8 ? "m3u8" : "m3u"));
1030         }
1031
1032         //Now write playlist to output file
1033         QFile playList(playListFile);
1034         if(playList.open(QIODevice::WriteOnly))
1035         {
1036                 if(useUtf8)
1037                 {
1038                         playList.write("\xef\xbb\xbf");
1039                 }
1040                 playList.write("#EXTM3U\r\n");
1041                 while(!list.isEmpty())
1042                 {
1043                         playList.write(useUtf8 ? MUTILS_UTF8(list.takeFirst()) : list.takeFirst().toLatin1().constData());
1044                         playList.write("\r\n");
1045                 }
1046                 playList.close();
1047         }
1048         else
1049         {
1050                 QMessageBox::warning(this, tr("Playlist creation failed"), QString("%1<br><nobr>%2</nobr>").arg(tr("The playlist file could not be created:"), playListFile));
1051         }
1052 }
1053
1054 void ProcessingDialog::updateMetaInfo(AudioFileModel &audioFile)
1055 {
1056         if(!m_settings->writeMetaTags())
1057         {
1058                 audioFile.metaInfo().reset();
1059                 return;
1060         }
1061         
1062         audioFile.metaInfo().update(*m_metaInfo, true);
1063         
1064         if(audioFile.metaInfo().position() == UINT_MAX)
1065         {
1066                 audioFile.metaInfo().setPosition(m_currentFile);
1067         }
1068 }
1069
1070 void ProcessingDialog::systemTrayActivated(QSystemTrayIcon::ActivationReason reason)
1071 {
1072         if(reason == QSystemTrayIcon::DoubleClick)
1073         {
1074                 MUtils::GUI::bring_to_front(this);
1075         }
1076 }
1077
1078 void ProcessingDialog::cpuUsageHasChanged(const double val)
1079 {
1080         
1081         ui->label_cpu->setText(QString().sprintf(" %d%%", qRound(val * 100.0)));
1082         UPDATE_MIN_WIDTH(ui->label_cpu);
1083 }
1084
1085 void ProcessingDialog::ramUsageHasChanged(const double val)
1086 {
1087         
1088         ui->label_ram->setText(QString().sprintf(" %d%%", qRound(val * 100.0)));
1089         UPDATE_MIN_WIDTH(ui->label_ram);
1090 }
1091
1092 void ProcessingDialog::diskUsageHasChanged(const quint64 val)
1093 {
1094         int postfix = 0;
1095         const char *postfixStr[6] = {"B", "KB", "MB", "GB", "TB", "PB"};
1096         double space = static_cast<double>(val);
1097
1098         while((space >= 1000.0) && (postfix < 5))
1099         {
1100                 space = space / 1024.0;
1101                 postfix++;
1102         }
1103
1104         ui->label_disk->setText(QString().sprintf(" %3.1f %s", space, postfixStr[postfix]));
1105         UPDATE_MIN_WIDTH(ui->label_disk);
1106 }
1107
1108 bool ProcessingDialog::shutdownComputer(void)
1109 {
1110         const int iTimeout = m_settings->hibernateComputer() ? 10 : 30;
1111         const Qt::WindowFlags flags = Qt::WindowStaysOnTopHint | Qt::CustomizeWindowHint | Qt::WindowTitleHint | Qt::MSWindowsFixedSizeDialogHint | Qt::WindowSystemMenuHint;
1112         const QString text = QString("%1%2%1").arg(QString().fill(' ', 18), tr("Warning: Computer will shutdown in %1 seconds..."));
1113         
1114         qWarning("Initiating shutdown sequence!");
1115         
1116         QProgressDialog progressDialog(text.arg(iTimeout), tr("Cancel Shutdown"), 0, iTimeout + 1, this, flags);
1117         QPushButton *cancelButton = new QPushButton(tr("Cancel Shutdown"), &progressDialog);
1118         cancelButton->setIcon(QIcon(":/icons/power_on.png"));
1119         progressDialog.setModal(true);
1120         progressDialog.setAutoClose(false);
1121         progressDialog.setAutoReset(false);
1122         progressDialog.setWindowIcon(QIcon(":/icons/power_off.png"));
1123         progressDialog.setCancelButton(cancelButton);
1124         progressDialog.show();
1125         
1126         qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
1127
1128         QApplication::setOverrideCursor(Qt::WaitCursor);
1129         PLAY_SOUND_OPTIONAL("shutdown", false);
1130         QApplication::restoreOverrideCursor();
1131
1132         QTimer timer;
1133         timer.setInterval(1000);
1134         timer.start();
1135
1136         QEventLoop eventLoop(this);
1137         connect(&timer, SIGNAL(timeout()), &eventLoop, SLOT(quit()));
1138         connect(&progressDialog, SIGNAL(canceled()), &eventLoop, SLOT(quit()));
1139
1140         for(int i = 1; i <= iTimeout; i++)
1141         {
1142                 eventLoop.exec();
1143                 if(progressDialog.wasCanceled())
1144                 {
1145                         progressDialog.close();
1146                         return false;
1147                 }
1148                 progressDialog.setValue(i+1);
1149                 progressDialog.setLabelText(text.arg(iTimeout-i));
1150                 if(iTimeout-i == 3) progressDialog.setCancelButton(NULL);
1151                 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
1152                 PLAY_SOUND_OPTIONAL(((i < iTimeout) ? "beep" : "beep2"), false);
1153         }
1154         
1155         progressDialog.close();
1156         return true;
1157 }
1158
1159 ////////////////////////////////////////////////////////////
1160 // HELPER FUNCTIONS
1161 ////////////////////////////////////////////////////////////
1162
1163 bool ProcessingDialog::isFastSeekingDevice(const QString &path)
1164 {
1165         bool haveFastSeeking;
1166         if (MUtils::OS::get_drive_type(path, &haveFastSeeking) != MUtils::OS::DRIVE_TYPE_ERR)
1167         {
1168                 return haveFastSeeking;
1169         }
1170         return false;
1171 }
1172
1173 quint32 ProcessingDialog::cores2instances(const quint32 &cores)
1174 {
1175         //This function is a "cubic spline" with sampling points at:
1176         //(1,1); (2,2); (4,4); (8,6); (16,8); (32,11); (64,16)
1177         static const double LUT[8][5] =
1178         {
1179                 { 1.0,  0.014353554, -0.043060662, 1.028707108,  0.000000000},
1180                 { 2.0, -0.028707108,  0.215303309, 0.511979167,  0.344485294},
1181                 { 4.0,  0.010016468, -0.249379596, 2.370710784, -2.133823529},
1182                 { 8.0,  0.000282437, -0.015762868, 0.501776961,  2.850000000},
1183                 {16.0,  0.000033270, -0.003802849, 0.310416667,  3.870588235},
1184                 {32.0,  0.000006343, -0.001217831, 0.227696078,  4.752941176},
1185                 {64.0,  0.000000000,  0.000000000, 0.000000000, 16.000000000},
1186                 {DBL_MAX, 0.0, 0.0, 0.0, 0.0}
1187         };
1188
1189         double x = abs(static_cast<double>(cores)), y = 1.0;
1190         
1191         for(size_t i = 0; i < 7; i++)
1192         {
1193                 if((x >= LUT[i][0]) && (x < LUT[i+1][0]))
1194                 {
1195                         y = (((((LUT[i][1] * x) + LUT[i][2]) * x) + LUT[i][3]) * x) + LUT[i][4];
1196                         break;
1197                 }
1198         }
1199
1200         return static_cast<quint32>(qRound(y));
1201 }
1202
1203 QString ProcessingDialog::time2text(const qint64 &msec)
1204 {
1205         const qint64 MILLISECONDS_PER_DAY = 86399999;   //24x60x60x1000 - 1
1206         const QTime time = QTime().addMSecs(qMin(msec, MILLISECONDS_PER_DAY));
1207
1208         QString a, b;
1209
1210         if (time.hour() > 0)
1211         {
1212                 a = tr("%n hour(s)", "", time.hour());
1213                 b = tr("%n minute(s)", "", time.minute());
1214         }
1215         else if (time.minute() > 0)
1216         {
1217                 a = tr("%n minute(s)", "", time.minute());
1218                 b = tr("%n second(s)", "", time.second());
1219         }
1220         else
1221         {
1222                 a = tr("%n second(s)", "", time.second());
1223                 b = tr("%n millisecond(s)", "", time.msec());
1224         }
1225
1226         return QString("%1, %2").arg(a, b);
1227 }