-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlite.h
121 lines (103 loc) · 3.83 KB
/
sqlite.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
jmdict, a frontend to the JMdict file. http://mandrill.fuxx0r.net/jmdict.php
Copyright (C) 2004 Florian Bluemel ([email protected])
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <cstring>
#include <string>
#include <cctype>
#include <stdexcept>
#include <sqlite3.h>
namespace sql {
template<typename T> struct query_traits;
template<> struct query_traits<const char* const> { static std::string chars() { return "qQs"; } };
template<> struct query_traits<char* const> { static std::string chars() { return "qQs"; } };
template<> struct query_traits<const int> { static std::string chars() { return "cdi"; } };
template<> struct query_traits<const unsigned> { static std::string chars() { return "ouxX"; } };
typedef int (*callback)(void*, int, char**, char**);
class query {
class mem_guard {
public:
mem_guard(char* p) : p(p) {}
~mem_guard() { sqlite3_free(p); }
operator const char*() const { return p; }
private:
char* p;
};
public:
explicit query(const std::string& q = "") : q(q), pos(0) {
ff();
}
query& operator=(const std::string& s) {
q = s;
pos = 0;
ff();
return *this;
}
class wrong_format : public std::logic_error {
public:
wrong_format(char type, const std::string& format)
: std::logic_error(std::string("wrong format string in sql query, expected one of the following: ")
+ format + ", got " + type + ".") {}
};
template<typename T> query& operator%(const T& t)
{
if(type >= q.size() || query_traits<const T>::chars().find(q[type]) == std::string::npos)
throw wrong_format(q[type], query_traits<const T>::chars());
mem_guard repl(sqlite3_mprintf(q.substr(pos, type - pos + 1).c_str(), t));
put(repl);
return *this;
}
query& operator%(const std::string& s) {
return *this % s.c_str();
}
const std::string& str() const {
return q;
}
private:
void put(const char* repl) {
q.replace(pos, type - pos + 1, repl);
pos += strlen(repl);
ff();
}
void ff() {
static const std::string CONV("diouxXeEfFgGaAcsCSPnqQ");
pos = q.find('%', pos);
while (pos < q.size() - 1 && q[pos + 1] == '%')
pos = q.find('%', pos + 2);
type = pos;
while (type < q.size() && CONV.find(q[type]) == std::string::npos)
++type;
}
std::string q;
std::string::size_type pos;
std::string::size_type type;
};
struct db {
explicit db(const std::string& name) {
if (sqlite3_open(name.c_str(), &raw) != SQLITE_OK)
throw std::runtime_error("Could not connect to sqlite database '" + name + "'.");
}
~db() {
sqlite3_close(raw);
}
void exec(const std::string& query, callback cb = 0, void* arg = 0) {
sqlite3_exec(raw, query.c_str(), cb, arg, 0);
}
void exec(const query& query, callback cb = 0, void* arg = 0) {
exec(query.str(), cb, arg);
}
private:
sqlite3* raw;
};
} // namespace sql