mpd/src/TagPrint.cxx

61 lines
1.4 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-01-02 20:29:24 +01:00
#include "TagPrint.hxx"
2023-03-06 14:25:19 +01:00
#include "tag/Names.hxx"
2013-09-05 18:22:02 +02:00
#include "tag/Tag.hxx"
2015-08-24 11:19:19 +02:00
#include "tag/Settings.hxx"
#include "client/Response.hxx"
2013-01-02 20:29:24 +01:00
#include <fmt/format.h>
void
2018-01-21 11:30:47 +01:00
tag_print_types(Response &r) noexcept
{
const auto tag_mask = global_tag_mask & r.GetTagMask();
2015-08-24 10:54:53 +02:00
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; i++)
if (tag_mask.Test(TagType(i)))
r.Fmt(FMT_STRING("tagtype: {}\n"), tag_item_names[i]);
}
void
tag_print_types_available(Response &r) noexcept
{
for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; i++)
if (global_tag_mask.Test(TagType(i)))
r.Fmt(FMT_STRING("tagtype: {}\n"), tag_item_names[i]);
}
void
2022-07-01 11:29:32 +02:00
tag_print(Response &r, TagType type, std::string_view value) noexcept
{
r.Fmt(FMT_STRING("{}: {}\n"), tag_item_names[type], value);
}
void
2018-01-21 11:30:47 +01:00
tag_print(Response &r, TagType type, const char *value) noexcept
{
r.Fmt(FMT_STRING("{}: {}\n"), tag_item_names[type], value);
}
void
2018-01-21 11:30:47 +01:00
tag_print_values(Response &r, const Tag &tag) noexcept
{
const auto tag_mask = r.GetTagMask();
for (const auto &i : tag)
if (tag_mask.Test(i.type))
tag_print(r, i.type, i.value);
}
void
2018-01-21 11:30:47 +01:00
tag_print(Response &r, const Tag &tag) noexcept
{
if (!tag.duration.IsNegative())
r.Fmt(FMT_STRING("Time: {}\n"
"duration: {:1.3f}\n"),
tag.duration.RoundS(),
tag.duration.ToDoubleS());
tag_print_values(r, tag);
}