2013-09-04 23:53:50 +02:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2013-09-04 23:53:50 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "Table.hxx"
|
2013-10-20 23:09:51 +02:00
|
|
|
#include "util/ASCII.hxx"
|
2020-03-13 20:17:53 +01:00
|
|
|
#include "util/StringView.hxx"
|
2013-09-04 23:53:50 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Looks up a string in a tag translation table (case sensitive).
|
|
|
|
* Returns TAG_NUM_OF_ITEM_TYPES if the specified name was not found
|
|
|
|
* in the table.
|
|
|
|
*/
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_table_lookup(const struct tag_table *table, const char *name) noexcept
|
2013-09-04 23:53:50 +02:00
|
|
|
{
|
|
|
|
for (; table->name != nullptr; ++table)
|
|
|
|
if (strcmp(name, table->name) == 0)
|
|
|
|
return table->type;
|
|
|
|
|
|
|
|
return TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
|
|
|
|
2019-06-06 13:23:16 +02:00
|
|
|
TagType
|
|
|
|
tag_table_lookup(const struct tag_table *table, StringView name) noexcept
|
|
|
|
{
|
|
|
|
for (; table->name != nullptr; ++table)
|
|
|
|
if (name.Equals(table->name))
|
|
|
|
return table->type;
|
|
|
|
|
|
|
|
return TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
|
|
|
|
2013-09-04 23:53:50 +02:00
|
|
|
/**
|
|
|
|
* Looks up a string in a tag translation table (case insensitive).
|
|
|
|
* Returns TAG_NUM_OF_ITEM_TYPES if the specified name was not found
|
|
|
|
* in the table.
|
|
|
|
*/
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_table_lookup_i(const struct tag_table *table, const char *name) noexcept
|
2013-09-04 23:53:50 +02:00
|
|
|
{
|
|
|
|
for (; table->name != nullptr; ++table)
|
2013-10-20 23:09:51 +02:00
|
|
|
if (StringEqualsCaseASCII(name, table->name))
|
2013-09-04 23:53:50 +02:00
|
|
|
return table->type;
|
|
|
|
|
|
|
|
return TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
2014-01-09 19:00:59 +01:00
|
|
|
|
2019-06-06 13:23:16 +02:00
|
|
|
TagType
|
|
|
|
tag_table_lookup_i(const struct tag_table *table, StringView name) noexcept
|
|
|
|
{
|
|
|
|
for (; table->name != nullptr; ++table)
|
|
|
|
if (name.EqualsIgnoreCase(table->name))
|
|
|
|
return table->type;
|
|
|
|
|
|
|
|
return TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
|
|
|
|
2014-01-09 19:00:59 +01:00
|
|
|
const char *
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_table_lookup(const tag_table *table, TagType type) noexcept
|
2014-01-09 19:00:59 +01:00
|
|
|
{
|
|
|
|
for (; table->name != nullptr; ++table)
|
|
|
|
if (table->type == type)
|
|
|
|
return table->name;
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|