4 #include <TSQLServer.h>
15 , m_dir_base(dir_base)
28 if (m_run_id != 0)
DstFinished(m_run_id, m_sp_id_f, m_sp_id_f + m_sp_step - 1);
35 SQEvent* evt = findNode::getClass<SQEvent>(startNode,
"SQEvent");
37 cout <<
PHWHERE <<
"SQEvent not found. Abort." << endl;
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) {
50 cout <<
PHWHERE <<
"RUN not found. Abort." << endl;
55 if (m_db)
DstFinished(m_run_id, m_sp_id_f - m_sp_step, m_sp_id_f - 1);
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";
68 cout <<
PHWHERE <<
"Could not open " << oss.str() <<
". Abort." << endl;
83 m_name_table = name_table;
86 if (! m_db->
HasTable(m_name_table)) {
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");
101 if (utime == 0) utime = time(0);
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;
115 if (utime == 0) utime = time(0);
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;
void Add(const std::string name, const std::string type, const bool is_key=false)
Standard interface with SQL database.
void DropTable(const char *name)
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)
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")
virtual ~Fun4AllSpillDstOutputManager()
int Write(PHCompositeNode *startNode)
write starting from given node
PHBoolean SetCompressionLevel(const int level)
PHNode * findFirst(const std::string &, const std::string &)
An SQ interface class to hold one event header.
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()