diff options
author | Max Kellermann <max@duempel.org> | 2016-05-02 23:44:26 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-05-03 00:05:31 +0200 |
commit | f491135318690fdaa1974090580d93fd0ced38e0 (patch) | |
tree | 39cc018ae84f2d7f07c6be5e0a54a3ec8d856e51 /src/decoder/Reader.hxx | |
parent | a7ced00520d64dae02b9c8ab2a0756b2be2ecd4d (diff) |
decoder/Reader: new Reader implementation
Diffstat (limited to 'src/decoder/Reader.hxx')
-rw-r--r-- | src/decoder/Reader.hxx | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/decoder/Reader.hxx b/src/decoder/Reader.hxx new file mode 100644 index 000000000..fb143b12a --- /dev/null +++ b/src/decoder/Reader.hxx @@ -0,0 +1,49 @@ +/* + * 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. + */ + +#ifndef MPD_DECODER_READER_HXX +#define MPD_DECODER_READER_HXX + +#include "check.h" +#include "fs/io/Reader.hxx" +#include "Compiler.h" + +struct Decoder; +class InputStream; + +/** + * A wrapper for decoder_read() which implements the #Reader + * interface. + */ +class DecoderReader final : public Reader { + Decoder *const decoder; + InputStream &is; + +public: + DecoderReader(Decoder &_decoder, InputStream &_is) + :decoder(&_decoder), is(_is) {} + + DecoderReader(Decoder *_decoder, InputStream &_is) + :decoder(_decoder), is(_is) {} + + /* virtual methods from class Reader */ + size_t Read(void *data, size_t size) override; +}; + +#endif |