forked from rangan337/comdb2-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlite_tunables.c
62 lines (57 loc) · 1.94 KB
/
sqlite_tunables.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
#include "limit_fortify.h"
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stddef.h>
#include "sqliteInt.h"
struct sqlite3_tunables_type sqlite3_gbl_tunables;
void sqlite3_tunables_init(void) {
#define DEF_ATTR(NAME, name, type, dflt) sqlite3_gbl_tunables.name = dflt;
#include "sqlite_tunables.h"
}
#undef DEF_ATTR
#include "logmsg.h"
void sqlite3_dump_tunables(void) {
#define DEF_ATTR(NAME, name, type, dflt) \
logmsg(LOGMSG_USER, "%-35s", #NAME); \
switch (SQLITE_ATTR_##type) { \
default: \
case SQLITE_ATTR_QUANTITY: \
logmsg(LOGMSG_USER, "%d\n", sqlite3_gbl_tunables.name); \
break; \
case SQLITE_ATTR_BOOLEAN: \
logmsg(LOGMSG_USER, "%s\n", sqlite3_gbl_tunables.name ? "ON" : "OFF"); \
};
#include "sqlite_tunables.h"
}
#undef DEF_ATTR
void sqlite3_set_tunable_by_name(char *tname, char *val) {
int nval;
char *endp;
nval = strtol(val, &endp, 10);
if (0);
#define DEF_ATTR(NAME, name, type, dflt) \
else if (strcasecmp(tname, #NAME) == 0) { \
switch (SQLITE_ATTR_##type) { \
default: \
case SQLITE_ATTR_QUANTITY: \
sqlite3_gbl_tunables.name = nval; \
break; \
case SQLITE_ATTR_BOOLEAN: \
if (strcasecmp(val, "on")==0)\
sqlite3_gbl_tunables.name = 1; \
else if (strcasecmp(val, "off")==0) \
sqlite3_gbl_tunables.name = 0; \
else { \
logmsg(LOGMSG_ERROR, "Expected ON or OFF\n"); \
} \
break; \
} \
}
#include "sqlite_tunables.h"
else {
logmsg(LOGMSG_ERROR, "Unknown tunable %s\n", tname);
}
}
#undef DEF_ATTR