Now track without tags has title from file basename
[someplayer] / src / tagresolver.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 "tagresolver.h"
21 #include <QDebug>
22
23 using namespace SomePlayer::DataObjects;
24
25 TagResolver::TagResolver(QObject *parent) :
26     QObject(parent)
27 {
28         _metaObject = new Phonon::MediaObject(this);
29         connect(_metaObject, SIGNAL(stateChanged(Phonon::State,Phonon::State)), this, SLOT(metaStateChanged(Phonon::State,Phonon::State)));
30 }
31
32 void TagResolver::decode(QStringList files) {
33         _sources.clear();
34         foreach (QString filename, files) {
35                 _sources.append(Phonon::MediaSource(filename));
36         }
37         if (!_sources.isEmpty()) {
38                 _metaObject->setCurrentSource(_sources.at(0));
39         }
40 }
41
42 void TagResolver::metaStateChanged(Phonon::State newState, Phonon::State /*oldState*/) {
43         if (newState == Phonon::StoppedState) {
44                 int time = _metaObject->totalTime();
45                 Phonon::MediaSource source = _metaObject->currentSource();
46                 QMap<QString, QString> meta = _metaObject->metaData();
47                 TrackMetadata metadata(meta.value("TITLE"), meta.value("ARTIST"), meta.value("ALBUM"), time/1000);
48                 Track track(0, metadata, source.fileName());
49                 int index = _sources.indexOf(source)+1;
50                 emit decoded(track);
51                 _metaObject->stop();
52                 if (index != _sources.size()) {
53                         Phonon::MediaSource newSource = _sources.at(index);
54                         _metaObject->clear();
55                         _metaObject->setCurrentSource(newSource);
56                 } else {
57                         emit done();
58                 }
59         } else if (newState == Phonon::ErrorState) {
60                 Phonon::MediaSource s = _metaObject->currentSource();
61                 _metaObject->clear();
62                 _metaObject->setCurrentSource(s);
63         }
64 }