Class Reference for E1039 Core & Analysis Software
ChanMapScaler.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 "ChanMapScaler.h"
10 using namespace std;
11 
13  ChanMapBase("scaler", "name\troc\tboard\tchan")
14 {
15  ;
16 }
17 
19 {
20  istringstream iss;
21  int nn = 0;
22  for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
23  iss.clear(); // clear any error flags
24  iss.str(*it);
25  string name;
26  short roc, board, chan;
27  if (! (iss >> name >> roc >> board >> chan)) continue;
28  Add(roc, board, chan, name);
29  nn++;
30  }
31  return nn;
32 }
33 
34 int ChanMapScaler::WriteFileCont(std::ostream& os)
35 {
36  int nn = 0;
37  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
38  os << it->name
39  << it->roc << "\t" << it->board << "\t" << it->chan << "\n";
40  nn++;
41  }
42  return nn;
43 }
44 
46 {
47  ostringstream oss;
48  oss << "select roc, board, chan, name from " << MapTableName();
49  TSQLStatement* stmt = db.Process(oss.str());
50  while (stmt->NextResultRow()) {
51  short roc = stmt->GetInt (0);
52  short board = stmt->GetInt (1);
53  short chan = stmt->GetInt (2);
54  string name = stmt->GetString(3);
55  Add(roc, board, chan, name);
56  }
57  delete stmt;
58 }
59 
61 {
62  string name_table = MapTableName();
63 
64  const char* list_var [] = { "roc", "board", "chan", "name" };
65  const char* list_type[] = { "SMALLINT", "SMALLINT", "SMALLINT", "VARCHAR(64)" };
66  const int n_var = 4;
67  db.CreateTable(name_table, n_var, list_var, list_type);
68 
69  ostringstream oss;
70  oss << "insert into " << name_table << "(roc, board, chan, name) values";
71  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
72  oss << " (" << it->roc << ", " << it->board << ", " << it->chan
73  << ", '" << it->name << "'),";
74  }
75  string query = oss.str();
76  query.erase(query.length()-1, 1); // Remove the last ',' char.
77  if (! db.Con()->Exec(query.c_str())) {
78  cerr << "!!ERROR!! ChanMapScaler::WriteToDB(): in insert. Abort." << endl;
79  exit(1);
80  }
81 }
82 
83 void ChanMapScaler::Add(const short roc, const short board, const short chan, const std::string name)
84 {
85  MapItem item;
86  item.roc = roc;
87  item.board = board;
88  item.chan = chan;
89  item.name = name;
90  m_list.push_back(item);
91  m_map[RocBoardChan_t(roc, board, chan)] = name;
92 }
93 
94 bool ChanMapScaler::Find(const short roc, const short board, const short chan, std::string& name)
95 {
96  RocBoardChan_t key(roc, board, chan);
97  if (m_map.find(key) != m_map.end()) {
98  name = m_map[key];
99  return true;
100  }
101  name = "";
102  return false;
103 }
104 
105 void ChanMapScaler::Print(std::ostream& os)
106 {
107  int n_ent = 0;
108  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
109  os << it->name << "\t"
110  << it->roc << "\t" << it->board << "\t" << it->chan << "\n";
111  n_ent++;
112  }
113  cout << n_ent << endl;
114 }
std::tuple< short, short, short > RocBoardChan_t
Definition: RunParamBase.h:61
void ReadDbTable(DbSvc &db)
void WriteDbTable(DbSvc &db)
void Print(std::ostream &os)
bool Find(const short roc, const short board, const short chan, std::string &name)
void Add(const short roc, const short board, const short chan, const std::string name)
int ReadFileCont(LineList &lines)
int WriteFileCont(std::ostream &os)
Standard interface with SQL database.
Definition: DbSvc.h:15
TSQLStatement * Process(const char *query)
Definition: DbSvc.cc:176
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
std::vector< std::string > LineList
Definition: RunParamBase.h:51
std::string MapTableName()