2012-10-28 02:12:18 +02:00
|
|
|
/***************************************************************************
|
|
|
|
copyright : (C) 2002 - 2008 by Scott Wheeler
|
|
|
|
email : wheeler@kde.org
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* This library is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Lesser General Public License version *
|
|
|
|
* 2.1 as published by the Free Software Foundation. *
|
|
|
|
* *
|
|
|
|
* This library 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 *
|
|
|
|
* Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this library; if not, write to the Free Software *
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
|
|
|
|
* 02110-1301 USA *
|
|
|
|
* *
|
|
|
|
* Alternatively, this file is available under the Mozilla Public *
|
|
|
|
* License Version 1.1. You may obtain a copy of the License at *
|
|
|
|
* http://www.mozilla.org/MPL/ *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "tag.h"
|
|
|
|
#include "tstringlist.h"
|
|
|
|
#include "tpropertymap.h"
|
|
|
|
|
|
|
|
using namespace TagLib;
|
|
|
|
|
|
|
|
class Tag::TagPrivate
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Tag::Tag()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Tag::~Tag()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Tag::isEmpty() const
|
|
|
|
{
|
|
|
|
return (title().isEmpty() &&
|
|
|
|
artist().isEmpty() &&
|
|
|
|
album().isEmpty() &&
|
|
|
|
comment().isEmpty() &&
|
|
|
|
genre().isEmpty() &&
|
|
|
|
year() == 0 &&
|
|
|
|
track() == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
PropertyMap Tag::properties() const
|
|
|
|
{
|
|
|
|
PropertyMap map;
|
2016-07-19 16:58:52 +02:00
|
|
|
if(!(title().isEmpty()))
|
2012-10-28 02:12:18 +02:00
|
|
|
map["TITLE"].append(title());
|
2016-07-19 16:58:52 +02:00
|
|
|
if(!(artist().isEmpty()))
|
2012-10-28 02:12:18 +02:00
|
|
|
map["ARTIST"].append(artist());
|
2016-07-19 16:58:52 +02:00
|
|
|
if(!(album().isEmpty()))
|
2012-10-28 02:12:18 +02:00
|
|
|
map["ALBUM"].append(album());
|
2016-07-19 16:58:52 +02:00
|
|
|
if(!(comment().isEmpty()))
|
2012-10-28 02:12:18 +02:00
|
|
|
map["COMMENT"].append(comment());
|
2016-07-19 16:58:52 +02:00
|
|
|
if(!(genre().isEmpty()))
|
2012-10-28 02:12:18 +02:00
|
|
|
map["GENRE"].append(genre());
|
|
|
|
if(!(year() == 0))
|
|
|
|
map["DATE"].append(String::number(year()));
|
|
|
|
if(!(track() == 0))
|
|
|
|
map["TRACKNUMBER"].append(String::number(track()));
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tag::removeUnsupportedProperties(const StringList&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PropertyMap Tag::setProperties(const PropertyMap &origProps)
|
|
|
|
{
|
|
|
|
PropertyMap properties(origProps);
|
|
|
|
properties.removeEmpty();
|
|
|
|
StringList oneValueSet;
|
|
|
|
// can this be simplified by using some preprocessor defines / function pointers?
|
|
|
|
if(properties.contains("TITLE")) {
|
|
|
|
setTitle(properties["TITLE"].front());
|
|
|
|
oneValueSet.append("TITLE");
|
|
|
|
} else
|
2016-07-19 16:58:52 +02:00
|
|
|
setTitle(String());
|
2012-10-28 02:12:18 +02:00
|
|
|
|
|
|
|
if(properties.contains("ARTIST")) {
|
|
|
|
setArtist(properties["ARTIST"].front());
|
|
|
|
oneValueSet.append("ARTIST");
|
|
|
|
} else
|
2016-07-19 16:58:52 +02:00
|
|
|
setArtist(String());
|
2012-10-28 02:12:18 +02:00
|
|
|
|
|
|
|
if(properties.contains("ALBUM")) {
|
|
|
|
setAlbum(properties["ALBUM"].front());
|
|
|
|
oneValueSet.append("ALBUM");
|
|
|
|
} else
|
2016-07-19 16:58:52 +02:00
|
|
|
setAlbum(String());
|
2012-10-28 02:12:18 +02:00
|
|
|
|
|
|
|
if(properties.contains("COMMENT")) {
|
|
|
|
setComment(properties["COMMENT"].front());
|
|
|
|
oneValueSet.append("COMMENT");
|
|
|
|
} else
|
2016-07-19 16:58:52 +02:00
|
|
|
setComment(String());
|
2012-10-28 02:12:18 +02:00
|
|
|
|
|
|
|
if(properties.contains("GENRE")) {
|
|
|
|
setGenre(properties["GENRE"].front());
|
|
|
|
oneValueSet.append("GENRE");
|
|
|
|
} else
|
2016-07-19 16:58:52 +02:00
|
|
|
setGenre(String());
|
2012-10-28 02:12:18 +02:00
|
|
|
|
|
|
|
if(properties.contains("DATE")) {
|
|
|
|
bool ok;
|
|
|
|
int date = properties["DATE"].front().toInt(&ok);
|
|
|
|
if(ok) {
|
|
|
|
setYear(date);
|
|
|
|
oneValueSet.append("DATE");
|
|
|
|
} else
|
|
|
|
setYear(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
setYear(0);
|
|
|
|
|
|
|
|
if(properties.contains("TRACKNUMBER")) {
|
|
|
|
bool ok;
|
|
|
|
int track = properties["TRACKNUMBER"].front().toInt(&ok);
|
|
|
|
if(ok) {
|
|
|
|
setTrack(track);
|
|
|
|
oneValueSet.append("TRACKNUMBER");
|
|
|
|
} else
|
|
|
|
setTrack(0);
|
|
|
|
}
|
|
|
|
else
|
2015-11-24 19:36:24 +01:00
|
|
|
setTrack(0);
|
2012-10-28 02:12:18 +02:00
|
|
|
|
|
|
|
// for each tag that has been set above, remove the first entry in the corresponding
|
|
|
|
// value list. The others will be returned as unsupported by this format.
|
2015-11-24 19:36:24 +01:00
|
|
|
for(StringList::ConstIterator it = oneValueSet.begin(); it != oneValueSet.end(); ++it) {
|
2012-10-28 02:12:18 +02:00
|
|
|
if(properties[*it].size() == 1)
|
|
|
|
properties.erase(*it);
|
|
|
|
else
|
|
|
|
properties[*it].erase( properties[*it].begin() );
|
|
|
|
}
|
|
|
|
return properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Tag::duplicate(const Tag *source, Tag *target, bool overwrite) // static
|
|
|
|
{
|
|
|
|
if(overwrite) {
|
|
|
|
target->setTitle(source->title());
|
|
|
|
target->setArtist(source->artist());
|
|
|
|
target->setAlbum(source->album());
|
|
|
|
target->setComment(source->comment());
|
|
|
|
target->setGenre(source->genre());
|
|
|
|
target->setYear(source->year());
|
|
|
|
target->setTrack(source->track());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(target->title().isEmpty())
|
|
|
|
target->setTitle(source->title());
|
|
|
|
if(target->artist().isEmpty())
|
|
|
|
target->setArtist(source->artist());
|
|
|
|
if(target->album().isEmpty())
|
|
|
|
target->setAlbum(source->album());
|
|
|
|
if(target->comment().isEmpty())
|
|
|
|
target->setComment(source->comment());
|
|
|
|
if(target->genre().isEmpty())
|
|
|
|
target->setGenre(source->genre());
|
|
|
|
if(target->year() <= 0)
|
|
|
|
target->setYear(source->year());
|
|
|
|
if(target->track() <= 0)
|
|
|
|
target->setTrack(source->track());
|
|
|
|
}
|
|
|
|
}
|