OSDN Git Service

0cb02c085918fc332987281cb664c69b58838217
[lamexp/LameXP.git] / src / Thread_Process.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2015 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 #pragma once
24
25 #include <QRunnable>
26 #include <QUuid>
27 #include <QStringList>
28
29 #include "Model_AudioFile.h"
30 #include "Encoder_Abstract.h"
31
32 class AbstractFilter;
33 class WaveProperties;
34 class QThreadPool;
35 class QCoreApplication;
36
37 class ProcessThread: public QObject, public QRunnable
38 {
39         Q_OBJECT
40
41 public:
42         ProcessThread(const AudioFileModel &audioFile, const QString &outputDirectory, const QString &tempDirectory, AbstractEncoder *encoder, const bool prependRelativeSourcePath);
43         ~ProcessThread(void);
44         
45         bool init(void);
46         bool start(QThreadPool *const pool);
47         
48         QUuid getId(void) { return m_jobId; }
49         void setRenamePattern(const QString &pattern);
50         void setRenameRegExp(const QString &search, const QString &replace);
51         void setRenameFileExt(const QString &fileExtension);
52         void setOverwriteMode(const bool &bSkipExistingFile, const bool &bReplacesExisting = false);
53         void addFilter(AbstractFilter *filter);
54
55 public slots:
56         void abort(void) { m_aborted = true; }
57
58 private slots:
59         void handleUpdate(int progress);
60         void handleMessage(const QString &line);
61
62 signals:
63         void processStateInitialized(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus, int jobInitialState);
64         void processStateChanged(const QUuid &jobId, const QString &newStatus, int newState);
65         void processStateFinished(const QUuid &jobId, const QString &outFileName, int success);
66         void processMessageLogged(const QUuid &jobId, const QString &line);
67         void processFinished(void);
68
69 protected:
70         virtual void run(void);
71
72 private:
73         enum ProcessStep
74         {
75                 DecodingStep = 0,
76                 AnalyzeStep = 1,
77                 FilteringStep = 2,
78                 EncodingStep = 3,
79                 UnknownStep = 4
80         };
81
82         enum OverwriteMode
83         {
84                 OverwriteMode_KeepBoth     = 0,
85                 OverwriteMode_SkipExisting = 1,
86                 OverwriteMode_Overwrite    = 2,
87         };
88         
89         void processFile();
90         int generateOutFileName(QString &outFileName);
91         QString applyRenamePattern(const QString &baseName, const AudioFileModel_MetaInfo &metaInfo);
92         QString applyRegularExpression(const QString &fileName);
93         QString generateTempFileName(void);
94         void insertDownmixFilter(void);
95         void insertDownsampleFilter(void);
96         bool updateFileTime(const QString &originalFile, const QString &modifiedFile);
97
98         volatile bool m_aborted;
99         volatile int m_initialized;
100
101         const QUuid m_jobId;
102         AudioFileModel m_audioFile;
103         AbstractEncoder *m_encoder;
104         const QString m_outputDirectory;
105         const QString m_tempDirectory;
106         ProcessStep m_currentStep;
107         QStringList m_tempFiles;
108         const bool m_prependRelativeSourcePath;
109         QList<AbstractFilter*> m_filters;
110         QString m_renamePattern;
111         QString m_renameRegExp_Search;
112         QString m_renameRegExp_Replace;
113         QString m_renameFileExt;
114         int m_overwriteMode;
115         WaveProperties *m_propDetect;
116         QString m_outFileName;
117 };