ATLAS Offline Software
Loading...
Searching...
No Matches
ASCIICondDbSvc Class Reference

#include <ASCIICondDbSvc.h>

Inheritance diagram for ASCIICondDbSvc:
Collaboration diagram for ASCIICondDbSvc:

Public Member Functions

 ASCIICondDbSvc (const std::string &name, ISvcLocator *svc)
 ~ASCIICondDbSvc ()=default
virtual StatusCode initialize () override
virtual StatusCode finalize () override
virtual StatusCode getRange (const std::string &, const EventContext &, EventIDRange &, IASCIICondDbSvc::dbData_t &) const override
virtual void dump () const override
void dump (std::ostringstream &) const

Private Types

typedef std::map< std::string, std::vector< IOVEntryT< IASCIICondDbSvc::dbData_t > > > registry_t

Private Member Functions

bool parse (EventIDRange &t, const std::string &s)
bool parse (IOVEntryT< IASCIICondDbSvc::dbData_t > &t, const std::string &s)
StatusCode readDbFile (const std::string &)

Private Attributes

Gaudi::Property< std::string > m_file {this, "CondFile", "", "cond db file name"}
Gaudi::Property< unsigned int > m_lbn {this, "LBN", 1, "explicit lumi block number"}
registry_t m_registry
std::mutex m_lock

Detailed Description

Definition at line 21 of file ASCIICondDbSvc.h.

Member Typedef Documentation

◆ registry_t

typedef std::map<std::string, std::vector<IOVEntryT<IASCIICondDbSvc::dbData_t> > > ASCIICondDbSvc::registry_t
private

Definition at line 51 of file ASCIICondDbSvc.h.

Constructor & Destructor Documentation

◆ ASCIICondDbSvc()

ASCIICondDbSvc::ASCIICondDbSvc ( const std::string & name,
ISvcLocator * svc )

Definition at line 24 of file ASCIICondDbSvc.cxx.

24 :
25 base_class(name,svcLoc)
26{}

◆ ~ASCIICondDbSvc()

ASCIICondDbSvc::~ASCIICondDbSvc ( )
default

Member Function Documentation

◆ dump() [1/2]

void ASCIICondDbSvc::dump ( ) const
overridevirtual

Definition at line 119 of file ASCIICondDbSvc.cxx.

119 {
120
121 std::ostringstream ost;
122 dump(ost);
123
124 info() << ost.str() << endmsg;
125
126}
#define endmsg
virtual void dump() const override

◆ dump() [2/2]

void ASCIICondDbSvc::dump ( std::ostringstream & ost) const

Definition at line 132 of file ASCIICondDbSvc.cxx.

132 {
133
134 std::lock_guard<std::mutex> lock(m_lock);
135
136 ost << "ASCIICondDbSvc::dump()";
137
138 ost << "\n";
139
140}
virtual void lock()=0
Interface to allow an object to lock itself when made const in SG.
std::mutex m_lock

◆ finalize()

StatusCode ASCIICondDbSvc::finalize ( )
overridevirtual

Definition at line 145 of file ASCIICondDbSvc.cxx.

145 {
146
147 ATH_MSG_DEBUG( "ASCIICondDbSvc::finalize()" );
148
149 if (msgLvl(MSG::DEBUG)) {
150 std::ostringstream ost;
151 dump(ost);
152
153 ATH_MSG_DEBUG( ost.str() );
154 }
155
156 for ( auto e : m_registry ) {
157 for ( auto ie : e.second ) {
158 delete ie.objPtr();
159 ie.setPtr(0);
160 }
161 }
162
163
164 return StatusCode::SUCCESS;
165
166}
#define ATH_MSG_DEBUG(x)
registry_t m_registry

◆ getRange()

StatusCode ASCIICondDbSvc::getRange ( const std::string & dbKey,
const EventContext & ctx,
EventIDRange & rng,
IASCIICondDbSvc::dbData_t & val ) const
overridevirtual

Definition at line 237 of file ASCIICondDbSvc.cxx.

