icinga2/lib/base/stdiostream.hpp

37 lines
704 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef STDIOSTREAM_H
#define STDIOSTREAM_H
2014-05-25 10:23:35 -04:00
#include "base/i2-base.hpp"
#include "base/stream.hpp"
2018-01-04 12:24:45 -05:00
#include <iosfwd>
#include <iostream>
2013-03-16 16:18:53 -04:00
namespace icinga {
2018-01-04 00:11:04 -05:00
class StdioStream final : public Stream
{
public:
2014-11-07 06:32:25 -05:00
DECLARE_PTR_TYPEDEFS(StdioStream);
2013-03-16 16:18:53 -04: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 16:18:53 -04:00
std::iostream *m_InnerStream;
bool m_OwnsStream;
};
}
2013-02-18 08:40:24 -05:00
#endif /* STDIOSTREAM_H */