OSDN Git Service

first commit
[lamexp/LameXP.git] / src / Thread_FileAnalyzer.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2010 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.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 //#include "Model_AudioFile.h"
25
26 #include <QThread>
27 #include <QStringList>
28
29 class AudioFileModel;
30
31 ////////////////////////////////////////////////////////////
32 // Splash Thread
33 ////////////////////////////////////////////////////////////
34
35 class FileAnalyzer: public QThread
36 {
37         Q_OBJECT
38
39 public:
40         FileAnalyzer(const QStringList &inputFiles);
41         void run();
42         bool getSuccess(void) { return !isRunning() && m_bSuccess; }
43
44 signals:
45         void fileSelected(const QString &fileName);
46         void fileAnalyzed(const AudioFileModel &file);
47
48 private:
49         enum section_t
50         {
51                 sectionGeneral,
52                 sectionAudio,
53                 sectionOther
54         };
55
56         const AudioFileModel analyzeFile(const QString &filePath);
57         void updateInfo(AudioFileModel &audioFile, const QString &key, const QString &value);
58         void updateSection(const QString &section);
59         unsigned int parseYear(const QString &str);
60         unsigned int parseDuration(const QString &str);
61
62         QStringList m_inputFiles;
63         QString m_mediaInfoBin;
64         section_t m_currentSection;
65         bool m_bSuccess;
66 };