2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-07-15 18:04:16 -04:00
|
|
|
|
2012-11-22 06:04:32 -05:00
|
|
|
#ifndef STREAM_H
|
|
|
|
|
#define STREAM_H
|
2012-07-15 18:02:31 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/object.hpp"
|
2015-02-14 10:34:36 -05:00
|
|
|
#include <boost/signals2.hpp>
|
2021-02-02 04:16:04 -05:00
|
|
|
#include <condition_variable>
|
|
|
|
|
#include <mutex>
|
2013-03-15 13:21:29 -04:00
|
|
|
|
2012-07-15 18:02:31 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2014-05-11 11:14:35 -04:00
|
|
|
class String;
|
2015-02-14 10:34:36 -05:00
|
|
|
class Stream;
|
2014-05-11 11:14:35 -04:00
|
|
|
|
2014-05-03 14:02:22 -04:00
|
|
|
enum ConnectionRole
|
|
|
|
|
{
|
|
|
|
|
RoleClient,
|
|
|
|
|
RoleServer
|
|
|
|
|
};
|
|
|
|
|
|
2017-12-31 01:22:16 -05:00
|
|
|
struct StreamReadContext
|
2013-07-03 10:16:38 -04:00
|
|
|
{
|
2018-01-03 22:25:35 -05:00
|
|
|
~StreamReadContext()
|
2014-12-01 04:36:38 -05:00
|
|
|
{
|
|
|
|
|
free(Buffer);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-24 03:44:59 -04:00
|
|
|
bool FillFromStream(const intrusive_ptr<Stream>& stream, bool may_wait);
|
2015-02-14 10:34:36 -05:00
|
|
|
void DropData(size_t count);
|
|
|
|
|
|
2018-01-04 03:43:49 -05:00
|
|
|
char *Buffer{nullptr};
|
|
|
|
|
size_t Size{0};
|
|
|
|
|
bool MustRead{true};
|
|
|
|
|
bool Eof{false};
|
2015-02-14 10:34:36 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum StreamReadStatus
|
|
|
|
|
{
|
|
|
|
|
StatusNewItem,
|
|
|
|
|
StatusNeedData,
|
|
|
|
|
StatusEof
|
2013-07-03 10:16:38 -04:00
|
|
|
};
|
|
|
|
|
|
2012-07-15 18:02:31 -04:00
|
|
|
/**
|
2012-11-22 06:04:32 -05:00
|
|
|
* A stream.
|
2012-09-17 07:35:55 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-07-15 18:02:31 -04:00
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class Stream : public Object
|
2012-07-15 18:02:31 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-07 06:32:25 -05:00
|
|
|
DECLARE_PTR_TYPEDEFS(Stream);
|
2012-11-22 06:04:32 -05:00
|
|
|
|
2012-07-15 18:02:31 -04:00
|
|
|
/**
|
2012-11-22 06:04:32 -05:00
|
|
|
* Reads data from the stream.
|
2012-07-15 18:02:31 -04:00
|
|
|
*
|
2017-12-14 09:37:20 -05:00
|
|
|
* @param buffer The buffer where data should be stored. May be nullptr if you're
|
2012-07-15 18:02:31 -04:00
|
|
|
* not actually interested in the data.
|
|
|
|
|
* @param count The number of bytes to read from the queue.
|
2012-11-22 06:04:32 -05:00
|
|
|
* @returns The number of bytes actually read.
|
2012-07-15 18:02:31 -04:00
|
|
|
*/
|
2023-03-29 11:01:24 -04:00
|
|
|
virtual size_t Read(void *buffer, size_t count) = 0;
|
2012-07-15 18:02:31 -04:00
|
|
|
|
|
|
|
|
/**
|
2012-11-22 06:04:32 -05:00
|
|
|
* Writes data to the stream.
|
2012-07-15 18:02:31 -04:00
|
|
|
*
|
|
|
|
|
* @param buffer The data that is to be written.
|
|
|
|
|
* @param count The number of bytes to write.
|
|
|
|
|
* @returns The number of bytes written
|
|
|
|
|
*/
|
|
|
|
|
virtual void Write(const void *buffer, size_t count) = 0;
|
2012-11-22 06:04:32 -05:00
|
|
|
|
2015-06-22 05:11:21 -04:00
|
|
|
/**
|
|
|
|
|
* Causes the stream to be closed (via Close()) once all pending data has been
|
|
|
|
|
* written.
|
|
|
|
|
*/
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual void Shutdown();
|
2015-06-22 05:11:21 -04:00
|
|
|
|
2012-11-22 06:04:32 -05:00
|
|
|
/**
|
|
|
|
|
* Closes the stream and releases resources.
|
|
|
|
|
*/
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual void Close();
|
2012-11-22 06:04:32 -05:00
|
|
|
|
2013-08-27 06:21:41 -04:00
|
|
|
/**
|
|
|
|
|
* Checks whether we've reached the end-of-file condition.
|
|
|
|
|
*
|
|
|
|
|
* @returns true if EOF.
|
|
|
|
|
*/
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual bool IsEof() const = 0;
|
2013-08-27 06:21:41 -04:00
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
/**
|
|
|
|
|
* Waits until data can be read from the stream.
|
2018-02-13 11:29:48 -05:00
|
|
|
* Optionally with a timeout.
|
2015-02-14 10:34:36 -05:00
|
|
|
*/
|
2018-02-13 11:29:48 -05:00
|
|
|
bool WaitForData();
|
|
|
|
|
bool WaitForData(int timeout);
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual bool SupportsWaiting() const;
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual bool IsDataAvailable() const;
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2017-11-21 05:52:55 -05:00
|
|
|
void RegisterDataHandler(const std::function<void(const Stream::Ptr&)>& handler);
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2015-06-24 03:44:59 -04:00
|
|
|
StreamReadStatus ReadLine(String *line, StreamReadContext& context, bool may_wait = false);
|
2015-02-14 10:34:36 -05:00
|
|
|
|
|
|
|
|
protected:
|
2018-01-03 22:25:35 -05:00
|
|
|
void SignalDataAvailable();
|
2015-02-14 10:34:36 -05:00
|
|
|
|
|
|
|
|
private:
|
2015-09-29 04:31:16 -04:00
|
|
|
boost::signals2::signal<void(const Stream::Ptr&)> OnDataAvailable;
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::mutex m_Mutex;
|
|
|
|
|
std::condition_variable m_CV;
|
2012-07-15 18:02:31 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-22 06:04:32 -05:00
|
|
|
#endif /* STREAM_H */
|