2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5 * Copyright (C) 2007-2009 Dennis Friis <peavey@inspircd.org>
6 * Copyright (C) 2007, 2009 Craig Edwards <craigedwards@brainbox.cc>
7 * Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
9 * This file is part of InspIRCd. InspIRCd is free software: you can
10 * redistribute it and/or modify it under the terms of the GNU General Public
11 * License as published by the Free Software Foundation, version 2.
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 /// $CompilerFlags: find_compiler_flags("sqlite3")
23 /// $LinkerFlags: find_linker_flags("sqlite3" "-lsqlite3")
25 /// $PackageInfo: require_system("centos") pkgconfig sqlite-devel
26 /// $PackageInfo: require_system("darwin") pkg-config sqlite3
27 /// $PackageInfo: require_system("ubuntu") libsqlite3-dev pkg-config
30 #include "modules/sql.h"
32 // Fix warnings about the use of `long long` on C++03.
34 # pragma clang diagnostic ignored "-Wc++11-long-long"
35 #elif defined __GNUC__
36 # pragma GCC diagnostic ignored "-Wlong-long"
42 # pragma comment(lib, "sqlite3.lib")
46 typedef insp::flat_map<std::string, SQLConn*> ConnMap;
48 class SQLite3Result : public SQLResult
53 std::vector<std::string> columns;
54 std::vector<SQLEntries> fieldlists;
56 SQLite3Result() : currentrow(0), rows(0)
65 bool GetRow(SQLEntries& result)
67 if (currentrow < rows)
69 result.assign(fieldlists[currentrow].begin(), fieldlists[currentrow].end());
80 void GetCols(std::vector<std::string>& result)
82 result.assign(columns.begin(), columns.end());
86 class SQLConn : public SQLProvider
89 reference<ConfigTag> config;
92 SQLConn(Module* Parent, ConfigTag* tag) : SQLProvider(Parent, "SQL/" + tag->getString("id")), config(tag)
94 std::string host = tag->getString("hostname");
95 if (sqlite3_open_v2(host.c_str(), &conn, SQLITE_OPEN_READWRITE, 0) != SQLITE_OK)
97 // Even in case of an error conn must be closed
100 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: Could not open DB with id: " + tag->getString("id"));
108 sqlite3_interrupt(conn);
113 void Query(SQLQuery* query, const std::string& q)
117 int err = sqlite3_prepare_v2(conn, q.c_str(), q.length(), &stmt, NULL);
118 if (err != SQLITE_OK)
120 SQLerror error(SQL_QSEND_FAIL, sqlite3_errmsg(conn));
121 query->OnError(error);
124 int cols = sqlite3_column_count(stmt);
125 res.columns.resize(cols);
126 for(int i=0; i < cols; i++)
128 res.columns[i] = sqlite3_column_name(stmt, i);
132 err = sqlite3_step(stmt);
133 if (err == SQLITE_ROW)
136 res.fieldlists.resize(res.rows + 1);
137 res.fieldlists[res.rows].resize(cols);
138 for(int i=0; i < cols; i++)
140 const char* txt = (const char*)sqlite3_column_text(stmt, i);
142 res.fieldlists[res.rows][i] = SQLEntry(txt);
146 else if (err == SQLITE_DONE)
148 query->OnResult(res);
153 SQLerror error(SQL_QREPLY_FAIL, sqlite3_errmsg(conn));
154 query->OnError(error);
158 sqlite3_finalize(stmt);
161 void submit(SQLQuery* query, const std::string& q)
167 void submit(SQLQuery* query, const std::string& q, const ParamL& p)
170 unsigned int param = 0;
171 for(std::string::size_type i = 0; i < q.length(); i++)
177 if (param < p.size())
179 char* escaped = sqlite3_mprintf("%q", p[param++].c_str());
181 sqlite3_free(escaped);
188 void submit(SQLQuery* query, const std::string& q, const ParamM& p)
191 for(std::string::size_type i = 0; i < q.length(); i++)
199 while (i < q.length() && isalnum(q[i]))
200 field.push_back(q[i++]);
203 ParamM::const_iterator it = p.find(field);
206 char* escaped = sqlite3_mprintf("%q", it->second.c_str());
208 sqlite3_free(escaped);
216 class ModuleSQLite3 : public Module
228 for(ConnMap::iterator i = conns.begin(); i != conns.end(); i++)
230 SQLConn* conn = i->second;
231 ServerInstance->Modules->DelService(*conn);
237 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
240 ConfigTagList tags = ServerInstance->Config->ConfTags("database");
241 for(ConfigIter i = tags.first; i != tags.second; i++)
243 if (i->second->getString("module", "sqlite") != "sqlite")
245 SQLConn* conn = new SQLConn(this, i->second);
246 conns.insert(std::make_pair(i->second->getString("id"), conn));
247 ServerInstance->Modules->AddService(*conn);
251 Version GetVersion() CXX11_OVERRIDE
253 return Version("sqlite3 provider", VF_VENDOR);
257 MODULE_INIT(ModuleSQLite3)