Now track without tags has title from file basename
[someplayer] / src / track.cpp
index e02a59e..66bde60 100644 (file)
@@ -1,5 +1,25 @@
+/*
+ * SomePlayer - An alternate music player for Maemo 5
+ * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
 #include "track.h"
 #include "tagresolver.h"
+#include <QFileInfo>
 
 using namespace SomePlayer::DataObjects;
 
@@ -9,6 +29,10 @@ Track::Track() : QObject() {
 Track::Track(int id, TrackMetadata metadata, QString source) : QObject() {
        _id = id;
        _metadata = metadata;
+       if (_metadata.title() == _UNKNOWN_TRACK_) {
+               QFileInfo info(source);
+               _metadata.setTitle(info.baseName());
+       }
        _source = source;
        _count = 0;
 }
@@ -20,6 +44,7 @@ Track::Track(const Track &track) : QObject() {
        this->_count = track._count;
 }
 
+/// deprecated
 Track::Track(QString source) :QObject() {
        _resolver = new TagResolver(this);
        connect(_resolver, SIGNAL(decoded(Track)), this, SLOT(decoded(Track)));
@@ -27,7 +52,7 @@ Track::Track(QString source) :QObject() {
        foo << source;
        _resolver->decode(foo);
        _count = 0;
-       _id = 0;
+       _id = -1;
 }
 
 TrackMetadata Track::metadata() const {