From 43658de5294202b0990bfeea74865535c187ed97 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Mon, 18 Feb 2019 15:21:50 +0100 Subject: [PATCH] NetString::WriteStringToStream(): add Boost ASIO overload --- lib/base/netstring.cpp | 28 ++++++++++++++++++++++++++++ lib/base/netstring.hpp | 4 ++++ 2 files changed, 32 insertions(+) diff --git a/lib/base/netstring.cpp b/lib/base/netstring.cpp index 7fad3453c..debed2bda 100644 --- a/lib/base/netstring.cpp +++ b/lib/base/netstring.cpp @@ -2,7 +2,12 @@ #include "base/netstring.hpp" #include "base/debug.hpp" +#include "base/tlsstream.hpp" +#include #include +#include +#include +#include using namespace icinga; @@ -110,6 +115,29 @@ size_t NetString::WriteStringToStream(const Stream::Ptr& stream, const String& s return msg.GetLength(); } +/** + * Writes data into a stream using the netstring format and returns bytes written. + * + * @param stream The stream. + * @param str The String that is to be written. + * + * @return The amount of bytes written. + */ +size_t NetString::WriteStringToStream(const std::shared_ptr& stream, const String& str, boost::asio::yield_context yc) +{ + namespace asio = boost::asio; + + std::ostringstream msgbuf; + WriteStringToStream(msgbuf, str); + + String msg = msgbuf.str(); + asio::const_buffer msgBuf (msg.CStr(), msg.GetLength()); + + asio::async_write(*stream, msgBuf, yc); + + return msg.GetLength(); +} + /** * Writes data into a stream using the netstring format. * diff --git a/lib/base/netstring.hpp b/lib/base/netstring.hpp index 10ff4e2fc..f54d70c17 100644 --- a/lib/base/netstring.hpp +++ b/lib/base/netstring.hpp @@ -5,6 +5,9 @@ #include "base/i2-base.hpp" #include "base/stream.hpp" +#include "base/tlsstream.hpp" +#include +#include namespace icinga { @@ -24,6 +27,7 @@ public: static StreamReadStatus ReadStringFromStream(const Stream::Ptr& stream, String *message, StreamReadContext& context, bool may_wait = false, ssize_t maxMessageLength = -1); static size_t WriteStringToStream(const Stream::Ptr& stream, const String& message); + static size_t WriteStringToStream(const std::shared_ptr& stream, const String& message, boost::asio::yield_context yc); static void WriteStringToStream(std::ostream& stream, const String& message); private: