]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/extra/m_sqlite3.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / extra / 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
23 #include "inspircd.h"
24 #include "modules/sql.h"
25
26 // Fix warnings about the use of `long long` on C++03.
27 #if defined __clang__
28 # pragma clang diagnostic ignored "-Wc++11-long-long"
29 #elif defined __GNUC__
30 # pragma GCC diagnostic ignored "-Wlong-long"
31 #endif
32
33 #include <sqlite3.h>
34
35 #ifdef _WIN32
36 # pragma comment(lib, "sqlite3.lib")
37 #endif
38
39 /* $CompileFlags: pkgconfversion("sqlite3","3.3") pkgconfincludes("sqlite3","/sqlite3.h","") */
40 /* $LinkerFlags: pkgconflibs("sqlite3","/libsqlite3.so","-lsqlite3") */
41
42 class SQLConn;
43 typedef std::map<std::string, SQLConn*> ConnMap;
44
45 class SQLite3Result : public SQLResult
46 {
47  public:
48         int currentrow;
49         int rows;
50         std::vector<std::string> columns;
51         std::vector<SQLEntries> fieldlists;
52
53         SQLite3Result() : currentrow(0), rows(0)
54         {
55         }
56
57         int Rows()
58         {
59                 return rows;
60         }
61
62         bool GetRow(SQLEntries& result)
63         {
64                 if (currentrow < rows)
65                 {
66                         result.assign(fieldlists[currentrow].begin(), fieldlists[currentrow].end());
67                         currentrow++;
68                         return true;
69                 }
70                 else
71                 {
72                         result.clear();
73                         return false;
74                 }
75         }
76
77         void GetCols(std::vector<std::string>& result)
78         {
79                 result.assign(columns.begin(), columns.end());
80         }
81 };
82
83 class SQLConn : public SQLProvider
84 {
85         sqlite3* conn;
86         reference<ConfigTag> config;
87
88  public:
89         SQLConn(Module* Parent, ConfigTag* tag) : SQLProvider(Parent, "SQL/" + tag->getString("id")), config(tag)
90         {
91                 std::string host = tag->getString("hostname");
92                 if (sqlite3_open_v2(host.c_str(), &conn, SQLITE_OPEN_READWRITE, 0) != SQLITE_OK)
93                 {
94                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: Could not open DB with id: " + tag->getString("id"));
95                         conn = NULL;
96                 }
97         }
98
99         ~SQLConn()
100         {
101                 if (conn)
102                 {
103                         sqlite3_interrupt(conn);
104                         sqlite3_close(conn);
105                 }
106         }
107
108         void Query(SQLQuery* query, const std::string& q)
109         {
110                 SQLite3Result res;
111                 sqlite3_stmt *stmt;
112                 int err = sqlite3_prepare_v2(conn, q.c_str(), q.length(), &stmt, NULL);
113                 if (err != SQLITE_OK)
114                 {
115                         SQLerror error(SQL_QSEND_FAIL, sqlite3_errmsg(conn));
116                         query->OnError(error);
117                         return;
118                 }
119                 int cols = sqlite3_column_count(stmt);
120                 res.columns.resize(cols);
121                 for(int i=0; i < cols; i++)
122                 {
123                         res.columns[i] = sqlite3_column_name(stmt, i);
124                 }
125                 while (1)
126                 {
127                         err = sqlite3_step(stmt);
128                         if (err == SQLITE_ROW)
129                         {
130                                 // Add the row
131                                 res.fieldlists.resize(res.rows + 1);
132                                 res.fieldlists[res.rows].resize(cols);
133                                 for(int i=0; i < cols; i++)
134                                 {
135                                         const char* txt = (const char*)sqlite3_column_text(stmt, i);
136                                         if (txt)
137                                                 res.fieldlists[res.rows][i] = SQLEntry(txt);
138                                 }
139                                 res.rows++;
140                         }
141                         else if (err == SQLITE_DONE)
142                         {
143                                 query->OnResult(res);
144                                 break;
145                         }
146                         else
147                         {
148                                 SQLerror error(SQL_QREPLY_FAIL, sqlite3_errmsg(conn));
149                                 query->OnError(error);
150                                 break;
151                         }
152                 }
153                 sqlite3_finalize(stmt);
154         }
155
156         void submit(SQLQuery* query, const std::string& q)
157         {
158                 Query(query, q);
159                 delete query;
160         }
161
162         void submit(SQLQuery* query, const std::string& q, const ParamL& p)
163         {
164                 std::string res;
165                 unsigned int param = 0;
166                 for(std::string::size_type i = 0; i < q.length(); i++)
167                 {
168                         if (q[i] != '?')
169                                 res.push_back(q[i]);
170                         else
171                         {
172                                 if (param < p.size())
173                                 {
174                                         char* escaped = sqlite3_mprintf("%q", p[param++].c_str());
175                                         res.append(escaped);
176                                         sqlite3_free(escaped);
177                                 }
178                         }
179                 }
180                 submit(query, res);
181         }
182
183         void submit(SQLQuery* query, const std::string& q, const ParamM& p)
184         {
185                 std::string res;
186                 for(std::string::size_type i = 0; i < q.length(); i++)
187                 {
188                         if (q[i] != '$')
189                                 res.push_back(q[i]);
190                         else
191                         {
192                                 std::string field;
193                                 i++;
194                                 while (i < q.length() && isalnum(q[i]))
195                                         field.push_back(q[i++]);
196                                 i--;
197
198                                 ParamM::const_iterator it = p.find(field);
199                                 if (it != p.end())
200                                 {
201                                         char* escaped = sqlite3_mprintf("%q", it->second.c_str());
202                                         res.append(escaped);
203                                         sqlite3_free(escaped);
204                                 }
205                         }
206                 }
207                 submit(query, res);
208         }
209 };
210
211 class ModuleSQLite3 : public Module
212 {
213         ConnMap conns;
214
215  public:
216         ~ModuleSQLite3()
217         {
218                 ClearConns();
219         }
220
221         void ClearConns()
222         {
223                 for(ConnMap::iterator i = conns.begin(); i != conns.end(); i++)
224                 {
225                         SQLConn* conn = i->second;
226                         ServerInstance->Modules->DelService(*conn);
227                         delete conn;
228                 }
229                 conns.clear();
230         }
231
232         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
233         {
234                 ClearConns();
235                 ConfigTagList tags = ServerInstance->Config->ConfTags("database");
236                 for(ConfigIter i = tags.first; i != tags.second; i++)
237                 {
238                         if (i->second->getString("module", "sqlite") != "sqlite")
239                                 continue;
240                         SQLConn* conn = new SQLConn(this, i->second);
241                         conns.insert(std::make_pair(i->second->getString("id"), conn));
242                         ServerInstance->Modules->AddService(*conn);
243                 }
244         }
245
246         Version GetVersion() CXX11_OVERRIDE
247         {
248                 return Version("sqlite3 provider", VF_VENDOR);
249         }
250 };
251
252 MODULE_INIT(ModuleSQLite3)