3#include <folly/coro/BlockingWait.h>
4#include <folly/coro/Timeout.h>
9namespace datahandlinglibs {
11template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
19 if (input->get_data_type() ==
"DataRequest") {
23 m_raw_data_receiver_connection_name = input->UID();
25 std::string conn_name = input->UID();
26 const char delim =
'_';
27 std::vector<std::string> words;
30 while ((start = conn_name.find_first_not_of(delim, end)) != std::string::npos) {
31 end = conn_name.find(delim, start);
32 words.push_back(conn_name.substr(start, end - start));
35 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Initialize connection based on uid: "
36 << m_raw_data_receiver_connection_name <<
" front word: " << words.front();
38 std::string cb_prefix(
"cb");
39 if (words.front() == cb_prefix) {
40 m_callback_mode =
true;
43 if (!m_callback_mode) {
45 m_raw_receiver_timeout_ms = std::chrono::milliseconds(input->get_recv_timeout_ms());
50 if (output->get_data_type() ==
"TimeSync") {
51 m_generate_timesync =
true;
53 m_timesync_connection_name = output->UID();
58 throw ResourceQueueError(
ERS_HERE,
"raw_input or frag_output",
"DataHandlingModel", excpt);
62 if (!m_callback_mode && m_raw_data_receiver ==
nullptr) {
63 ers::error(ConfigurationError(
ERS_HERE, m_sourceid,
"Non callback mode, and receiver is unset!"));
68 m_error_registry->set_ers_metadata(
"DLH of SourceID[" + std::to_string(mcfg->
get_source_id()) +
"] ");
69 m_latency_buffer_impl.reset(
new LBT());
71 m_request_handler_impl.reset(
new RHT(m_latency_buffer_impl, m_error_registry));
79 m_request_handler_supports_cutoff_timestamp = m_request_handler_impl->supports_cutoff_timestamp();
80 m_fake_trigger =
false;
81 m_raw_receiver_sleep_us = std::chrono::microseconds::zero();
83 m_sourceid.subsystem = RDT::subsystem;
90 m_raw_processor_impl->conf(mcfg);
95 }
catch (
const std::bad_alloc& be) {
96 ers::error(ConfigurationError(
ERS_HERE, m_sourceid,
"Latency Buffer can't be allocated with size!"));
98 m_request_handler_impl->conf(mcfg);
101template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
106 if (m_callback_mode) {
112 dmcbr->register_callback<
IDT>(m_raw_data_receiver_connection_name, m_consume_callback);
116 m_consumer_thread.set_name(
"consumer", m_sourceid.id);
117 if (m_generate_timesync) {
118 m_timesync_thread.set_name(
"timesync", m_sourceid.id);
120 if (m_processing_delay_ticks) {
121 m_postprocess_scheduler_thread.set_name(
"pprocsched", m_sourceid.id);
122 m_timekeeper = std::make_unique<folly::ThreadWheelTimekeeper>();
127template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
136 m_num_lb_insert_failures = 0;
137 m_stats_packet_count = 0;
138 m_rawq_timeout_count = 0;
139 m_num_post_processing_delay_max_waits = 0;
141 m_t0 = std::chrono::high_resolution_clock::now();
145 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Starting threads...";
146 m_raw_processor_impl->start(args);
147 m_request_handler_impl->start(args);
148 if (!m_callback_mode) {
151 if (m_generate_timesync) {
154 if (m_processing_delay_ticks) {
158 m_data_request_receiver->add_callback(
162template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
166 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Stoppping threads...";
169 m_data_request_receiver->remove_callback();
171 m_request_handler_impl->stop(args);
172 if (m_generate_timesync) {
173 while (!m_timesync_thread.get_readiness()) {
174 std::this_thread::sleep_for(std::chrono::milliseconds(10));
177 if (!m_callback_mode) {
178 while (!m_consumer_thread.get_readiness()) {
179 std::this_thread::sleep_for(std::chrono::milliseconds(10));
182 if (m_processing_delay_ticks) {
184 while (!m_postprocess_scheduler_thread.get_readiness()) {
185 std::this_thread::sleep_for(std::chrono::milliseconds(10));
188 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Flushing latency buffer with occupancy: " << m_latency_buffer_impl->occupancy();
189 m_latency_buffer_impl->flush();
190 m_raw_processor_impl->stop(args);
191 m_raw_processor_impl->reset_last_daq_time();
194template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
204 auto now = std::chrono::high_resolution_clock::now();
205 int new_packets = m_stats_packet_count.exchange(0);
206 double seconds = std::chrono::duration_cast<std::chrono::microseconds>(
now - m_t0).count() / 1000000.;
210 int local_num_lb_insert_failures = m_num_lb_insert_failures.exchange(0);
211 if (local_num_lb_insert_failures != 0) {
222 this->publish(std::move(ri));
225template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
228 if constexpr (std::is_same_v<IDT, RDT>) {
229 process_item(std::move(payload));
231 auto transformed = transform_payload(payload);
232 for (
auto& i : transformed) {
233 process_item(std::move(i));
238template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
241 transform_and_process(std::move(payload));
244template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
248 m_raw_processor_impl->preprocess_item(&payload);
249 if (m_request_handler_supports_cutoff_timestamp) {
250 int64_t diff1 = payload.get_timestamp() - m_request_handler_impl->get_cutoff_timestamp();
254 m_request_handler_impl->get_cutoff_timestamp(), diff1,
255 (
static_cast<double>(diff1)/62500.0)));
258 if (!m_latency_buffer_impl->write(std::move(payload))) {
260 m_num_lb_insert_failures++;
262 if (m_processing_delay_ticks == 0) {
263 m_raw_processor_impl->postprocess_item(m_latency_buffer_impl->back());
266 ++m_stats_packet_count;
272template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
276 folly::coro::blockingWait(postprocess_schedule());
279template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
284 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Consumer thread started...";
285 m_rawq_timeout_count = 0;
288 m_stats_packet_count = 0;
289 m_num_post_processing_delay_max_waits = 0;
291 while (m_run_marker.load()) {
294 auto opt_payload = m_raw_data_receiver->try_receive(m_raw_receiver_timeout_ms);
297 IDT& payload = opt_payload.value();
298 transform_and_process(std::move(payload));
300 ++m_rawq_timeout_count;
302 if ( m_raw_receiver_sleep_us != std::chrono::microseconds::zero())
303 std::this_thread::sleep_for(m_raw_receiver_sleep_us);
306 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Consumer thread joins... ";
309template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
310folly::coro::Task<void>
313 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Postprocess schedule coroutine started...";
316 bool first_cycle =
true;
317 auto last_post_proc_time = std::chrono::system_clock::now();
318 auto now = last_post_proc_time;
319 std::chrono::milliseconds milliseconds;
320 RDT processed_element;
324 while (m_run_marker.load()) {
326 co_await folly::coro::timeout(
327 m_baton.operator
co_await(),
328 std::chrono::milliseconds{m_post_processing_delay_max_wait},
331 }
catch (
const folly::FutureTimeout&) {
332 ++m_num_post_processing_delay_max_waits;
335 if (m_latency_buffer_impl->occupancy() == 0) {
339 now = std::chrono::system_clock::now();
340 milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(
now - last_post_proc_time);
342 if (milliseconds.count() <= m_post_processing_delay_min_wait) {
346 last_post_proc_time =
now;
349 auto tail = m_latency_buffer_impl->back();
350 newest_ts = tail->get_timestamp();
353 auto head = m_latency_buffer_impl->front();
354 processed_element.set_timestamp(head->get_timestamp());
356 TLOG() <<
"***** First pass post processing *****";
359 if (newest_ts - processed_element.get_timestamp() > m_processing_delay_ticks) {
360 end_win_ts = newest_ts - m_processing_delay_ticks;
361 auto start_iter = m_latency_buffer_impl->lower_bound(processed_element,
false);
362 processed_element.set_timestamp(end_win_ts);
363 auto end_iter = m_latency_buffer_impl->lower_bound(processed_element,
false);
365 for (
auto it = start_iter; it != end_iter; ++it) {
366 m_raw_processor_impl->postprocess_item(&(*it));
369 ++m_stats_packet_count;
375template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
379 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"TimeSync thread started...";
382 uint64_t msg_seqno = 0;
384 auto once_per_run =
true;
385 size_t zero_timestamp_count = 0;
386 size_t duplicate_timestamp_count = 0;
387 size_t total_timestamp_count = 0;
388 while (m_run_marker.load()) {
391 ++total_timestamp_count;
395 if (timesyncmsg.daq_time != 0 && timesyncmsg.daq_time != prev_timestamp) {
396 prev_timestamp = timesyncmsg.daq_time;
397 timesyncmsg.run_number = m_run_number;
398 timesyncmsg.sequence_number = ++msg_seqno;
399 timesyncmsg.source_pid = m_pid_of_current_process;
400 TLOG_DEBUG(TLVL_TIME_SYNCS) <<
"New timesync: daq=" << timesyncmsg.daq_time
401 <<
" wall=" << timesyncmsg.system_time <<
" run=" << timesyncmsg.run_number
402 <<
" seqno=" << timesyncmsg.sequence_number <<
" pid=" << timesyncmsg.source_pid;
405 m_timesync_sender->send(std::move(timesyncmsg_copy), std::chrono::milliseconds(500));
411 if (m_fake_trigger) {
413 ++m_current_fake_trigger_id;
415 dr.
trigger_timestamp = timesyncmsg.daq_time > 500 * us ? timesyncmsg.daq_time - 500 * us : 0;
422 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"Issuing fake trigger based on timesync. "
426 m_request_handler_impl->issue_request(dr);
432 if (timesyncmsg.daq_time == 0) {++zero_timestamp_count;}
433 if (timesyncmsg.daq_time == prev_timestamp) {++duplicate_timestamp_count;}
435 TLOG() <<
"Timesync with DAQ time 0 won't be sent out as it's an invalid sync.";
436 once_per_run =
false;
439 }
catch (
const iomanager::TimeoutExpired& excpt) {
443 for (
size_t i=0; i<10; ++i) {
444 std::this_thread::sleep_for(std::chrono::milliseconds(10));
445 if (!m_run_marker.load()) {
451 TLOG_DEBUG(TLVL_WORK_STEPS) <<
"TimeSync thread joins... (timestamp count, zero/same/total = "
452 << zero_timestamp_count <<
"/" << duplicate_timestamp_count <<
"/"
453 << total_timestamp_count <<
")";
456template<
class RDT,
class RHT,
class LBT,
class RPT,
class IDT>
464 TLOG_DEBUG(TLVL_QUEUE_POP) <<
"Received DataRequest"
472 m_request_handler_impl->issue_request(data_request);
const dunedaq::appmodel::LatencyBuffer * get_latency_buffer() const
Get "latency_buffer" relationship value.
uint64_t get_post_processing_delay_ticks() const
Get "post_processing_delay_ticks" attribute value. Number of clock tick by which post processing of i...
const dunedaq::appmodel::DataProcessor * get_data_processor() const
Get "data_processor" relationship value.
uint64_t get_post_processing_delay_max_wait() const
Get "post_processing_delay_max_wait" attribute value. Maximum wait time (ms) before post processing c...
uint64_t get_post_processing_delay_min_wait() const
Get "post_processing_delay_min_wait" attribute value. Minimum time (ms) between consecutive post proc...
const dunedaq::appmodel::RequestHandler * get_request_handler() const
Get "request_handler" relationship value.
const dunedaq::appmodel::DataHandlerConf * get_module_configuration() const
Get "module_configuration" relationship value.
uint32_t get_source_id() const
Get "source_id" attribute value.
bool get_post_processing_enabled() const
Get "post_processing_enabled" attribute value.
const std::string & UID() const noexcept
const std::vector< const dunedaq::confmodel::Connection * > & get_inputs() const
Get "inputs" relationship value. List of connections to/from this module.
const std::vector< const dunedaq::confmodel::Connection * > & get_outputs() const
Get "outputs" relationship value. Output connections from this module.
void conf(const nlohmann::json &args)
void consume_callback(IDT &&payload)
std::uint64_t timestamp_t
void stop(const nlohmann::json &args)
void init(const appmodel::DataHandlerModule *modconf)
Forward calls from the appfwk.
virtual void generate_opmon_data() override
void run_postprocess_scheduler()
void dispatch_requests(dfmessages::DataRequest &data_request)
void process_item(RDT &&payload)
void start(const nlohmann::json &args)
void run_consume()
Function that will be run in its own thread to read the raw packets from the connection and add them ...
void run_timesync()
Function that will be run in its own thread and sends periodic timesync messages by pushing them to t...
void transform_and_process(IDT &&payload)
folly::coro::Task< void > postprocess_schedule()
static std::shared_ptr< DataMoveCallbackRegistry > get()
void set_sum_payloads(::uint64_t value)
void set_num_lb_insert_failures(::uint64_t value)
void set_rate_payloads_consumed(double value)
void set_sum_requests(::uint64_t value)
void set_num_post_processing_delay_max_waits(::uint64_t value)
void set_last_daq_timestamp(::uint64_t value)
void set_num_data_input_timeouts(::uint64_t value)
::uint64_t num_payloads() const
void set_num_payloads(::uint64_t value)
void set_num_requests(::uint64_t value)
Base class for any user define issue.
#define TLOG_DEBUG(lvl,...)
static std::shared_ptr< iomanager::SenderConcept< Datatype > > get_iom_sender(iomanager::ConnectionId const &id)
SourceID[" << sourceid << "] Command daqdataformats::SourceID Readout Initialization std::string initerror Configuration std::string conferror Configuration std::string conferror TimeSyncTransmissionFailed
static std::shared_ptr< iomanager::ReceiverConcept< Datatype > > get_iom_receiver(iomanager::ConnectionId const &id)
void warning(const Issue &issue)
void error(const Issue &issue)
This message represents a request for data sent to a single component of the DAQ.
sequence_number_t sequence_number
Sequence Number of the request.
std::string data_destination
ComponentRequest request_information
trigger_number_t trigger_number
Trigger number the request corresponds to.
timestamp_t trigger_timestamp
Timestamp of trigger.
run_number_t run_number
The current run number.
A synthetic message used to ensure that all elements of a DAQ system are synchronized.