19 """Simple script to create an OKS configuration file for a dataflow segment.
21 The file will automatically include the relevant schema files and
22 any other OKS files you specify.
26 "schema/confmodel/dunedaq.schema.xml",
27 "schema/appmodel/application.schema.xml",
30 res, extra_includes = find_oksincludes(include, os.path.dirname(oksfile))
32 includefiles += extra_includes
38 if not oksfile.endswith(
".data.xml"):
39 oksfile = oksfile +
".data.xml"
40 print(f
"Creating OKS database file {oksfile}")
41 db.create_db(oksfile, includefiles)
42 db.set_active(oksfile)
45 for vhost
in db.get_dals(class_name=
"VirtualHost"):
46 hosts.append(vhost.id)
47 if vhost.id ==
"vlocalhost":
49 if "vlocalhost" not in hosts:
50 cpus = dal.ProcessingResource(
"cpus", cpu_cores=[0, 1, 2, 3])
52 phdal = dal.PhysicalHost(
"localhost", contains=[cpus])
54 host = dal.VirtualHost(
"vlocalhost", runs_on=phdal, uses=[cpus])
56 hosts.append(
"vlocalhost")
59 daqapp_control = db.get_dal(class_name=
"Service", uid=
"daqapp_control")
60 rccontroller_control = db.get_dal(class_name=
"Service", uid=
"rccontroller_control")
63 tpw_source_id = db.get_dal(
"SourceIDConf", uid=
"srcid-tp-stream-writer")
66 trigger_record_q_rule = db.get_dal(
67 class_name=
"QueueConnectionRule", uid=
"trigger-record-q-rule"
69 dfapp_qrules = [trigger_record_q_rule]
72 frag_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"frag-net-rule")
73 df_token_net_rule = db.get_dal(
74 class_name=
"NetworkConnectionRule", uid=
"df-token-net-rule"
76 tpset_net_rule = db.get_dal(
77 class_name=
"NetworkConnectionRule", uid=
"tpset-net-rule"
79 ti_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"ti-net-rule")
80 td_dfo_net_rule = db.get_dal(
81 class_name=
"NetworkConnectionRule", uid=
"td-dfo-net-rule"
83 td_trb_net_rule = db.get_dal(
84 class_name=
"NetworkConnectionRule", uid=
"td-trb-net-rule"
86 data_req_trig_net_rule = db.get_dal(
87 class_name=
"NetworkConnectionRule", uid=
"data-req-trig-net-rule"
89 data_req_hsi_net_rule = db.get_dal(
90 class_name=
"NetworkConnectionRule", uid=
"data-req-hsi-net-rule"
92 data_req_readout_net_rule = db.get_dal(
93 class_name=
"NetworkConnectionRule", uid=
"data-req-readout-net-rule"
99 data_req_hsi_net_rule,
100 data_req_readout_net_rule,
101 data_req_trig_net_rule,
107 trmon_req_net_rule = db.get_dal(
108 class_name=
"NetworkConnectionRule", uid=
"trmon-req-net-rule"
110 trigger_record_net_rule = db.get_dal(
111 class_name=
"NetworkConnectionRule", uid=
"trigger-record-net-rule"
113 dfapp_netrules.append(trmon_req_net_rule)
114 dfapp_netrules.append(trigger_record_net_rule)
116 trmon_netrules.append(trigger_record_net_rule)
117 trigger_decision_token_q_rule = db.get_dal(
118 class_name=
"QueueConnectionRule", uid=
"trigger-decision-token-q-rule"
120 trmon_qrules.append(trigger_decision_token_q_rule)
122 dfo_netrules = [td_dfo_net_rule, ti_net_rule, df_token_net_rule]
123 tpw_netrules = [tpset_net_rule]
125 opmon_conf = db.get_dal(class_name=
"OpMonConf", uid=
"slow-all-monitoring")
127 dfo_conf = db.get_dal(class_name=
"DFOConf", uid=
"dfoconf-01")
128 dfo = dal.DFOApplication(
131 application_name=
"daq_application",
132 exposes_service=[daqapp_control],
133 network_rules=dfo_netrules,
134 opmon_conf=opmon_conf,
139 trb_conf = db.get_dal(class_name=
"TRBConf", uid=
"trb-01")
140 dw_conf = db.get_dal(class_name=
"DataWriterConf", uid=
"dw-01")
141 dfhw = db.get_dal(class_name=
"DFHWConf", uid=
"dfhw-01")
143 for dfapp_idx
in range(n_dfapps):
144 dfapp_id = dfapp_idx + 1
147 dfapp_source_id = dal.SourceIDConf(
148 f
"srcid-df-{dfapp_id:02}", sid=dfapp_id + 1, subsystem=
"TR_Builder"
150 db.update_dal(dfapp_source_id)
152 dfapp = dal.DFApplication(
155 application_name=
"daq_application",
156 exposes_service=[daqapp_control],
157 source_id=dfapp_source_id,
158 queue_rules=dfapp_qrules,
159 network_rules=dfapp_netrules,
160 opmon_conf=opmon_conf,
162 data_writers=[dw_conf] * n_data_writers,
169 if tpwriting_enabled:
170 tpw_writer_conf = db.get_dal(
171 class_name=
"TPStreamWriterConf", uid=
"tp-stream-writer-conf"
174 tpwapp = dal.TPStreamWriterApplication(
177 application_name=
"daq_application",
178 exposes_service=[daqapp_control],
179 source_id=tpw_source_id,
180 network_rules=tpw_netrules,
181 opmon_conf=opmon_conf,
182 tp_writer=tpw_writer_conf,
184 db.update_dal(tpwapp)
185 tpwapps.append(tpwapp)
189 trmonconf = db.get_dal(class_name=
"TRMonRequestorConf", uid=
"trmr-01")
190 trmondwconf = db.get_dal(class_name=
"DataWriterConf", uid=
"tr_mon_dw-01")
192 trmonapp = dal.TRMonReqApplication(
195 application_name=
"daq_application",
196 exposes_service=[daqapp_control],
197 network_rules=trmon_netrules,
198 queue_rules=trmon_qrules,
199 opmon_conf=opmon_conf,
201 data_writer=trmondwconf,
204 db.update_dal(trmonapp)
205 trmonapps.append(trmonapp)
208 fsm = db.get_dal(class_name=
"FSMconfiguration", uid=
"FSMconfiguration_noAction")
209 controller = dal.RCApplication(
211 application_name=
"drunc-controller",
214 opmon_conf=opmon_conf,
215 exposes_service=[rccontroller_control],
217 db.update_dal(controller)
221 controller=controller,
222 applications=[dfo] + dfapps + tpwapps + trmonapps,
228 except RuntimeError
as err:
229 print(
"Failed to commit Dataflow DB!")
230 print(traceback.format_exc())
240 """Simple script to create an OKS configuration file for a FakeHSI segment.
242 The file will automatically include the relevant schema files and
243 any other OKS files you specify.
249 "schema/confmodel/dunedaq.schema.xml",
250 "schema/appmodel/application.schema.xml",
251 "schema/appmodel/trigger.schema.xml",
254 res, extra_includes = find_oksincludes(include, os.path.dirname(oksfile))
256 includefiles += extra_includes
262 if not oksfile.endswith(
".data.xml"):
263 oksfile = oksfile +
".data.xml"
264 print(f
"Creating OKS database file {oksfile}")
265 db.create_db(oksfile, includefiles)
266 db.set_active(oksfile)
269 for vhost
in db.get_dals(class_name=
"VirtualHost"):
270 hosts.append(vhost.id)
271 if vhost.id ==
"vlocalhost":
273 if "vlocalhost" not in hosts:
274 cpus = dal.ProcessingResource(
"cpus", cpu_cores=[0, 1, 2, 3])
276 phdal = dal.PhysicalHost(
"localhost", contains=[cpus])
278 host = dal.VirtualHost(
"vlocalhost", runs_on=phdal, uses=[cpus])
280 hosts.append(
"vlocalhost")
283 daqapp_control = db.get_dal(class_name=
"Service", uid=
"daqapp_control")
284 rccontroller_control = db.get_dal(class_name=
"Service", uid=
"rccontroller_control")
285 dataRequests = db.get_dal(class_name=
"Service", uid=
"dataRequests")
286 hsievents = db.get_dal(class_name=
"Service", uid=
"HSIEvents")
289 hsi_source_id = db.get_dal(class_name=
"SourceIDConf", uid=
"hsi-srcid-01")
290 hsi_tc_source_id = db.get_dal(class_name=
"SourceIDConf", uid=
"hsi-tc-srcid-1")
293 hsi_dlh_queue_rule = db.get_dal(
294 class_name=
"QueueConnectionRule", uid=
"hsi-dlh-data-requests-queue-rule"
296 hsi_qrules = [hsi_dlh_queue_rule]
299 tc_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"tc-net-rule")
300 hsi_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"hsi-rule")
301 ts_hsi_net_rule = db.get_dal(
302 class_name=
"NetworkConnectionRule", uid=
"ts-hsi-net-rule"
304 data_req_hsi_net_rule = db.get_dal(
305 class_name=
"NetworkConnectionRule", uid=
"data-req-hsi-net-rule"
307 hsi_netrules = [hsi_rule, data_req_hsi_net_rule, ts_hsi_net_rule]
308 tc_netrules = [hsi_rule, tc_net_rule]
310 opmon_conf = db.get_dal(class_name=
"OpMonConf", uid=
"slow-all-monitoring")
311 hsi_handler = db.get_dal(class_name=
"DataHandlerConf", uid=
"def-hsi-handler")
312 fakehsi = db.get_dal(class_name=
"FakeHSIEventGeneratorConf", uid=
"fakehsi")
314 hsi = dal.FakeHSIApplication(
317 application_name=
"daq_application",
318 exposes_service=[daqapp_control],
319 source_id=hsi_source_id,
320 queue_rules=hsi_qrules,
321 network_rules=hsi_netrules,
322 opmon_conf=opmon_conf,
323 link_handler=hsi_handler,
328 hsi_to_tc_conf = db.get_dal(class_name=
"HSI2TCTranslatorConf", uid=
"hsi-to-tc-conf")
330 hsi_to_tc = dal.HSIEventToTCApplication(
333 application_name=
"daq_application",
334 exposes_service=[dataRequests, hsievents, daqapp_control],
335 source_id=hsi_tc_source_id,
336 network_rules=tc_netrules,
337 opmon_conf=opmon_conf,
338 hsevent_to_tc_conf=hsi_to_tc_conf,
340 db.update_dal(hsi_to_tc)
343 fsm = db.get_dal(class_name=
"FSMconfiguration", uid=
"FSMconfiguration_noAction")
344 controller = dal.RCApplication(
346 application_name=
"drunc-controller",
349 opmon_conf=opmon_conf,
350 exposes_service=[rccontroller_control],
352 db.update_dal(controller)
355 f
"hsi-segment", controller=controller, applications=[hsi, hsi_to_tc]
372 """Simple script to create an OKS configuration file for all
373 ReadoutApplications defined in a readout map.
375 The file will automatically include the relevant schema files and
376 any other OKS files you specify.
379 generate_readoutOKS -i hosts \
380 -i appmodel/connections.data.xml -i appmodel/moduleconfs \
381 config/np04readoutmap.data.xml readoutApps.data.xml
383 Will load hosts, connections and moduleconfs data files as well as
384 the readoutmap (config/np04readoutmap.data.xml) and write the
385 generated apps to readoutApps.data.xml.
387 generate_readoutOKS --session --segment \
388 -i appmodel/fsm -i hosts \
389 -i appmodel/connections.data.xml -i appmodel/moduleconfs \
390 config/np04readoutmap.data.xml np04readout-session.data.xml
392 Will do the same but in addition it will generate a containing
393 Segment for the apps and a containing Session for the Segment.
395 NB: Currently FSM generation is not implemented so you must include
396 an fsm file in order to generate a Segment
400 if not readoutmap.endswith(
".data.xml"):
401 readoutmap = readoutmap +
".data.xml"
403 print(f
"Readout map file {readoutmap}")
407 "schema/confmodel/dunedaq.schema.xml",
408 "schema/appmodel/application.schema.xml",
409 "schema/appmodel/trigger.schema.xml",
410 "schema/appmodel/fdmodules.schema.xml",
411 "schema/appmodel/wiec.schema.xml",
414 if os.path.exists(readoutmap)
418 searchdirs = [path
for path
in os.environ[
"DUNEDAQ_DB_PATH"].split(
":")]
419 searchdirs.append(os.path.dirname(oksfile))
423 inc = inc.removesuffix(
".xml")
424 if inc.endswith(
".data"):
425 sub_dirs = [
"config",
"data"]
426 elif inc.endswith(
".schema"):
427 sub_dirs = [
"schema"]
431 for path
in searchdirs:
433 matches = glob.glob(f
"{inc}.xml", root_dir=path)
434 if len(matches) == 0:
435 for search_dir
in sub_dirs:
437 matches = glob.glob(f
"{search_dir}/{inc}.xml", root_dir=path)
438 for filename
in matches:
439 if filename
not in includefiles:
440 print(f
"Adding {filename} to include list")
441 includefiles.append(filename)
443 print(f
"{filename} already in include list")
451 for filename
in matches:
452 if filename
not in includefiles:
453 print(f
"Adding {filename} to include list")
454 includefiles.append(filename)
456 print(f
"{filename} already in include list")
461 print(f
"Error could not find include file for {inc}")
466 if not oksfile.endswith(
".data.xml"):
467 oksfile = oksfile +
".data.xml"
468 print(f
"Creating OKS database file {oksfile}")
469 db.create_db(oksfile, includefiles)
470 db.set_active(oksfile)
472 detector_connections = db.get_dals(class_name=
"DetectorToDaqConnection")
473 daqapp_control = db.get_dal(class_name=
"Service", uid=
"daqapp_control")
474 rccontroller_control = db.get_dal(class_name=
"Service", uid=
"rccontroller_control")
478 class_name=
"NetworkConnectionRule", uid=
"data-req-readout-net-rule"
482 'Expected NetworkConnectionRule "data-req-readout-net-rule" not found in input databases!'
487 for rule
in [
"tpset-net-rule",
"ts-net-rule",
"ta-net-rule"]:
488 netrules.append(db.get_dal(class_name=
"NetworkConnectionRule", uid=rule))
492 class_name=
"QueueConnectionRule", uid=
"fd-dlh-data-requests-queue-rule"
496 'Expected QueueConnectionRule "fd-dlh-data-requests-queue-rule" not found in input databases!'
504 qrules.append(db.get_dal(class_name=
"QueueConnectionRule", uid=rule))
507 if len(hosts_to_use) == 0:
508 for vhost
in db.get_dals(class_name=
"VirtualHost"):
509 if vhost.id ==
"vlocalhost":
510 hosts.append(vhost.id)
511 if "vlocalhost" not in hosts:
512 cpus = dal.ProcessingResource(
"cpus", cpu_cores=[0, 1, 2, 3])
514 phdal = dal.PhysicalHost(
"localhost", contains=[cpus])
516 host = dal.VirtualHost(
"vlocalhost", runs_on=phdal, uses=[cpus])
518 hosts.append(
"vlocalhost")
520 for vhost
in db.get_dals(class_name=
"VirtualHost"):
521 if vhost.id
in hosts_to_use:
522 hosts.append(vhost.id)
523 assert len(hosts) > 0
525 rohw = dal.RoHwConfig(f
"rohw-{detector_connections[0].id}")
528 opmon_conf = db.get_dal(class_name=
"OpMonConf", uid=
"slow-all-monitoring")
529 fragagg = db.get_dal(class_name=
"FragmentAggregatorConf", uid=
"frag-agg-01")
537 for connection
in detector_connections:
539 geo_id = connection.get(
"GeoId")
540 det_id = geo_id[0].detector_id
542 raise Exception(f
"Unable to determine detector ID from Hardware Map!")
544 tphandler = db.get_dal(class_name=
"DataHandlerConf", uid=
"def-tp-handler")
547 if "DAPHNEStream" in emulated_file_name:
548 linkhandler = db.get_dal(
549 class_name=
"DataHandlerConf", uid=
"def-pds-stream-link-handler"
551 cb_desc = db.get_dal(
552 class_name=
"DataMoveCallbackDescriptor", uid=
"pds-stream-raw-input"
555 linkhandler = db.get_dal(
556 class_name=
"DataHandlerConf", uid=
"def-pds-link-handler"
558 cb_desc = db.get_dal(
559 class_name=
"DataMoveCallbackDescriptor", uid=
"pds-raw-input"
562 elif det_id == 3
or det_id == 10:
563 linkhandler = db.get_dal(
564 class_name=
"DataHandlerConf", uid=
"def-link-handler"
566 cb_desc = db.get_dal(
567 class_name=
"DataMoveCallbackDescriptor", uid=
"wib-eth-raw-input"
570 linkhandler = db.get_dal(
571 class_name=
"DataHandlerConf", uid=
"def-tde-link-handler"
573 cb_desc = db.get_dal(
574 class_name=
"DataMoveCallbackDescriptor", uid=
"tde-raw-input"
577 linkhandler = db.get_dal(
578 class_name=
"DataHandlerConf", uid=
"def-crt-bern-link-handler"
581 cb_desc = db.get_dal(
582 class_name=
"DataMoveCallbackDescriptor", uid=
"crt-bern-raw-input"
585 linkhandler = db.get_dal(
586 class_name=
"DataHandlerConf", uid=
"def-crt-grenoble-link-handler"
589 cb_desc = db.get_dal(
590 class_name=
"DataMoveCallbackDescriptor", uid=
"crt-grenoble-raw-input"
593 hostnum = appnum % len(hosts)
595 host = db.get_dal(class_name=
"VirtualHost", uid=hosts[hostnum])
598 if connection.className() ==
"NetworkDetectorToDaqConnection":
599 receiver = connection.net_receiver
600 elif connection.className() ==
"FelixDetectorToDaqConnection":
601 receiver = connection.felix_receiver
604 readout_start = db.get_dal(class_name=
"ActionPlan", uid=
"readout-start")
605 readout_stop = db.get_dal(class_name=
"ActionPlan", uid=
"readout-stop")
608 if type(receiver).__name__ ==
"FakeDataReceiver":
611 stream_emu = db.get_dal(
612 class_name=
"StreamEmulationParameters", uid=
"stream-emu"
614 stream_emu.data_file_name = resolve_asset_file(emulated_file_name)
615 db.update_dal(stream_emu)
617 stream_emu = dal.StreamEmulationParameters(
619 data_file_name=resolve_asset_file(emulated_file_name),
620 input_file_size_limit=5777280,
622 random_population_size=100000,
623 frame_error_rate_hz=0,
624 generate_periodic_adc_pattern=
True,
625 TP_rate_per_channel=1,
627 db.update_dal(stream_emu)
629 print(
"Generating fake DataReaderConf")
630 nicrec = dal.DPDKReaderConf(
632 template_for=
"FDFakeReaderModule",
634 emulation_conf=stream_emu,
636 db.update_dal(nicrec)
638 elif type(receiver).__name__ ==
"DPDKReceiver":
640 print(
"Generating DPDKReaderConf")
641 nicrec = dal.DPDKReaderConf(
642 f
"nicrcvr-dpdk-gen", template_for=
"DPDKReaderModule"
644 db.update_dal(nicrec)
647 wm_conf = db.get_dal(
"WIBModuleConf",
"def-wib-conf")
650 'Expected WIBModuleConf "def-wib-conf" not found in input databases!'
652 if hermes_conf ==
None:
654 hermes_conf = db.get_dal(
"HermesModuleConf",
"def-hermes-conf")
657 'Expected HermesModuleConf "def-hermes-conf" not found in input databases!'
662 wiec_app = dal.WIECApplication(
663 f
"wiec-{connection.id}",
664 application_name=
"daq_application",
666 detector_connections=[connection],
667 wib_module_conf=wm_conf,
668 hermes_module_conf=hermes_conf,
669 exposes_service=[daqapp_control],
671 db.update_dal(wiec_app)
673 elif type(receiver).__name__ ==
"FelixInterface":
675 print(
"Generating Felix DataReaderConf")
676 flxcard = dal.DataReaderConf(
677 f
"flxConf-1", template_for=
"FelixReaderModule"
679 db.update_dal(flxcard)
681 elif type(receiver).__name__ ==
"FileReaderReceiver":
684 snb_files = db.get_dal(
685 class_name=
"SNBFileSourceParameters",
686 uid=f
"snb-files-{connection.id}",
688 snb_files.data_files = [resolve_asset_file(emulated_file_name)]
689 db.update_dal(snb_files)
691 snb_files = dal.SNBFileSourceParameters(
693 data_files=[resolve_asset_file(emulated_file_name)],
694 input_buffer_size=5777280,
695 file_compression_algorithm=
"None",
697 db.update_dal(snb_files)
699 print(
"Generating fake DataReaderConf")
700 nicrec = dal.SNBFileReaderConf(
701 f
"nicrcvr-file-reader",
702 template_for=
"SNBFileReaderModule",
706 db.update_dal(nicrec)
709 print(f
"Using SNB DataHandler")
710 linkhandler.template_for =
"SNBDataHandlerModule"
711 db.update_dal(linkhandler)
713 readout_start = db.get_dal(class_name=
"ActionPlan", uid=
"snb-readout-start")
714 readout_stop = db.get_dal(class_name=
"ActionPlan", uid=
"snb-readout-stop")
717 f
"ReadoutGroup contains unknown interface type {type(receiver).__name__}"
724 dataRequests = db.get_dal(class_name=
"Service", uid=
"dataRequests")
725 timeSyncs = db.get_dal(class_name=
"Service", uid=
"timeSyncs")
726 triggerActivities = db.get_dal(class_name=
"Service", uid=
"triggerActivities")
727 triggerPrimitives = db.get_dal(class_name=
"Service", uid=
"triggerPrimitives")
729 ru = dal.ReadoutApplication(
730 f
"ru-{connection.id}",
731 application_name=
"daq_application",
733 detector_connections=[connection],
734 network_rules=netrules,
736 link_handler=linkhandler,
737 data_reader=datareader,
738 fragment_aggregator=fragagg,
739 opmon_conf=opmon_conf,
740 tp_generation_enabled=tpg_enabled,
741 ta_generation_enabled=tpg_enabled,
743 exposes_service=[daqapp_control, dataRequests, timeSyncs],
744 action_plans=[readout_start, readout_stop],
745 callback_desc=cb_desc,
748 ru.tp_handler = tphandler
750 tpbaseid = (appnum * 3) + 100
753 for plane
in range(1
if det_id
not in [3, 10, 11]
else 3):
754 s_id = tpbaseid + plane
755 tps_dal = dal.SourceIDConf(
756 f
"tp-srcid-{s_id}", sid=s_id, subsystem=
"Trigger"
758 db.update_dal(tps_dal)
759 tp_sources.append(tps_dal)
760 ru.tp_source_ids = tp_sources
761 ru.exposes_service += [triggerActivities, triggerPrimitives]
768 print(f
"No ReadoutApplications generated\n")
775 fsm = db.get_dal(class_name=
"FSMconfiguration", uid=
"FSMconfiguration_noAction")
776 controller = dal.RCApplication(
778 application_name=
"drunc-controller",
781 opmon_conf=opmon_conf,
782 exposes_service=[rccontroller_control],
784 db.update_dal(controller)
787 seg = dal.Segment(f
"ru-segment", controller=controller, applications=ruapps)
796 oksfile, include, generate_segment, n_streams, n_apps, det_id, fragment_type=None
798 """Simple script to create an OKS configuration file for a FakeDataProd-based readout segment.
800 The file will automatically include the relevant schema files and
801 any other OKS files you specify.
806 "schema/confmodel/dunedaq.schema.xml",
807 "schema/appmodel/application.schema.xml",
810 res, extra_includes = find_oksincludes(include, os.path.dirname(oksfile))
812 includefiles += extra_includes
818 if not oksfile.endswith(
".data.xml"):
819 oksfile = oksfile +
".data.xml"
820 print(f
"Creating OKS database file {oksfile}")
821 db.create_db(oksfile, includefiles)
822 db.set_active(oksfile)
825 for vhost
in db.get_dals(class_name=
"VirtualHost"):
826 hosts.append(vhost.id)
827 if vhost.id ==
"vlocalhost":
829 if "vlocalhost" not in hosts:
830 cpus = dal.ProcessingResource(
"cpus", cpu_cores=[0, 1, 2, 3])
832 phdal = dal.PhysicalHost(
"localhost", contains=[cpus])
834 host = dal.VirtualHost(
"vlocalhost", runs_on=phdal, uses=[cpus])
836 hosts.append(
"vlocalhost")
841 daqapp_control = db.get_dal(class_name=
"Service", uid=
"daqapp_control")
842 rccontroller_control = db.get_dal(class_name=
"Service", uid=
"rccontroller_control")
843 dataRequests = db.get_dal(class_name=
"Service", uid=
"dataRequests")
844 timeSyncs = db.get_dal(class_name=
"Service", uid=
"timeSyncs")
845 opmon_conf = db.get_dal(class_name=
"OpMonConf", uid=
"slow-all-monitoring")
846 fragagg = db.get_dal(class_name=
"FragmentAggregatorConf", uid=
"frag-agg-01")
849 class_name=
"NetworkConnectionRule", uid=
"data-req-readout-net-rule"
852 for rule
in [
"ts-fdp-net-rule"]:
853 netrules.append(db.get_dal(class_name=
"NetworkConnectionRule", uid=rule))
857 class_name=
"QueueConnectionRule", uid=
"fpdm-data-requests-queue-rule"
861 'Expected QueueConnectionRule "fpdm-data-requests-queue-rule" not found in input databases!'
868 qrules.append(db.get_dal(class_name=
"QueueConnectionRule", uid=rule))
873 time_tick_diff = 32 * 64
875 fragment_type =
"WIBEth"
877 if fragment_type ==
"DAPHNEEthStream":
881 elif fragment_type ==
"DAPHNEEth":
883 time_tick_diff = 1024
887 f
"FakeDataProd fragment_type '{fragment_type}' not recognized for detector ID {det_id}; "
888 f
"expected 'DAPHNEEthStream' or 'DAPHNEEth'"
892 f
"FakeDataProd parameters not configured for detector ID {det_id}"
895 for appidx
in range(n_apps):
897 fakeapp = dal.FakeDataApplication(
898 f
"fakedata_{appidx}",
900 application_name=
"daq_application",
901 exposes_service=[daqapp_control, dataRequests, timeSyncs],
903 network_rules=netrules,
904 fragment_aggregator=fragagg,
905 opmon_conf=opmon_conf,
908 for streamidx
in range(n_streams):
909 stream = dal.FakeDataProdConf(
910 f
"fakedata_{appidx}_stream_{streamidx}",
911 system_type=
"Detector_Readout",
913 time_tick_diff=time_tick_diff,
914 frame_size=frame_size,
915 response_delay=response_delay,
916 fragment_type=fragment_type,
918 db.update_dal(stream)
919 fakeapp.producers.append(stream)
920 source_id = source_id + 1
922 db.update_dal(fakeapp)
923 fakeapps.append(fakeapp)
926 fsm = db.get_dal(class_name=
"FSMconfiguration", uid=
"FSMconfiguration_noAction")
927 controller = dal.RCApplication(
929 application_name=
"drunc-controller",
930 opmon_conf=opmon_conf,
933 exposes_service=[rccontroller_control],
935 db.update_dal(controller)
939 controller=controller,
940 applications=fakeapps,
955 """Simple script to create an OKS configuration file for a trigger segment.
957 The file will automatically include the relevant schema files and
958 any other OKS files you specify.
963 "schema/confmodel/dunedaq.schema.xml",
964 "schema/appmodel/application.schema.xml",
965 "schema/appmodel/trigger.schema.xml",
968 res, extra_includes = find_oksincludes(include, os.path.dirname(oksfile))
970 includefiles += extra_includes
976 if not oksfile.endswith(
".data.xml"):
977 oksfile = oksfile +
".data.xml"
978 print(f
"Creating OKS database file {oksfile}")
979 db.create_db(oksfile, includefiles)
980 db.set_active(oksfile)
983 for vhost
in db.get_dals(class_name=
"VirtualHost"):
984 hosts.append(vhost.id)
985 if vhost.id ==
"vlocalhost":
987 if "vlocalhost" not in hosts:
988 cpus = dal.ProcessingResource(
"cpus", cpu_cores=[0, 1, 2, 3])
990 phdal = dal.PhysicalHost(
"localhost", contains=[cpus])
992 host = dal.VirtualHost(
"vlocalhost", runs_on=phdal, uses=[cpus])
994 hosts.append(
"vlocalhost")
997 daqapp_control = db.get_dal(class_name=
"Service", uid=
"daqapp_control")
998 rccontroller_control = db.get_dal(class_name=
"Service", uid=
"rccontroller_control")
999 dataRequests = db.get_dal(class_name=
"Service", uid=
"dataRequests")
1000 triggerActivities = db.get_dal(class_name=
"Service", uid=
"triggerActivities")
1001 triggerCandidates = db.get_dal(class_name=
"Service", uid=
"triggerCandidates")
1002 triggerInhibits = db.get_dal(class_name=
"Service", uid=
"triggerInhibits")
1005 mlt_source_id = db.get_dal(class_name=
"SourceIDConf", uid=
"tc-srcid-1")
1006 tc_source_id = db.get_dal(class_name=
"SourceIDConf", uid=
"ta-srcid-1")
1009 tc_queue_rule = db.get_dal(class_name=
"QueueConnectionRule", uid=
"tc-queue-rule")
1010 td_queue_rule = db.get_dal(class_name=
"QueueConnectionRule", uid=
"td-queue-rule")
1011 ta_queue_rule = db.get_dal(class_name=
"QueueConnectionRule", uid=
"ta-queue-rule")
1012 mlt_qrules = [tc_queue_rule, td_queue_rule]
1013 tapp_qrules = [ta_queue_rule]
1016 tc_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"tc-net-rule")
1017 ta_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"ta-net-rule")
1018 ts_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"ts-net-rule")
1019 ti_net_rule = db.get_dal(class_name=
"NetworkConnectionRule", uid=
"ti-net-rule")
1020 td_dfo_net_rule = db.get_dal(
1021 class_name=
"NetworkConnectionRule", uid=
"td-dfo-net-rule"
1023 data_req_trig_net_rule = db.get_dal(
1024 class_name=
"NetworkConnectionRule", uid=
"data-req-trig-net-rule"
1030 data_req_trig_net_rule,
1033 tapp_netrules = [ta_net_rule, tc_net_rule, data_req_trig_net_rule]
1035 opmon_conf = db.get_dal(class_name=
"OpMonConf", uid=
"slow-all-monitoring")
1036 tc_subscriber = db.get_dal(class_name=
"DataReaderConf", uid=
"tc-subscriber-1")
1037 tc_handler = db.get_dal(class_name=
"DataHandlerConf", uid=
"def-tc-handler")
1038 mlt_conf = db.get_dal(class_name=
"MLTConf", uid=
"def-mlt-conf")
1039 random_tc_generator = db.get_dal(
1040 class_name=
"RandomTCMakerConf", uid=
"random-tc-generator"
1045 fixedtime_tc_generator = db.get_dal(
1046 class_name=
"FixedTimeTCMakerModuleConf",
1050 f
"FixedTimeTCMakerModule has been configured, disabling random triggers and HSI"
1052 tc_confs = [fixedtime_tc_generator]
1055 if not hsi_enabled
and len(tc_confs) == 0:
1056 tc_confs = [random_tc_generator]
1058 mlt = dal.MLTApplication(
1061 application_name=
"daq_application",
1068 source_id=mlt_source_id,
1069 queue_rules=mlt_qrules,
1070 network_rules=mlt_netrules,
1071 opmon_conf=opmon_conf,
1072 data_subscriber=tc_subscriber,
1073 trigger_inputs_handler=tc_handler,
1075 standalone_candidate_maker_confs=tc_confs,
1080 ta_subscriber = db.get_dal(class_name=
"DataReaderConf", uid=
"ta-subscriber-1")
1081 ta_handler = db.get_dal(class_name=
"DataHandlerConf", uid=
"def-ta-handler")
1084 tc_maker_start = db.get_dal(class_name=
"ActionPlan", uid=
"tc-maker-start")
1086 tcmaker = dal.TriggerApplication(
1089 application_name=
"daq_application",
1090 exposes_service=[daqapp_control, triggerActivities, dataRequests],
1091 source_id=tc_source_id,
1092 queue_rules=tapp_qrules,
1093 network_rules=tapp_netrules,
1094 opmon_conf=opmon_conf,
1095 data_subscriber=ta_subscriber,
1096 trigger_inputs_handler=ta_handler,
1097 action_plans=[tc_maker_start],
1099 db.update_dal(tcmaker)
1101 if generate_segment:
1102 fsm = db.get_dal(class_name=
"FSMconfiguration", uid=
"FSMconfiguration_noAction")
1103 controller = dal.RCApplication(
1105 application_name=
"drunc-controller",
1106 opmon_conf=opmon_conf,
1109 exposes_service=[rccontroller_control],
1111 db.update_dal(controller)
1115 controller=controller,
1116 applications=[mlt] + ([tcmaker]
if tpg_enabled
else []),
1129 connectivity_service_is_infrastructure_app=True,
1130 disable_connectivity_service=False,
1132 """Simple script to create an OKS configuration file for a session.
1134 The file will automatically include the relevant schema files and
1135 any other OKS files you specify.
1140 "schema/confmodel/dunedaq.schema.xml",
1141 "schema/appmodel/application.schema.xml",
1143 res, extra_includes = find_oksincludes(include, os.path.dirname(oksfile))
1145 includefiles += extra_includes
1151 if not oksfile.endswith(
".data.xml"):
1152 oksfile = oksfile +
".data.xml"
1153 print(f
"Creating OKS database file {oksfile} with includes {includefiles}")
1154 db.create_db(oksfile, includefiles)
1155 db.set_active(oksfile)
1158 for vhost
in db.get_dals(class_name=
"VirtualHost"):
1159 hosts.append(vhost.id)
1160 if vhost.id ==
"vlocalhost":
1162 if "vlocalhost" not in hosts:
1163 cpus = dal.ProcessingResource(
"cpus", cpu_cores=[0, 1, 2, 3])
1165 phdal = dal.PhysicalHost(
"localhost", contains=[cpus])
1166 db.update_dal(phdal)
1167 host = dal.VirtualHost(
"vlocalhost", runs_on=phdal, uses=[cpus])
1169 hosts.append(
"vlocalhost")
1171 opmon_conf = db.get_dal(class_name=
"OpMonConf", uid=
"slow-all-monitoring")
1173 fsm = db.get_dal(class_name=
"FSMconfiguration", uid=
"fsmConf-test")
1174 rccontroller_control = db.get_dal(class_name=
"Service", uid=
"root-rccontroller_control")
1175 controller = dal.RCApplication(
1177 application_name=
"drunc-controller",
1180 opmon_conf=opmon_conf,
1181 exposes_service=[rccontroller_control],
1183 db.update_dal(controller)
1185 segments = db.get_dals(class_name=
"Segment")
1187 seg = dal.Segment(f
"root-segment", controller=controller, segments=segments)
1190 detconf = db.get_dal(class_name=
"DetectorConfig", uid=
"dummy-detector")
1192 detconf.op_env = op_env
1193 db.update_dal(detconf)
1195 opmon_svc = db.get_dal(class_name=
"OpMonURI", uid=
"local-opmon-uri")
1197 trace_file_var =
None
1198 TRACE_FILE = os.getenv(
"TRACE_FILE")
1199 if TRACE_FILE
is not None:
1200 trace_file_var = dal.Variable(
1201 "session-env-trace-file", name=
"TRACE_FILE", value=TRACE_FILE
1203 db.update_dal(trace_file_var)
1205 infrastructure_applications = []
1206 if connectivity_service_is_infrastructure_app:
1207 conn_svc = db.get_dal(
1208 class_name=
"ConnectionService", uid=
"local-connection-server"
1210 infrastructure_applications.append(conn_svc)
1212 env_vars_for_local_running = db.get_dal(
1213 class_name=
"VariableSet", uid=
"local-variables"
1215 if trace_file_var
is not None:
1216 env_vars_for_local_running.append(trace_file_var)
1218 sessiondal = dal.Session(
1220 environment=env_vars_for_local_running,
1222 detector_configuration=detconf,
1223 infrastructure_applications=infrastructure_applications,
1224 opmon_uri=opmon_svc,
1227 if not disable_connectivity_service:
1228 conn_svc_cfg = db.get_dal(
1229 class_name=
"ConnectivityService", uid=
"local-connectivity-service-config"
1231 sessiondal.connectivity_service = conn_svc_cfg
1233 db.update_dal(sessiondal)