2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-10-08 11:07:35 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-10-08 11:07:35 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2012-08-02 18:39:17 +02:00
|
|
|
#include "DatabaseGlue.hxx"
|
2014-01-24 16:18:50 +01:00
|
|
|
#include "Registry.hxx"
|
2013-08-10 19:43:27 +02:00
|
|
|
#include "DatabaseError.hxx"
|
2016-10-28 23:00:10 +02:00
|
|
|
#include "util/RuntimeError.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2012-07-30 07:26:08 +02:00
|
|
|
#include "DatabasePlugin.hxx"
|
2008-10-08 11:07:35 +02:00
|
|
|
|
2014-02-01 00:26:34 +01:00
|
|
|
Database *
|
2014-01-11 01:01:54 +01:00
|
|
|
DatabaseGlobalInit(EventLoop &loop, DatabaseListener &listener,
|
2016-10-28 23:00:10 +02:00
|
|
|
const ConfigBlock &block)
|
2008-10-08 11:07:35 +02:00
|
|
|
{
|
2012-08-08 08:46:16 +02:00
|
|
|
const char *plugin_name =
|
2015-01-21 22:13:44 +01:00
|
|
|
block.GetBlockValue("plugin", "simple");
|
2013-01-02 19:19:40 +01:00
|
|
|
|
2012-08-08 08:46:16 +02:00
|
|
|
const DatabasePlugin *plugin = GetDatabasePluginByName(plugin_name);
|
2016-10-28 23:00:10 +02:00
|
|
|
if (plugin == nullptr)
|
|
|
|
throw FormatRuntimeError("No such database plugin: %s",
|
|
|
|
plugin_name);
|
2012-08-08 08:46:16 +02:00
|
|
|
|
2016-10-28 23:03:07 +02:00
|
|
|
return plugin->create(loop, listener, block);
|
2008-10-08 11:07:35 +02:00
|
|
|
}
|