From 03a12678ee5d2dd7c3150d2cde5018e45d627fc8 Mon Sep 17 00:00:00 2001 From: vivek-shankar Date: Thu, 26 Jan 2017 22:45:12 -0500 Subject: [PATCH] counter bug fix --- include/CommunicationManager.h | 2 ++ src/CommunicationManager.cpp | 18 ++++++++++++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/include/CommunicationManager.h b/include/CommunicationManager.h index 7cddcd2..6763a14 100644 --- a/include/CommunicationManager.h +++ b/include/CommunicationManager.h @@ -92,6 +92,8 @@ private: std::map< int, std::shared_ptr > multi_msgs; std::vector multi_msgs_available; uint16_t cur_checksum; + uint16_t counter; + uint16_t steps; //uint16_t multi_msg_size; }; diff --git a/src/CommunicationManager.cpp b/src/CommunicationManager.cpp index 46ac7de..2e20940 100644 --- a/src/CommunicationManager.cpp +++ b/src/CommunicationManager.cpp @@ -355,6 +355,8 @@ inline void CommunicationManager::Check_In_Messages_and_Transfer_To_Topics() uint16_t* header; if (size_in_messages > 0) { + //steps++; + //if(steps==100) steps=0; uint64_t current_int64 = 0; for (std::size_t j = 0; j < size_in_messages; j++) { @@ -389,16 +391,23 @@ inline void CommunicationManager::Check_In_Messages_and_Transfer_To_Topics() std::cout << "first message" << std::endl; multi_msgs.insert(make_pair(header[2], in_message)); cur_checksum=header[1]; + counter=1; } else if (header[1]==cur_checksum && header[0] == 0) { std::map< int, std::shared_ptr >::iterator it = multi_msgs.find(header[2]); - if(it!=multi_msgs.end()) + if(it!=multi_msgs.end()){ multi_msgs.erase(it); - multi_msgs.insert(make_pair(header[2], in_message)); + multi_msgs.insert(make_pair(header[2], in_message)); + } + else{ + multi_msgs.insert(make_pair(header[2], in_message)); + counter++; + } + /*If the total size of msg reached transfer to topic*/ - if(multi_msgs.size()==header[3]){ + if(counter==header[3]){ - for(int i =1; isecond->size(); j++) { @@ -418,6 +427,7 @@ inline void CommunicationManager::Check_In_Messages_and_Transfer_To_Topics() multi_msgs.clear(); cur_checksum=0; } + steps=0; } delete[] header;