11 #include <TSQLServer.h>
30 SQRun* run = findNode::getClass<SQRun >(topNode,
"SQRun");
31 SQParamDeco* par_deco = findNode::getClass<SQParamDeco>(topNode,
"SQParamDeco");
41 static int utime_pre = 0;
42 int utime_now = time(0);
43 if (utime_now - utime_pre >= 10) {
44 utime_pre = utime_now;
45 SQRun* run_header = findNode::getClass<SQRun>(topNode,
"SQRun");
47 UploadRun(run_header);
56 SQRun* run = findNode::getClass<SQRun >(topNode,
"SQRun");
57 SQParamDeco* par_deco = findNode::getClass<SQParamDeco>(topNode,
"SQParamDeco");
69 void DbUpRun::UploadRun(
SQRun* sq)
71 const char* table_name =
"run";
79 list.
Add(
"run_id" ,
"INT",
true);
80 list.
Add(
"utime_b" ,
"INT");
81 list.
Add(
"utime_e" ,
"INT");
82 list.
Add(
"fpga1_enabled" ,
"BOOL");
83 list.
Add(
"fpga2_enabled" ,
"BOOL");
84 list.
Add(
"fpga3_enabled" ,
"BOOL");
85 list.
Add(
"fpga4_enabled" ,
"BOOL");
86 list.
Add(
"fpga5_enabled" ,
"BOOL");
87 list.
Add(
"nim1_enabled" ,
"BOOL");
88 list.
Add(
"nim2_enabled" ,
"BOOL");
89 list.
Add(
"nim3_enabled" ,
"BOOL");
90 list.
Add(
"nim4_enabled" ,
"BOOL");
91 list.
Add(
"nim5_enabled" ,
"BOOL");
92 list.
Add(
"fpga1_prescale",
"INT");
93 list.
Add(
"fpga2_prescale",
"INT");
94 list.
Add(
"fpga3_prescale",
"INT");
95 list.
Add(
"fpga4_prescale",
"INT");
96 list.
Add(
"fpga5_prescale",
"INT");
97 list.
Add(
"nim1_prescale",
"INT");
98 list.
Add(
"nim2_prescale",
"INT");
99 list.
Add(
"nim3_prescale",
"INT");
100 list.
Add(
"n_spill" ,
"INT");
101 list.
Add(
"n_evt_all" ,
"INT");
102 list.
Add(
"n_evt_dec" ,
"INT");
108 oss <<
"delete from " << table_name <<
" where run_id = " << sq->
get_run_id();
109 if (! db->
Con()->Exec(oss.str().c_str())) {
110 cerr <<
"!!ERROR!! DbUpRun::UploadRun()." << endl;
114 oss <<
"insert into " << table_name <<
" values"
126 if (! db->
Con()->Exec(oss.str().c_str())) {
127 cerr <<
"!!ERROR!! DbUpRun::UploadRun()." << endl;
133 void DbUpRun::UploadParam(
const int run,
const SQParamDeco* sq)
135 const char* table_name =
"param_deco";
141 list.
Add(
"run_id",
"INT",
true);
142 list.
Add(
"name" ,
"VARCHAR(64)",
true);
143 list.
Add(
"value" ,
"VARCHAR(64)");
147 if (sq->
size() == 0)
return;
150 oss <<
"delete from " << table_name <<
" where run_id = " << run;
151 if (! db.
Con()->Exec(oss.str().c_str())) {
152 cerr <<
"!!ERROR!! DbUpRun::UploadParam()." << endl;
156 oss <<
"insert into " << table_name <<
" values";
158 oss <<
" (" << run <<
", '" << it->first <<
"', '" << it->second <<
"'),";
160 string query = oss.str();
161 query.erase(query.length()-1, 1);
162 if (! db.
Con()->Exec(query.c_str())) {
163 cerr <<
"!!ERROR!! DbUpRun::UploadParam()." << endl;
169 void DbUpRun::UploadV1495(
SQRun* sq)
171 const char* table_name =
"v1495";
172 static DbSvc* db = 0;
179 list.
Add(
"run_id" ,
"INT",
true);
180 list.
Add(
"v1495_id_1",
"INT");
181 list.
Add(
"v1495_id_2",
"INT");
182 list.
Add(
"v1495_id_3",
"INT");
183 list.
Add(
"v1495_id_4",
"INT");
184 list.
Add(
"v1495_id_5",
"INT");
190 oss <<
"delete from " << table_name <<
" where run_id = " << sq->
get_run_id();
191 if (! db->
Con()->Exec(oss.str().c_str())) {
192 cerr <<
"!!ERROR!! DbUpRun::UploadV1495()." << endl;
196 oss <<
"insert into " << table_name <<
" values"
198 for (
int ii = 0; ii < 5; ii++) oss <<
", " << sq->
get_v1495_id(ii);
200 if (! db->
Con()->Exec(oss.str().c_str())) {
201 cerr <<
"!!ERROR!! DbUpRun::UploadV1495()." << endl;
void Add(const std::string name, const std::string type, const bool is_key=false)
Standard interface with SQL database.
void UseSchema(const char *name, const bool do_create=false, const bool do_drop=false)
void CreateTable(const std::string name, const std::vector< std::string > list_var, const std::vector< std::string > list_type, const std::vector< std::string > list_key)
bool HasTable(const char *name, const bool exit_on_false=false)
DbUpRun(const std::string &name="DbUpRun")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
void RunUpdated(const int run, int utime=0)
virtual unsigned int size() const =0
Return the number of variables held.
virtual ParamConstIter end() const =0
Return the end iterator.
ParamMap::const_iterator ParamConstIter
virtual ParamConstIter begin() const =0
Return the begin iterator.
An SQ interface class to hold the run-level info.
virtual int get_unix_time_end() const
Return the Unix time when this run ended.
virtual int get_fpga_prescale(const int chan) const
Return the prescale factor of the given channel ('chan') of the FPGA trigger in this run.
virtual int get_nim_enabled(const int chan) const
Return 'true' if the given channel ('chan') of the NIM trigger was enabled in this run.
virtual int get_n_evt_all() const
Return the number of all recorded events.
virtual int get_n_spill() const
Return the number of spill events.
virtual int get_unix_time_begin() const
Return the Unix time when this run began.
virtual int get_nim_prescale(const int chan) const
Return the prescale factor of the given channel ('chan') of the NIM trigger in this run.
virtual int get_fpga_enabled(const int chan) const
Return 'true' if the given channel ('chan') of the FPGA trigger was enabled in this run.
virtual int get_v1495_id(const int chan) const
Return the ID of the chan-th V1495 boards.
virtual int get_n_evt_dec() const
Return the number of decoded events. The online decoding usually skips a part of events in order to f...
virtual int get_run_id() const
Return the run ID.
static std::string GetSchemaMainDaq()