This repository was archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.c
202 lines (186 loc) · 7.61 KB
/
sql.c
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
/* MiniDLNA media server
* Copyright (C) 2008-2017 Justin Maggard
*
* This file is part of MiniDLNA.
*
* MiniDLNA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* MiniDLNA 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 MiniDLNA. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include "sql.h"
#include "upnpglobalvars.h"
#include "log.h"
int
sql_exec(sqlite3 *db, const char *fmt, ...)
{
int ret;
char *errMsg = NULL;
char *sql;
va_list ap;
// DPRINTF(E_DEBUG, L_DB_SQL, "SQL: %s\n", sql);
va_start(ap, fmt);
sql = sqlite3_vmprintf(fmt, ap);
va_end(ap);
ret = sqlite3_exec(db, sql, 0, 0, &errMsg);
if (ret != SQLITE_OK)
{
DPRINTF(E_ERROR, L_DB_SQL, "SQL ERROR %d [%s]\n%s\n", ret, errMsg, sql);
if (errMsg)
sqlite3_free(errMsg);
}
sqlite3_free(sql);
return ret;
}
int
sql_get_table(sqlite3 *db, const char *sql, char ***pazResult, int *pnRow,
int *pnColumn)
{
int ret;
char *errMsg = NULL;
// DPRINTF(E_DEBUG, L_DB_SQL, "SQL: %s\n", sql);
ret = sqlite3_get_table(db, sql, pazResult, pnRow, pnColumn, &errMsg);
if (ret != SQLITE_OK)
{
DPRINTF(E_ERROR, L_DB_SQL, "SQL ERROR %d [%s]\n%s\n", ret, errMsg, sql);
if (errMsg)
sqlite3_free(errMsg);
}
return ret;
}
#define sql_get_field(errval, on_row_fn) \
do \
{ \
va_list ap; \
int counter, result; \
char *sql; \
sqlite3_stmt *stmt; \
\
va_start(ap, fmt); \
sql = sqlite3_vmprintf(fmt, ap); \
va_end(ap); \
\
if (db == NULL) \
{ \
DPRINTF(E_WARN, L_DB_SQL, "db is NULL\n"); \
return 0; \
} \
\
/*DPRINTF(E_DEBUG, L_DB_SQL, "sql: %s\n", sql); */ \
\
switch (sqlite3_prepare_v2(db, sql, -1, &stmt, NULL)) \
{ \
case SQLITE_OK: \
break; \
default: \
DPRINTF(E_ERROR, L_DB_SQL, "prepare failed: %s\n%s\n", \
sqlite3_errmsg(db), sql); \
sqlite3_free(sql); \
return (errval); \
} \
\
for (counter = 0; ((result = sqlite3_step(stmt)) == SQLITE_BUSY || \
result == SQLITE_LOCKED) && \
counter < 2; \
counter++) \
{ \
/* While SQLITE_BUSY has a built in timeout, \
* SQLITE_LOCKED does not, so sleep */ \
if (result == SQLITE_LOCKED) \
sleep(1); \
} \
\
switch (result) \
{ \
case SQLITE_DONE: \
/* no rows returned */ \
ret = 0; \
break; \
case SQLITE_ROW: \
if (sqlite3_column_type(stmt, 0) == SQLITE_NULL) \
{ \
ret = 0; \
break; \
} \
on_row_fn; \
break; \
default: \
DPRINTF(E_WARN, L_DB_SQL, "%s: step failed: %s\n%s\n", __func__, \
sqlite3_errmsg(db), sql); \
ret = (errval); \
break; \
} \
sqlite3_free(sql); \
sqlite3_finalize(stmt); \
} while (0)
int
sql_get_int_field(sqlite3 *db, const char *fmt, ...)
{
int ret;
sql_get_field(-1, { ret = sqlite3_column_int(stmt, 0); });
return ret;
}
int64_t
sql_get_int64_field(sqlite3 *db, const char *fmt, ...)
{
int64_t ret;
sql_get_field(-1, { ret = sqlite3_column_int64(stmt, 0); });
return ret;
}
char *
sql_get_text_field(sqlite3 *db, const char *fmt, ...)
{
char *ret;
sql_get_field(0, {
int len = sqlite3_column_bytes(stmt, 0);
if ((ret = sqlite3_malloc(len + 1)) == NULL)
{
DPRINTF(E_ERROR, L_DB_SQL, "malloc failed\n");
break;
}
strncpy(ret, (char *)sqlite3_column_text(stmt, 0), len + 1);
});
return ret;
}
int
db_upgrade(sqlite3 *db)
{
int db_vers;
int ret;
db_vers = sql_get_int_field(db, "PRAGMA user_version");
if (db_vers == DB_VERSION)
return 0;
if (db_vers > DB_VERSION)
return -2;
if (db_vers < 1)
return -1;
if (db_vers < 9)
return db_vers;
if (db_vers < 10)
{
DPRINTF(E_WARN, L_DB_SQL, "Updating DB version to v%d\n", 10);
ret = sql_exec(db, "ALTER TABLE BOOKMARKS ADD WATCH_COUNT INTEGER");
if (ret != SQLITE_OK)
return 9;
}
if (db_vers < 11)
{
DPRINTF(E_WARN, L_DB_SQL, "Updating DB version to v%d\n", 11);
ret = sql_exec(db,
"ALTER TABLE PLAYLISTS ADD TIMESTAMP INTEGER DEFAULT 1");
if (ret != SQLITE_OK)
return 10;
}
sql_exec(db, "PRAGMA user_version = %d", DB_VERSION);
return 0;
}