Confirmation dialogs for dangerous actions
[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";
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         return _scan_directory(_dir);
45 }
46
47 QStringList MediaScanner::_scan_directory(QDir dir) {
48         QFileInfoList items = dir.entryInfoList(QDir::Files | QDir::Dirs | QDir::NoDotAndDotDot | QDir::Hidden);
49         foreach (QFileInfo info, items) {
50                 if (info.isDir()) {
51                         QDir ndir(info.absoluteFilePath());
52                         _scan_directory(ndir);
53                 } else {
54                         QString suffix = info.suffix().toLower();
55                         if (REGISTERED_FILE_EXTENSIONS.contains(suffix)) {
56                                 if (!_foundMedia.contains(info.absoluteFilePath()))
57                                         _foundMedia << info.absoluteFilePath();
58                         }
59                 }
60         }
61         return _foundMedia;
62 }
63
64 void MediaScanner::stop() {
65         _stopped = true;
66         _initialized = false;
67 }
68
69 void MediaScanner::init(QString dir) {
70         _stopped = false;
71         _initialized = true;
72         _dir = dir;
73 }