DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
CreateSource.hpp
Go to the documentation of this file.
1
8#ifndef ASIOLIBS_SRC_CREATESOURCE_HPP_
9#define ASIOLIBS_SRC_CREATESOURCE_HPP_
10
11#include "SourceConcept.hpp"
12#include "SourceModel.hpp"
14
18
19#include <memory>
20#include <string>
21
22namespace dunedaq {
23
24DUNE_DAQ_TYPESTRING(dunedaq::fdreadoutlibs::types::DUNEWIBEthTypeAdapter, "WIBEthFrame")
25DUNE_DAQ_TYPESTRING(dunedaq::fdreadoutlibs::types::CRTBernTypeAdapter, "CRTBernFrame")
26DUNE_DAQ_TYPESTRING(dunedaq::fdreadoutlibs::types::CRTGrenobleTypeAdapter, "CRTGrenobleFrame")
27
28namespace asiolibs {
29
30std::shared_ptr<SourceConcept>
32{
33 auto datatype = conf->get_data_type();
34 TLOG() << "Choosing specializations for SourceModel for output connection "
35 << " [uid:" << conf->UID() << " , data_type:" << datatype << ']';
36
37 if (datatype.find("WIBEthFrame") != std::string::npos) {
38 // Create Model
39 auto source_model = std::make_shared<SourceModel<fdreadoutlibs::types::DUNEWIBEthTypeAdapter>>();
40
41 // For callback acquisition later (lazy)
42 source_model->set_sink_config(conf);
43
44 // Get parser and sink
45 //auto& parser = source_model->get_parser();
46 //auto& sink = source_model->get_sink();
47 //auto& error_sink = source_model->get_error_sink();
48
49 // Modify parser as needed...
50 //parser.process_chunk_func = parsers::fixsizedChunkInto<fdreadoutlibs::types::ProtoWIBSuperChunkTypeAdapter>(sink);
51 //if (error_sink != nullptr) {
52 // parser.process_chunk_with_error_func = parsers::errorChunkIntoSink(error_sink);
53 //}
54 // parser.process_block_func = ...
55
56 // Return with setup model
57 return source_model;
58
59 } else if (datatype.find("CRTBernFrame") != std::string::npos) {
60 auto source_model = std::make_shared<SourceModel<fdreadoutlibs::types::CRTBernTypeAdapter>>();
61 source_model->set_sink_config(conf);
62 return source_model;
63 } else if (datatype.find("CRTGrenobleFrame") != std::string::npos) {
64 auto source_model = std::make_shared<SourceModel<fdreadoutlibs::types::CRTGrenobleTypeAdapter>>();
65 source_model->set_sink_config(conf);
66 return source_model;
67 }
68
69 return nullptr;
70}
71
72} // namespace asiolibs
73} // namespace dunedaq
74
75#endif // ASIOLIBS_SRC_CREATESOURCE_HPP_
#define DUNE_DAQ_TYPESTRING(Type, typestring)
Declare the datatype_to_string method for the given type.
const std::string & get_data_type() const
Get "data_type" attribute value. Name of the output data type. Should be defined via a call to DUNE_D...
const std::string & UID() const noexcept
#define TLOG(...)
Definition macro.hpp:22
std::shared_ptr< SourceConcept > createSourceModel(const appmodel::DataMoveCallbackConf *conf)
Including Qt Headers.
Definition module.cpp:16