2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
2012-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/stream.hpp"
|
2013-03-15 18:21:29 +01:00
|
|
|
#include <boost/algorithm/string/trim.hpp>
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2015-09-29 10:31:16 +02:00
|
|
|
void Stream::RegisterDataHandler(const boost::function<void(const Stream::Ptr&)>& handler)
|
2013-03-09 15:56:56 +01:00
|
|
|
{
|
2015-02-14 16:34:36 +01:00
|
|
|
if (SupportsWaiting())
|
|
|
|
OnDataAvailable.connect(handler);
|
|
|
|
else
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support waiting."));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Stream::SupportsWaiting(void) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Stream::IsDataAvailable(void) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
void Stream::Shutdown(void)
|
|
|
|
{
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support Shutdown()."));
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t Stream::Peek(void *buffer, size_t count, bool allow_partial)
|
|
|
|
{
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support Peek()."));
|
|
|
|
}
|
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
void Stream::SignalDataAvailable(void)
|
|
|
|
{
|
2015-09-29 10:31:16 +02:00
|
|
|
OnDataAvailable(this);
|
2013-03-09 15:56:56 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
|
|
|
m_CV.notify_all();
|
|
|
|
}
|
|
|
|
}
|
2013-03-09 15:56:56 +01:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
bool Stream::WaitForData(int timeout)
|
2015-02-14 16:34:36 +01:00
|
|
|
{
|
|
|
|
if (!SupportsWaiting())
|
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Stream does not support waiting."));
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
boost::mutex::scoped_lock lock(m_Mutex);
|
2013-03-09 15:56:56 +01:00
|
|
|
|
2015-06-22 11:11:21 +02:00
|
|
|
while (!IsDataAvailable() && !IsEof())
|
|
|
|
if (timeout < 0)
|
|
|
|
m_CV.wait(lock);
|
|
|
|
else
|
|
|
|
m_CV.timed_wait(lock, boost::posix_time::milliseconds(timeout * 1000));
|
|
|
|
|
|
|
|
return IsDataAvailable() || IsEof();
|
2015-02-14 16:34:36 +01:00
|
|
|
}
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-11-08 21:23:04 +01:00
|
|
|
void Stream::Close(void)
|
|
|
|
{
|
|
|
|
OnDataAvailable.disconnect_all_slots();
|
|
|
|
}
|
|
|
|
|
2015-06-24 09:44:59 +02:00
|
|
|
StreamReadStatus Stream::ReadLine(String *line, StreamReadContext& context, bool may_wait)
|
2015-02-14 16:34:36 +01:00
|
|
|
{
|
2015-02-14 17:40:29 +01:00
|
|
|
if (context.Eof)
|
2015-02-14 16:34:36 +01:00
|
|
|
return StatusEof;
|
2013-03-09 15:56:56 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
if (context.MustRead) {
|
2015-06-24 09:44:59 +02:00
|
|
|
if (!context.FillFromStream(this, may_wait)) {
|
2015-02-14 17:40:29 +01:00
|
|
|
context.Eof = true;
|
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
*line = String(context.Buffer, &(context.Buffer[context.Size]));
|
|
|
|
boost::algorithm::trim_right(*line);
|
2013-07-03 16:16:38 +02:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
return StatusNewItem;
|
2013-03-09 15:56:56 +01:00
|
|
|
}
|
2015-02-14 16:34:36 +01:00
|
|
|
}
|
2013-03-09 15:56:56 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
int count = 0;
|
|
|
|
size_t first_newline;
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
for (size_t i = 0; i < context.Size; i++) {
|
|
|
|
if (context.Buffer[i] == '\n') {
|
|
|
|
count++;
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
if (count == 1)
|
|
|
|
first_newline = i;
|
2015-06-24 09:44:59 +02:00
|
|
|
else if (count > 1)
|
|
|
|
break;
|
2013-07-03 16:16:38 +02:00
|
|
|
}
|
2015-02-14 16:34:36 +01:00
|
|
|
}
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
context.MustRead = (count <= 1);
|
2013-07-03 16:16:38 +02:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
if (count > 0) {
|
|
|
|
*line = String(context.Buffer, &(context.Buffer[first_newline]));
|
|
|
|
boost::algorithm::trim_right(*line);
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
context.DropData(first_newline + 1);
|
2013-03-10 05:10:51 +01:00
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
return StatusNewItem;
|
2013-07-03 16:16:38 +02:00
|
|
|
}
|
2015-02-14 16:34:36 +01:00
|
|
|
|
|
|
|
return StatusNeedData;
|
|
|
|
}
|
|
|
|
|
2015-06-24 09:44:59 +02:00
|
|
|
bool StreamReadContext::FillFromStream(const Stream::Ptr& stream, bool may_wait)
|
2015-02-14 16:34:36 +01:00
|
|
|
{
|
2015-06-24 09:44:59 +02:00
|
|
|
if (may_wait && stream->SupportsWaiting())
|
2015-02-14 16:34:36 +01:00
|
|
|
stream->WaitForData();
|
|
|
|
|
2015-02-14 17:40:29 +01:00
|
|
|
size_t count = 0;
|
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
do {
|
|
|
|
Buffer = (char *)realloc(Buffer, Size + 4096);
|
|
|
|
|
|
|
|
if (!Buffer)
|
|
|
|
throw std::bad_alloc();
|
|
|
|
|
|
|
|
size_t rc = stream->Read(Buffer + Size, 4096, true);
|
|
|
|
|
|
|
|
Size += rc;
|
2015-02-14 17:40:29 +01:00
|
|
|
count += rc;
|
2015-06-24 09:44:59 +02:00
|
|
|
} while (count < 64 * 1024 && stream->IsDataAvailable());
|
2015-02-14 16:34:36 +01:00
|
|
|
|
2015-02-14 17:40:29 +01:00
|
|
|
if (count == 0 && stream->IsEof())
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true;
|
2015-02-14 16:34:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void StreamReadContext::DropData(size_t count)
|
|
|
|
{
|
2015-06-22 11:11:21 +02:00
|
|
|
ASSERT(count <= Size);
|
2015-02-14 16:34:36 +01:00
|
|
|
memmove(Buffer, Buffer + count, Size - count);
|
|
|
|
Size -= count;
|
2013-03-09 15:56:56 +01:00
|
|
|
}
|