2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 12:06:41 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/networkstream.hpp"
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 08:54:18 +01:00
|
|
|
NetworkStream::NetworkStream(Socket::Ptr socket)
|
|
|
|
: m_Socket(std::move(socket)), m_Eof(false)
|
2013-04-04 16:08:02 +02:00
|
|
|
{ }
|
2012-11-22 12:04:32 +01:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void NetworkStream::Close()
|
2012-11-22 12:04:32 +01:00
|
|
|
{
|
2015-11-08 21:23:04 +01:00
|
|
|
Stream::Close();
|
|
|
|
|
2013-04-04 16:08:02 +02:00
|
|
|
m_Socket->Close();
|
2012-11-22 12:04:32 +01:00
|
|
|
}
|
|
|
|
|
2013-04-04 16:08:02 +02:00
|
|
|
/**
|
|
|
|
* Reads data from the stream.
|
|
|
|
*
|
2017-12-14 15:37:20 +01:00
|
|
|
* @param buffer The buffer where data should be stored. May be nullptr if you're
|
2013-04-04 16:08:02 +02:00
|
|
|
* not actually interested in the data.
|
|
|
|
* @param count The number of bytes to read from the queue.
|
|
|
|
* @returns The number of bytes actually read.
|
|
|
|
*/
|
2015-02-14 16:34:36 +01:00
|
|
|
size_t NetworkStream::Read(void *buffer, size_t count, bool allow_partial)
|
2012-11-22 12:04:32 +01:00
|
|
|
{
|
2013-10-18 08:26:48 +02:00
|
|
|
size_t rc;
|
|
|
|
|
2015-02-14 16:34:36 +01:00
|
|
|
ASSERT(allow_partial);
|
|
|
|
|
2013-10-18 09:11:21 +02:00
|
|
|
if (m_Eof)
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Tried to read from closed socket."));
|
|
|
|
|
2013-10-18 08:26:48 +02:00
|
|
|
try {
|
|
|
|
rc = m_Socket->Read(buffer, count);
|
|
|
|
} catch (...) {
|
|
|
|
m_Eof = true;
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
2013-08-27 12:21:41 +02:00
|
|
|
|
|
|
|
if (rc == 0)
|
|
|
|
m_Eof = true;
|
|
|
|
|
|
|
|
return rc;
|
2012-11-22 12:04:32 +01:00
|
|
|
}
|
|
|
|
|
2013-04-04 16:08:02 +02:00
|
|
|
/**
|
|
|
|
* Writes data to the stream.
|
|
|
|
*
|
|
|
|
* @param buffer The data that is to be written.
|
|
|
|
* @param count The number of bytes to write.
|
|
|
|
* @returns The number of bytes written
|
|
|
|
*/
|
|
|
|
void NetworkStream::Write(const void *buffer, size_t count)
|
2012-11-22 12:04:32 +01:00
|
|
|
{
|
2013-10-18 08:26:48 +02:00
|
|
|
size_t rc;
|
|
|
|
|
2013-10-18 09:11:21 +02:00
|
|
|
if (m_Eof)
|
|
|
|
BOOST_THROW_EXCEPTION(std::invalid_argument("Tried to write to closed socket."));
|
|
|
|
|
2013-10-18 08:26:48 +02:00
|
|
|
try {
|
|
|
|
rc = m_Socket->Write(buffer, count);
|
|
|
|
} catch (...) {
|
|
|
|
m_Eof = true;
|
|
|
|
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2013-10-18 09:11:21 +02:00
|
|
|
if (rc < count) {
|
|
|
|
m_Eof = true;
|
|
|
|
|
2013-04-04 16:08:02 +02:00
|
|
|
BOOST_THROW_EXCEPTION(std::runtime_error("Short write for socket."));
|
2013-10-18 09:11:21 +02:00
|
|
|
}
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
2013-08-27 12:21:41 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool NetworkStream::IsEof() const
|
2013-08-27 12:21:41 +02:00
|
|
|
{
|
|
|
|
return m_Eof;
|
|
|
|
}
|