]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - m_sqlite3.cpp
8efdf876f365898d52c179c3d6452bfd4bbdf069
[user/henk/code/inspircd.git] / m_sqlite3.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
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>
8  *
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.
12  *
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
16  * details.
17  *
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/>.
20  */
21
22 /// $CompilerFlags: find_compiler_flags("sqlite3")
23 /// $LinkerFlags: find_linker_flags("sqlite3" "-lsqlite3")
24
25 /// $PackageInfo: require_system("arch") pkgconf sqlite
26 /// $PackageInfo: require_system("centos") pkgconfig sqlite-devel
27 /// $PackageInfo: require_system("darwin") pkg-config sqlite3
28 /// $PackageInfo: require_system("debian") libsqlite3-dev pkg-config
29 /// $PackageInfo: require_system("ubuntu") libsqlite3-dev pkg-config
30
31 #include "inspircd.h"
32 #include "modules/sql.h"
33
34 #ifdef __GNUC__
35 # pragma GCC diagnostic push
36 #endif
37
38 // Fix warnings about the use of `long long` on C++03.
39 #if defined __clang__
40 # pragma clang diagnostic ignored "-Wc++11-long-long"
41 #elif defined __GNUC__
42 # pragma GCC diagnostic ignored "-Wlong-long"
43 #endif
44
45 #include <sqlite3.h>
46
47 #ifdef __GNUC__
48 # pragma GCC diagnostic pop
49 #endif
50
51 #ifdef _WIN32
52 # pragma comment(lib, "sqlite3.lib")
53 #endif
54
55 class SQLConn;
56 typedef insp::flat_map<std::string, SQLConn*> ConnMap;
57
58 class SQLite3Result : public SQL::Result
59 {
60  public:
61         int currentrow;
62         int rows;
63         std::vector<std::string> columns;
64         std::vector<SQL::Row> fieldlists;
65
66         SQLite3Result() : currentrow(0), rows(0)
67         {
68         }
69
70         int Rows() CXX11_OVERRIDE
71         {
72                 return rows;
73         }
74
75         bool GetRow(SQL::Row& result) CXX11_OVERRIDE
76         {
77                 if (currentrow < rows)
78                 {
79                         result.assign(fieldlists[currentrow].begin(), fieldlists[currentrow].end());
80                         currentrow++;
81                         return true;
82                 }
83                 else
84                 {
85                         result.clear();
86                         return false;
87                 }
88         }
89
90         void GetCols(std::vector<std::string>& result) CXX11_OVERRIDE
91         {
92                 result.assign(columns.begin(), columns.end());
93         }
94
95         bool HasColumn(const std::string& column, size_t& index) CXX11_OVERRIDE
96         {
97                 for (size_t i = 0; i < columns.size(); ++i)
98                 {
99                         if (columns[i] == column)
100                         {
101                                 index = i;
102                                 return true;
103                         }
104                 }
105                 return false;
106         }
107 };
108
109 class SQLConn : public SQL::Provider
110 {
111         sqlite3* conn;
112         reference<ConfigTag> config;
113
114  public:
115         SQLConn(Module* Parent, ConfigTag* tag) : SQL::Provider(Parent, "SQL/" + tag->getString("id")), config(tag)
116         {
117                 std::string host = tag->getString("hostname");
118                 if (sqlite3_open_v2(host.c_str(), &conn, SQLITE_OPEN_READWRITE, 0) != SQLITE_OK)
119                 {
120                         // Even in case of an error conn must be closed
121                         sqlite3_close(conn);
122                         conn = NULL;
123                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: Could not open DB with id: " + tag->getString("id"));
124                 }
125         }
126
127         ~SQLConn()
128         {
129                 if (conn)
130                 {
131                         sqlite3_interrupt(conn);
132                         sqlite3_close(conn);
133                 }
134         }
135
136         void Query(SQL::Query* query, const std::string& q)
137         {
138                 SQLite3Result res;
139                 sqlite3_stmt *stmt;
140                 int err = sqlite3_prepare_v2(conn, q.c_str(), q.length(), &stmt, NULL);
141                 if (err != SQLITE_OK)
142                 {
143                         SQL::Error error(SQL::QSEND_FAIL, sqlite3_errmsg(conn));
144                         query->OnError(error);
145                         return;
146                 }
147                 int cols = sqlite3_column_count(stmt);
148                 res.columns.resize(cols);
149                 for(int i=0; i < cols; i++)
150                 {
151                         res.columns[i] = sqlite3_column_name(stmt, i);
152                 }
153                 while (1)
154                 {
155                         err = sqlite3_step(stmt);
156                         if (err == SQLITE_ROW)
157                         {
158                                 // Add the row
159                                 res.fieldlists.resize(res.rows + 1);
160                                 res.fieldlists[res.rows].resize(cols);
161                                 for(int i=0; i < cols; i++)
162                                 {
163                                         const char* txt = (const char*)sqlite3_column_text(stmt, i);
164                                         if (txt)
165                                                 res.fieldlists[res.rows][i] = SQL::Field(txt);
166                                 }
167                                 res.rows++;
168                         }
169                         else if (err == SQLITE_DONE)
170                         {
171                                 query->OnResult(res);
172                                 break;
173                         }
174                         else
175                         {
176                                 SQL::Error error(SQL::QREPLY_FAIL, sqlite3_errmsg(conn));
177                                 query->OnError(error);
178                                 break;
179                         }
180                 }
181                 sqlite3_finalize(stmt);
182         }
183
184         void Submit(SQL::Query* query, const std::string& q) CXX11_OVERRIDE
185         {
186                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Executing SQLite3 query: " + q);
187                 Query(query, q);
188                 delete query;
189         }
190
191         void Submit(SQL::Query* query, const std::string& q, const SQL::ParamList& p) CXX11_OVERRIDE
192         {
193                 std::string res;
194                 unsigned int param = 0;
195                 for(std::string::size_type i = 0; i < q.length(); i++)
196                 {
197                         if (q[i] != '?')
198                                 res.push_back(q[i]);
199                         else
200                         {
201                                 if (param < p.size())
202                                 {
203                                         char* escaped = sqlite3_mprintf("%q", p[param++].c_str());
204                                         res.append(escaped);
205                                         sqlite3_free(escaped);
206                                 }
207                         }
208                 }
209                 Submit(query, res);
210         }
211
212         void Submit(SQL::Query* query, const std::string& q, const SQL::ParamMap& p) CXX11_OVERRIDE
213         {
214                 std::string res;
215                 for(std::string::size_type i = 0; i < q.length(); i++)
216                 {
217                         if (q[i] != '$')
218                                 res.push_back(q[i]);
219                         else
220                         {
221                                 std::string field;
222                                 i++;
223                                 while (i < q.length() && isalnum(q[i]))
224                                         field.push_back(q[i++]);
225                                 i--;
226
227                                 SQL::ParamMap::const_iterator it = p.find(field);
228                                 if (it != p.end())
229                                 {
230                                         char* escaped = sqlite3_mprintf("%q", it->second.c_str());
231                                         res.append(escaped);
232                                         sqlite3_free(escaped);
233                                 }
234                         }
235                 }
236                 Submit(query, res);
237         }
238 };
239
240 class ModuleSQLite3 : public Module
241 {
242         ConnMap conns;
243
244  public:
245         ~ModuleSQLite3()
246         {
247                 ClearConns();
248         }
249
250         void ClearConns()
251         {
252                 for(ConnMap::iterator i = conns.begin(); i != conns.end(); i++)
253                 {
254                         SQLConn* conn = i->second;
255                         ServerInstance->Modules->DelService(*conn);
256                         delete conn;
257                 }
258                 conns.clear();
259         }
260
261         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
262         {
263                 ClearConns();
264                 ConfigTagList tags = ServerInstance->Config->ConfTags("database");
265                 for(ConfigIter i = tags.first; i != tags.second; i++)
266                 {
267                         if (!stdalgo::string::equalsci(i->second->getString("module"), "sqlite"))
268                                 continue;
269                         SQLConn* conn = new SQLConn(this, i->second);
270                         conns.insert(std::make_pair(i->second->getString("id"), conn));
271                         ServerInstance->Modules->AddService(*conn);
272                 }
273         }
274
275         Version GetVersion() CXX11_OVERRIDE
276         {
277                 return Version("Provides SQLite3 support", VF_VENDOR);
278         }
279 };
280
281 MODULE_INIT(ModuleSQLite3)