mpd/src/archive/ArchiveList.cxx

93 lines
2.4 KiB
C++
Raw Normal View History

/*
2020-01-18 19:22:19 +01:00
* Copyright 2003-2020 The Music Player Daemon Project
* http://www.musicpd.org
2008-12-16 21:42:34 +01: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.
*
* 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-12-16 21:42:34 +01:00
*/
#include "config.h"
2013-01-24 19:18:58 +01:00
#include "ArchiveList.hxx"
#include "ArchivePlugin.hxx"
2013-04-09 01:08:20 +02:00
#include "util/StringUtil.hxx"
2014-01-24 00:09:37 +01:00
#include "plugins/Bzip2ArchivePlugin.hxx"
#include "plugins/Iso9660ArchivePlugin.hxx"
#include "plugins/ZzipArchivePlugin.hxx"
#include <cassert>
#include <iterator>
2008-12-16 21:42:34 +01:00
#include <string.h>
const ArchivePlugin *const archive_plugins[] = {
#ifdef ENABLE_BZ2
&bz2_archive_plugin,
#endif
#ifdef ENABLE_ZZIP
&zzip_archive_plugin,
#endif
#ifdef ENABLE_ISO9660
&iso9660_archive_plugin,
#endif
2013-10-19 18:19:03 +02:00
nullptr
2008-12-16 21:42:34 +01:00
};
/** which plugins have been initialized successfully? */
static bool archive_plugins_enabled[std::size(archive_plugins) - 1];
2008-12-16 21:42:34 +01:00
2012-06-12 20:50:51 +02:00
#define archive_plugins_for_each_enabled(plugin) \
archive_plugins_for_each(plugin) \
if (archive_plugins_enabled[archive_plugin_iterator - archive_plugins])
const ArchivePlugin *
2019-02-05 21:38:46 +01:00
archive_plugin_from_suffix(const char *suffix) noexcept
2008-12-16 21:42:34 +01:00
{
assert(suffix != nullptr);
2008-12-16 21:42:34 +01:00
2012-06-12 20:50:51 +02:00
archive_plugins_for_each_enabled(plugin)
2013-10-19 18:19:03 +02:00
if (plugin->suffixes != nullptr &&
2016-06-10 22:08:13 +02:00
StringArrayContainsCase(plugin->suffixes, suffix))
2008-12-16 21:42:34 +01:00
return plugin;
2012-06-12 20:50:51 +02:00
2013-10-19 18:19:03 +02:00
return nullptr;
2008-12-16 21:42:34 +01:00
}
const ArchivePlugin *
2019-02-05 21:38:46 +01:00
archive_plugin_from_name(const char *name) noexcept
2008-12-16 21:42:34 +01:00
{
2012-06-12 20:50:51 +02:00
archive_plugins_for_each_enabled(plugin)
if (strcmp(plugin->name, name) == 0)
2008-12-16 21:42:34 +01:00
return plugin;
2013-10-19 18:19:03 +02:00
return nullptr;
2008-12-16 21:42:34 +01:00
}
void archive_plugin_init_all()
2008-12-16 21:42:34 +01:00
{
2013-10-19 18:19:03 +02:00
for (unsigned i = 0; archive_plugins[i] != nullptr; ++i) {
const ArchivePlugin *plugin = archive_plugins[i];
2013-10-19 18:19:03 +02:00
if (plugin->init == nullptr || archive_plugins[i]->init())
2008-12-16 21:42:34 +01:00
archive_plugins_enabled[i] = true;
}
}
2019-02-05 21:38:46 +01:00
void
archive_plugin_deinit_all() noexcept
2008-12-16 21:42:34 +01:00
{
2012-06-12 20:50:51 +02:00
archive_plugins_for_each_enabled(plugin)
2013-10-19 18:19:03 +02:00
if (plugin->finish != nullptr)
2012-06-12 20:50:51 +02:00
plugin->finish();
2008-12-16 21:42:34 +01:00
}