Version bump
[someplayer] / src / mediascanner.cpp
1 /*
2  * SomePlayer - An alternate music player for Maemo 5
3  * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (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
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19
20 #include "mediascanner.h"
21
22 using namespace SomePlayer::Storage;
23
24 #include <QMap>
25 #include <QDir>
26
27 MediaScanner::MediaScanner(QObject *parent) :
28                 QThread(parent), _stopped(false), _initialized(false)
29 {
30         REGISTERED_FILE_EXTENSIONS << "mp3" << "flac" << "wma" << "aac" << "ogg" << "asf" << "ape" << "wav" << "m4a";
31 }
32
33 void MediaScanner::run() {
34         if (!_initialized)
35                 return;
36         _foundMedia.clear();
37         _scan_directory(_dir);
38         emit scanFinish(_foundMedia);
39         _stopped = true;
40 }
41
42 QStringList MediaScanner::singleScan(QString path) {
43         _dir = path;
44         _foundMedia.clear();
45         return _scan_directory(_dir);
46 }
47
48 QStringList MediaScanner::scanForPlaylists(QString path) {
49         QStringList extensions_backup(REGISTERED_FILE_EXTENSIONS);
50         REGISTERED_FILE_EXTENSIONS.clear();
51         REGISTERED_FILE_EXTENSIONS << "m3u";
52         _dir = path;
53         _foundMedia.clear();
54         QStringList result = _scan_directory(_dir);
55         REGISTERED_FILE_EXTENSIONS.clear();
56         REGISTERED_FILE_EXTENSIONS.append(extensions_backup);
57         return result;
58 }
59
60 QStringList MediaScanner::_scan_directory(QDir dir) {
61         QFileInfoList items = dir.entryInfoList(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot | QDir::Hidden);
62         foreach (QFileInfo info, items) {
63                 if (info.isDir()) {
64                         QDir ndir(info.absoluteFilePath());
65                         _scan_directory(ndir);
66                 } else {
67                         QString suffix = info.suffix().toLower();
68                         if (REGISTERED_FILE_EXTENSIONS.contains(suffix)) {
69                                 if (!_foundMedia.contains(info.absoluteFilePath()))
70                                         _foundMedia << info.absoluteFilePath();
71                         }
72                 }
73         }
74         return _foundMedia;
75 }
76
77 void MediaScanner::stop() {
78         _stopped = true;
79         _initialized = false;
80 }
81
82 void MediaScanner::init(QString dir) {
83         _stopped = false;
84         _initialized = true;
85         _dir = dir;
86 }