Class Reference for E1039 Core & Analysis Software
Fun4AllSpillDstOutputManager.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <sstream>
3 #include <TSystem.h>
4 #include <TSQLServer.h>
6 #include <phool/getClass.h>
8 #include <db_svc/DbSvc.h>
9 #include <UtilAna/UtilOnline.h>
11 using namespace std;
12 
13 Fun4AllSpillDstOutputManager::Fun4AllSpillDstOutputManager(const string &dir_base, const string &myname)
14  : Fun4AllDstOutputManager(myname, "")
15  , m_dir_base(dir_base)
16  , m_sp_step(10)
17  , m_run_id(0)
18  , m_sp_id_f(0)
19  , m_db(0)
20  , m_name_table("")
21 {
22  ;
23 }
24 
26 {
27  if (m_db) {
28  if (m_run_id != 0) DstFinished(m_run_id, m_sp_id_f, m_sp_id_f + m_sp_step - 1);
29  delete m_db;
30  }
31 }
32 
34 {
35  SQEvent* evt = findNode::getClass<SQEvent>(startNode, "SQEvent");
36  if (! evt) {
37  cout << PHWHERE << "SQEvent not found. Abort." << endl;
38  exit(1);
39  }
40  int run_id = evt->get_run_id();
41  int sp_id_f = (evt->get_spill_id() / m_sp_step) * m_sp_step;
42  if (m_run_id != run_id || m_sp_id_f != sp_id_f) {
43  m_run_id = run_id;
44  m_sp_id_f = sp_id_f;
45 
46  if (dstOut) {
47  PHNodeIterator nodeiter(Fun4AllServer::instance()->topNode());
48  PHCompositeNode* run = dynamic_cast<PHCompositeNode*>(nodeiter.findFirst("PHCompositeNode", "RUN"));
49  if (! run) {
50  cout << PHWHERE << "RUN not found. Abort." << endl;
51  exit(1);
52  }
53  WriteNode(run); // dstOut is deleted at the beginning of this function.
54 
55  if (m_db) DstFinished(m_run_id, m_sp_id_f - m_sp_step, m_sp_id_f - 1);
56  }
57 
59  ostringstream oss;
60  oss << m_dir_base << "/run_" << setfill('0') << setw(6) << run_id;
61  gSystem->mkdir(oss.str().c_str(), true);
62  oss << "/run_" << setw(6) << run_id << "_spill_" << setw(9) << sp_id_f << "_spin.root";
63  outfilename = oss.str();
64  dstOut = new PHNodeIOManager(outfilename.c_str(), PHWrite);
65  if (!dstOut->isFunctional()) {
66  delete dstOut;
67  dstOut = 0;
68  cout << PHWHERE << "Could not open " << oss.str() << ". Abort." << endl;
69  exit(1);
70  }
72 
73  if (m_db) DstStarted(m_run_id, m_sp_id_f, m_sp_id_f + m_sp_step - 1, outfilename);
74  }
75  return Fun4AllDstOutputManager::Write(startNode);
76 }
77 
78 void Fun4AllSpillDstOutputManager::EnableDB(const bool refresh_db, const std::string name_table)
79 {
80  m_db = new DbSvc(DbSvc::DB1);
82 
83  m_name_table = name_table;
84 
85  if (refresh_db && m_db->HasTable(m_name_table)) m_db->DropTable(m_name_table);
86  if (! m_db->HasTable(m_name_table)) {
87  DbSvc::VarList list;
88  list.Add("run_id" , "INT", true);
89  list.Add("spill_id_first", "INT", true);
90  list.Add("spill_id_last" , "INT", true);
91  list.Add("file_name" , "VARCHAR(256)");
92  list.Add("status" , "INT");
93  list.Add("utime_b" , "INT");
94  list.Add("utime_e" , "INT");
95  m_db->CreateTable(m_name_table, list);
96  }
97 }
98 
99 void Fun4AllSpillDstOutputManager::DstStarted(const int run, const int spill_f, const int spill_l, const std::string file_name, int utime)
100 {
101  if (utime == 0) utime = time(0);
102 
103  ostringstream oss;
104  oss << "insert into " << m_name_table
105  << " values(" << run << ", " << spill_f << ", " << spill_l << ", '" << file_name << "', 1, " << utime << ", 0)"
106  << " on duplicate key update file_name = '" << file_name << "', status = 1, utime_b = " << utime << ", utime_e = 0";
107  if (! m_db->Con()->Exec(oss.str().c_str())) {
108  cerr << "!!ERROR!! DecoStatusDb::RunStarted()." << endl;
109  return;
110  }
111 }
112 
113 void Fun4AllSpillDstOutputManager::DstFinished(const int run, const int spill_f, const int spill_l, int utime)
114 {
115  if (utime == 0) utime = time(0);
116 
117  ostringstream oss;
118  oss << "update " << m_name_table << " set status = 2, utime_e = " << utime
119  << " where run_id = " << run << " and spill_id_first = " << spill_f << " and spill_id_last = " << spill_l;
120  if (! m_db->Con()->Exec(oss.str().c_str())) {
121  cerr << "!!ERROR!! DecoStatusDb::RunFinished()." << endl;
122  return;
123  }
124 }
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
virtual int Write(PHCompositeNode *startNode)
write starting from given node
virtual int WriteNode(PHCompositeNode *thisNode)
write specified node
std::string outfilename
output file name
static Fun4AllServer * instance()
void EnableDB(const bool refresh_db=false, const std::string name_table="spill_dst_status")
void DstStarted(const int run, const int spill_f, const int spill_l, const std::string file_name, int utime=0)
void DstFinished(const int run, const int spill_f, const int spill_l, int utime=0)
Fun4AllSpillDstOutputManager(const std::string &dir_base, const std::string &myname="SPILLDSTOUT")
int Write(PHCompositeNode *startNode)
write starting from given node
PHBoolean SetCompressionLevel(const int level)
int isFunctional() const
PHNode * findFirst(const std::string &, const std::string &)
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
virtual int get_run_id() const =0
Return the run ID.
virtual int get_spill_id() const =0
Return the spill ID.
static std::string GetSchemaMainDaq()
Definition: UtilOnline.h:29
@ PHWrite
Definition: phool.h:15
#define PHWHERE
Definition: phool.h:23