2010-05-30 22:39:09 +02:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2010-05-30 22:39:09 +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.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 07:37:52 +02:00
|
|
|
#ifndef MPD_TAG_TABLE_HXX
|
|
|
|
#define MPD_TAG_TABLE_HXX
|
2010-05-30 22:39:09 +02:00
|
|
|
|
2017-02-08 08:26:58 +01:00
|
|
|
#include "Type.h"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2010-05-30 22:39:09 +02:00
|
|
|
|
2019-06-06 13:23:16 +02:00
|
|
|
struct StringView;
|
|
|
|
|
2012-02-11 10:34:21 +01:00
|
|
|
struct tag_table {
|
|
|
|
const char *name;
|
|
|
|
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType type;
|
2012-02-11 10:34:21 +01:00
|
|
|
};
|
|
|
|
|
2012-02-11 10:37:59 +01:00
|
|
|
/**
|
|
|
|
* 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-01-30 22:53:12 +01:00
|
|
|
gcc_pure
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_table_lookup(const tag_table *table, const char *name) noexcept;
|
2012-02-11 10:37:59 +01:00
|
|
|
|
2019-06-06 13:23:16 +02:00
|
|
|
gcc_pure
|
|
|
|
TagType
|
|
|
|
tag_table_lookup(const tag_table *table, StringView name) noexcept;
|
|
|
|
|
2010-05-30 22:39:09 +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-01-30 22:53:12 +01:00
|
|
|
gcc_pure
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_table_lookup_i(const tag_table *table, const char *name) noexcept;
|
2010-05-30 22:39:09 +02:00
|
|
|
|
2019-06-06 13:23:16 +02:00
|
|
|
gcc_pure
|
|
|
|
TagType
|
|
|
|
tag_table_lookup_i(const tag_table *table, StringView name) noexcept;
|
|
|
|
|
2014-01-09 19:00:59 +01:00
|
|
|
/**
|
|
|
|
* Looks up a #TagType in a tag translation table and returns its
|
|
|
|
* string representation. Returns nullptr if the specified type was
|
|
|
|
* not found in the table.
|
|
|
|
*/
|
|
|
|
gcc_pure
|
|
|
|
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
|
|
|
|
2010-05-30 22:39:09 +02:00
|
|
|
#endif
|