Commit 0fd6235a authored by Max Kellermann's avatar Max Kellermann

playlist/Registry: add FindPlaylistPluginBySuffix()

parent 4d117451
...@@ -274,15 +274,15 @@ playlist_list_open_stream(InputStreamPtr &&is, const char *uri) ...@@ -274,15 +274,15 @@ playlist_list_open_stream(InputStreamPtr &&is, const char *uri)
return nullptr; return nullptr;
} }
bool const PlaylistPlugin *
playlist_suffix_supported(const char *suffix) noexcept FindPlaylistPluginBySuffix(const char *suffix) noexcept
{ {
assert(suffix != nullptr); assert(suffix != nullptr);
playlist_plugins_for_each_enabled(plugin) { playlist_plugins_for_each_enabled(plugin) {
if (plugin->SupportsSuffix(suffix)) if (plugin->SupportsSuffix(suffix))
return true; return plugin;
} }
return false; return nullptr;
} }
...@@ -78,12 +78,19 @@ playlist_list_open_stream_suffix(InputStreamPtr &&is, const char *suffix); ...@@ -78,12 +78,19 @@ playlist_list_open_stream_suffix(InputStreamPtr &&is, const char *suffix);
std::unique_ptr<SongEnumerator> std::unique_ptr<SongEnumerator>
playlist_list_open_stream(InputStreamPtr &&is, const char *uri); playlist_list_open_stream(InputStreamPtr &&is, const char *uri);
gcc_pure
const PlaylistPlugin *
FindPlaylistPluginBySuffix(const char *suffix) noexcept;
/** /**
* Determines if there is a playlist plugin which can handle the * Determines if there is a playlist plugin which can handle the
* specified file name suffix. * specified file name suffix.
*/ */
gcc_pure gcc_pure
bool inline bool
playlist_suffix_supported(const char *suffix) noexcept; playlist_suffix_supported(const char *suffix) noexcept
{
return FindPlaylistPluginBySuffix(suffix) != nullptr;
}
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment