]> granicus.if.org Git - icinga2/commitdiff
Implement additional logging for the JsonRpc class 5563/head
authorGunnar Beutner <gunnar.beutner@icinga.com>
Thu, 7 Sep 2017 12:37:02 +0000 (14:37 +0200)
committerGunnar Beutner <gunnar.beutner@icinga.com>
Thu, 7 Sep 2017 12:37:02 +0000 (14:37 +0200)
lib/remote/jsonrpc.cpp

index 93d02be17a9392f890d11de8eb96c147d5b1f239..8aab9c2f7c90f1be8900be1f99dcb2d03e01e16b 100644 (file)
 #include "remote/jsonrpc.hpp"
 #include "base/netstring.hpp"
 #include "base/json.hpp"
+#include "base/console.hpp"
+#include "base/scriptglobal.hpp"
+#include "base/convert.hpp"
 
 using namespace icinga;
 
+#ifdef I2_DEBUG
+static bool GetDebugJsonRpcCached(void)
+{
+       static int debugJsonRpc = -1;
+
+       if (debugJsonRpc != -1)
+               return debugJsonRpc;
+
+       debugJsonRpc = false;
+
+       Dictionary::Ptr internal = ScriptGlobal::Get("Internal", &Empty);
+
+       if (!internal)
+               return false;
+
+       Value vdebug;
+
+       if (!internal->Get("DebugJsonRpc", &vdebug))
+               return false;
+
+       debugJsonRpc = Convert::ToLong(vdebug);
+
+       return debugJsonRpc;
+}
+#endif /* I2_DEBUG */
+
 /**
  * Sends a message to the connected peer.
  *
@@ -31,6 +60,12 @@ using namespace icinga;
 void JsonRpc::SendMessage(const Stream::Ptr& stream, const Dictionary::Ptr& message)
 {
        String json = JsonEncode(message);
+
+#ifdef I2_DEBUG
+       if (GetDebugJsonRpcCached())
+               std::cerr << ConsoleColorTag(Console_ForegroundBlue) << ">> " << json << ConsoleColorTag(Console_Normal) << "\n";
+#endif /* I2_DEBUG */
+
        NetString::WriteStringToStream(stream, json);
 }
 
@@ -44,6 +79,11 @@ StreamReadStatus JsonRpc::ReadMessage(const Stream::Ptr& stream, String *message
 
        *message = jsonString;
 
+#ifdef I2_DEBUG
+       if (GetDebugJsonRpcCached())
+               std::cerr << ConsoleColorTag(Console_ForegroundBlue) << "<< " << jsonString << ConsoleColorTag(Console_Normal) << "\n";
+#endif /* I2_DEBUG */
+
        return StatusNewItem;
 }