Class Reference for E1039 Core & Analysis Software
RunParamBase.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <sstream>
4 #include <cstdlib>
5 #include <fstream>
6 #include <TSystem.h>
7 #include <db_svc/DbSvc.h>
8 #include "RunParamBase.h"
9 using namespace std;
10 
11 RunParamBase::RunParamBase(const std::string type, const std::string label, const std::string header) :
12  m_type(type), m_label(label), m_header(header), m_map_id("")
13 {
14  m_dir_base = gSystem->Getenv("E1039_RESOURCE");
15  if (m_dir_base.length() == 0) {
16  m_dir_base = "/data2/e1039/resource";
17  cout << "RunParamBase: E1039_RESOURCE is empty. Use '" << m_dir_base << "' as the data directory." << endl;
18  }
19 }
20 
21 void RunParamBase::SetMapIDbyFile(const std::string map_id)
22 {
23  m_range.ReadFromFile(RangeFileName().c_str());
24  if (! m_range.Find(map_id)) {
25  cout << " !WARNING! SetMapIDbyFile(): This map ID '" << map_id
26  << "' is not included in the run-range table. OK?" << endl;
27  }
28  m_map_id = map_id;
29 }
30 
31 void RunParamBase::SetMapIDbyDB(const std::string map_id)
32 {
33  m_range.ReadFromDB(RangeFileName().c_str());
34  if (! m_range.Find(map_id)) {
35  cout << " !WARNING! SetMapIDbyDB(): This map ID '" << map_id
36  << "' is not included in the run-range table. OK?" << endl;
37  }
38  m_map_id = map_id;
39 }
40 
41 void RunParamBase::SetMapIDbyFile(const int run)
42 {
43  m_range.ReadFromFile(RangeFileName().c_str());
44  m_map_id = m_range.Find(run);
45 }
46 
47 void RunParamBase::SetMapIDbyDB(const int run)
48 {
49  m_range.ReadFromDB(SchemaName());
50  m_map_id = m_range.Find(run);
51 }
52 
54 {
56 }
57 
59 {
61 }
62 
63 void RunParamBase::ReadFromLocalFile(const string fn_tsv)
64 {
65  char* path = gSystem->ExpandPathName(fn_tsv.c_str());
66  cout << " RunParamBase::ReadFromFile(): " << path << "...";
67  ifstream ifs(path);
68  if (! ifs) {
69  cerr << "\n!!ERROR!! Cannot open the map file '" << path << "'." << endl;
70  exit(1);
71  }
72  delete path;
73 
74  LineList lines;
75  string buffer;
76  while ( getline(ifs, buffer) ) {
77  if (buffer[0] == '#') continue;
78  lines.push_back(buffer);
79  }
80  ifs.close();
81  int nn = ReadFileCont(lines);
82  cout << " read " << nn << " entries." << endl;
83 }
84 
85 void RunParamBase::WriteToLocalFile(const string fn_tsv)
86 {
87  char* path = gSystem->ExpandPathName(fn_tsv.c_str());
88  cout << " RunParamBase::WriteToFile(): " << path << "...";
89  ofstream ofs(path);
90  if (! ofs) {
91  cerr << "\n!!ERROR!! Cannot open the map file '" << path << "'." << endl;
92  exit(1);
93  }
94  delete path;
95 
96  ofs << "#" << m_header << "\n";
97  int nn = WriteFileCont(ofs);
98  ofs.close();
99  cout << " wrote " << nn << " entries." << endl;
100 }
101 
103 {
104  if (m_map_id.length() == 0) {
105  cerr << " ERROR: The map ID is not set. Abort." << endl;
106  exit(1);
107  }
108  string name_schema = SchemaName();
109  string name_table = MapTableName();
110  cout << "Read channel map from "
111  << name_schema << "." << name_table << ".\n";
112  //cout << " Schema = " << name_schema
113  // << "\n Table = " << name_table << "\n";
114 
115  DbSvc db(DbSvc::DB1);
116  db.UseSchema(name_schema);
117  db.HasTable(name_table, true);
118  ReadDbTable(db);
119 }
120 
122 {
123  cout << "RunParamBase::WriteToDB()\n";
124  if (m_map_id.length() == 0) {
125  cerr << " ERROR: The map ID is not set. Abort." << endl;
126  exit(1);
127  }
128  string name_schema = SchemaName();
129  string name_table = MapTableName();
130  cout << " Schema = " << name_schema
131  << "\n Table = " << name_table << "\n";
132 
133  DbSvc db(DbSvc::DB1);
134  db.UseSchema(name_schema, true);
135  db.DropTable(name_table);
136  WriteDbTable(db);
137  cout << " ...done." << endl;
138 }
139 
141 {
142  m_range.WriteToDB(SchemaName());
143 }
144 
145 void RunParamBase::Print(std::ostream& os)
146 {
147  cout << " virtual function called." << endl;
148 }
149 
151 {
152  ostringstream oss;
153  oss << m_dir_base << "/" << m_type << "/" << m_label << "/run_range.tsv";
154  return oss.str();
155 }
156 
158 {
159  ostringstream oss;
160  oss << m_dir_base << "/" << m_type << "/" << m_label << "/" << m_map_id << "/param.tsv";
161  return oss.str();
162 }
163 
165 {
166  ostringstream oss;
167  oss << "user_e1039_" << m_type << "_" << m_label;
168  return oss.str();
169 }
170 
172 {
173  ostringstream oss;
174  oss << "param_" << m_map_id;
175  return oss.str();
176 }
177 
179 {
180  cout << " virtual function called." << endl;
181  return 0;
182 }
183 
184 int RunParamBase::WriteFileCont(std::ostream& os)
185 {
186  cout << " virtual function called." << endl;
187  return 0;
188 }
189 
191 {
192  cout << " virtual function called." << endl;
193 }
194 
196 {
197  cout << " virtual function called." << endl;
198 }
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
bool HasTable(const char *name, const bool exit_on_false=false)
Definition: DbSvc.cc:92
void ReadFromDB(const std::string schema)
void WriteToDB(const std::string schema)
bool Find(const std::string map_id)
void ReadFromFile(const std::string fn_tsv)
void WriteToDB()
void WriteRangeToDB()
void ReadFromDB()
virtual void WriteDbTable(DbSvc &db)
virtual void Print(std::ostream &os)
RunParamBase(const std::string type, const std::string label, const std::string header)
Definition: RunParamBase.cc:11
void WriteToFile()
Definition: RunParamBase.cc:58
std::string MapFileName()
std::vector< std::string > LineList
Definition: RunParamBase.h:51
void SetMapIDbyFile(const std::string map_id)
Definition: RunParamBase.cc:21
virtual int WriteFileCont(std::ostream &os)
void SetMapIDbyDB(const std::string map_id)
Definition: RunParamBase.cc:31
void WriteToLocalFile(const std::string fn_tsv)
Definition: RunParamBase.cc:85
std::string SchemaName()
virtual void ReadDbTable(DbSvc &db)
void ReadFromLocalFile(const std::string fn_tsv)
Definition: RunParamBase.cc:63
std::string MapTableName()
void ReadFromFile()
Definition: RunParamBase.cc:53
std::string RangeFileName()
virtual int ReadFileCont(LineList &lines)