mpd/src/input/ThreadInputStream.cxx

167 lines
3.2 KiB
C++
Raw Normal View History

/*
2016-02-26 17:54:05 +01:00
* Copyright 2003-2016 The Music Player Daemon Project
* 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()
{
{
const std::lock_guard<Mutex> lock(mutex);
close = true;
wake_cond.signal();
}
Cancel();
thread.Join();
if (buffer != nullptr) {
buffer->Clear();
HugeFree(buffer->Write().data, buffer_size);
delete buffer;
}
}
void
ThreadInputStream::Start()
{
assert(buffer == nullptr);
void *p = HugeAllocate(buffer_size);
assert(p != nullptr);
buffer = new CircularBuffer<uint8_t>((uint8_t *)p, buffer_size);
thread.Start(ThreadFunc, this);
}
inline void
ThreadInputStream::ThreadFunc()
{
2014-05-11 18:25:55 +02:00
FormatThreadName("input:%s", plugin);
const std::lock_guard<Mutex> lock(mutex);
try {
Open();
} catch (...) {
postponed_exception = std::current_exception();
cond.broadcast();
return;
}
/* we're ready, tell it to our client */
SetReady();
while (!close) {
assert(!postponed_exception);
auto w = buffer->Write();
if (w.IsEmpty()) {
wake_cond.wait(mutex);
} else {
size_t nbytes;
try {
const ScopeUnlock unlock(mutex);
nbytes = ThreadRead(w.data, w.size);
} catch (...) {
postponed_exception = std::current_exception();
cond.broadcast();
break;
}
cond.broadcast();
if (nbytes == 0) {
eof = true;
break;
}
buffer->Append(nbytes);
}
}
Close();
}
void
ThreadInputStream::ThreadFunc(void *ctx)
{
ThreadInputStream &tis = *(ThreadInputStream *)ctx;
tis.ThreadFunc();
}
void
ThreadInputStream::Check()
{
2014-10-11 21:57:31 +02:00
assert(!thread.IsInside());
if (postponed_exception)
std::rethrow_exception(postponed_exception);
}
bool
ThreadInputStream::IsAvailable()
{
2014-10-11 21:57:31 +02:00
assert(!thread.IsInside());
return !buffer->IsEmpty() || eof || postponed_exception;
}
inline size_t
ThreadInputStream::Read(void *ptr, size_t read_size)
{
2014-10-11 21:57:31 +02:00
assert(!thread.IsInside());
while (true) {
if (postponed_exception)
std::rethrow_exception(postponed_exception);
auto r = buffer->Read();
if (!r.IsEmpty()) {
size_t nbytes = std::min(read_size, r.size);
memcpy(ptr, r.data, nbytes);
buffer->Consume(nbytes);
wake_cond.broadcast();
offset += nbytes;
return nbytes;
}
if (eof)
return 0;
cond.wait(mutex);
}
}
bool
ThreadInputStream::IsEOF()
{
2014-10-11 21:57:31 +02:00
assert(!thread.IsInside());
return eof;
}