2009-02-15 17:48:37 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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"
|
|
|
|
|
2009-02-15 18:34:14 +01:00
|
|
|
struct config_param;
|
2014-05-11 15:34:48 +02:00
|
|
|
class InputStream;
|
2012-02-11 19:12:02 +01:00
|
|
|
struct tag_handler;
|
2014-02-07 18:52:19 +01:00
|
|
|
class Path;
|
2009-02-15 17:48:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opaque handle which the decoder plugin passes to the functions in
|
|
|
|
* this header.
|
|
|
|
*/
|
2013-10-21 21:12:37 +02:00
|
|
|
struct Decoder;
|
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
|
|
|
*/
|
2013-08-04 11:30:26 +02:00
|
|
|
bool (*init)(const config_param ¶m);
|
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
|
|
|
*/
|
|
|
|
void (*finish)(void);
|
|
|
|
|
|
|
|
/**
|
2009-06-03 08:31:48 +02:00
|
|
|
* Decode a stream (data read from an #input_stream 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
|
|
|
*/
|
2013-10-23 22:08:59 +02:00
|
|
|
void (*stream_decode)(Decoder &decoder, 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
|
|
|
*/
|
2014-02-07 18:52:19 +01:00
|
|
|
void (*file_decode)(Decoder &decoder, 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,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler,
|
|
|
|
void *handler_ctx);
|
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,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler,
|
|
|
|
void *handler_ctx);
|
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
|
|
|
|
* @param const char* pathname full pathname for the file on fs
|
|
|
|
* @param const unsigned int tnum track number
|
|
|
|
*
|
2013-07-30 08:39:21 +02:00
|
|
|
* @return nullptr if there are no multiple files
|
2009-03-08 20:16:53 +01:00
|
|
|
* a filename for every single track according to tnum (param 2)
|
|
|
|
* do not include full pathname here, just the "virtual" file
|
2014-02-24 19:38:30 +01:00
|
|
|
*
|
|
|
|
* Free the return value with delete[].
|
2009-03-08 20:16:53 +01:00
|
|
|
*/
|
2014-02-07 18:52:19 +01:00
|
|
|
char* (*container_scan)(Path path_fs, const unsigned int tnum);
|
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.
|
|
|
|
*
|
|
|
|
* @param param a configuration block for this plugin, or nullptr if none
|
|
|
|
* is configured
|
|
|
|
* @return true if the plugin was initialized successfully, false if
|
|
|
|
* the plugin is not available
|
|
|
|
*/
|
|
|
|
bool Init(const config_param ¶m) const {
|
|
|
|
return init != nullptr
|
|
|
|
? init(param)
|
|
|
|
: 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.
|
|
|
|
*/
|
2013-10-23 22:08:59 +02:00
|
|
|
void StreamDecode(Decoder &decoder, InputStream &is) const {
|
|
|
|
stream_decode(decoder, 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>
|
|
|
|
void FileDecode(Decoder &decoder, P path_fs) const {
|
2013-10-21 21:12:37 +02:00
|
|
|
file_decode(decoder, 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,
|
2013-10-21 20:36:34 +02:00
|
|
|
const tag_handler &handler, void *handler_ctx) const {
|
|
|
|
return scan_file != nullptr
|
|
|
|
? scan_file(path_fs, &handler, handler_ctx)
|
|
|
|
: 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,
|
2013-10-21 20:36:34 +02:00
|
|
|
const tag_handler &handler, void *handler_ctx) const {
|
|
|
|
return scan_stream != nullptr
|
2013-10-23 22:08:59 +02: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
|
|
|
|
bool SupportsSuffix(const char *suffix) const;
|
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
|
|
|
|
bool SupportsMimeType(const char *mime_type) const;
|
|
|
|
};
|
2009-11-07 15:14:11 +01:00
|
|
|
|
2009-02-15 17:48:37 +01:00
|
|
|
#endif
|