ThreadInputStream.cxx 3.03 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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 27 28 29 30
 * 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.
 */

#include "config.h"
#include "ThreadInputStream.hxx"
#include "thread/Name.hxx"
#include "util/CircularBuffer.hxx"
#include "util/HugeAllocator.hxx"

#include <assert.h>
#include <string.h>

ThreadInputStream::~ThreadInputStream()
{
31
	{
32
		const std::lock_guard<Mutex> lock(mutex);
33 34 35
		close = true;
		wake_cond.signal();
	}
36 37 38 39 40

	Cancel();

	thread.Join();

41 42 43 44 45 46 47
	if (buffer != nullptr) {
		buffer->Clear();
		HugeFree(buffer->Write().data, buffer_size);
		delete buffer;
	}
}

48 49
void
ThreadInputStream::Start()
50 51 52 53
{
	assert(buffer == nullptr);

	void *p = HugeAllocate(buffer_size);
54
	assert(p != nullptr);
55 56

	buffer = new CircularBuffer<uint8_t>((uint8_t *)p, buffer_size);
57
	thread.Start();
58 59
}

60
void
61 62
ThreadInputStream::ThreadFunc()
{
63
	FormatThreadName("input:%s", plugin);
64

65
	const std::lock_guard<Mutex> lock(mutex);
66

67 68 69 70
	try {
		Open();
	} catch (...) {
		postponed_exception = std::current_exception();
71
		cond.broadcast();
72 73 74 75
		return;
	}

	/* we're ready, tell it to our client */
76
	SetReady();
77 78

	while (!close) {
79
		assert(!postponed_exception);
80 81 82

		auto w = buffer->Write();
		if (w.IsEmpty()) {
83
			wake_cond.wait(mutex);
84
		} else {
85 86
			size_t nbytes;

87
			try {
88
				const ScopeUnlock unlock(mutex);
89 90 91 92 93
				nbytes = ThreadRead(w.data, w.size);
			} catch (...) {
				postponed_exception = std::current_exception();
				cond.broadcast();
				break;
94
			}
95

96
			cond.broadcast();
97 98 99 100 101 102 103 104 105 106 107 108 109

			if (nbytes == 0) {
				eof = true;
				break;
			}

			buffer->Append(nbytes);
		}
	}

	Close();
}

110 111
void
ThreadInputStream::Check()
112
{
113 114
	assert(!thread.IsInside());

115 116
	if (postponed_exception)
		std::rethrow_exception(postponed_exception);
117 118 119
}

bool
120
ThreadInputStream::IsAvailable() noexcept
121
{
122 123
	assert(!thread.IsInside());

124
	return !buffer->IsEmpty() || eof || postponed_exception;
125 126 127
}

inline size_t
128
ThreadInputStream::Read(void *ptr, size_t read_size)
129
{
130 131
	assert(!thread.IsInside());

132
	while (true) {
133 134
		if (postponed_exception)
			std::rethrow_exception(postponed_exception);
135 136 137

		auto r = buffer->Read();
		if (!r.IsEmpty()) {
138
			size_t nbytes = std::min(read_size, r.size);
139 140 141
			memcpy(ptr, r.data, nbytes);
			buffer->Consume(nbytes);
			wake_cond.broadcast();
142
			offset += nbytes;
143 144 145 146 147 148
			return nbytes;
		}

		if (eof)
			return 0;

149
		cond.wait(mutex);
150 151 152 153
	}
}

bool
154
ThreadInputStream::IsEOF() noexcept
155
{
156 157
	assert(!thread.IsInside());

158
	return eof;
159
}