2012-08-07 20:07:17 +02:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 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.
|
|
|
|
*/
|
|
|
|
|
2011-09-05 22:53:46 +02:00
|
|
|
#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"
|
2014-02-19 23:46:00 +01:00
|
|
|
#include "plugins/upnp/UpnpDatabasePlugin.hxx"
|
2012-08-07 20:07:17 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
const DatabasePlugin *const database_plugins[] = {
|
|
|
|
&simple_db_plugin,
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_LIBMPDCLIENT
|
2011-09-05 22:53:46 +02:00
|
|
|
&proxy_db_plugin,
|
2013-11-01 19:26:01 +01:00
|
|
|
#endif
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_UPNP
|
2013-11-01 19:26:01 +01:00
|
|
|
&upnp_db_plugin,
|
2011-09-05 22:53:46 +02:00
|
|
|
#endif
|
2013-10-19 18:19:03 +02:00
|
|
|
nullptr
|
2012-08-07 20:07:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const DatabasePlugin *
|
2017-05-08 14:44:49 +02:00
|
|
|
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;
|
|
|
|
}
|