Fixed re-adding tracks from filemanager
[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";
31 }
32
33 void MediaScanner::run() {
34         if (!_initialized)
35                 return;
36         _foundMedia.clear();
37         _scan_directory(_dir);
38         _foundMedia = _scan_directory(_dir);
39         emit scanFinish(_foundMedia);
40         _stopped = true;
41 }
42
43 QStringList MediaScanner::singleScan(QString path) {
44         _dir = path;
45         return _scan_directory(_dir);
46 }
47
48 QStringList MediaScanner::_scan_directory(QDir dir) {
49         _foundMedia.clear();
50         QFileInfoList items = dir.entryInfoList(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot);
51         foreach (QFileInfo info, items) {
52                 if (info.isDir()) {
53                         QDir ndir(info.absoluteFilePath());
54                         _scan_directory(ndir);
55                 } else {
56                         QString suffix = info.suffix().toLower();
57                         if (REGISTERED_FILE_EXTENSIONS.contains(suffix)) {
58                                 if (!_foundMedia.contains(info.absoluteFilePath()))
59                                         _foundMedia << info.absoluteFilePath();
60                         }
61                 }
62         }
63         return _foundMedia;
64 }
65
66 void MediaScanner::stop() {
67         _stopped = true;
68         _initialized = false;
69 }
70
71 void MediaScanner::init(QString dir) {
72         _stopped = false;
73         _initialized = true;
74         _dir = dir;
75 }