2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 06:06:41 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/stream.hpp"
|
2013-03-15 13:21:29 -04:00
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
2021-02-02 04:16:04 -05:00
|
|
|
#include <chrono>
|
2012-03-28 07:24:49 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2017-11-21 05:52:55 -05:00
|
|
|
void Stream::RegisterDataHandler(const std::function<void(const Stream::Ptr&)>& handler)
|
2013-03-09 09:56:56 -05:00
|
|
|
{
|
2015-02-14 10:34:36 -05:00
|
|
|
if (SupportsWaiting())
|
|
|
|
|
OnDataAvailable.connect(handler);
|
|
|
|
|
else
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support waiting."));
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
bool Stream::SupportsWaiting() const
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
bool Stream::IsDataAvailable() const
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void Stream::Shutdown()
|
2015-06-22 05:11:21 -04:00
|
|
|
{
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support Shutdown()."));
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void Stream::SignalDataAvailable()
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
2015-09-29 04:31:16 -04:00
|
|
|
OnDataAvailable(this);
|
2013-03-09 09:56:56 -05:00
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2015-02-14 10:34:36 -05:00
|
|
|
m_CV.notify_all();
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-09 09:56:56 -05:00
|
|
|
|
2018-02-13 11:29:48 -05:00
|
|
|
bool Stream::WaitForData()
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
|
|
|
|
if (!SupportsWaiting())
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support waiting."));
|
2013-03-09 23:10:51 -05:00
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2013-03-09 09:56:56 -05:00
|
|
|
|
2015-06-22 05:11:21 -04:00
|
|
|
while (!IsDataAvailable() && !IsEof())
|
2018-02-13 11:29:48 -05:00
|
|
|
m_CV.wait(lock);
|
|
|
|
|
|
|
|
|
|
return IsDataAvailable() || IsEof();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Stream::WaitForData(int timeout)
|
|
|
|
|
{
|
2021-02-02 04:16:04 -05:00
|
|
|
namespace ch = std::chrono;
|
|
|
|
|
|
2018-02-13 11:29:48 -05:00
|
|
|
if (!SupportsWaiting())
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support waiting."));
|
|
|
|
|
|
|
|
|
|
if (timeout < 0)
|
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Timeout can't be negative"));
|
|
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
std::unique_lock<std::mutex> lock(m_Mutex);
|
2018-02-13 11:29:48 -05:00
|
|
|
|
2021-02-02 04:16:04 -05:00
|
|
|
return m_CV.wait_for(lock, ch::duration<int>(timeout), [this]() { return IsDataAvailable() || IsEof(); });
|
2015-02-14 10:34:36 -05:00
|
|
|
}
|
2013-03-09 23:10:51 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void Stream::Close()
|
2015-11-08 15:23:04 -05:00
|
|
|
{
|
|
|
|
|
OnDataAvailable.disconnect_all_slots();
|
2016-02-03 06:56:54 -05:00
|
|
|
|
|
|
|
|
/* Force signals2 to remove the slots, see https://stackoverflow.com/questions/2049291/force-deletion-of-slot-in-boostsignals2
|
|
|
|
|
* for details. */
|
2021-01-18 08:29:05 -05:00
|
|
|
OnDataAvailable.connect([](const Stream::Ptr&) { });
|
2015-11-08 15:23:04 -05:00
|
|
|
}
|
|
|
|
|
|
2015-06-24 03:44:59 -04:00
|
|
|
StreamReadStatus Stream::ReadLine(String *line, StreamReadContext& context, bool may_wait)
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
2015-02-14 11:40:29 -05:00
|
|
|
if (context.Eof)
|
2015-02-14 10:34:36 -05:00
|
|
|
return StatusEof;
|
2013-03-09 09:56:56 -05:00
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
if (context.MustRead) {
|
2015-06-24 03:44:59 -04:00
|
|
|
if (!context.FillFromStream(this, may_wait)) {
|
2015-02-14 11:40:29 -05:00
|
|
|
context.Eof = true;
|
|
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
*line = String(context.Buffer, &(context.Buffer[context.Size]));
|
|
|
|
|
boost::algorithm::trim_right(*line);
|
2013-07-03 10:16:38 -04:00
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
return StatusNewItem;
|
2013-03-09 09:56:56 -05:00
|
|
|
}
|
2015-02-14 10:34:36 -05:00
|
|
|
}
|
2013-03-09 09:56:56 -05:00
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
for (size_t i = 0; i < context.Size; i++) {
|
|
|
|
|
if (context.Buffer[i] == '\n') {
|
2018-06-20 11:28:52 -04:00
|
|
|
*line = String(context.Buffer, context.Buffer + i);
|
|
|
|
|
boost::algorithm::trim_right(*line);
|
2013-03-09 23:10:51 -05:00
|
|
|
|
2018-06-20 11:28:52 -04:00
|
|
|
context.DropData(i + 1u);
|
2013-03-09 23:10:51 -05:00
|
|
|
|
2018-06-20 11:28:52 -04:00
|
|
|
context.MustRead = !context.Size;
|
|
|
|
|
return StatusNewItem;
|
|
|
|
|
}
|
2013-07-03 10:16:38 -04:00
|
|
|
}
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2018-06-20 11:28:52 -04:00
|
|
|
context.MustRead = true;
|
2015-02-14 10:34:36 -05:00
|
|
|
return StatusNeedData;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-24 03:44:59 -04:00
|
|
|
bool StreamReadContext::FillFromStream(const Stream::Ptr& stream, bool may_wait)
|
2015-02-14 10:34:36 -05:00
|
|
|
{
|
2015-06-24 03:44:59 -04:00
|
|
|
if (may_wait && stream->SupportsWaiting())
|
2015-02-14 10:34:36 -05:00
|
|
|
stream->WaitForData();
|
|
|
|
|
|
2015-02-14 11:40:29 -05:00
|
|
|
size_t count = 0;
|
|
|
|
|
|
2015-02-14 10:34:36 -05:00
|
|
|
do {
|
|
|
|
|
Buffer = (char *)realloc(Buffer, Size + 4096);
|
|
|
|
|
|
|
|
|
|
if (!Buffer)
|
|
|
|
|
throw std::bad_alloc();
|
|
|
|
|
|
2017-11-14 08:13:24 -05:00
|
|
|
if (stream->IsEof())
|
|
|
|
|
break;
|
|
|
|
|
|
2023-03-29 11:01:24 -04:00
|
|
|
size_t rc = stream->Read(Buffer + Size, 4096);
|
2015-02-14 10:34:36 -05:00
|
|
|
|
|
|
|
|
Size += rc;
|
2015-02-14 11:40:29 -05:00
|
|
|
count += rc;
|
2015-06-24 03:44:59 -04:00
|
|
|
} while (count < 64 * 1024 && stream->IsDataAvailable());
|
2015-02-14 10:34:36 -05:00
|
|
|
|
2015-02-14 11:40:29 -05:00
|
|
|
if (count == 0 && stream->IsEof())
|
|
|
|
|
return false;
|
|
|
|
|
else
|
|
|
|
|
return true;
|
2015-02-14 10:34:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StreamReadContext::DropData(size_t count)
|
|
|
|
|
{
|
2015-06-22 05:11:21 -04:00
|
|
|
ASSERT(count <= Size);
|
2015-02-14 10:34:36 -05:00
|
|
|
memmove(Buffer, Buffer + count, Size - count);
|
|
|
|
|
Size -= count;
|
2013-03-09 09:56:56 -05:00
|
|
|
}
|