OSDN Git Service

Various improvements to ShellIntegration code.
[lamexp/LameXP.git] / src / Thread_FileAnalyzer.h
index 2a3313f..b544210 100644 (file)
@@ -1,11 +1,12 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2011 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
@@ -41,48 +47,58 @@ class FileAnalyzer: public QThread
 
 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);
        unsigned int filesDummyCDDA(void);
+       unsigned int filesCueSheet(void);
 
 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_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 section_t
-       {
-               sectionGeneral,
-               sectionAudio,
-               sectionOther
-       };
-       enum cover_t
-       {
-               coverNone,
-               coverJpeg,
-               coverPng,
-               coverGif
-       };
-
-       const AudioFileModel analyzeFile(const QString &filePath);
-       void updateInfo(AudioFileModel &audioFile, const QString &key, const QString &value);
-       void updateSection(const QString &section);
-       unsigned int parseYear(const QString &str);
-       unsigned int parseDuration(const QString &str);
-       bool checkFile_CDDA(QFile &file);
-       void retrieveCover(AudioFileModel &audioFile, const QString &filePath);
+       bool analyzeNextFile(void);
+       void handlePlaylistFiles(void);
+       bool createTemplate(void);
+
+       QThreadPool *m_pool;
+       QElapsedTimer *m_timer;
+
+       unsigned int m_tasksCounterNext;
+       unsigned int m_tasksCounterDone;
+       unsigned int m_completedCounter;
 
-       QStringList m_inputFiles;
-       const QString m_mediaInfoBin;
-       section_t m_currentSection;
-       cover_t m_currentCover;
        unsigned int m_filesAccepted;
        unsigned int m_filesRejected;
        unsigned int m_filesDenied;
        unsigned int m_filesDummyCDDA;
-       bool m_lineBreakBugWorkaround;
-       bool m_bSuccess;
+       unsigned int m_filesCueSheet;
+
+       QStringList m_inputFiles;
+       LockedFile *m_templateFile;
+
+       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[];
+
+       volatile bool m_bAborted;
+       volatile bool m_bSuccess;
 };