blob: fb58665cac9c9f16f184813c3f8f12b9f4191d5a [file] [log] [blame]
Alison Craig2a4d5282015-04-10 12:00:02 -06001/** NDN-Atmos: Cataloging Service for distributed data originally developed
2 * for atmospheric science data
3 * Copyright (C) 2015 Colorado State University
4 *
5 * NDN-Atmos is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * NDN-Atmos is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with NDN-Atmos. If not, see <http://www.gnu.org/licenses/>.
17**/
18
19#include "util/mysql-util.hpp"
Chengyu Fanb25835b2015-04-28 17:09:35 -060020#include <mysql/errmsg.h>
21#include <stdexcept>
Alison Craig2a4d5282015-04-10 12:00:02 -060022
23namespace atmos {
24namespace util {
25
26ConnectionDetails::ConnectionDetails(const std::string& serverInput, const std::string& userInput,
27 const std::string& passwordInput, const std::string& databaseInput)
28 : server(serverInput), user(userInput), password(passwordInput), database(databaseInput)
29{
30 // empty
31}
32
33
34std::shared_ptr<MYSQL>
Chengyu Fanb25835b2015-04-28 17:09:35 -060035MySQLConnectionSetup(const ConnectionDetails& details) {
Alison Craig2a4d5282015-04-10 12:00:02 -060036 MYSQL* conn = mysql_init(NULL);
Chengyu Fanb25835b2015-04-28 17:09:35 -060037 if(!mysql_real_connect(conn, details.server.c_str(), details.user.c_str(),
38 details.password.c_str(), details.database.c_str(), 0, NULL, 0)) {
39 throw std::runtime_error(mysql_error(conn));
40 }
41 std::shared_ptr<MYSQL> connection(conn, &mysql_close);
Alison Craig2a4d5282015-04-10 12:00:02 -060042 return connection;
43}
44
45std::shared_ptr<MYSQL_RES>
Chengyu Fanb25835b2015-04-28 17:09:35 -060046MySQLPerformQuery(std::shared_ptr<MYSQL> connection, const std::string& sql_query) {
Alison Craig2a4d5282015-04-10 12:00:02 -060047 switch (mysql_query(connection.get(), sql_query.c_str()))
48 {
49 case 0:
50 {
51 MYSQL_RES* resultPtr = mysql_store_result(connection.get());
52 if (resultPtr != NULL)
53 {
Chengyu Fanb25835b2015-04-28 17:09:35 -060054 return std::shared_ptr<MYSQL_RES>(resultPtr, &mysql_free_result);
Alison Craig2a4d5282015-04-10 12:00:02 -060055 }
56 break;
57 }
58 // Various error cases
59 case CR_COMMANDS_OUT_OF_SYNC:
60 case CR_SERVER_GONE_ERROR:
61 case CR_SERVER_LOST:
62 case CR_UNKNOWN_ERROR:
63 default:
64 break;
65 }
Chengyu Fanb25835b2015-04-28 17:09:35 -060066 return nullptr;
Alison Craig2a4d5282015-04-10 12:00:02 -060067}
68
69} // namespace util
70} // namespace atmos