icinga2/lib/base/fifo.hpp

49 lines
929 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef FIFO_H
#define FIFO_H
2012-03-28 13:24:49 +02:00
2014-05-25 16:23:35 +02:00
#include "base/i2-base.hpp"
#include "base/stream.hpp"
2013-03-16 21:18:53 +01:00
2012-03-28 13:24:49 +02:00
namespace icinga
{
/**
* A byte-based FIFO buffer.
2012-05-18 22:21:28 +02:00
*
* @ingroup base
*/
2018-01-04 06:11:04 +01:00
class FIFO final : public Stream
2012-03-28 13:24:49 +02:00
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(FIFO);
2012-03-28 19:50:55 +02:00
static const size_t BlockSize = 512;
2012-03-28 13:24:49 +02:00
~FIFO() override;
2012-03-28 13:24:49 +02:00
size_t Peek(void *buffer, size_t count, bool allow_partial = false) override;
size_t Read(void *buffer, size_t count, bool allow_partial = false) override;
void Write(const void *buffer, size_t count) override;
void Close() override;
bool IsEof() const override;
bool SupportsWaiting() const override;
bool IsDataAvailable() const override;
2012-11-22 12:04:32 +01:00
size_t GetAvailableBytes() const;
private:
char *m_Buffer{nullptr};
size_t m_DataSize{0};
size_t m_AllocSize{0};
size_t m_Offset{0};
2013-04-08 09:44:12 +02:00
void ResizeBuffer(size_t newSize, bool decrease);
void Optimize();
2012-03-28 13:24:49 +02:00
};
}
#endif /* FIFO_H */