ThreadInputStream.cxx 3.13 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 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 33 34 35
	{
		const ScopeLock lock(mutex);
		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(ThreadFunc, this);
58 59 60 61 62
}

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

65 66
	const ScopeLock lock(mutex);

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 110 111 112 113 114 115 116

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

			buffer->Append(nbytes);
		}
	}

	Close();
}

void
ThreadInputStream::ThreadFunc(void *ctx)
{
	ThreadInputStream &tis = *(ThreadInputStream *)ctx;
	tis.ThreadFunc();
}

117 118
void
ThreadInputStream::Check()
119
{
120 121
	assert(!thread.IsInside());

122 123
	if (postponed_exception)
		std::rethrow_exception(postponed_exception);
124 125 126
}

bool
127
ThreadInputStream::IsAvailable()
128
{
129 130
	assert(!thread.IsInside());

131
	return !buffer->IsEmpty() || eof || postponed_exception;
132 133 134
}

inline size_t
135
ThreadInputStream::Read(void *ptr, size_t read_size)
136
{
137 138
	assert(!thread.IsInside());

139
	while (true) {
140 141
		if (postponed_exception)
			std::rethrow_exception(postponed_exception);
142 143 144

		auto r = buffer->Read();
		if (!r.IsEmpty()) {
145
			size_t nbytes = std::min(read_size, r.size);
146 147 148
			memcpy(ptr, r.data, nbytes);
			buffer->Consume(nbytes);
			wake_cond.broadcast();
149
			offset += nbytes;
150 151 152 153 154 155
			return nbytes;
		}

		if (eof)
			return 0;

156
		cond.wait(mutex);
157 158 159 160
	}
}

bool
161
ThreadInputStream::IsEOF()
162
{
163 164
	assert(!thread.IsInside());

165
	return eof;
166
}