liftof_cc/threads/event_builder.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
//! The Heart of lfitof-cc. The event builder assembles all
//! events coming from the Readoutboards in a single event
use std::thread;
use std::time::{
Instant,
Duration
};
use std::sync::{
Arc,
Mutex
};
use std::collections::VecDeque;
use std::collections::HashMap;
use crossbeam_channel::{
Receiver,
Sender,
};
use tof_dataclasses::events::{
MasterTriggerEvent,
TofEvent,
RBEvent,
EventStatus,
};
use tof_dataclasses::serialization::Packable;
use tof_dataclasses::packets::TofPacket;
use tof_dataclasses::commands::config::BuildStrategy;
use tof_dataclasses::heartbeats::EVTBLDRHeartbeat;
use liftof_lib::settings::{
TofEventBuilderSettings,
};
use liftof_lib::thread_control::ThreadControl;
use crate::constants::EVENT_BUILDER_EVID_CACHE_SIZE;
// just for debugging
//use tof_dataclasses::io::{
// TofPacketWriter,
// FileType
//};
/// Events ... assemble!
///
/// The event_builder collects all available event information,
/// beginning with the MasterTriggerEvent defining the event
/// id. It collects the requested number of RBEvents.
/// The final product then will be a TofEvent
///
/// The event_builder is the heart of this software and crucial
/// to all operations.
///
/// # Arguments
///
/// * m_trig_ev : Receive a `MasterTriggerEvent` over this
/// channel. The event will be either build
/// immediatly, or cached.
/// * ev_from_rb : Receive a number of `RBEvents` over this channel.
/// The events here shall be associated with the
/// MasterTriggerEvent
/// * data_sink : Send assembled events (and everything else in
/// the form of TofPackets to the data sink/
/// * mtb_link_map : Map of MTB Link ID - RB ID. Maybe in the future
/// RBs will know their link id themselves?
/// This is currently only needed for the build strategy
/// "AdaptiveThorough"
/// * settings : Configure the event builder
pub fn event_builder (m_trig_ev : &Receiver<MasterTriggerEvent>,
ev_from_rb : &Receiver<RBEvent>,
data_sink : &Sender<TofPacket>,
mtb_link_map : HashMap<u8,u8>,
thread_control : Arc<Mutex<ThreadControl>>) {
// deleteme
//let file_type = FileType::RunFile(12345);
//let mut writer = TofPacketWriter::new(String::from("."), file_type);
//writer.mbytes_per_file = 420;
// set up the event builder. Since we are now doing settings only at run
// start, it is fine to do this outside of the loop
let mut send_tev_sum : bool;
let mut send_rbwaveform : bool;
let mut send_rbwf_freq : u32;
let mut rbwf_ctr = 0u64;
let mut settings : TofEventBuilderSettings;
let mut run_id : u32;
// this can block it is fine bc it is only
// happening once at init
let mut cali_active : bool;
loop {
match thread_control.lock() {
Ok(tc) => {
send_rbwaveform = tc.liftof_settings.data_publisher_settings.send_rbwaveform_packets;
send_tev_sum = tc.liftof_settings.data_publisher_settings.send_tof_summary_packets;
send_rbwf_freq = tc.liftof_settings.data_publisher_settings.send_rbwf_every_x_event;
settings = tc.liftof_settings.event_builder_settings.clone();
run_id = tc.run_id;
cali_active = tc.calibration_active;
}
Err(err) => {
error!("Can't acquire lock for ThreadControl! {err}");
error!("CRITICAL: Unable to configure event builder thread! Aborting!");
return;
}
}
if !cali_active {
break;
} else {
thread::sleep(Duration::from_secs(4));
}
}
info!("Will assign run id {} to events!", run_id);
// event caches for assembled events
let mut heartbeat = EVTBLDRHeartbeat::new();
let mut event_cache = HashMap::<u32, TofEvent>::new();
let mut event_id_cache = VecDeque::<u32>::with_capacity(EVENT_BUILDER_EVID_CACHE_SIZE);
let mut n_received : usize;
let mut last_evid = 0;
let mut n_sent = 0usize;
// debug
let mut last_rb_evid : u32;
let mut n_rbe_per_te = 0usize;
let mut debug_timer = Instant::now();
let mut check_tc_update = Instant::now();
let daq_reset_cooldown = Instant::now();
let reset_daq_flag = false;
let mut retire = false;
let mut hb_timer = Instant::now();
let hb_interval = Duration::from_secs(settings.hb_send_interval as u64);
loop {
if check_tc_update.elapsed().as_secs() > 2 {
//println!("= => [evt_builder] checkling tc..");
let mut cali_still_active = false;
match thread_control.try_lock() {
Ok(mut tc) => {
if tc.thread_event_bldr_active {
println!("= => [evt_builder] shutting down...");
break;
}
//println!("= => [evt_builder] {}", tc);
if tc.stop_flag {
// end myself
println!("= => [evt_builder] shutting down...");
retire = true;
}
//println!("== ==> [evt_builder] tc lock acquired!");
if tc.calibration_active {
cali_still_active = true;
} else {
cali_still_active = false;
}
if daq_reset_cooldown.elapsed().as_secs_f32() > 120.0 && reset_daq_flag {
warn!("Resetttign MTB DAQ queue!");
tc.reset_mtb_daq = true;
}
},
Err(err) => {
error!("Can't acquire lock for ThreadControl! Unable to set calibration mode! {err}");
},
}
check_tc_update = Instant::now();
if cali_still_active {
thread::sleep(Duration::from_secs(1));
continue;
}
}
if retire {
//thread::sleep(Duration::from_secs(2));
break;
}
n_received = 0;
while n_received < settings.n_mte_per_loop as usize {
// every iteration, we welcome a new master event
match m_trig_ev.try_recv() {
Err(_) => {
trace!("No new event ready yet!");
//n_receiving_errors += 1;
continue;
}
Ok(mt) => {
debug!("Received MasterTriggerEvent {}!", mt);
let mut event = TofEvent::from(mt);
event.header.run_id = run_id;
if last_evid != 0 {
if event.mt_event.event_id != last_evid + 1 {
if event.mt_event.event_id > last_evid {
heartbeat.n_mte_skipped += (event.mt_event.event_id - last_evid - 1) as usize;
}
}
}
last_evid = event.mt_event.event_id;
event_cache.insert(last_evid, event);
// use this to keep track of the order
// of events
event_id_cache.push_back(last_evid);
n_received += 1;
heartbeat.n_mte_received_tot += 1;
}
} // end match Ok(mt)
} // end getting MTEvents
trace!("Debug timer MTE received! {:?}", debug_timer.elapsed());
// recycle that variable for the rb events as well
n_received = 0;
// The second receiver gets RBEvents from all ReadoutBoards. ReadoutBoard events are
// NOT cached by design. The assumption here is that due to caching on the RBs and the
// longer pathway (harting cable + ethernet cables) and DRS and user time, RBEvents are
// ALWAYS later than the MTEvents.
'main: while !ev_from_rb.is_empty() && n_received < settings.n_rbe_per_loop as usize {
match ev_from_rb.try_recv() {
Err(err) => {
error!("Can't receive RBEvent! Err {err}");
},
Ok(rb_ev) => {
heartbeat.n_rbe_received_tot += 1;
n_received += 1;
//match seen_rbevents.get_mut(&rb_ev.header.rb_id) {
// Some(value) => {
// *value += 1;
// }
// None => {
// warn!("Unable to do bookkeeping for RB {}", rb_ev.header.rb_id);
// }
//}
//iter_ev = 0;
last_rb_evid = rb_ev.header.event_id;
// try to asscociate the rb events with the mtb events
// the event ids from the RBEvents have to be in the
// range of the MTB Event
// The event_id_cache is sorted, that is why it works
if last_rb_evid < event_id_cache[0] {
// this is the first check. If this fails, then the event is for
// sure not in the event_cache and we can dismiss it right away,
// knowing that it is from the past
n_received -= 1;
debug!("The received RBEvent {} is from the ancient past! Currently, we don't have a way to deal with that and this event will be DISCARDED! The RBEvent queue will be re-synchronized...", last_rb_evid);
heartbeat.n_rbe_discarded_tot += 1;
heartbeat.n_rbe_from_past += 1;
//*too_early_rbevents.get_mut(&rb_ev.header.rb_id).unwrap() += 1;
continue;
}
// Now try to get the master trigger event for
// this RBEvent
match event_cache.get_mut(&last_rb_evid) {
None => {
// This means that either we dropped the MTB event,
// or the RBEvent is from the future
if last_rb_evid < *event_id_cache.back().unwrap() {
// we know that this is neither too late nor too early!
heartbeat.rbe_wo_mte += 1;
}
heartbeat.n_rbe_discarded_tot += 1;
heartbeat.n_rbe_orphan += 1;
let delta_evid = last_rb_evid - *event_id_cache.back().unwrap();
debug!("We can't associate event id {} from RB {} with a MTEvent in range {} .. {}. It is {} event ids ahead !", last_rb_evid, rb_ev.header.rb_id, event_id_cache[0], event_id_cache.back().unwrap(), delta_evid);
debug!("{}", rb_ev);
//let orphan_pack = rb_ev.pack();
//writer.add_tof_packet(&orphan_pack);
continue 'main;
},
Some(ev) => {
if settings.build_strategy == BuildStrategy::AdaptiveThorough {
match mtb_link_map.get(&rb_ev.header.rb_id) {
None => {
error!("Don't know MTB Link ID for {}", rb_ev.header.rb_id);
error!("This RBEvent gets discarded!");
}
Some(link_id) => {
if ev.mt_event.get_rb_link_ids().contains(link_id) {
ev.rb_events.push(rb_ev);
} else {
error!("MT Event {}", ev.mt_event);
error!("RBEvent {} has the same event id, but does not show up in MTB Link ID mask!", rb_ev);
}
}
}
} else {
// Just ad it without questioning
ev.rb_events.push(rb_ev);
//println!("[EVTBUILDER] DEBUG n rb expected : {}, n rbs {}",ev.mt_event.get_n_rbs_expected(), ev.rb_events.len());
}
//break;
}
}
}
}
}
// FIXME - timing debugging
let debug_timer_elapsed = debug_timer.elapsed().as_secs_f64();
//println!("Debug timer elapsed {}", debug_timer_elapsed);
if debug_timer_elapsed > 35.0 {
debug_timer = Instant::now();
}
trace!("Debug timer RBE received! {:?}", debug_timer.elapsed());
// -----------------------------------------------------
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// This concludes the actually "event building" part
// -----------------------------------------------------
let av_rb_ev = n_rbe_per_te as f64 / n_sent as f64;
if settings.build_strategy == BuildStrategy::Adaptive ||
settings.build_strategy == BuildStrategy::AdaptiveThorough {
settings.n_rbe_per_loop = av_rb_ev.ceil() as u32;
// if the rb in the pipeline get too long, catch up
// and drain it a bit
if ev_from_rb.len() > 1000 {
settings.n_rbe_per_loop = ev_from_rb.len() as u32 - 500;
}
if settings.n_rbe_per_loop == 0 {
// failsafe
settings.n_rbe_per_loop = 40;
}
}
if let BuildStrategy::AdaptiveGreedy = settings.build_strategy {
settings.n_rbe_per_loop = av_rb_ev.ceil() as u32 + settings.greediness as u32;
if settings.n_rbe_per_loop == 0 {
// failsafe
settings.n_rbe_per_loop = 40;
}
}
heartbeat.n_rbe_per_loop = settings.n_rbe_per_loop as usize;
//-----------------------------------------
// From here on, we are checking all events
// in the cache, deciding which ones are
// ready to be passed on
// ----------------------------------------
let mut prior_ev_sent = 0u32;
let mut first_ev_sent = false;
for idx in 0..event_id_cache.len() {
// if there wasn't a first element, size would be 0
let evid = event_id_cache.pop_front().unwrap();
match event_cache.get(&evid) {
None => {
error!("Event id and event caches are misaligned for event id {}, idx {} and sizes {} {}! This is BAD and most likely a BUG!", evid, idx, event_cache.len(), event_id_cache.len());
continue;
},
Some(ev) => {
let ev_timed_out = ev.age() >= settings.te_timeout_sec as u64;
// timed out events should be sent in any case
let mut ready_to_send = ev_timed_out;
if ev_timed_out {
if !ev.is_complete() {
heartbeat.n_timed_out += 1;
}
} else {
// we are earlier than our time out, maybe the
// event is already complete
match settings.build_strategy {
BuildStrategy::WaitForNBoards => {
// we will always wait for the expected number of boards,
// except the event times out
if ev.rb_events.len() as u8 == settings.wait_nrb {
ready_to_send = true;
} // else ready_to_send is still false
},
BuildStrategy::Adaptive
| BuildStrategy::AdaptiveThorough
| BuildStrategy::AdaptiveGreedy
| BuildStrategy::Smart
| BuildStrategy::Unknown => {
if ev.is_complete() {
ready_to_send = true;
}
}
}
}
// this feature tries to sort the events which are getting sent
// by id. This might lead to timed out events and more resources needed
if settings.sort_events {
if ready_to_send && !ev_timed_out {
if idx == 0 {
first_ev_sent = true;
prior_ev_sent = ev.header.event_id;
} else {
if idx == 1 {
if !first_ev_sent {
// we wait and check the others too see if something
// else timed out
ready_to_send = false;
}
}
if ev.header.event_id != (prior_ev_sent + 1) {
// we wait and check the others too see if something
// else timed out
ready_to_send = false;
}
prior_ev_sent = ev.header.event_id;
}
}
}
if ready_to_send {
// if we don't cache it, we have to send it.
//let ev_to_send = ev.clone();
// so the idea here is that this happens way less
// often (a few times per main loop iteration)
// than the cache it case, so we rather do something
// here even if it might require re-allocating memory
// we should have an eye on performance though
//idx_to_remove.push(idx);
let mut ev_to_send = event_cache.remove(&evid).unwrap();
if ev_timed_out {
ev_to_send.mt_event.event_status = EventStatus::EventTimeOut;
}
// update event status, so that we will also see in an
// (optionally) produced tof event summary if the
// event has isuses
n_rbe_per_te += ev_to_send.rb_events.len();
if ev_to_send.has_any_mangling() {
heartbeat.data_mangled_ev += 1;
}
// sum up lost hits due to drs4 deadtime
heartbeat.drs_bsy_lost_hg_hits += ev_to_send.get_lost_hits() as usize;
let mut save_to_disk = true;
n_sent += 1;
heartbeat.n_sent += 1;
if send_tev_sum {
let tes = ev_to_send.get_summary();
if settings.only_save_interesting {
save_to_disk = false;
if tes.n_hits_umb >= settings.thr_n_hits_umb
&& tes.n_hits_cbe >= settings.thr_n_hits_cbe
&& tes.n_hits_cor >= settings.thr_n_hits_cor
&& tes.tot_edep_umb >= settings.thr_tot_edep_umb
&& tes.tot_edep_cbe >= settings.thr_tot_edep_cbe
&& tes.tot_edep_cor >= settings.thr_tot_edep_cor {
save_to_disk = true;
}
}
let pack = tes.pack();
match data_sink.send(pack) {
Err(err) => {
error!("Packet sending failed! Err {}", err);
}
Ok(_) => {
debug!("Event with id {} sent!", evid);
}
}
}
//if
if send_rbwaveform {
if rbwf_ctr == send_rbwf_freq as u64 {
for wf in ev_to_send.get_rbwaveforms() {
let pack = wf.pack();
match data_sink.send(pack) {
Err(err) => {
error!("Packet sending failed! Err {}", err);
}
Ok(_) => {
debug!("Event with id {} sent!", evid);
}
}
}
rbwf_ctr = 0;
}
rbwf_ctr += 1; // increase for every event, not wf
}
// always sent TofEvents, so they get written to disk.
// There is one exception though, in case we have
// "interesting" event cuts in place, then this can
// be restricted.
if save_to_disk {
let pack = ev_to_send.pack();
match data_sink.send(pack) {
Err(err) => {
error!("Packet sending failed! Err {}", err);
}
Ok(_) => {
debug!("Event with id {} sent!", evid);
}
}
}
// this happens when we are NOT ready to send -> cache it!
} else {
event_id_cache.push_front(evid);
}
}
}
} // end loop over event_id_cache
if hb_timer.elapsed() >= hb_interval {
// make sure the heartbeat has the latest mission elapsed time
heartbeat.met_seconds += hb_timer.elapsed().as_secs_f64() as usize;
// get the length of the various caches at this moment in time
heartbeat.event_cache_size = event_cache.len();
heartbeat.event_id_cache_size = event_id_cache.len();
heartbeat.mte_receiver_cbc_len = m_trig_ev.len();
heartbeat.rbe_receiver_cbc_len = ev_from_rb.len();
heartbeat.tp_sender_cbc_len = data_sink.len();
let pack = heartbeat.pack();
match data_sink.send(pack) {
Err(err) => {
error!("Packet sending failed! Err {}", err);
}
Ok(_) => {
}
}
hb_timer = Instant::now();
}
} // end loop
}