2009-02-15 17:48:37 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-02-15 17:48:37 +01: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.
|
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.
|
2009-02-15 17:48:37 +01:00
|
|
|
*/
|
|
|
|
|
2013-07-28 13:18:48 +02:00
|
|
|
#ifndef MPD_DECODER_PLUGIN_HXX
|
|
|
|
#define MPD_DECODER_PLUGIN_HXX
|
2009-02-15 17:48:37 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
#include "Compiler.h"
|
|
|
|
|
2016-11-22 09:33:52 +01:00
|
|
|
#include <forward_list>
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
struct ConfigBlock;
|
2014-05-11 15:34:48 +02:00
|
|
|
class InputStream;
|
2016-02-22 17:38:06 +01:00
|
|
|
struct TagHandler;
|
2014-02-07 18:52:19 +01:00
|
|
|
class Path;
|
2016-11-18 07:13:35 +01:00
|
|
|
class DecoderClient;
|
2016-11-22 12:25:52 +01:00
|
|
|
class DetachedSong;
|
2009-02-15 17:48:37 +01:00
|
|
|
|
2013-10-21 20:31:34 +02:00
|
|
|
struct DecoderPlugin {
|
2009-02-15 17:48:37 +01:00
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/**
|
2009-06-03 08:31:48 +02:00
|
|
|
* Initialize the decoder plugin. Optional method.
|
|
|
|
*
|
2013-07-30 08:39:21 +02:00
|
|
|
* @param param a configuration block for this plugin, or nullptr
|
2009-06-03 08:31:48 +02:00
|
|
|
* if none is configured
|
|
|
|
* @return true if the plugin was initialized successfully,
|
|
|
|
* false if the plugin is not available
|
2009-02-15 17:48:37 +01:00
|
|
|
*/
|
2015-01-21 22:13:44 +01:00
|
|
|
bool (*init)(const ConfigBlock &block);
|
2009-02-15 17:48:37 +01:00
|
|
|
|
|
|
|
/**
|
2009-06-03 08:31:48 +02:00
|
|
|
* Deinitialize a decoder plugin which was initialized
|
|
|
|
* successfully. Optional method.
|
2009-02-15 17:48:37 +01:00
|
|
|
*/
|
2018-01-21 11:47:17 +01:00
|
|
|
void (*finish)() noexcept;
|
2009-02-15 17:48:37 +01:00
|
|
|
|
|
|
|
/**
|
2015-01-31 22:17:15 +01:00
|
|
|
* Decode a stream (data read from an #InputStream object).
|
2009-02-15 17:48:37 +01:00
|
|
|
*
|
2009-06-03 08:31:48 +02:00
|
|
|
* Either implement this method or file_decode(). If
|
|
|
|
* possible, it is recommended to implement this method,
|
|
|
|
* because it is more versatile.
|
2009-02-15 17:48:37 +01:00
|
|
|
*/
|
2016-11-18 07:13:35 +01:00
|
|
|
void (*stream_decode)(DecoderClient &client, InputStream &is);
|
2009-02-15 17:48:37 +01:00
|
|
|
|
|
|
|
/**
|
2009-06-03 08:31:48 +02:00
|
|
|
* Decode a local file.
|
2009-02-15 17:48:37 +01:00
|
|
|
*
|
2009-06-03 08:31:48 +02:00
|
|
|
* Either implement this method or stream_decode().
|
2009-02-15 17:48:37 +01:00
|
|
|
*/
|
2016-11-18 07:13:35 +01:00
|
|
|
void (*file_decode)(DecoderClient &client, Path path_fs);
|
2009-02-15 17:48:37 +01:00
|
|
|
|
|
|
|
/**
|
2012-02-11 19:12:02 +01:00
|
|
|
* Scan metadata of a file.
|
2009-06-03 08:31:48 +02:00
|
|
|
*
|
2012-02-11 19:12:02 +01:00
|
|
|
* @return false if the operation has failed
|
2009-02-15 17:48:37 +01:00
|
|
|
*/
|
2014-02-07 18:52:19 +01:00
|
|
|
bool (*scan_file)(Path path_fs,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler,
|
2018-01-21 11:47:17 +01:00
|
|
|
void *handler_ctx) noexcept;
|
2009-02-15 17:48:37 +01:00
|
|
|
|
2009-12-31 17:18:10 +01:00
|
|
|
/**
|
2012-02-11 19:12:02 +01:00
|
|
|
* Scan metadata of a file.
|
2009-12-31 17:18:10 +01:00
|
|
|
*
|
2012-02-11 19:12:02 +01:00
|
|
|
* @return false if the operation has failed
|
2009-12-31 17:18:10 +01:00
|
|
|
*/
|
2013-10-23 22:08:59 +02:00
|
|
|
bool (*scan_stream)(InputStream &is,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler,
|
2018-01-21 11:47:17 +01:00
|
|
|
void *handler_ctx) noexcept;
|
2009-12-31 17:18:10 +01:00
|
|
|
|
2009-03-08 20:16:53 +01:00
|
|
|
/**
|
|
|
|
* @brief Return a "virtual" filename for subtracks in
|
|
|
|
* container formats like flac
|
2016-11-22 09:33:52 +01:00
|
|
|
* @param path_fs full pathname for the file on fs
|
2009-03-08 20:16:53 +01:00
|
|
|
*
|
2016-11-22 09:33:52 +01:00
|
|
|
* @return an empty list if there are no multiple files
|
|
|
|
* a filename for every single track;
|
2009-03-08 20:16:53 +01:00
|
|
|
* do not include full pathname here, just the "virtual" file
|
|
|
|
*/
|
2016-11-22 12:25:52 +01:00
|
|
|
std::forward_list<DetachedSong> (*container_scan)(Path path_fs);
|
2009-03-08 20:16:53 +01:00
|
|
|
|
2013-07-30 08:39:21 +02:00
|
|
|
/* last element in these arrays must always be a nullptr: */
|
2009-02-15 17:48:37 +01:00
|
|
|
const char *const*suffixes;
|
|
|
|
const char *const*mime_types;
|
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Initialize a decoder plugin.
|
|
|
|
*
|
2015-03-17 11:21:29 +01:00
|
|
|
* @param block a configuration block for this plugin
|
2013-10-21 20:36:34 +02:00
|
|
|
* @return true if the plugin was initialized successfully, false if
|
|
|
|
* the plugin is not available
|
|
|
|
*/
|
2015-01-21 22:13:44 +01:00
|
|
|
bool Init(const ConfigBlock &block) const {
|
2013-10-21 20:36:34 +02:00
|
|
|
return init != nullptr
|
2015-01-21 22:13:44 +01:00
|
|
|
? init(block)
|
2013-10-21 20:36:34 +02:00
|
|
|
: true;
|
|
|
|
}
|
2009-02-15 18:33:28 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Deinitialize a decoder plugin which was initialized successfully.
|
|
|
|
*/
|
|
|
|
void Finish() const {
|
|
|
|
if (finish != nullptr)
|
|
|
|
finish();
|
|
|
|
}
|
2009-02-15 18:33:28 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Decode a stream.
|
|
|
|
*/
|
2016-11-18 07:13:35 +01:00
|
|
|
void StreamDecode(DecoderClient &client, InputStream &is) const {
|
|
|
|
stream_decode(client, is);
|
2013-10-21 20:36:34 +02:00
|
|
|
}
|
2009-02-15 18:33:28 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Decode a file.
|
|
|
|
*/
|
2014-02-07 18:52:19 +01:00
|
|
|
template<typename P>
|
2016-11-18 07:13:35 +01:00
|
|
|
void FileDecode(DecoderClient &client, P path_fs) const {
|
|
|
|
file_decode(client, path_fs);
|
2013-10-21 20:36:34 +02:00
|
|
|
}
|
2009-02-15 18:33:28 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Read the tag of a file.
|
|
|
|
*/
|
2014-02-07 18:52:19 +01:00
|
|
|
template<typename P>
|
|
|
|
bool ScanFile(P path_fs,
|
2018-01-21 11:47:17 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx) const noexcept {
|
2013-10-21 20:36:34 +02:00
|
|
|
return scan_file != nullptr
|
2016-02-23 10:10:13 +01:00
|
|
|
? scan_file(path_fs, handler, handler_ctx)
|
2013-10-21 20:36:34 +02:00
|
|
|
: false;
|
|
|
|
}
|
2009-12-31 17:18:10 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Read the tag of a stream.
|
|
|
|
*/
|
2013-10-23 22:08:59 +02:00
|
|
|
bool ScanStream(InputStream &is,
|
2018-01-21 11:47:17 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx) const noexcept {
|
2013-10-21 20:36:34 +02:00
|
|
|
return scan_stream != nullptr
|
2016-02-23 10:10:13 +01:00
|
|
|
? scan_stream(is, handler, handler_ctx)
|
2013-10-21 20:36:34 +02:00
|
|
|
: false;
|
|
|
|
}
|
2009-02-15 18:33:28 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* return "virtual" tracks in a container
|
|
|
|
*/
|
2014-02-07 18:52:19 +01:00
|
|
|
template<typename P>
|
|
|
|
char *ContainerScan(P path, const unsigned int tnum) const {
|
2013-10-21 20:36:34 +02:00
|
|
|
return container_scan(path, tnum);
|
|
|
|
}
|
2009-03-08 20:16:53 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Does the plugin announce the specified file name suffix?
|
|
|
|
*/
|
|
|
|
gcc_pure gcc_nonnull_all
|
2017-05-08 14:44:49 +02:00
|
|
|
bool SupportsSuffix(const char *suffix) const noexcept;
|
2009-11-07 15:14:11 +01:00
|
|
|
|
2013-10-21 20:36:34 +02:00
|
|
|
/**
|
|
|
|
* Does the plugin announce the specified MIME type?
|
|
|
|
*/
|
|
|
|
gcc_pure gcc_nonnull_all
|
2017-05-08 14:44:49 +02:00
|
|
|
bool SupportsMimeType(const char *mime_type) const noexcept;
|
2013-10-21 20:36:34 +02:00
|
|
|
};
|
2009-11-07 15:14:11 +01:00
|
|
|
|
2009-02-15 17:48:37 +01:00
|
|
|
#endif
|