2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-07-30 20:11:57 +02:00
|
|
|
#include "Tag.hxx"
|
2013-01-07 10:36:27 +01:00
|
|
|
#include "TagPool.hxx"
|
2013-09-05 18:13:29 +02:00
|
|
|
#include "TagString.hxx"
|
2013-09-05 18:34:12 +02:00
|
|
|
#include "TagSettings.h"
|
2013-12-03 11:27:16 +01:00
|
|
|
#include "TagBuilder.hxx"
|
2013-10-20 23:09:51 +02:00
|
|
|
#include "util/ASCII.hxx"
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
2013-07-30 20:11:57 +02:00
|
|
|
#include <string.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType
|
2009-11-04 18:47:42 +01:00
|
|
|
tag_name_parse(const char *name)
|
|
|
|
{
|
2013-01-07 10:36:27 +01:00
|
|
|
assert(name != nullptr);
|
2009-11-04 18:47:42 +01:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i) {
|
2013-01-07 10:36:27 +01:00
|
|
|
assert(tag_item_names[i] != nullptr);
|
2009-11-04 18:47:42 +01:00
|
|
|
|
|
|
|
if (strcmp(name, tag_item_names[i]) == 0)
|
2013-10-20 13:32:59 +02:00
|
|
|
return (TagType)i;
|
2009-11-04 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
|
|
|
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType
|
2009-11-04 18:47:42 +01:00
|
|
|
tag_name_parse_i(const char *name)
|
|
|
|
{
|
2013-01-07 10:36:27 +01:00
|
|
|
assert(name != nullptr);
|
2009-11-04 18:47:42 +01:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i) {
|
2013-01-07 10:36:27 +01:00
|
|
|
assert(tag_item_names[i] != nullptr);
|
2009-11-04 18:47:42 +01:00
|
|
|
|
2013-10-20 23:09:51 +02:00
|
|
|
if (StringEqualsCaseASCII(name, tag_item_names[i]))
|
2013-10-20 13:32:59 +02:00
|
|
|
return (TagType)i;
|
2009-11-04 18:47:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
|
|
|
|
2013-07-31 00:26:55 +02:00
|
|
|
void
|
|
|
|
Tag::Clear()
|
|
|
|
{
|
|
|
|
time = -1;
|
|
|
|
has_playlist = false;
|
|
|
|
|
|
|
|
tag_pool_lock.lock();
|
|
|
|
for (unsigned i = 0; i < num_items; ++i)
|
|
|
|
tag_pool_put_item(items[i]);
|
|
|
|
tag_pool_lock.unlock();
|
|
|
|
|
2013-12-03 11:16:25 +01:00
|
|
|
delete[] items;
|
2013-07-31 00:26:55 +02:00
|
|
|
items = nullptr;
|
|
|
|
num_items = 0;
|
|
|
|
}
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag::Tag(const Tag &other)
|
|
|
|
:time(other.time), has_playlist(other.has_playlist),
|
2014-01-19 03:11:01 +01:00
|
|
|
num_items(other.num_items),
|
|
|
|
items(nullptr)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-07-30 20:11:57 +02:00
|
|
|
if (num_items > 0) {
|
2013-12-03 11:16:25 +01:00
|
|
|
items = new TagItem *[num_items];
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
tag_pool_lock.lock();
|
|
|
|
for (unsigned i = 0; i < num_items; i++)
|
|
|
|
items[i] = tag_pool_dup_item(other.items[i]);
|
|
|
|
tag_pool_lock.unlock();
|
|
|
|
}
|
2004-06-01 12:28:06 +02:00
|
|
|
}
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *
|
|
|
|
Tag::Merge(const Tag &base, const Tag &add)
|
2009-01-03 23:28:51 +01:00
|
|
|
{
|
2013-12-13 15:53:58 +01:00
|
|
|
TagBuilder builder(add);
|
|
|
|
builder.Complement(base);
|
2014-01-08 19:43:09 +01:00
|
|
|
return builder.CommitNew();
|
2009-01-03 23:28:51 +01:00
|
|
|
}
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *
|
|
|
|
Tag::MergeReplace(Tag *base, Tag *add)
|
2010-03-17 23:12:21 +01:00
|
|
|
{
|
2013-01-07 10:36:27 +01:00
|
|
|
if (add == nullptr)
|
2010-03-17 23:12:21 +01:00
|
|
|
return base;
|
|
|
|
|
2013-01-07 10:36:27 +01:00
|
|
|
if (base == nullptr)
|
2010-03-17 23:12:21 +01:00
|
|
|
return add;
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *tag = Merge(*base, *add);
|
|
|
|
delete base;
|
|
|
|
delete add;
|
2010-03-17 23:12:21 +01:00
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2009-01-15 00:21:08 +01:00
|
|
|
const char *
|
2013-10-20 13:32:59 +02:00
|
|
|
Tag::GetValue(TagType type) const
|
2008-11-03 18:24:00 +01:00
|
|
|
{
|
|
|
|
assert(type < TAG_NUM_OF_ITEM_TYPES);
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
for (unsigned i = 0; i < num_items; i++)
|
|
|
|
if (items[i]->type == type)
|
|
|
|
return items[i]->value;
|
2009-01-15 00:21:08 +01:00
|
|
|
|
2013-01-07 10:36:27 +01:00
|
|
|
return nullptr;
|
2009-01-15 00:21:08 +01:00
|
|
|
}
|
2008-11-03 18:24:00 +01:00
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
bool
|
2013-10-20 13:32:59 +02:00
|
|
|
Tag::HasType(TagType type) const
|
2009-01-15 00:21:08 +01:00
|
|
|
{
|
2013-07-30 20:11:57 +02:00
|
|
|
return GetValue(type) != nullptr;
|
2008-11-03 18:24:00 +01:00
|
|
|
}
|