mpd/src/db/Registry.cxx

49 lines
1.4 KiB
C++
Raw Normal View History

2012-08-07 20:07:17 +02:00
/*
2022-07-14 17:58:12 +02:00
* Copyright 2003-2022 The Music Player Daemon Project
2012-08-07 20:07:17 +02:00
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
2014-01-24 16:18:50 +01:00
#include "Registry.hxx"
2014-02-19 22:54:52 +01:00
#include "DatabasePlugin.hxx"
2014-02-26 09:17:41 +01:00
#include "plugins/simple/SimpleDatabasePlugin.hxx"
2014-01-24 16:18:50 +01:00
#include "plugins/ProxyDatabasePlugin.hxx"
#include "plugins/upnp/UpnpDatabasePlugin.hxx"
2012-08-07 20:07:17 +02:00
#include <string.h>
constexpr const DatabasePlugin *database_plugins[] = {
2012-08-07 20:07:17 +02:00
&simple_db_plugin,
#ifdef ENABLE_LIBMPDCLIENT
&proxy_db_plugin,
#endif
#ifdef ENABLE_UPNP
&upnp_db_plugin,
#endif
2013-10-19 18:19:03 +02:00
nullptr
2012-08-07 20:07:17 +02:00
};
const DatabasePlugin *
GetDatabasePluginByName(const char *name) noexcept
2012-08-07 20:07:17 +02:00
{
for (auto i = database_plugins; *i != nullptr; ++i)
if (strcmp((*i)->name, name) == 0)
return *i;
return nullptr;
}