238 {
239
240 std::lock_guard<std::mutex> lock(m_lock);
241
242 registry_t::const_iterator itr = m_registry.find(dbKey);
243
244 if (itr == m_registry.end()) {
245 error() << "getRange: no dbKey " << dbKey << " found in registry"
246 << endmsg;
247 return StatusCode::FAILURE;
248 }
249
250 for (const IOVEntryT<IASCIICondDbSvc::dbData_t>& e : itr->second) {
251 debug() << "compare " << e.range() << " with " << ctx.eventID()
252 << endmsg;
253 if (e.range().isInRange(EventIDBase(ctx.eventID()))) {
254 rng = e.range();
255 val = *(e.objPtr());
256 return StatusCode::SUCCESS;
257 }
258 }
259
260 error() << "getRange: no range for Time " << ctx.eventID()
261 << " found for dbKey " << dbKey << endmsg;
262
263 return StatusCode::FAILURE;
264}
const bool debug
uint32_t rng()
Definition FillerAlg.cxx:40

◆ initialize()

StatusCode ASCIICondDbSvc::initialize ( )
overridevirtual

Definition at line 31 of file ASCIICondDbSvc.cxx.

31 {
32
33 // Initialise mother class in order to print DEBUG messages during initialize()
34 StatusCode sc(AthService::initialize());
35 msg().setLevel( m_outputLevel.value() );
36
37 if (!sc.isSuccess()) {
38 warning () << "Base class could not be initialized" << endmsg;
39 return StatusCode::FAILURE;
40 }
41
42 if (m_file == "") {
43 ATH_MSG_DEBUG("db file not set");
44 return StatusCode::SUCCESS;
45 }
46
47 if (readDbFile(m_file).isFailure()) {
48 return StatusCode::FAILURE;
49 }
50
51 std::ostringstream ost;
52 ost << " Printing CondDB registry";
53 for (const auto& e : m_registry) {
54 ost << std::endl << " - id: " << e.first << " r:";
55 for (const IOVEntryT<IASCIICondDbSvc::dbData_t>& r : e.second) {
56 ost << " " << r.range() << " :: " << *r.objPtr();
57 }
58 }
59
60 ATH_MSG_DEBUG( ost.str() );
61
62 return StatusCode::SUCCESS;
63
64}
static Double_t sc
Gaudi::Property< std::string > m_file
StatusCode readDbFile(const std::string &)
int r
Definition globals.cxx:22
::StatusCode StatusCode
StatusCode definition for legacy code.
MsgStream & msg
Definition testRead.cxx:32

◆ parse() [1/2]

bool ASCIICondDbSvc::parse ( EventIDRange & t,
const std::string & s )
private

Definition at line 171 of file ASCIICondDbSvc.cxx.

171 {
172
173 std::smatch m;
174 std::regex_match(s,m,rr);
175
176 // for (auto res : m) {
177 // cout << " - " << res << endl;
178 // }
179
180 if (m.size() != 5) { return false; }
181
182 // set run# and timestamp
183 EventIDBase start(std::stoi(m[1]), EventIDBase::UNDEFEVT, std::stoi(m[2]));
184 EventIDBase end(std::stoi(m[3]), EventIDBase::UNDEFEVT, std::stoi(m[4]));
185
186 start.set_lumi_block(m_lbn);
187 end.set_lumi_block(m_lbn);
188
189 t = EventIDRange(start, end);
190
191 return true;
192
193}
const std::regex rr(r_r)
Gaudi::Property< unsigned int > m_lbn

◆ parse() [2/2]

bool ASCIICondDbSvc::parse ( IOVEntryT< IASCIICondDbSvc::dbData_t > & t,
const std::string & s )
private

Definition at line 198 of file ASCIICondDbSvc.cxx.

