OSDN Git Service

Various improvements to ShellIntegration code.
[lamexp/LameXP.git] / src / Thread_FileAnalyzer.h
index e2f53d9..b544210 100644 (file)
@@ -1,11 +1,12 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // 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.
+// (at your option) any later version, but always including the *additional*
+// restrictions defined in the "License.txt" file.
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 
 #include <QThread>
 #include <QStringList>
+#include <QHash>
+#include <QSet>
 
 class AudioFileModel;
 class QFile;
 class QDir;
 class QFileInfo;
 class LockedFile;
+class QThreadPool;
+class QElapsedTimer;
 
 ////////////////////////////////////////////////////////////
 // Splash Thread
@@ -44,7 +49,8 @@ public:
        FileAnalyzer(const QStringList &inputFiles);
        ~FileAnalyzer(void);
        void run();
-       bool getSuccess(void) { return !isRunning() && m_bSuccess; }
+       bool getSuccess(void) { return (!isRunning()) && (!m_bAborted) && m_bSuccess; }
+
        unsigned int filesAccepted(void);
        unsigned int filesRejected(void);
        unsigned int filesDenied(void);
@@ -54,52 +60,45 @@ public:
 signals:
        void fileSelected(const QString &fileName);
        void fileAnalyzed(const AudioFileModel &file);
+       void progressValChanged(unsigned int);
+       void progressMaxChanged(unsigned int);
 
 public slots:
-       void abortProcess(void) { m_abortFlag = true; }
+       void abortProcess(void) { m_bAborted = true; exit(-1); }
+
+private slots:
+       void initializeTasks(void);
+       void taskFileAnalyzed(const unsigned int taskId, const int fileType, const AudioFileModel &file);
+       void taskThreadFinish(const unsigned int);
 
 private:
-       enum cover_t
-       {
-               coverNone,
-               coverJpeg,
-               coverPng,
-               coverGif
-       };
-       enum fileType_t
-       {
-               fileTypeNormal = 0,
-               fileTypeCDDA = 1,
-               fileTypeDenied = 2,
-               fileTypeSkip = 3
-       };
-
-       const AudioFileModel analyzeFile(const QString &filePath, int *type);
-       void updateInfo(AudioFileModel &audioFile, cover_t *coverType, QByteArray *coverData, const QString &key, const QString &value);
-       unsigned int parseYear(const QString &str);
-       unsigned int parseDuration(const QString &str);
-       bool checkFile_CDDA(QFile &file);
-       void retrieveCover(AudioFileModel &audioFile, cover_t coverType, const QByteArray &coverData);
-       bool analyzeAvisynthFile(const QString &filePath, AudioFileModel &info);
+       bool analyzeNextFile(void);
+       void handlePlaylistFiles(void);
        bool createTemplate(void);
 
-       const QString m_mediaInfoBin;
-       const QString m_avs2wavBin;
+       QThreadPool *m_pool;
+       QElapsedTimer *m_timer;
+
+       unsigned int m_tasksCounterNext;
+       unsigned int m_tasksCounterDone;
+       unsigned int m_completedCounter;
 
-       QStringList m_inputFiles;
-       QStringList m_recentlyAdded;
        unsigned int m_filesAccepted;
        unsigned int m_filesRejected;
        unsigned int m_filesDenied;
        unsigned int m_filesDummyCDDA;
        unsigned int m_filesCueSheet;
+
+       QStringList m_inputFiles;
        LockedFile *m_templateFile;
-       
-       volatile bool m_abortFlag;
+
+       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[];
 
-       bool m_bAborted;
-       bool m_bSuccess;
+       volatile bool m_bAborted;
+       volatile bool m_bSuccess;
 };