Class Reference for E1039 Core & Analysis Software
DecoStatusDb.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <TSQLServer.h>
3 #include <db_svc/DbSvc.h>
4 #include <UtilAna/UtilOnline.h>
5 #include "DecoStatusDb.h"
6 using namespace std;
7 
9  m_name_table ("deco_status")
10 {
11  m_db = new DbSvc(DbSvc::DB1);
13 
14  //m_stat_map["Unknown" ] = 0;
15  //m_stat_map["Started" ] = 1;
16  //m_stat_map["Finished OK"] = 2;
17  //m_stat_map["Finished NG"] = 3;
18 }
19 
21 {
22  if (m_db) delete m_db;
23 }
24 
25 void DecoStatusDb::InitTable(const bool refresh)
26 {
27 
28  if (refresh && m_db->HasTable(m_name_table)) m_db->DropTable(m_name_table);
29  if (! m_db->HasTable(m_name_table)) {
30  DbSvc::VarList list;
31  list.Add("run_id" , "INT", true);
32  list.Add("deco_status" , "INT");
33  list.Add("deco_utime_b", "INT");
34  list.Add("deco_utime_e", "INT");
35  list.Add("deco_utime_u", "INT");
36  list.Add("deco_result" , "INT");
37  m_db->CreateTable(m_name_table, list);
38  }
39 
40  //const char* table_name = "deco_status_map";
41  //if (! m_db->HasTable(table_name)) {
42  // DbSvc::VarList list;
43  // list.Add("status", "INT", true);
44  // list.Add("label" , "VARCHAR(64)");
45  // m_db->CreateTable(table_name, list);
46  //}
47 }
48 
49 void DecoStatusDb::RunStarted(const int run, int utime)
50 {
51  if (utime == 0) utime = time(0);
52  InitTable();
53 
54  ostringstream oss;
55  oss << "delete from " << m_name_table << " where run_id = " << run;
56  if (! m_db->Con()->Exec(oss.str().c_str())) {
57  cerr << "!!ERROR!! DecoStatusDb::RunStarted()." << endl;
58  return;
59  }
60  oss.str("");
61  oss << "insert into " << m_name_table << " values" << " (" << run << ", " << STARTED << ", " << utime << ", 0, 0, 0)";
62  if (! m_db->Con()->Exec(oss.str().c_str())) {
63  cerr << "!!ERROR!! DecoStatusDb::RunStarted()." << endl;
64  return;
65  }
66 }
67 
68 void DecoStatusDb::RunUpdated(const int run, int utime)
69 {
70  if (utime == 0) utime = time(0);
71 
72  ostringstream oss;
73  oss << "update " << m_name_table << " set deco_status = " << UPDATED << ", deco_utime_u = " << utime << " where run_id = " << run;
74  if (! m_db->Con()->Exec(oss.str().c_str())) {
75  cerr << "!!ERROR!! DecoStatusDb::RunUpdated()." << endl;
76  return;
77  }
78 }
79 
80 void DecoStatusDb::RunFinished(const int run, const int result, int utime)
81 {
82  if (utime == 0) utime = time(0);
83 
84  ostringstream oss;
85  oss << "update " << m_name_table << " set deco_status = " << FINISHED << ", deco_utime_e = " << utime << ", deco_utime_u = " << utime << ", deco_result = " << result << " where run_id = " << run;
86  if (! m_db->Con()->Exec(oss.str().c_str())) {
87  cerr << "!!ERROR!! DecoStatusDb::RunFinished()." << endl;
88  return;
89  }
90 }
void Add(const std::string name, const std::string type, const bool is_key=false)
Definition: DbSvc.cc:282
Standard interface with SQL database.
Definition: DbSvc.h:15
@ DB1
Definition: DbSvc.h:17
void DropTable(const char *name)
Definition: DbSvc.cc:82
void UseSchema(const char *name, const bool do_create=false, const bool do_drop=false)
Definition: DbSvc.cc:52
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)
Definition: DbSvc.cc:102
TSQLServer * Con()
Definition: DbSvc.h:44
bool HasTable(const char *name, const bool exit_on_false=false)
Definition: DbSvc.cc:92
void RunFinished(const int run, const int result, int utime=0)
Definition: DecoStatusDb.cc:80
virtual ~DecoStatusDb()
Definition: DecoStatusDb.cc:20
void InitTable(const bool refresh=false)
Definition: DecoStatusDb.cc:25
void RunUpdated(const int run, int utime=0)
Definition: DecoStatusDb.cc:68
void RunStarted(const int run, int utime=0)
Definition: DecoStatusDb.cc:49
static std::string GetSchemaMainDaq()
Definition: UtilOnline.h:29