2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2016-12-12 15:24:38 +01:00
|
|
|
|
|
|
|
#include "SharedPipeConsumer.hxx"
|
|
|
|
#include "MusicChunk.hxx"
|
|
|
|
#include "MusicPipe.hxx"
|
|
|
|
|
|
|
|
const MusicChunk *
|
2017-05-08 14:44:49 +02:00
|
|
|
SharedPipeConsumer::Get() noexcept
|
2016-12-12 15:24:38 +01:00
|
|
|
{
|
|
|
|
if (chunk != nullptr) {
|
|
|
|
if (!consumed)
|
|
|
|
return chunk;
|
|
|
|
|
|
|
|
if (chunk->next == nullptr)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
consumed = false;
|
2018-06-23 17:58:42 +02:00
|
|
|
return chunk = chunk->next.get();
|
2016-12-12 15:24:38 +01:00
|
|
|
} else {
|
|
|
|
/* get the first chunk from the pipe */
|
|
|
|
consumed = false;
|
|
|
|
return chunk = pipe->Peek();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-05-08 14:44:49 +02:00
|
|
|
SharedPipeConsumer::IsConsumed(const MusicChunk &_chunk) const noexcept
|
2016-12-12 15:24:38 +01:00
|
|
|
{
|
|
|
|
if (chunk == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
assert(&_chunk == chunk || pipe->Contains(chunk));
|
|
|
|
|
|
|
|
if (&_chunk != chunk) {
|
|
|
|
assert(_chunk.next != nullptr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return consumed && _chunk.next == nullptr;
|
|
|
|
}
|