Class Reference for E1039 Core & Analysis Software
ParamRunRange.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 <TSQLServer.h>
7 #include <TSQLStatement.h>
8 #include <db_svc/DbSvc.h>
9 #include "ParamRunRange.h"
10 using namespace std;
11 
12 void ParamRunRange::Add(const int run_b, const int run_e, const std::string map_id)
13 {
14  RangeItem item;
15  item.run_b = run_b ;
16  item.run_e = run_e ;
17  item.map_id = map_id;
18  m_list.push_back(item);
19 }
20 
21 bool ParamRunRange::Find(const std::string map_id)
22 {
23  for (RangeList::iterator it = m_list.begin(); it != m_list.end(); it++) {
24  if (it->map_id == map_id) return true;
25  }
26  return false;
27 }
28 
29 std::string ParamRunRange::Find(const int run, const bool exit_on_error)
30 {
31  for (RangeList::iterator it = m_list.begin(); it != m_list.end(); it++) {
32  if (it->run_b <= run && run <= it->run_e) return it->map_id;
33  }
34  if (exit_on_error) {
35  cerr << "\n!!ERROR!! ParamRunRange::Find(): Cannot find a range for run=" << run << ". Abort." << endl;
36  exit(1);
37  }
38  return "";
39 }
40 
41 void ParamRunRange::ReadFromFile(const std::string fn_tsv)
42 {
43  cout << " ParamRunRange::ReadFromFile(): " << fn_tsv << "...\n";
44  ifstream ifs(fn_tsv);
45  if (! ifs) {
46  cerr << "\n!!ERROR!! Cannot open the map file '" << fn_tsv << "'." << endl;
47  exit(1);
48  }
49  m_list.clear();
50 
51  string buffer;
52  istringstream iss;
53  while ( getline(ifs, buffer) ) {
54  if (buffer[0] == '#') continue;
55  iss.clear(); // clear any error flags
56  iss.str(buffer);
57 
58  int run_b, run_e;
59  string map_id;
60  if (! (iss >> run_b >> run_e >> map_id)) continue;
61  cout << " " << run_b << " " << run_e << " " << map_id << endl;
62  Add(run_b, run_e, map_id);
63  }
64  ifs.close();
65 }
66 
67 void ParamRunRange::ReadFromDB(const std::string schema)
68 {
69  m_list.clear();
70  DbSvc db(DbSvc::DB1);
71  db.UseSchema(schema);
72  db.HasTable("run_range", true);
73  TSQLStatement* stmt = db.Process("select run_b, run_e, map_id from run_range");
74  while (stmt->NextResultRow()) {
75  int run_b = stmt->GetInt (0);
76  int run_e = stmt->GetInt (1);
77  string map_id = stmt->GetString(2);
78  Add(run_b, run_e, map_id);
79  }
80  delete stmt;
81 }
82 
83 void ParamRunRange::WriteToDB(const std::string schema)
84 {
85  cout << "ParamRunRange::WriteToDB()\n";
86  cout << " Schema = " << schema << "\n";
87 
88  DbSvc db(DbSvc::DB1);
89  db.UseSchema(schema, true);
90  db.DropTable("run_range");
91 
92  const char* list_var [] = { "run_b", "run_e", "map_id" };
93  const char* list_type[] = { "INT", "INT", "VARCHAR(64)" };
94  db.CreateTable("run_range", 3, list_var, list_type);
95 
96  ostringstream oss;
97  oss << "insert into run_range (run_b, run_e, map_id) values";
98  for (RangeList::iterator it = m_list.begin(); it != m_list.end(); it++) {
99  oss << " (" << it->run_b << ", " << it->run_e << ", '" << it->map_id << "'),";
100  }
101  string query = oss.str();
102  query.erase(query.length()-1, 1); // Remove the last ',' char.
103  if (! db.Con()->Exec(query.c_str())) {
104  cerr << " ERROR in insert. Abort." << endl;
105  exit(1);
106  }
107 
108  cout << " ...done." << endl;
109 }
Standard interface with SQL database.
Definition: DbSvc.h:15
TSQLStatement * Process(const char *query)
Definition: DbSvc.cc:176
@ 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 ReadFromDB(const std::string schema)
void WriteToDB(const std::string schema)
void Add(const int run_b, const int run_e, const std::string map_id)
bool Find(const std::string map_id)
void ReadFromFile(const std::string fn_tsv)