2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2012-08-08 09:15:34 +02:00
|
|
|
|
2013-01-02 20:29:24 +01:00
|
|
|
#include "TimePrint.hxx"
|
2015-08-06 22:10:25 +02:00
|
|
|
#include "client/Response.hxx"
|
2019-05-08 15:47:58 +02:00
|
|
|
#include "time/ISO8601.hxx"
|
2021-05-27 15:59:38 +02:00
|
|
|
#include "util/StringBuffer.hxx"
|
2012-08-08 09:15:34 +02:00
|
|
|
|
2021-05-21 20:35:29 +02:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2012-08-08 09:15:34 +02:00
|
|
|
void
|
2018-07-25 08:33:59 +02:00
|
|
|
time_print(Response &r, const char *name,
|
|
|
|
std::chrono::system_clock::time_point t)
|
2012-08-08 09:15:34 +02:00
|
|
|
{
|
2018-07-25 08:29:34 +02:00
|
|
|
StringBuffer<64> s;
|
2018-07-25 08:29:55 +02:00
|
|
|
|
|
|
|
try {
|
2018-07-25 08:29:34 +02:00
|
|
|
s = FormatISO8601(t);
|
2018-07-25 08:29:55 +02:00
|
|
|
} catch (...) {
|
2012-08-08 09:15:34 +02:00
|
|
|
return;
|
2018-07-25 08:29:55 +02:00
|
|
|
}
|
2012-08-08 09:15:34 +02:00
|
|
|
|
2021-05-21 20:35:29 +02:00
|
|
|
r.Fmt(FMT_STRING("{}: {}\n"), name, s);
|
2012-08-08 09:15:34 +02:00
|
|
|
}
|