This repository has been archived by the owner on Dec 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
SqliteWP8.cpp
289 lines (241 loc) · 9.31 KB
/
SqliteWP8.cpp
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/*
Copyright (C) 2013 Peter Huene
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "pch.h"
#include "SqliteWP8.h"
using namespace Sqlite;
using namespace Platform;
using namespace std;
vector<char> convert_to_utf8_buffer(String^ str)
{
// A null value cannot be marshalled for Platform::String^, so they should never be null
if (str->IsEmpty())
{
// Return an "empty" string
return vector<char>(1);
}
// Get the size of the utf-8 string
int size = WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, str->Data(), str->Length(), nullptr, 0, nullptr, nullptr);
if (size == 0)
{
// Not much we can do here; just return an empty string
return vector<char>(1);
}
// Allocate the buffer and do the conversion
vector<char> buffer(size + 1 /* null */);
if (WideCharToMultiByte(CP_UTF8, WC_ERR_INVALID_CHARS, str->Data(), str->Length(), buffer.data(), size, nullptr, nullptr) == 0)
{
// Not much we can do here; just return an empty string
return vector<char>(1);
}
return buffer;
}
String^ convert_to_string(char const* str)
{
if (!str)
{
return ref new String();
}
// Get the size of the wide string
int size = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str, -1, nullptr, 0);
if (size == 0)
{
return ref new String();
}
// Allocate the buffer and do the conversion
vector<wchar_t> buffer(size /* already includes null from pasing -1 above */);
if (MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, str, -1, buffer.data(), size) == 0)
{
return ref new String();
}
return ref new String(buffer.data());
}
int Sqlite3::sqlite3_open(String^ filename, Database^* db)
{
auto filename_buffer = convert_to_utf8_buffer(filename);
// Use sqlite3_open instead of sqlite3_open16 so that the default code page for stored strings is UTF-8 and not UTF-16
sqlite3* actual_db = nullptr;
int result = ::sqlite3_open(filename_buffer.data(), &actual_db);
if (db)
{
// If they didn't give us a pointer, the caller has leaked
*db = ref new Database(actual_db);
}
return result;
}
int Sqlite3::sqlite3_open_v2(String^ filename, Database^* db, int flags, String^ zVfs)
{
auto filename_buffer = convert_to_utf8_buffer(filename);
auto zVfs_buffer = convert_to_utf8_buffer(zVfs);
sqlite3* actual_db = nullptr;
int result = ::sqlite3_open_v2(
filename_buffer.data(),
&actual_db,
flags,
zVfs_buffer.size() <= 1 /* empty string */ ? nullptr : zVfs_buffer.data());
if (db)
{
// If they didn't give us a pointer, the caller has leaked
*db = ref new Database(actual_db);
}
return result;
}
int Sqlite3::sqlite3_close(Database^ db)
{
return::sqlite3_close(db ? db->Handle : nullptr);
}
int Sqlite3::sqlite3_busy_timeout(Database^ db, int miliseconds)
{
return ::sqlite3_busy_timeout(db ? db->Handle : nullptr, miliseconds);
}
int Sqlite3::sqlite3_changes(Database^ db)
{
return ::sqlite3_changes(db ? db->Handle : nullptr);
}
int Sqlite3::sqlite3_prepare_v2(Database^ db, String^ query, Statement^* statement)
{
sqlite3_stmt* actual_statement = nullptr;
int result = ::sqlite3_prepare16_v2(
db ? db->Handle : nullptr,
query->IsEmpty() ? L"" : query->Data(),
-1,
&actual_statement,
nullptr);
if (statement)
{
// If they didn't give us a pointer, the caller has leaked
*statement = ref new Statement(actual_statement);
}
return result;
}
int Sqlite3::sqlite3_step(Statement^ statement)
{
return ::sqlite3_step(statement ? statement->Handle : nullptr);
}
int Sqlite3::sqlite3_reset(Statement^ statement)
{
return ::sqlite3_reset(statement ? statement->Handle : nullptr);
}
int Sqlite3::sqlite3_finalize(Statement^ statement)
{
return ::sqlite3_finalize(statement ? statement->Handle : nullptr);
}
int64 Sqlite3::sqlite3_last_insert_rowid(Database^ db)
{
return ::sqlite3_last_insert_rowid(db ? db->Handle : nullptr);
}
void Sqlite3::sqlite3_interrupt(Database^ db)
{
::sqlite3_interrupt(db ? db->Handle : nullptr);
}
String^ Sqlite3::sqlite3_errmsg(Database^ db)
{
return convert_to_string(::sqlite3_errmsg(db ? db->Handle : nullptr));
}
int Sqlite3::sqlite3_bind_parameter_index(Statement^ statement, String^ name)
{
auto name_buffer = convert_to_utf8_buffer(name);
return ::sqlite3_bind_parameter_index(
statement ? statement->Handle : nullptr,
name_buffer.data());
}
int Sqlite3::sqlite3_bind_null(Statement^ statement, int index)
{
return ::sqlite3_bind_null(statement ? statement->Handle : nullptr, index);
}
int Sqlite3::sqlite3_bind_int(Statement^ statement, int index, int value)
{
return ::sqlite3_bind_int(statement ? statement->Handle : nullptr, index, value);
}
int Sqlite3::sqlite3_bind_int64(Statement^ statement, int index, int64 value)
{
return ::sqlite3_bind_int64(statement ? statement->Handle : nullptr, index, value);
}
int Sqlite3::sqlite3_bind_double(Statement^ statement, int index, double value)
{
return ::sqlite3_bind_double(statement ? statement->Handle : nullptr, index, value);
}
int Sqlite3::sqlite3_bind_text(Statement^ statement, int index, String^ value, int length)
{
// Use transient here so that the data gets copied by sqlite
return ::sqlite3_bind_text16(
statement ? statement->Handle : nullptr,
index,
value->IsEmpty() ? L"" : value->Data(),
length < 0 ? value->Length() * sizeof(wchar_t) : length,
SQLITE_TRANSIENT);
}
int Sqlite3::sqlite3_bind_blob(Statement^ statement, int index, const Array<uint8>^ value, int length)
{
// Use transient here so that the data gets copied by sqlite
return ::sqlite3_bind_blob(
statement ? statement->Handle : nullptr,
index,
value ? value->Data : nullptr,
length < 0 ? value->Length : length,
SQLITE_TRANSIENT);
}
int Sqlite3::sqlite3_column_count(Statement^ statement)
{
return ::sqlite3_column_count(statement ? statement->Handle : nullptr);
}
String^ Sqlite3::sqlite3_column_name(Statement^ statement, int index)
{
return convert_to_string(::sqlite3_column_name(statement ? statement->Handle : nullptr, index));
}
int Sqlite3::sqlite3_column_type(Statement^ statement, int index)
{
return ::sqlite3_column_type(statement ? statement->Handle : nullptr, index);
}
int Sqlite3::sqlite3_column_int(Statement^ statement, int index)
{
return ::sqlite3_column_int(statement ? statement->Handle : nullptr, index);
}
int64 Sqlite3::sqlite3_column_int64(Statement^ statement, int index)
{
return ::sqlite3_column_int64(statement ? statement->Handle : nullptr, index);
}
double Sqlite3::sqlite3_column_double(Statement^ statement, int index)
{
return ::sqlite3_column_double(statement ? statement->Handle : nullptr, index);
}
String^ Sqlite3::sqlite3_column_text(Statement^ statement, int index)
{
return ref new String(reinterpret_cast<wchar_t const*>(::sqlite3_column_text16(statement ? statement->Handle : nullptr, index)));
}
Array<uint8>^ Sqlite3::sqlite3_column_blob(Statement^ statement, int index)
{
int count = Sqlite3::sqlite3_column_bytes(statement, index);
Array<uint8>^ blob = ref new Array<uint8>(count < 0 ? 0 : count);
if (count > 0)
{
auto data = static_cast<uint8 const*>(::sqlite3_column_blob(statement ? statement->Handle : nullptr, index));
std::copy(data, data + count, blob->Data);
}
return blob;
}
int Sqlite3::sqlite3_column_bytes(Statement^ statement, int index)
{
return ::sqlite3_column_bytes(statement ? statement->Handle : nullptr, index);
}
int Sqlite3::sqlite3_enable_load_extension(Database^ db, int onoff)
{
// Dummy stub to make sqlite-net work (note: sqlite-net doesn't use it directly)
// While sqlite3_enable_load_extension is declared in sqlite3.h,
// sqlite3.lib provided by "SQL For Windows Phone" doesn't seem to define it
return SQLITE_ERROR;
}
int Sqlite3::sqlite3_extended_errcode(Database^ db)
{
return ::sqlite3_extended_errcode(db ? db->Handle : nullptr);
}
int Sqlite3::set_temp_directory(String^ value)
{
// This is not a sqlite3 function, but a utility method for setting the temp directory
auto value_buffer = convert_to_utf8_buffer(value);
sqlite3_temp_directory = sqlite3_mprintf("%s", value_buffer.data());
return SQLITE_OK;
}