mpd/src/ls.cxx

80 lines
1.7 KiB
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#include "config.h"
2013-01-03 17:34:51 +01:00
#include "ls.hxx"
2018-10-24 20:25:32 +02:00
#include "input/Registry.hxx"
#include "input/InputPlugin.hxx"
#include "decoder/DecoderList.hxx"
#include "decoder/DecoderPlugin.hxx"
#include "client/Response.hxx"
2019-08-09 15:54:13 +02:00
#include "util/UriExtract.hxx"
2013-01-03 10:33:04 +01:00
#include <fmt/format.h>
#include <cassert>
#include <string>
void print_supported_uri_schemes_to_fp(FILE *fp)
{
#ifdef HAVE_UN
2023-03-14 20:20:19 +01:00
fmt::print(fp, " file://");
#endif
std::set<std::string, std::less<>> protocols;
for (const auto &plugin : GetAllInputPlugins()) {
plugin.ForeachSupportedUri([&](const char* uri) {
protocols.emplace(uri);
});
}
2019-08-09 15:54:13 +02:00
for (const DecoderPlugin &plugin : GetAllDecoderPlugins()) {
if (plugin.protocols != nullptr)
protocols.merge(plugin.protocols());
};
for (const auto& protocol : protocols) {
2023-03-14 20:20:19 +01:00
fmt::print(fp, " {}", protocol);
}
2023-03-14 20:20:19 +01:00
fmt::print(fp, "\n");
}
void
print_supported_uri_schemes(Response &r)
{
std::set<std::string, std::less<>> protocols;
for (const auto &plugin : GetEnabledInputPlugins()) {
plugin.ForeachSupportedUri([&](const char* uri) {
protocols.emplace(uri);
});
}
for (const auto &plugin : GetEnabledDecoderPlugins()) {
if (plugin.protocols != nullptr)
protocols.merge(plugin.protocols());
}
for (const auto& protocol : protocols) {
r.Fmt(FMT_STRING("handler: {}\n"), protocol);
}
}
bool
uri_supported_scheme(const char *uri) noexcept
{
2009-01-04 17:46:42 +01:00
assert(uri_has_scheme(uri));
for (const auto &plugin : GetEnabledInputPlugins()) {
if (plugin.SupportsUri(uri))
return true;
}
for (const auto &plugin : GetEnabledDecoderPlugins()) {
if (plugin.SupportsUri(uri))
return true;
}
return false;
}