DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
Segment.cpp
Go to the documentation of this file.
4#include "conffwk/Errors.hpp"
6
7#include "logging/Logging.hpp"
8
9 // include files for classes used in relationships and algorithms
10
13
14
15namespace dunedaq {
16 namespace confmodel {
17 const std::string& Segment::s_class_name(dunedaq::conffwk::DalFactory::instance().get_known_class_name_ref("Segment"));
18
19 // the factory initializer
20
22 {
24 {
25 dunedaq::conffwk::DalFactory::instance().register_dal_class<Segment>("Segment");
26 }
28
29
30 // the constructor
31
34 ResourceBase(db, o),
35 m_controller (nullptr)
36
37 {
38 ;
39 }
40
41
42 void Segment::print(unsigned int indent, bool print_header, std::ostream& s) const
43 {
44 check_init();
45
46 try {
47 const std::string str(indent+2, ' ');
48
49 if (print_header)
50 p_hdr(s, indent, s_class_name, "dunedaq::confmodel");
51
52
53 // print direct super-classes
54
56
57
58 // print direct relationships
59
63 }
64 catch (dunedaq::conffwk::Exception & ex) {
66 }
67 }
68
69
70 void Segment::init(bool init_children)
71 {
72 ResourceBase::init(init_children);
73
74 TLOG_DEBUG(5) << "read object " << this << " (class " << s_class_name << ')';
75
76 try {
80 }
81 catch (dunedaq::conffwk::Exception & ex) {
82 throw_init_ex(ex);
83 }
84 }
85
87 {
88 }
89
90 std::vector<const dunedaq::conffwk::DalObject *> Segment::get(const std::string& name, bool upcast_unregistered) const
91 {
92 std::vector<const dunedaq::conffwk::DalObject *> vec;
93
94 if (!get(name, vec, upcast_unregistered, true))
95 throw_get_ex(name, s_class_name, this);
96
97 return vec;
98 }
99
100 bool Segment::get(const std::string& name, std::vector<const dunedaq::conffwk::DalObject *>& vec, bool upcast_unregistered, bool first_call) const
101 {
102 if (first_call)
103 {
104 std::lock_guard scoped_lock(m_mutex);
105
106 check();
107 check_init();
108
109 if (get_rel_objects(name, upcast_unregistered, vec))
110 return true;
111 }
112
113 if (ResourceBase::get(name, vec, upcast_unregistered, false)) return true;
114
115 if (first_call)
116 return get_algo_objects(name, vec);
117
118 return false;
119 }
120
121 void Segment::set_segments(const std::vector<const dunedaq::confmodel::Segment*>& value)
122 {
123 _set_objects(s_segments, value);
124 }
125
126 void Segment::set_applications(const std::vector<const dunedaq::confmodel::Application*>& value)
127 {
129 }
130
135
136 }
137}
The base class for any generated DAL object.
Definition DalObject.hpp:45
void p_hdr(std::ostream &s, unsigned int indent, const std::string &cl, const char *nm=nullptr) const
print object headers
Definition DalObject.cpp:65
void throw_init_ex(dunedaq::conffwk::Exception &ex)
throw object initialisation exception (i.e.
Definition DalObject.cpp:74
static void p_error(std::ostream &s, dunedaq::conffwk::Exception &ex)
print error text
Definition DalObject.cpp:59
bool get_rel_objects(const std::string &name, bool upcast_unregistered, std::vector< const DalObject * > &objs) const
Read relationship values as DAL objects using DAL factory.
Definition DalObject.cpp:8
static void throw_get_ex(const std::string &what, const std::string &class_name, const DalObject *obj)
throw exception in generated get method (i.e.
Definition DalObject.cpp:82
void _set_objects(const std::string &name, const std::vector< const T * > &value)
Helper method for generated set multi-value relationship methods.
std::mutex m_mutex
Used to protect changes of DAL object.
void _set_object(const std::string &name, const T *value)
Helper method for generated set single-value relationship methods.
DalRegistry & p_registry
Configuration object.
bool get_algo_objects(const std::string &name, std::vector< const DalObject * > &objs) const
Run algorithm and return result as DAL objects using DAL factory.
Definition DalObject.cpp:25
ConfigObject p_obj
Config object used by given template object.
void check_init() const
Check and initialize object if necessary.
DalRegistry: A registry of DalObjects It provides a single interface to create, cache and manage DalO...
const T * _ref(ConfigObject &obj, const std::string &name, bool read_children)
Get signle value of object's relation and instantiate result with it (multi-thread safe).
virtual std::vector< const dunedaq::conffwk::DalObject * > get(const std::string &name, bool upcast_unregistered=true) const
Get values of relationships and results of some algorithms as a vector of dunedaq::conffwk::DalObject...
virtual void print(unsigned int offset, bool print_header, std::ostream &s) const
Print details of the ResourceBase object.
virtual void init(bool init_children)
void set_controller(const dunedaq::confmodel::RCApplication *value)
Set "controller" relationship value. This Segment's run controller.
Definition Segment.cpp:131
std::vector< const dunedaq::confmodel::Segment * > m_segments
Definition Segment.hpp:88
virtual void print(unsigned int offset, bool print_header, std::ostream &s) const
Print details of the Segment object.
Definition Segment.cpp:42
virtual ~Segment() noexcept
Definition Segment.cpp:86
static const std::string s_controller
Definition Segment.hpp:99
Segment(conffwk::DalRegistry &db, const conffwk::ConfigObject &obj) noexcept
Definition Segment.cpp:32
virtual void init(bool init_children)
Definition Segment.cpp:70
virtual std::vector< const dunedaq::conffwk::DalObject * > get(const std::string &name, bool upcast_unregistered=true) const
Get values of relationships and results of some algorithms as a vector of dunedaq::conffwk::DalObject...
Definition Segment.cpp:90
void set_segments(const std::vector< const dunedaq::confmodel::Segment * > &value)
Set "segments" relationship value. Nested list of Segments that form part of this Segment.
Definition Segment.cpp:121
static const std::string & s_class_name
Definition Segment.hpp:54
const dunedaq::confmodel::RCApplication * m_controller
Definition Segment.hpp:90
static const std::string s_segments
Definition Segment.hpp:97
static const std::string s_applications
Definition Segment.hpp:98
std::vector< const dunedaq::confmodel::Application * > m_applications
Definition Segment.hpp:89
void set_applications(const std::vector< const dunedaq::confmodel::Application * > &value)
Set "applications" relationship value. List of Applications that run in this Segment.
Definition Segment.cpp:126
#define TLOG_DEBUG(lvl,...)
Definition Logging.hpp:112
void p_sv_rel(std::ostream &s, const std::string &str, const std::string &name, const DalObject *obj)
print weak single-value relationship
void p_mv_rel(std::ostream &s, const std::string &str, const std::string &name, const T &objs) noexcept
print weak multi-value relationship
static struct dunedaq::confmodel::__ActionPlan_Registrator registrator
Including Qt Headers.