OSDN Git Service

Switch to using QAtomicInc for abort flags.
[lamexp/LameXP.git] / src / Thread_Process.h
index ed6f482..7a6dae6 100644 (file)
@@ -1,6 +1,6 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2017 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
@@ -43,15 +43,18 @@ public:
        ~ProcessThread(void);
        
        bool init(void);
-       bool start(QThreadPool *pool);
+       bool start(QThreadPool *const pool);
        
        QUuid getId(void) { return m_jobId; }
        void setRenamePattern(const QString &pattern);
+       void setRenameRegExp(const QString &search, const QString &replace);
+       void setRenameFileExt(const QString &fileExtension);
        void setOverwriteMode(const bool &bSkipExistingFile, const bool &bReplacesExisting = false);
+       void setKeepDateTime(const bool &keepDateTime);
        void addFilter(AbstractFilter *filter);
 
 public slots:
-       void abort(void) { m_aborted = true; }
+       void abort(void) { m_aborted.ref(); }
 
 private slots:
        void handleUpdate(int progress);
@@ -87,12 +90,14 @@ private:
        void processFile();
        int generateOutFileName(QString &outFileName);
        QString applyRenamePattern(const QString &baseName, const AudioFileModel_MetaInfo &metaInfo);
+       QString applyRegularExpression(const QString &baseName);
        QString generateTempFileName(void);
-       void insertDownmixFilter(void);
-       void insertDownsampleFilter(void);
+       bool insertDownmixFilter(const unsigned int *const supportedChannels);
+       bool insertDownsampleFilter(const unsigned int *const supportedSamplerates, const unsigned int *const supportedBitdepths);
+       bool updateFileTime(const QString &originalFile, const QString &modifiedFile);
 
-       volatile bool m_aborted;
-       volatile int m_initialized;
+       QAtomicInt m_aborted;
+       QAtomicInt m_initialized;
 
        const QUuid m_jobId;
        AudioFileModel m_audioFile;
@@ -104,7 +109,11 @@ private:
        const bool m_prependRelativeSourcePath;
        QList<AbstractFilter*> m_filters;
        QString m_renamePattern;
+       QString m_renameRegExp_Search;
+       QString m_renameRegExp_Replace;
+       QString m_renameFileExt;
        int m_overwriteMode;
+       bool m_keepDateTime;
        WaveProperties *m_propDetect;
        QString m_outFileName;
 };