You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.2 KiB
C++
67 lines
1.2 KiB
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright The Music Player Daemon Project
|
|
|
|
#include "Response.hxx"
|
|
#include "Client.hxx"
|
|
|
|
#include <fmt/format.h>
|
|
|
|
TagMask
|
|
Response::GetTagMask() const noexcept
|
|
{
|
|
return GetClient().tag_mask;
|
|
}
|
|
|
|
bool
|
|
Response::Write(const void *data, size_t length) noexcept
|
|
{
|
|
return client.Write(data, length);
|
|
}
|
|
|
|
bool
|
|
Response::Write(const char *data) noexcept
|
|
{
|
|
return client.Write(data);
|
|
}
|
|
|
|
bool
|
|
Response::VFmt(fmt::string_view format_str, fmt::format_args args) noexcept
|
|
{
|
|
fmt::memory_buffer buffer;
|
|
fmt::vformat_to(std::back_inserter(buffer), format_str, args);
|
|
return Write(buffer.data(), buffer.size());
|
|
}
|
|
|
|
bool
|
|
Response::WriteBinary(std::span<const std::byte> payload) noexcept
|
|
{
|
|
assert(payload.size() <= client.binary_limit);
|
|
|
|
return
|
|
Fmt("binary: {}\n", payload.size()) &&
|
|
Write(payload.data(), payload.size()) &&
|
|
Write("\n");
|
|
}
|
|
|
|
void
|
|
Response::Error(enum ack code, const char *msg) noexcept
|
|
{
|
|
Fmt("ACK [{}@{}] {{{}}} ",
|
|
(int)code, list_index, command);
|
|
|
|
Write(msg);
|
|
Write("\n");
|
|
}
|
|
|
|
void
|
|
Response::VFmtError(enum ack code,
|
|
fmt::string_view format_str, fmt::format_args args) noexcept
|
|
{
|
|
Fmt("ACK [{}@{}] {{{}}} ",
|
|
(int)code, list_index, command);
|
|
|
|
VFmt(format_str, args);
|
|
|
|
Write("\n");
|
|
}
|