7 #include <TMySQLServer.h>
8 #include <TSQLiteServer.h>
9 #include <TSQLStatement.h>
10 #include <TSQLResult.h>
15 #define LogInfo(message) std::cout << "DEBUG: " << __FILE__ << " " << __LINE__ << " " << __FUNCTION__ << " ::: " << message << std::endl
32 if (m_svr_id !=
LITE) {
33 LogInfo(
"DbSvc::DbSvc(const SvrId_t, const std::string) is for sqlite db only.");
37 std::string m_dbfile = ExpandEnvironmentals(dbfile);
38 if (!FileExist(m_dbfile)) {
39 LogInfo(
"SQLITE DB file " << m_dbfile <<
" does not exist");
43 m_svr =
"sqlite://" + m_dbfile;
44 m_con =
new TSQLiteServer(m_svr.c_str());
49 if (m_con)
delete m_con;
55 TSQLResult* res = m_con->GetDataBases(name);
57 while ( (row = res->Next()) != 0 ) {
58 string val = row->GetField(0);
60 if (val == name) found =
true;
67 ret = m_con->DropDataBase(name);
68 if (ret == 0) ret = m_con->CreateDataBase(name);
73 if (do_create) ret = m_con->CreateDataBase(name);
75 if (ret == 0) ret = m_con->SelectDataBase(name);
77 cerr <<
"!!ERROR!! DbSvc::UseSchema: Failed to select '" << name <<
"'. Abort." << endl;
84 string query =
"drop table if exists ";
86 if (! m_con->Exec(query.c_str())) {
87 cerr <<
"!!ERROR!! DbSvc::DropTable(): Failed on " << name <<
". Abort." << endl;
94 if (m_con->HasTable(name))
return true;
96 cerr <<
"!!ERROR!! DbSvc: The table '" << name <<
"' does not exist. Abort." << endl;
102 void DbSvc::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)
105 cerr <<
"!!ERROR!! DbSvc::CreateTable(): Table '" << name <<
"' already exists. To avoid an unintended creation, please check and drop the table in your code. Abort." << endl;
108 if (list_var.size() != list_type.size()) {
109 cerr <<
"!!ERROR!! DbSvc::CreateTable(): The sizes of the var and type lists don't match. Abort." << endl;
114 oss <<
"create table " << name <<
"(";
115 for (
unsigned int ii = 0; ii < list_var.size(); ii++) {
116 oss << list_var[ii] <<
" " << list_type[ii] <<
", ";
118 if (list_key.size() == 0) {
119 oss <<
"primary_id INT not null auto_increment, PRIMARY KEY (primary_id)";
121 oss <<
"PRIMARY KEY (";
122 for (
unsigned int ii = 0; ii < list_key.size(); ii++) {
123 if (ii != 0) oss <<
", ";
129 if (! m_con->Exec(oss.str().c_str())) {
130 cerr <<
"!!ERROR!! DbSvc::CreateTable(): The creation query failed. Abort." << endl;
135 void DbSvc::CreateTable(
const std::string name,
const int n_var,
const char** list_var,
const char** list_type,
const int n_key,
const char** list_key)
137 vector<string> vec_var;
138 vector<string> vec_type;
139 for (
int ii = 0; ii < n_var; ii++) {
140 vec_var .push_back(list_var [ii]);
141 vec_type.push_back(list_type[ii]);
143 vector<string> vec_key;
144 for (
int ii = 0; ii < n_key; ii++) {
145 vec_key.push_back(list_key[ii]);
152 vector<string> vec_var;
153 vector<string> vec_type;
154 vector<string> vec_key;
155 for (
unsigned int ii = 0; ii < list.
Size(); ii++) {
158 list.
Get(ii, name, type, is_key);
159 vec_var .push_back(name);
160 vec_type.push_back(type);
161 if (is_key) vec_key.push_back(name);
178 TSQLStatement* stmt = m_con->Statement(query);
179 if ((! stmt->Process()) && m_svr_id !=
LITE) {
180 cerr <<
"!!ERROR!! DbSvc::Process(): Failed to execute a statement: " << stmt <<
".\n"
193 void DbSvc::SelectServer()
198 if (svr ==
"DB1" ) m_svr_id =
DB1 ;
199 else if (svr ==
"DB2" ) m_svr_id =
DB2 ;
200 else if (svr ==
"DB3" ) m_svr_id =
DB3 ;
201 else if (svr ==
"DB4" ) m_svr_id =
DB4 ;
202 else if (svr ==
"LOCAL") m_svr_id =
LOCAL;
204 cerr <<
"!!ERROR!! DbSvc(): Unsupported DB_SERVER in recoConsts. Abort.\n";
209 case DB1 : m_svr =
"e906-db1.fnal.gov";
break;
210 case DB2 : m_svr =
"e906-db2.fnal.gov";
break;
211 case DB3 : m_svr =
"e906-db3.fnal.gov";
break;
212 case DB4 : m_svr =
"e906-db4.fnal.gov";
break;
213 case LOCAL: m_svr =
"localhost" ;
break;
215 cerr <<
"!!ERROR!! DbSvc(): Unsupported server ID. Abort.\n";
220 void DbSvc::SelectUser()
225 if (usr ==
"seaguest" ) m_usr_id =
Guest;
226 else if (usr ==
"production") m_usr_id =
Prod ;
228 cerr <<
"!!ERROR!! DbSvc(): Unsupported DB_USER in recoConsts. Abort.\n";
233 if (m_my_cnf.length() == 0) {
234 if (m_usr_id ==
Guest) m_my_cnf =
"$E1039_RESOURCE/db_conf/guest.cnf";
235 else m_my_cnf =
"$E1039_RESOURCE/db_conf/prod.cnf";
237 m_my_cnf = ExpandEnvironmentals(m_my_cnf);
239 if (!FileExist(m_my_cnf)) {
240 LogInfo(
"DB Conf. "<< m_my_cnf <<
" doesn't exist");
244 void DbSvc::ConnectServer()
247 oss <<
"mysql://" << m_svr <<
"/?timeout=120&reconnect=1&cnf_file=" << m_my_cnf;
248 string url = oss.str();
250 for (
int i_try = 0; i_try < 5; i_try++) {
251 m_con = TMySQLServer::Connect(url.c_str(), 0, 0);
252 if (m_con && m_con->IsConnected()) {
253 if (i_try > 0) cout <<
"DbSvc::ConnectServer(): Succeeded at i_try=" << i_try <<
"." << endl;
259 cerr <<
"!!ERROR!! DbSvc::ConnectServer(): Failed. Abort." << endl;
263 bool DbSvc::FileExist(
const std::string fileName)
265 std::ifstream infile(fileName.c_str());
266 return infile.good();
269 std::string DbSvc::ExpandEnvironmentals(
const std::string& input )
272 wordexp_t exp_result;
273 if(wordexp(input.c_str(), &exp_result, 0) != 0)
275 std::cout <<
"ExpandEnvironmentals - ERROR - Your string '" << input <<
"' cannot be understood!" << endl;
278 const string output( exp_result.we_wordv[0]);
284 m_name .push_back(name);
285 m_type .push_back(type);
286 m_is_key.push_back(is_key);
293 is_key = m_is_key[idx];
void Get(const int idx, std::string &name, std::string &type, bool &is_key) const
void Add(const std::string name, const std::string type, const bool is_key=false)
unsigned int Size() const
DbSvc(const SvrId_t svr_id=AutoSvr, const UsrId_t usr_id=AutoUsr, const std::string my_cnf="")
TSQLStatement * Process(const char *query)
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 const std::string get_CharFlag(const std::string &flag) const
static recoConsts * instance()