ThreadInputStream.hxx 3.45 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * 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.
 *
 * 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.
 */

#ifndef MPD_THREAD_INPUT_STREAM_HXX
#define MPD_THREAD_INPUT_STREAM_HXX

#include "check.h"
#include "InputStream.hxx"
#include "thread/Thread.hxx"
#include "thread/Cond.hxx"
27 28

#include <exception>
29 30 31 32 33 34 35 36 37 38 39 40 41 42

#include <stdint.h>

template<typename T> class CircularBuffer;

/**
 * Helper class for moving InputStream implementations with blocking
 * backend library implementation to a dedicated thread.  Data is
 * being read into a ring buffer, and that buffer is then consumed by
 * another thread using the regular #InputStream API.  This class
 * manages the thread and the buffer.
 *
 * This works only for "streams": unknown length, no seeking, no tags.
 */
43
class ThreadInputStream : public InputStream {
44 45
	const char *const plugin;

46 47 48 49 50 51 52 53 54
	Thread thread;

	/**
	 * Signalled when the thread shall be woken up: when data from
	 * the buffer has been consumed and when the stream shall be
	 * closed.
	 */
	Cond wake_cond;

55
	std::exception_ptr postponed_exception;
56 57

	const size_t buffer_size;
58
	CircularBuffer<uint8_t> *buffer = nullptr;
59 60 61 62

	/**
	 * Shall the stream be closed?
	 */
63
	bool close = false;
64 65 66 67

	/**
	 * Has the end of the stream been seen by the thread?
	 */
68
	bool eof = false;
69 70

public:
71
	ThreadInputStream(const char *_plugin,
72 73
			  const char *_uri, Mutex &_mutex, Cond &_cond,
			  size_t _buffer_size)
74 75
		:InputStream(_uri, _mutex, _cond),
		 plugin(_plugin),
76
		 buffer_size(_buffer_size) {}
77 78 79 80 81 82

	virtual ~ThreadInputStream();

	/**
	 * Initialize the object and start the thread.
	 */
83
	void Start();
84

85
	/* virtual methods from InputStream */
86
	void Check() override final;
87 88
	bool IsEOF() override final;
	bool IsAvailable() override final;
89
	size_t Read(void *ptr, size_t size) override final;
90

91
protected:
92
	void SetMimeType(const char *_mime) {
93 94
		assert(thread.IsInside());

95
		InputStream::SetMimeType(_mime);
96 97 98 99 100 101 102 103 104 105 106
	}

	/* to be implemented by the plugin */

	/**
	 * Optional initialization after entering the thread.  After
	 * this returns with success, the InputStream::ready flag is
	 * set.
	 *
	 * The #InputStream is locked.  Unlock/relock it if you do a
	 * blocking operation.
107 108
	 *
	 * Throws std::runtime_error on error.
109
	 */
110
	virtual void Open() {
111 112 113 114 115 116 117
	}

	/**
	 * Read from the stream.
	 *
	 * The #InputStream is not locked.
	 *
118 119 120
	 * Throws std::runtime_error on error.
	 *
	 * @return 0 on end-of-file
121
	 */
122
	virtual size_t ThreadRead(void *ptr, size_t size) = 0;
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144

	/**
	 * Optional deinitialization before leaving the thread.
	 *
	 * The #InputStream is not locked.
	 */
	virtual void Close() {}

	/**
	 * Called from the client thread to cancel a Read() inside the
	 * thread.
	 *
	 * The #InputStream is not locked.
	 */
	virtual void Cancel() {}

private:
	void ThreadFunc();
	static void ThreadFunc(void *ctx);
};

#endif