InputStream: remove attribute "plugin"
This commit is contained in:
@@ -32,18 +32,12 @@
|
||||
class Cond;
|
||||
class Error;
|
||||
struct Tag;
|
||||
struct InputPlugin;
|
||||
|
||||
class InputStream {
|
||||
public:
|
||||
typedef int64_t offset_type;
|
||||
|
||||
private:
|
||||
/**
|
||||
* the plugin which implements this input stream
|
||||
*/
|
||||
const InputPlugin &plugin;
|
||||
|
||||
/**
|
||||
* The absolute URI which was used to open this stream.
|
||||
*/
|
||||
@@ -99,9 +93,8 @@ private:
|
||||
std::string mime;
|
||||
|
||||
public:
|
||||
InputStream(const InputPlugin &_plugin,
|
||||
const char *_uri, Mutex &_mutex, Cond &_cond)
|
||||
:plugin(_plugin), uri(_uri),
|
||||
InputStream(const char *_uri, Mutex &_mutex, Cond &_cond)
|
||||
:uri(_uri),
|
||||
mutex(_mutex), cond(_cond),
|
||||
ready(false), seekable(false),
|
||||
size(-1), offset(0) {
|
||||
@@ -140,10 +133,6 @@ public:
|
||||
Mutex &mutex, Cond &cond,
|
||||
Error &error);
|
||||
|
||||
const InputPlugin &GetPlugin() const {
|
||||
return plugin;
|
||||
}
|
||||
|
||||
/**
|
||||
* The absolute URI which was used to open this stream.
|
||||
*
|
||||
|
@@ -67,7 +67,7 @@ ThreadInputStream::Start(Error &error)
|
||||
inline void
|
||||
ThreadInputStream::ThreadFunc()
|
||||
{
|
||||
FormatThreadName("input:%s", GetPlugin().name);
|
||||
FormatThreadName("input:%s", plugin);
|
||||
|
||||
Lock();
|
||||
if (!Open(postponed_error)) {
|
||||
|
@@ -40,6 +40,8 @@ template<typename T> class CircularBuffer;
|
||||
* This works only for "streams": unknown length, no seeking, no tags.
|
||||
*/
|
||||
class ThreadInputStream : public InputStream {
|
||||
const char *const plugin;
|
||||
|
||||
Thread thread;
|
||||
|
||||
/**
|
||||
@@ -65,10 +67,11 @@ class ThreadInputStream : public InputStream {
|
||||
bool eof;
|
||||
|
||||
public:
|
||||
ThreadInputStream(const InputPlugin &_plugin,
|
||||
ThreadInputStream(const char *_plugin,
|
||||
const char *_uri, Mutex &_mutex, Cond &_cond,
|
||||
size_t _buffer_size)
|
||||
:InputStream(_plugin, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
plugin(_plugin),
|
||||
buffer_size(_buffer_size),
|
||||
buffer(nullptr),
|
||||
close(false), eof(false) {}
|
||||
|
@@ -84,7 +84,7 @@ public:
|
||||
AlsaInputStream(EventLoop &loop,
|
||||
const char *_uri, Mutex &_mutex, Cond &_cond,
|
||||
snd_pcm_t *_handle, int _frame_size)
|
||||
:InputStream(input_plugin_alsa, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
MultiSocketMonitor(loop),
|
||||
DeferredMonitor(loop),
|
||||
capture_handle(_handle),
|
||||
|
@@ -65,7 +65,7 @@ struct CdioParanoiaInputStream final : public InputStream {
|
||||
|
||||
CdioParanoiaInputStream(const char *_uri, Mutex &_mutex, Cond &_cond,
|
||||
int _trackno)
|
||||
:InputStream(input_plugin_cdio_paranoia, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
drv(nullptr), cdio(nullptr), para(nullptr),
|
||||
trackno(_trackno)
|
||||
{
|
||||
|
@@ -106,7 +106,7 @@ struct CurlInputStream final : public InputStream {
|
||||
|
||||
CurlInputStream(const char *_url, Mutex &_mutex, Cond &_cond,
|
||||
void *_buffer)
|
||||
:InputStream(input_plugin_curl, _url, _mutex, _cond),
|
||||
:InputStream(_url, _mutex, _cond),
|
||||
request_headers(nullptr),
|
||||
buffer((uint8_t *)_buffer, CURL_MAX_BUFFERED),
|
||||
paused(false),
|
||||
|
@@ -48,7 +48,7 @@ class DespotifyInputStream final : public InputStream {
|
||||
Mutex &_mutex, Cond &_cond,
|
||||
despotify_session *_session,
|
||||
ds_track *_track)
|
||||
:InputStream(input_plugin_despotify, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
session(_session), track(_track),
|
||||
tag(mpd_despotify_tag_from_track(*track)),
|
||||
len_available(0), eof(false) {
|
||||
|
@@ -40,7 +40,7 @@ struct FfmpegInputStream final : public InputStream {
|
||||
|
||||
FfmpegInputStream(const char *_uri, Mutex &_mutex, Cond &_cond,
|
||||
AVIOContext *_h)
|
||||
:InputStream(input_plugin_ffmpeg, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
h(_h), eof(false) {
|
||||
seekable = (h->seekable & AVIO_SEEKABLE_NORMAL) != 0;
|
||||
size = avio_size(h);
|
||||
|
@@ -38,7 +38,7 @@ struct FileInputStream final : public InputStream {
|
||||
|
||||
FileInputStream(const char *path, int _fd, off_t _size,
|
||||
Mutex &_mutex, Cond &_cond)
|
||||
:InputStream(input_plugin_file, path, _mutex, _cond),
|
||||
:InputStream(path, _mutex, _cond),
|
||||
fd(_fd) {
|
||||
size = _size;
|
||||
seekable = true;
|
||||
|
@@ -34,7 +34,7 @@ class MmsInputStream final : public ThreadInputStream {
|
||||
|
||||
public:
|
||||
MmsInputStream(const char *_uri, Mutex &_mutex, Cond &_cond)
|
||||
:ThreadInputStream(input_plugin_mms, _uri, _mutex, _cond,
|
||||
:ThreadInputStream(input_plugin_mms.name, _uri, _mutex, _cond,
|
||||
MMS_BUFFER_SIZE) {
|
||||
}
|
||||
|
||||
|
@@ -42,7 +42,7 @@ public:
|
||||
Mutex &_mutex, Cond &_cond,
|
||||
nfs_context *_ctx, nfsfh *_fh,
|
||||
InputStream::offset_type _size)
|
||||
:InputStream(input_plugin_nfs, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
ctx(_ctx), fh(_fh) {
|
||||
seekable = true;
|
||||
size = _size;
|
||||
|
@@ -26,13 +26,6 @@
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
static const InputPlugin rewind_input_plugin = {
|
||||
nullptr,
|
||||
nullptr,
|
||||
nullptr,
|
||||
nullptr,
|
||||
};
|
||||
|
||||
class RewindInputStream final : public InputStream {
|
||||
InputStream *input;
|
||||
|
||||
@@ -59,7 +52,7 @@ class RewindInputStream final : public InputStream {
|
||||
|
||||
public:
|
||||
RewindInputStream(InputStream *_input)
|
||||
:InputStream(rewind_input_plugin, _input->GetURI(),
|
||||
:InputStream(_input->GetURI(),
|
||||
_input->mutex, _input->cond),
|
||||
input(_input), tail(0) {
|
||||
}
|
||||
|
@@ -36,7 +36,7 @@ public:
|
||||
SmbclientInputStream(const char *_uri,
|
||||
Mutex &_mutex, Cond &_cond,
|
||||
SMBCCTX *_ctx, int _fd, const struct stat &st)
|
||||
:InputStream(input_plugin_smbclient, _uri, _mutex, _cond),
|
||||
:InputStream(_uri, _mutex, _cond),
|
||||
ctx(_ctx), fd(_fd) {
|
||||
seekable = true;
|
||||
size = st.st_size;
|
||||
|
Reference in New Issue
Block a user