2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "SongPrint.hxx"
|
2018-08-02 13:45:43 +02:00
|
|
|
#include "song/LightSong.hxx"
|
|
|
|
#include "song/DetachedSong.hxx"
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "TimePrint.hxx"
|
|
|
|
#include "TagPrint.hxx"
|
2015-08-06 22:10:25 +02:00
|
|
|
#include "client/Response.hxx"
|
2014-10-01 23:38:17 +02:00
|
|
|
#include "fs/Traits.hxx"
|
2023-05-15 20:52:21 +02:00
|
|
|
#include "lib/fmt/AudioFormatFormatter.hxx"
|
2019-05-08 15:47:58 +02:00
|
|
|
#include "time/ChronoUtil.hxx"
|
2021-05-27 15:59:38 +02:00
|
|
|
#include "util/StringBuffer.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2008-09-07 13:35:01 +02:00
|
|
|
|
2021-05-21 20:35:29 +02:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2014-01-19 10:51:34 +01:00
|
|
|
#define SONG_FILE "file: "
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
static void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_uri(Response &r, const char *uri, bool base) noexcept
|
2014-01-07 21:39:47 +01:00
|
|
|
{
|
2014-02-28 19:02:23 +01:00
|
|
|
std::string allocated;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
uri = PathTraitsUTF8::GetBase(uri);
|
|
|
|
} else {
|
|
|
|
allocated = uri_remove_auth(uri);
|
|
|
|
if (!allocated.empty())
|
|
|
|
uri = allocated.c_str();
|
|
|
|
}
|
2014-01-07 21:39:47 +01:00
|
|
|
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING(SONG_FILE "{}\n"), uri);
|
2014-01-07 21:39:47 +01:00
|
|
|
}
|
|
|
|
|
2008-10-08 10:49:11 +02:00
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_uri(Response &r, const LightSong &song, bool base) noexcept
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2015-08-06 22:10:25 +02:00
|
|
|
if (!base && song.directory != nullptr)
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING(SONG_FILE "{}/{}\n"),
|
|
|
|
song.directory, song.uri);
|
2015-08-06 22:10:25 +02:00
|
|
|
else
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_uri(r, song.uri, base);
|
2014-01-07 21:39:47 +01:00
|
|
|
}
|
2009-02-27 19:20:11 +01:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_uri(Response &r, const DetachedSong &song, bool base) noexcept
|
2014-01-07 21:39:47 +01:00
|
|
|
{
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_uri(r, song.GetURI(), base);
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
|
|
|
|
2017-02-20 13:07:52 +01:00
|
|
|
static void
|
2018-01-21 11:30:09 +01:00
|
|
|
PrintRange(Response &r, SongTime start_time, SongTime end_time) noexcept
|
2008-09-07 13:35:01 +02:00
|
|
|
{
|
2017-02-20 13:07:52 +01:00
|
|
|
const unsigned start_ms = start_time.ToMS();
|
|
|
|
const unsigned end_ms = end_time.ToMS();
|
2014-08-28 12:35:26 +02:00
|
|
|
|
|
|
|
if (end_ms > 0)
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING("Range: {}.{:03}-{}.{:03}\n"),
|
|
|
|
start_ms / 1000,
|
|
|
|
start_ms % 1000,
|
|
|
|
end_ms / 1000,
|
|
|
|
end_ms % 1000);
|
2014-08-28 12:35:26 +02:00
|
|
|
else if (start_ms > 0)
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING("Range: {}.{:03}-\n"),
|
|
|
|
start_ms / 1000,
|
|
|
|
start_ms % 1000);
|
2017-02-20 13:07:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_info(Response &r, const LightSong &song, bool base) noexcept
|
2017-02-20 13:07:52 +01:00
|
|
|
{
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_uri(r, song, base);
|
2017-02-20 13:07:52 +01:00
|
|
|
|
|
|
|
PrintRange(r, song.start_time, song.end_time);
|
2009-12-25 22:59:13 +01:00
|
|
|
|
2017-01-18 13:19:13 +01:00
|
|
|
if (!IsNegative(song.mtime))
|
2015-08-06 22:10:25 +02:00
|
|
|
time_print(r, "Last-Modified", song.mtime);
|
2009-07-05 08:40:29 +02:00
|
|
|
|
2023-10-05 19:27:22 +02:00
|
|
|
if (!IsNegative(song.added))
|
|
|
|
time_print(r, "Added", song.added);
|
|
|
|
|
2018-07-06 13:22:17 +02:00
|
|
|
if (song.audio_format.IsDefined())
|
2023-05-15 20:52:21 +02:00
|
|
|
r.Fmt(FMT_STRING("Format: {}\n"), song.audio_format);
|
2018-07-06 13:22:17 +02:00
|
|
|
|
2021-01-21 13:47:13 +01:00
|
|
|
tag_print_values(r, song.tag);
|
|
|
|
|
|
|
|
const auto duration = song.GetDuration();
|
|
|
|
if (!duration.IsNegative())
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING("Time: {}\n"
|
2021-10-18 16:52:58 +02:00
|
|
|
"duration: {:1.3f}\n"),
|
2021-05-21 20:35:29 +02:00
|
|
|
duration.RoundS(),
|
|
|
|
duration.ToDoubleS());
|
2008-09-07 13:35:01 +02:00
|
|
|
}
|
2014-01-07 21:39:47 +01:00
|
|
|
|
|
|
|
void
|
2018-01-21 11:30:09 +01:00
|
|
|
song_print_info(Response &r, const DetachedSong &song, bool base) noexcept
|
2014-01-07 21:39:47 +01:00
|
|
|
{
|
2017-02-24 13:56:13 +01:00
|
|
|
song_print_uri(r, song, base);
|
2014-01-07 21:39:47 +01:00
|
|
|
|
2017-02-20 13:07:52 +01:00
|
|
|
PrintRange(r, song.GetStartTime(), song.GetEndTime());
|
2014-01-07 21:39:47 +01:00
|
|
|
|
2017-01-18 13:19:13 +01:00
|
|
|
if (!IsNegative(song.GetLastModified()))
|
2015-08-06 22:10:25 +02:00
|
|
|
time_print(r, "Last-Modified", song.GetLastModified());
|
2014-01-07 21:39:47 +01:00
|
|
|
|
2023-10-05 19:27:22 +02:00
|
|
|
if (!IsNegative(song.GetAdded()))
|
|
|
|
time_print(r, "Added", song.GetAdded());
|
|
|
|
|
2021-02-18 21:59:47 +01:00
|
|
|
if (const auto &f = song.GetAudioFormat(); f.IsDefined())
|
2023-05-15 20:52:21 +02:00
|
|
|
r.Fmt(FMT_STRING("Format: {}\n"), f);
|
2021-02-18 21:59:47 +01:00
|
|
|
|
2015-08-06 22:10:25 +02:00
|
|
|
tag_print_values(r, song.GetTag());
|
2014-07-12 18:41:15 +02:00
|
|
|
|
2014-08-29 12:14:27 +02:00
|
|
|
const auto duration = song.GetDuration();
|
|
|
|
if (!duration.IsNegative())
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING("Time: {}\n"
|
2021-10-18 16:52:58 +02:00
|
|
|
"duration: {:1.3f}\n"),
|
2021-05-21 20:35:29 +02:00
|
|
|
duration.RoundS(),
|
|
|
|
duration.ToDoubleS());
|
2014-01-07 21:39:47 +01:00
|
|
|
}
|