mpd/src/input/AsyncInputStream.hxx

176 lines
4.0 KiB
C++
Raw Normal View History

/*
2017-01-03 20:48:59 +01:00
* Copyright 2003-2017 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.
*/
#ifndef MPD_ASYNC_INPUT_STREAM_HXX
#define MPD_ASYNC_INPUT_STREAM_HXX
#include "InputStream.hxx"
2016-06-17 18:30:45 +02:00
#include "event/DeferredCall.hxx"
2016-06-17 18:06:02 +02:00
#include "util/HugeAllocator.hxx"
#include "util/CircularBuffer.hxx"
#include <exception>
/**
* Helper class for moving asynchronous (non-blocking) InputStream
* implementations to the I/O thread. Data is being read into a ring
* buffer, and that buffer is then consumed by another thread using
* the regular #InputStream API.
*/
2016-06-17 18:30:45 +02:00
class AsyncInputStream : public InputStream {
enum class SeekState : uint8_t {
NONE, SCHEDULED, PENDING
};
2016-06-17 18:30:45 +02:00
DeferredCall deferred_resume;
DeferredCall deferred_seek;
2016-06-17 18:06:02 +02:00
HugeAllocation allocation;
CircularBuffer<uint8_t> buffer;
const size_t resume_at;
bool open;
/**
* Is the connection currently paused? That happens when the
* buffer was getting too large. It will be unpaused when the
* buffer is below the threshold again.
*/
bool paused;
SeekState seek_state;
/**
* The #Tag object ready to be requested via
* InputStream::ReadTag().
*/
Tag *tag;
offset_type seek_offset;
protected:
std::exception_ptr postponed_exception;
public:
2014-12-14 14:21:08 +01:00
/**
* @param _buffer a buffer allocated with HugeAllocate(); the
* destructor will free it using HugeFree()
*/
AsyncInputStream(const char *_url,
Mutex &_mutex, Cond &_cond,
2016-06-17 18:06:02 +02:00
size_t _buffer_size,
size_t _resume_at);
virtual ~AsyncInputStream();
/* virtual methods from InputStream */
void Check() final;
bool IsEOF() final;
void Seek(offset_type new_offset) final;
Tag *ReadTag() final;
bool IsAvailable() final;
size_t Read(void *ptr, size_t read_size) final;
protected:
2014-07-10 10:33:43 +02:00
/**
* Pass an tag from the I/O thread to the client thread.
*/
void SetTag(Tag *_tag);
void ClearTag() {
SetTag(nullptr);
}
void Pause();
2014-09-02 20:02:56 +02:00
bool IsPaused() const {
return paused;
}
2014-07-10 10:33:43 +02:00
/**
* Declare that the underlying stream was closed. We will
* continue feeding Read() calls from the buffer until it runs
* empty.
*/
void SetClosed() {
open = false;
}
bool IsBufferEmpty() const {
return buffer.IsEmpty();
}
bool IsBufferFull() const {
return buffer.IsFull();
}
2014-07-10 10:33:43 +02:00
/**
* Determine how many bytes can be added to the buffer.
*/
gcc_pure
size_t GetBufferSpace() const {
return buffer.GetSpace();
}
CircularBuffer<uint8_t>::Range PrepareWriteBuffer() {
return buffer.Write();
}
void CommitWriteBuffer(size_t nbytes);
2014-07-10 10:33:43 +02:00
/**
* Append data to the buffer. The size must fit into the
* buffer; see GetBufferSpace().
*/
void AppendToBuffer(const void *data, size_t append_size);
2014-07-10 10:33:43 +02:00
/**
* Implement code here that will resume the stream after it
* has been paused due to full input buffer.
*/
virtual void DoResume() = 0;
/**
* The actual Seek() implementation. This virtual method will
* be called from within the I/O thread. When the operation
* is finished, call SeekDone() to notify the caller.
*/
virtual void DoSeek(offset_type new_offset) = 0;
bool IsSeekPending() const {
return seek_state == SeekState::PENDING;
}
2014-07-10 10:33:43 +02:00
/**
* Call this after seeking has finished. It will notify the
* client thread.
*/
void SeekDone();
private:
void Resume();
2016-06-17 18:30:45 +02:00
/* for DeferredCall */
void DeferredResume();
void DeferredSeek();
};
#endif