]> granicus.if.org Git - icinga2/commitdiff
Refactored jsonrpc lib to use the new TcpClient interface.
authorGunnar Beutner <gunnar.beutner@netways.de>
Sun, 15 Jul 2012 22:05:24 +0000 (00:05 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Sun, 15 Jul 2012 22:05:24 +0000 (00:05 +0200)
icinga-app/icinga1.conf
jsonrpc/jsonrpcclient.cpp
jsonrpc/netstring.cpp
jsonrpc/netstring.h

index fc7ba8ebdd2d50b802b4dbbf3bb8dcc52ad0efce..e5c5f0868435ae63fbd484da00c99a45e13e2b23 100644 (file)
@@ -3,11 +3,11 @@ local object application "icinga" {
        cert = "icinga-c1.pem",
 
        node = "10.0.10.14",
-       service = 7777
+       service = 7778
 }
 
-local object component "configrpc" {
-       configSource = 1
+local object component "cibsync" {
+
 }
 
 local object component "demo" {
index e0bd2602c42fd957e6c0f4d81cc3eb8e89f0deab..1fda132740c594c90d7fe91986fe7491116d946e 100644 (file)
@@ -40,9 +40,7 @@ JsonRpcClient::JsonRpcClient(TcpClientRole role, shared_ptr<SSL_CTX> sslContext)
  */
 void JsonRpcClient::SendMessage(const MessagePart& message)
 {
-       mutex::scoped_lock lock(GetMutex());
-
-       Netstring::WriteStringToFIFO(GetSendQueue(), message.ToJsonString());
+       Netstring::WriteStringToIOQueue(this, message.ToJsonString());
 }
 
 /**
@@ -54,12 +52,8 @@ void JsonRpcClient::DataAvailableHandler(void)
                string jsonString;
                MessagePart message;
 
-               {
-                       mutex::scoped_lock lock(GetMutex());
-
-                       if (!Netstring::ReadStringFromFIFO(GetRecvQueue(), &jsonString))
-                               return;
-               }
+               if (!Netstring::ReadStringFromIOQueue(this, &jsonString))
+                       return;
 
                try {
                        message = MessagePart(jsonString);
index fb4c9673447449b5bdc808a90dd6ed62b3abc255..a28b9e1650e3fe7578ab5cf51cfaf791c2f6b03d 100644 (file)
 using namespace icinga;
 
 /**
- * Reads data from a FIFO in netstring format.
+ * Reads data from an IOQueue in netstring format.
  *
- * @param fifo The FIFO to read from.
+ * @param fifo The IOQueue to read from.
  * @param[out] str The string that has been read from the FIFO.
  * @returns true if a complete string was read from the FIFO, false otherwise.
- * @exception InvalidNetstringException The input stream is invalid.
+ * @exception invalid_argument The input stream is invalid.
  * @see https://github.com/PeterScott/netstring-c/blob/master/netstring.c
  */
-bool Netstring::ReadStringFromFIFO(const FIFO::Ptr& fifo, string *str)
+bool Netstring::ReadStringFromIOQueue(IOQueue *queue, string *str)
 {
-       size_t buffer_length = fifo->GetSize();
-       char *buffer = (char *)fifo->GetReadBuffer();
+       size_t buffer_length = queue->GetAvailableBytes();
 
        /* minimum netstring length is 3 */
        if (buffer_length < 3)
                return false;
 
+       /* limit the number of bytes we're reading for the header */
+       if (buffer_length > 16)
+               buffer_length = 16;
+
+       char *buffer = (char *)malloc(buffer_length);
+       queue->Peek(buffer, buffer_length);
+
        /* no leading zeros allowed */
-       if (buffer[0] == '0' && isdigit(buffer[1]))
+       if (buffer[0] == '0' && isdigit(buffer[1])) {
+               free(buffer);
                throw invalid_argument("Invalid netstring (leading zero)");
+       }
 
        size_t len, i;
 
        len = 0;
        for (i = 0; i < buffer_length && isdigit(buffer[i]); i++) {
                /* length specifier must have at most 9 characters */
-               if (i >= 9)
+               if (i >= 9) {
+                       free(buffer);
                        throw invalid_argument("Length specifier must not exceed 9 characters");
+               }
 
                len = len * 10 + (buffer[i] - '0');
        }
 
+       buffer_length = queue->GetAvailableBytes();
+
        /* make sure the buffer is large enough */
        if (i + len + 1 >= buffer_length)
                return false;
 
+       /* limit the number of bytes we're reading to this message */
+       buffer_length = i + 1 + len + 1;
+
+       char *new_buffer = (char *)realloc(buffer, buffer_length);
+
+       if (new_buffer == NULL) {
+               free(buffer);
+               throw std::bad_alloc();
+       }
+
+       buffer = new_buffer;
+
+       queue->Peek(buffer, buffer_length);
+
        /* check for the colon delimiter */
-       if (buffer[i++] != ':')
+       if (buffer[i] != ':') {
+               free(buffer);
                throw invalid_argument("Invalid Netstring (missing :)");
+       }
 
        /* check for the comma delimiter after the string */
-       if (buffer[i + len] != ',')
+       if (buffer[i + 1 + len] != ',') {
+               free(buffer);
                throw invalid_argument("Invalid Netstring (missing ,)");
+       }
+
+       *str = string(&buffer[i + 1], &buffer[i + 1 + len]);
 
-       *str = string(&buffer[i], &buffer[i + len]);
+       free(buffer);
 
        /* remove the data from the fifo */
-       fifo->Read(NULL, i + len + 1);
+       queue->Read(NULL, buffer_length);
 
        return true;
 }
@@ -80,14 +112,13 @@ bool Netstring::ReadStringFromFIFO(const FIFO::Ptr& fifo, string *str)
  * @param fifo The FIFO.
  * @param str The string that is to be written.
  */
-void Netstring::WriteStringToFIFO(const FIFO::Ptr& fifo, const string& str)
+void Netstring::WriteStringToIOQueue(IOQueue *queue, const string& str)
 {
        stringstream prefixbuf;
        prefixbuf << str.size() << ":";
 
        string prefix = prefixbuf.str();
-       fifo->Write(prefix.c_str(), prefix.size());
-       fifo->Write(str.c_str(), str.size());
-
-       fifo->Write(",", 1);
+       queue->Write(prefix.c_str(), prefix.size());
+       queue->Write(str.c_str(), str.size());
+       queue->Write(",", 1);
 }
index 7561a312418df371204df4ac0cfb584e12903f9a..5cf1eea8fd73fed9f680fd081f06628089887f69 100644 (file)
 namespace icinga
 {
 
-/**
- * Thrown when an invalid netstring was encountered while reading from a FIFO.
- *
- * @ingroup jsonrpc
- */
-DEFINE_EXCEPTION_CLASS(InvalidNetstringException);
-
 /**
  * Helper functions for reading/writing messages in the netstring format.
  *
@@ -40,8 +33,8 @@ DEFINE_EXCEPTION_CLASS(InvalidNetstringException);
 class I2_JSONRPC_API Netstring
 {
 public:
-       static bool ReadStringFromFIFO(const FIFO::Ptr& fifo, string *message);
-       static void WriteStringToFIFO(const FIFO::Ptr& fifo, const string& message);
+       static bool ReadStringFromIOQueue(IOQueue *queue, string *message);
+       static void WriteStringToIOQueue(IOQueue *queue, const string& message);
 
 private:
        Netstring(void);