icinga2/lib/base/stdiostream.hpp

36 lines
684 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef STDIOSTREAM_H
#define STDIOSTREAM_H
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/stream.hpp"
2018-01-04 18:24:45 +01:00
#include <iosfwd>
2013-03-16 21:18:53 +01:00
namespace icinga {
2018-01-04 06:11:04 +01:00
class StdioStream final : public Stream
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(StdioStream);
2013-03-16 21:18:53 +01:00
StdioStream(std::iostream *innerStream, bool ownsStream);
~StdioStream() override;
size_t Read(void *buffer, size_t size, bool allow_partial = false) override;
void Write(const void *buffer, size_t size) override;
void Close() override;
bool IsDataAvailable() const override;
bool IsEof() const override;
private:
2013-03-16 21:18:53 +01:00
std::iostream *m_InnerStream;
bool m_OwnsStream;
};
}
2013-02-18 14:40:24 +01:00
#endif /* STDIOSTREAM_H */