80 lines
1.7 KiB
C++
80 lines
1.7 KiB
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright The Music Player Daemon Project
|
|
|
|
#include "config.h"
|
|
#include "ls.hxx"
|
|
#include "input/Registry.hxx"
|
|
#include "input/InputPlugin.hxx"
|
|
#include "decoder/DecoderList.hxx"
|
|
#include "decoder/DecoderPlugin.hxx"
|
|
#include "client/Response.hxx"
|
|
#include "util/UriExtract.hxx"
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <cassert>
|
|
#include <string>
|
|
|
|
void print_supported_uri_schemes_to_fp(FILE *fp)
|
|
{
|
|
#ifdef HAVE_UN
|
|
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);
|
|
});
|
|
}
|
|
|
|
for (const DecoderPlugin &plugin : GetAllDecoderPlugins()) {
|
|
if (plugin.protocols != nullptr)
|
|
protocols.merge(plugin.protocols());
|
|
};
|
|
|
|
for (const auto& protocol : protocols) {
|
|
fmt::print(fp, " {}", protocol);
|
|
}
|
|
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
|
|
{
|
|
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;
|
|
}
|