198 {
199
200 std::smatch m;
201 std::regex_match(s,m,ref);
202
203 if (m.size() != 6) { return false; }
204
205 // set run#, lumi and timestamp
206 // EventIDBase start(std::stoi(m[1]), EventIDBase::UNDEFEVT, std::stoi(m[2]));
207 // EventIDBase end(std::stoi(m[3]), EventIDBase::UNDEFEVT, std::stoi(m[4]));
208 // start.set_lumi_block(m_lbn);
209 // end.set_lumi_block(m_lbn);
210
211 // set lumi and Timestamp
212 EventIDBase start(0, EventIDBase::UNDEFEVT,
213 std::stoi(m[2]));
214 EventIDBase end(EventIDBase::UNDEFNUM, EventIDBase::UNDEFEVT,
215 std::stoi(m[4]));
216 start.set_lumi_block(std::stoi(m[1]));
217 end.set_lumi_block(std::stoi(m[3]));
218
219 // Set Run/Lumi
220 // EventIDBase start(std::stoi(m[1]), EventIDBase::UNDEFEVT);
221 // EventIDBase end(std::stoi(m[3]), EventIDBase::UNDEFEVT);
222 // start.set_lumi_block(std::stoi(m[2]));
223 // end.set_lumi_block(std::stoi(m[4]));
224
225 ie.setRange(EventIDRange(start,end));
226
227 IASCIICondDbSvc::dbData_t *v = new IASCIICondDbSvc::dbData_t( std::stof(m[5]) );
228 ie.setPtr(v);
229
230 return true;
231
232}
const std::regex ref(r_ef)

◆ readDbFile()

StatusCode ASCIICondDbSvc::readDbFile ( const std::string & fname)
private

Definition at line 68 of file ASCIICondDbSvc.cxx.

68 {
69
70 StatusCode sc(StatusCode::SUCCESS);
71
72 ATH_MSG_DEBUG("reading cond db from \"" << fname << "\"");
73
74 std::ifstream ifs (fname);
75 std::string line;
76 if(ifs.is_open()) {
77
78 IOVEntryT<IASCIICondDbSvc::dbData_t> ie;
79
80 while( getline (ifs, line) ) {
81
82 // ignore anything after a "#" and blank lines
83 size_t fh = line.find("#");
84 if(fh != std::string::npos)
85 line.erase(fh,line.length()-fh);
86 if (line.length() == 0) continue;
87
88 std::vector<std::string> tokens;
89 for (auto&& token : line | std::views::split(' ')) if (!token.empty()) tokens.emplace_back(token.begin(), token.end());
90 auto it = tokens.begin();
91
92 std::string dbKey = *it;
93
94 ++it;
95
96 while (it != tokens.end()) {
97 if (parse(ie,*it)) {
98 m_registry[dbKey].push_back( ie );
99 } else {
100 error() << "while reading " << fname << " problem parsing " << *it
101 << " in line\n" << line << endmsg;
102 sc = StatusCode::FAILURE;
103 }
104 ++it;
105 }
106 }
107 ifs.close();
108 } else {
109 error() << "unable to open file " << (std::string) m_file << endmsg;
110 sc = StatusCode::FAILURE;
111 }
112
113 return sc;
114
115}
bool parse(EventIDRange &t, const std::string &s)

Member Data Documentation

◆ m_file

Gaudi::Property<std::string> ASCIICondDbSvc::m_file {this, "CondFile", "", "cond db file name"}
private

Definition at line 48 of file ASCIICondDbSvc.h.

48{this, "CondFile", "", "cond db file name"};

◆ m_lbn

Gaudi::Property<unsigned int> ASCIICondDbSvc::m_lbn {this, "LBN", 1, "explicit lumi block number"}
private

Definition at line 49 of file ASCIICondDbSvc.h.

49{this, "LBN", 1, "explicit lumi block number"};

◆ m_lock

std::mutex ASCIICondDbSvc::m_lock
mutableprivate

Definition at line 54 of file ASCIICondDbSvc.h.

◆ m_registry

registry_t ASCIICondDbSvc::m_registry
private

Definition at line 52 of file ASCIICondDbSvc.h.


The documentation for this class was generated from the following files: