76 : m_udp_fifo(udp_fifo), m_msgpack_fifo(msgpack_fifo), m_logfolder(logfolder), m_export_csv(export_csv), m_verbose(
verbose), m_measure_timing(measure_timing), m_exporter_thread(0), m_run_exporter_thread(false)
94 std::unique_lock<std::mutex> lock(m_listener_mutex);
95 m_listener.push_back(listener);
103 std::unique_lock<std::mutex> lock(m_listener_mutex);
104 for (std::list<sick_scansegment_xd::MsgPackExportListenerIF*>::iterator iter = m_listener.begin(); iter != m_listener.end(); )
106 if (*iter == listener)
107 iter = m_listener.erase(iter);
118 std::unique_lock<std::mutex> lock(m_listener_mutex);
129 m_run_exporter_thread =
true;
139 m_run_exporter_thread =
false;
147 m_run_exporter_thread =
false;
148 if (m_exporter_thread)
150 if (m_exporter_thread->joinable())
151 m_exporter_thread->join();
152 delete m_exporter_thread;
153 m_exporter_thread = 0;
162 if (!m_udp_fifo || !m_msgpack_fifo)
164 ROS_ERROR_STREAM(
"## ERROR MsgPack/Compact-Exporter::Run(): MsgPack/Compact-Exporter not initialized.");
171 size_t msg_exported_counter = 0;
172 size_t msg_first_udp_counter = 0;
173 size_t max_count_udp_messages_in_fifo = 0;
174 size_t max_count_output_messages_in_fifo = 0;
175 int msg_cnt_delta_max = 0;
177 while (m_run_exporter_thread)
181 size_t msgpack_counter = 0;
182 if (m_msgpack_fifo->Pop(msgpack_output, msgpack_timestamp, msgpack_counter) && m_run_exporter_thread)
185 std::list<sick_scansegment_xd::MsgPackExportListenerIF*> listener = GetExportListener();
186 for (std::list<sick_scansegment_xd::MsgPackExportListenerIF*>::iterator iter = listener.begin(); iter != listener.end(); iter++)
190 (*iter)->HandleMsgPackData(msgpack_output);
194 if (m_export_csv && !m_logfolder.empty())
201 if (msg_exported_counter == 0)
203 msg_first_udp_counter = msgpack_counter;
204 recv_start_timestamp = msgpack_timestamp;
206 msg_exported_counter += 1;
207 size_t msg_udp_received_counter = (msgpack_counter - msg_first_udp_counter) + 1;
208 if (m_measure_timing)
210 int msg_cnt_delta = std::max(0, (
int)msg_udp_received_counter - (
int)msg_exported_counter);
211 double packages_lost_rate = std::abs((
double)msg_cnt_delta) / (double)msg_udp_received_counter;
212 bool do_print_message = m_verbose &&
214 ((msg_exported_counter%100) == 0);
215 if (msg_udp_received_counter != msg_exported_counter && msg_cnt_delta > msg_cnt_delta_max && do_print_message)
217 ROS_INFO_STREAM(
"MsgPack/Compact-Exporter::Run(): " << msg_udp_received_counter <<
" udp messages received, " << msg_exported_counter <<
" messages exported, " << (100.0 * packages_lost_rate) <<
"% package lost");
218 msg_cnt_delta_max = msg_cnt_delta;
221 size_t current_udp_fifo_size = m_udp_fifo->Size();
222 size_t current_output_fifo_size = m_msgpack_fifo->Size();
224 duration_datahandling_milliseconds.
AddTimeMilliseconds(1000.0 * duration_datahandling_seconds);
225 max_count_udp_messages_in_fifo = std::max(max_count_udp_messages_in_fifo, current_udp_fifo_size + 1);
226 max_count_output_messages_in_fifo = std::max(max_count_output_messages_in_fifo, current_output_fifo_size + 1);
230 ROS_INFO_STREAM(
"MsgPack/Compact-Exporter: " << current_udp_fifo_size <<
" udp packages still in input fifo, " << current_output_fifo_size <<
" messages still in output fifo, current segment index: " << msgpack_output.
segmentIndex);
231 ROS_INFO_STREAM(
"MsgPack/Compact-Exporter: " << msg_udp_received_counter <<
" udp scandata messages received, " << msg_exported_counter <<
" messages exported (scan+imu), " << (100.0 * packages_lost_rate) <<
"% package lost.");
232 ROS_INFO_STREAM(
"MsgPack/Compact-Exporter: max. " << max_count_udp_messages_in_fifo <<
" udp messages buffered, max " << max_count_output_messages_in_fifo <<
" export messages buffered.");
234 s <<
"MsgPack/Compact-Exporter: " << msg_exported_counter <<
" messages exported at " << std::fixed << std::setprecision(3) << msg_exported_rate <<
" Hz, mean time: "
235 << std::fixed << std::setprecision(3) << duration_datahandling_milliseconds.
MeanMilliseconds() <<
" milliseconds/messages, "
236 <<
"stddev time: " << duration_datahandling_milliseconds.
StddevMilliseconds() <<
", " <<
"max time: " << duration_datahandling_milliseconds.
MaxMilliseconds() <<
" milliseconds between udp receive and messages export, "
244 if (m_measure_timing && m_verbose)
246 size_t current_udp_fifo_size = m_udp_fifo->Size();
247 size_t current_output_fifo_size = m_msgpack_fifo->Size();
249 std::stringstream info1, info2;
250 info1 <<
"MsgPack/Compact-Exporter: finished, " << current_udp_fifo_size <<
" udp packages still in input fifo, " << current_output_fifo_size <<
" messages still in output fifo"
251 <<
", max. " << max_count_udp_messages_in_fifo <<
" udp messages buffered, max " << max_count_output_messages_in_fifo <<
" export messages buffered.";
252 info2 <<
"MsgPack/Compact-Exporter: " << msg_exported_counter <<
" messages exported at " << msg_exported_rate <<
" Hz, mean time: " << duration_datahandling_milliseconds.
MeanMilliseconds() <<
" milliseconds/messages, "
253 <<
"stddev time: " << duration_datahandling_milliseconds.
StddevMilliseconds() <<
", " <<
"max time: " << duration_datahandling_milliseconds.
MaxMilliseconds() <<
" milliseconds between udp receive and messages export, "
257 std::cout << info1.str() << std::endl;
258 std::cout << info2.str() << std::endl;
260 m_run_exporter_thread =
false;
263 catch (std::exception & e)
267 m_run_exporter_thread =
false;