2014-05-11 15:32:47 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2014-05-11 15:32:47 +02:00
|
|
|
* 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_ICY_INPUT_STREAM_HXX
|
|
|
|
#define MPD_ICY_INPUT_STREAM_HXX
|
|
|
|
|
|
|
|
#include "ProxyInputStream.hxx"
|
2014-08-30 00:46:52 +02:00
|
|
|
#include "Compiler.h"
|
2014-05-11 15:32:47 +02:00
|
|
|
|
2017-12-20 15:13:22 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2014-05-11 15:32:47 +02:00
|
|
|
struct Tag;
|
2017-12-26 19:43:29 +01:00
|
|
|
class IcyMetaDataParser;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An #InputStream filter that parses Icy metadata.
|
|
|
|
*/
|
|
|
|
class IcyInputStream final : public ProxyInputStream {
|
2017-12-26 19:43:29 +01:00
|
|
|
std::shared_ptr<IcyMetaDataParser> parser;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The #Tag object ready to be requested via ReadTag().
|
|
|
|
*/
|
2017-12-20 15:13:22 +01:00
|
|
|
std::unique_ptr<Tag> input_tag;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The #Tag object ready to be requested via ReadTag().
|
|
|
|
*/
|
2017-12-20 15:13:22 +01:00
|
|
|
std::unique_ptr<Tag> icy_tag;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
2017-12-26 11:32:36 +01:00
|
|
|
offset_type override_offset = 0;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
|
|
|
public:
|
2017-12-26 19:43:29 +01:00
|
|
|
/**
|
|
|
|
* @param _parser a IcyMetaDataParser instance which is shared
|
|
|
|
* with our input; it needs to be shared because our input
|
|
|
|
* needs to feed parameters (e.g. from the "icy-metaint"
|
|
|
|
* header) into it
|
|
|
|
*/
|
2017-12-26 11:37:29 +01:00
|
|
|
IcyInputStream(InputStreamPtr _input,
|
2017-12-26 19:43:29 +01:00
|
|
|
std::shared_ptr<IcyMetaDataParser> _parser) noexcept;
|
2017-12-26 11:31:05 +01:00
|
|
|
virtual ~IcyInputStream() noexcept;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
|
|
|
IcyInputStream(const IcyInputStream &) = delete;
|
|
|
|
IcyInputStream &operator=(const IcyInputStream &) = delete;
|
|
|
|
|
2017-12-26 19:43:29 +01:00
|
|
|
gcc_pure
|
|
|
|
bool IsEnabled() const noexcept;
|
2014-05-11 15:32:47 +02:00
|
|
|
|
|
|
|
/* virtual methods from InputStream */
|
2017-12-26 11:31:05 +01:00
|
|
|
void Update() noexcept override;
|
2017-12-20 15:15:27 +01:00
|
|
|
std::unique_ptr<Tag> ReadTag() override;
|
2016-09-09 18:47:42 +02:00
|
|
|
size_t Read(void *ptr, size_t size) override;
|
2014-05-11 15:32:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|