Fixed crash when no gstreamer0.10-plugins-good-extra package installed
[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" << "acc" << "ogg";
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 void MediaScanner::_scan_directory(QDir dir) {
43         QFileInfoList items = dir.entryInfoList(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot);
44         foreach (QFileInfo info, items) {
45                 if (info.isDir()) {
46                         QDir ndir(info.absoluteFilePath());
47                         _scan_directory(ndir);
48                 } else {
49                         QString suffix = info.suffix().toLower();
50                         if (REGISTERED_FILE_EXTENSIONS.contains(suffix)) {
51                                 if (!_foundMedia.contains(info.absoluteFilePath()))
52                                         _foundMedia << info.absoluteFilePath();
53                         }
54                 }
55         }
56 }
57
58 void MediaScanner::stop() {
59         _stopped = true;
60         _initialized = false;
61 }
62
63 void MediaScanner::init(QString dir) {
64         _stopped = false;
65         _initialized = true;
66         _dir = dir;
67 }