-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathapop_db_sqlite.c
329 lines (301 loc) · 13.2 KB
/
apop_db_sqlite.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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
/** \file apop_db_sqlite.c
This file is included directly into \ref apop_db.c.
Copyright (c) 2006--2007 by Ben Klemens. Licensed under the GPLv2; see COPYING.
*/
#include <sqlite3.h>
#include <string.h>
sqlite3 *db=NULL; //There's only one SQLite database handle. Here it is.
/** \cond doxy_ignore */
typedef struct StdDevCtx StdDevCtx;
struct StdDevCtx {
double avg; /* avg of terms */
double avg2; /* avg of the squares of terms */
double avg3; /* avg of the cube of terms */
double avg4; /* avg of the fourth-power of terms */
int cnt; /* Number of terms counted */
};
/** \endcond */
static void twoStep(sqlite3_context *context, int argc, sqlite3_value **argv){
if (argc<1) return;
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if (p && argv[0]){
double x = sqlite3_value_double(argv[0]);
double ratio = p->cnt/(p->cnt+1.0);
p->cnt++;
p->avg *= ratio;
p->avg2 *= ratio;
p->avg += x/(p->cnt +0.0);
p->avg2 += gsl_pow_2(x)/(p->cnt +0.0);
}
}
static void threeStep(sqlite3_context *context, int argc, sqlite3_value **argv){
if (argc<1) return;
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if (p && argv[0]){
double x = sqlite3_value_double(argv[0]);
double ratio = p->cnt/(p->cnt+1.0);
p->cnt++;
p->avg *= ratio;
p->avg2 *= ratio;
p->avg3 *= ratio;
p->avg += x/p->cnt;
p->avg2 += gsl_pow_2(x)/p->cnt;
p->avg3 += gsl_pow_3(x)/p->cnt;
}
}
static void fourStep(sqlite3_context *context, int argc, sqlite3_value **argv){
if( argc<1 ) return;
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if (p && argv[0]){
double x = sqlite3_value_double(argv[0]);
p->cnt++;
p->avg = (x + p->avg * (p->cnt-1.))/p->cnt;
p->avg2 = (gsl_pow_2(x)+ p->avg2 * (p->cnt-1.))/p->cnt;
p->avg3 = (gsl_pow_3(x)+ p->avg3 * (p->cnt-1.))/p->cnt;
p->avg4 = (gsl_pow_4(x)+ p->avg4 * (p->cnt-1.))/p->cnt;
}
}
static void stdDevFinalizePop(sqlite3_context *context){
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if (p && p->cnt>1)
sqlite3_result_double(context, sqrt((p->avg2 - gsl_pow_2(p->avg))));
else if (p->cnt == 1)
sqlite3_result_double(context, 0);
}
static void varFinalizePop(sqlite3_context *context){
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if( p && p->cnt>1 )
sqlite3_result_double(context, (p->avg2 - gsl_pow_2(p->avg)));
else if (p->cnt == 1)
sqlite3_result_double(context, 0);
}
static void stdDevFinalize(sqlite3_context *context){
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if( p && p->cnt>1 ){
double rCnt = p->cnt;
sqlite3_result_double(context,
sqrt((p->avg2 - gsl_pow_2(p->avg))*rCnt/(rCnt-1.0)));
} else if (p->cnt == 1)
sqlite3_result_double(context, 0);
}
static void varFinalize(sqlite3_context *context){
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if( p && p->cnt>1 ){
double rCnt = p->cnt;
sqlite3_result_double(context,
(p->avg2 - gsl_pow_2(p->avg))*rCnt/(rCnt-1.0));
} else if (p->cnt == 1)
sqlite3_result_double(context, 0);
}
static void skewFinalize(sqlite3_context *context){
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if( p && p->cnt>1 ){
double rCnt = p->cnt;
sqlite3_result_double(context,
(p->avg3*rCnt - 3*p->avg2*p->avg*rCnt
+ 2*rCnt * gsl_pow_3(p->avg)) * rCnt/((rCnt-1.0)*(rCnt-2.0)));
} else if (p->cnt == 1)
sqlite3_result_double(context, 0);
}
static void kurtFinalize(sqlite3_context *context){
StdDevCtx *p = sqlite3_aggregate_context(context, sizeof(*p));
if( p && p->cnt>1 ){
double n = p->cnt;
double kurtovern = p->avg4 - 4*p->avg3*p->avg
+ 6 * p->avg2*gsl_pow_2(p->avg)
- 3* gsl_pow_4(p->avg);
double var = p->avg2 - gsl_pow_2(p->avg);
long double coeff0= n*n/(gsl_pow_3(n)*(gsl_pow_2(n)-3*n+3));
long double coeff1= n*gsl_pow_2(n-1)+ (6*n-9);
long double coeff2= n*(6*n-9);
sqlite3_result_double(context, coeff0*(coeff1 * kurtovern + coeff2 * gsl_pow_2(var)));
} else if (p->cnt == 1)
sqlite3_result_double(context, 0);
}
static void powFn(sqlite3_context *context, int argc, sqlite3_value **argv){
double base = sqlite3_value_double(argv[0]);
double exp = sqlite3_value_double(argv[1]);
sqlite3_result_double(context, pow(base, exp));
}
static void rngFn(sqlite3_context *context, int argc, sqlite3_value **argv){
Staticdef(gsl_rng *, rng, apop_rng_alloc(apop_opts.rng_seed++));
//sqlite3_result_double(context, gsl_rng_uniform(rng));
sqlite3_result_double(context, gsl_rng_uniform(apop_rng_get_thread(-1)));
}
#define sqfn(name) static void name##Fn(sqlite3_context *context, int argc, sqlite3_value **argv){ \
sqlite3_result_double(context, name(sqlite3_value_double(argv[0]))); }
sqfn(sqrt) sqfn(exp) sqfn(log) sqfn(log10) sqfn(sin)
sqfn(cos) sqfn(tan) sqfn(asin) sqfn(acos) sqfn(atan)
static int apop_sqlite_db_open(char const *filename){
int status = sqlite3_open(filename ? filename : ":memory:", &db);
Apop_stopif(status, db=NULL; return status,
0, "The database %s didn't open.", filename ? filename : "in memory");
sqlite3_create_function(db, "stddev", 1, SQLITE_ANY, NULL, NULL, &twoStep, &stdDevFinalize);
sqlite3_create_function(db, "std", 1, SQLITE_ANY, NULL, NULL, &twoStep, &stdDevFinalizePop);
sqlite3_create_function(db, "stddev_samp", 1, SQLITE_ANY, NULL, NULL, &twoStep, &stdDevFinalize);
sqlite3_create_function(db, "stddev_pop", 1, SQLITE_ANY, NULL, NULL, &twoStep, &stdDevFinalizePop);
sqlite3_create_function(db, "var", 1, SQLITE_ANY, NULL, NULL, &twoStep, &varFinalize);
sqlite3_create_function(db, "var_samp", 1, SQLITE_ANY, NULL, NULL, &twoStep, &varFinalize);
sqlite3_create_function(db, "var_pop", 1, SQLITE_ANY, NULL, NULL, &twoStep, &varFinalizePop);
sqlite3_create_function(db, "variance", 1, SQLITE_ANY, NULL, NULL, &twoStep, &varFinalizePop);
sqlite3_create_function(db, "skew", 1, SQLITE_ANY, NULL, NULL, &threeStep, &skewFinalize);
sqlite3_create_function(db, "kurt", 1, SQLITE_ANY, NULL, NULL, &fourStep, &kurtFinalize);
sqlite3_create_function(db, "kurtosis", 1, SQLITE_ANY, NULL, NULL, &fourStep, &kurtFinalize);
sqlite3_create_function(db, "ln", 1, SQLITE_ANY, NULL, &logFn, NULL, NULL);
sqlite3_create_function(db, "ran", 0, SQLITE_ANY, NULL, &rngFn, NULL, NULL);
sqlite3_create_function(db, "pow", 2, SQLITE_ANY, NULL, &powFn, NULL, NULL);
#define sqlink(name) sqlite3_create_function(db, #name , 1, SQLITE_ANY, NULL, &name##Fn, NULL, NULL);
sqlink(sqrt) sqlink(exp) sqlink(sin) sqlink(cos)
sqlink(tan) sqlink(asin) sqlink(acos) sqlink(atan) sqlink(log) sqlink(log10)
apop_query("pragma short_column_names");
return 0;
}
/** \cond doxy_ignore */
typedef struct { //for the apop_query_to_... functions.
int firstcall, namecol;
size_t currentrow;
apop_data *outdata;
} callback_t;
/** \endcond */
//This is the callback for apop_query_to_text.
static int db_to_chars(void *qinfo,int argc, char **argv, char **column){
callback_t *qi= qinfo;
apop_data* d = qi->outdata; //alias. Allocated in calling fn.
int addnames = 0, ncshift=0;
if (!d->names->textct) addnames++;
if (qi->firstcall){
qi->firstcall = 0;
for(int i=0; i<argc; i++)
if (apop_opts.db_name_column && !strcasecmp(column[i], apop_opts.db_name_column)){
qi->namecol = i;
break;
}
}
int rows = d->textsize[0];
int cols = argc - (qi->namecol >= 0);
apop_text_alloc(d, rows+1, cols);//doesn't move d.
for (size_t jj=0; jj<argc; jj++)
if (jj == qi->namecol){
apop_name_add(d->names, argv[jj], 'r');
ncshift ++;
} else {
apop_text_set(d, rows, jj-ncshift, (argv[jj]==NULL)? apop_opts.nan_string: argv[jj]);
//Asprintf(&(d->text[rows][jj-ncshift]), "%s", (argv[jj]==NULL)? "NaN": argv[jj]);
if(addnames)
apop_name_add(d->names, column[jj], 't');
}
return 0;
}
apop_data * apop_sqlite_query_to_text(char *query){
char *err = NULL;
callback_t qinfo = {.outdata=apop_data_alloc(), .namecol=-1, .firstcall=1};
if (db==NULL) apop_db_open(NULL);
sqlite3_exec(db, query, db_to_chars, &qinfo, &err); ERRCHECK_SET_ERROR(qinfo.outdata)
if (qinfo.outdata->textsize[0]==0){
apop_data_free(qinfo.outdata);
return NULL;
}
return qinfo.outdata;
}
/** \cond doxy_ignore */
typedef struct {
apop_data *d;
int intypes[5];//names, vectors, mcols, textcols, weights.
int current, thisrow, error_thrown;
const char *instring;
} apop_qt;
/** \endcond */
static void count_types(apop_qt *in, const char *intypes){
int i = 0;
char c;
in->instring = intypes;
while ((c=intypes[i++]))
if (c=='n'||c=='N') in->intypes[0]++;
else if (c=='v'||c=='V') in->intypes[1]++;
else if (c=='m'||c=='M') in->intypes[2]++;
else if (c=='t'||c=='T') in->intypes[3]++;
else if (c=='w'||c=='W') in->intypes[4]++;
if (in->intypes[0]>1)
Apop_notify(1, "You asked apop_query_to_mixed data for multiple row names. I'll ignore all but the last one.");
if (in->intypes[1]>1)
Apop_notify(1, "You asked apop_query_to_mixed for multiple vectors. I'll ignore all but the last one.");
if (in->intypes[4]>1)
Apop_notify(1, "You asked apop_query_to_mixed for multiple weighting vectors. I'll ignore all but the last one.");
}
static int multiquery_callback(void *instruct, int argc, char **argv, char **column){
apop_qt *in = instruct;
char c;
int thistcol = 0,
thismcol = 0,
colct = 0,
i, addnames = 0;
in->thisrow ++;
if (!in->d) {
in->d = in->intypes[2]
? apop_data_alloc(in->intypes[1], 1, in->intypes[2])
: apop_data_alloc(in->intypes[1]);
if (in->intypes[4])
in->d->weights = gsl_vector_alloc(1);
if (in->intypes[3]){
in->d->textsize[0] = 1;
in->d->textsize[1] = in->intypes[3];
in->d->text = malloc(sizeof(char***));
}
}
if (!(in->d->names->colct + in->d->names->textct + (in->d->names->vector!=NULL)))
addnames++;
if (in->d->textsize[1]){
in->d->textsize[0] = in->thisrow;
in->d->text = realloc(in->d->text, sizeof(char ***)*in->thisrow);
in->d->text[in->thisrow-1] = malloc(sizeof(char**) * in->d->textsize[1]);
}
if (in->intypes[2])
apop_matrix_realloc(in->d->matrix, in->thisrow, in->intypes[2]);
for (i=in->current=0; i< argc; i++){
c = in->instring[in->current++];
if (c=='n'||c=='N'){
apop_name_add(in->d->names, (argv[i]? argv[i] : "NaN") , 'r');
if(addnames)
apop_name_add(in->d->names, column[i], 'h');
} else if (c=='v'||c=='V'){
apop_vector_realloc(in->d->vector, in->thisrow);
apop_data_set(in->d, in->thisrow-1, -1,
argv[i] ? atof(argv[i]) : GSL_NAN);
if(addnames)
apop_name_add(in->d->names, column[i], 'v');
} else if (c=='m'||c=='M'){
apop_data_set(in->d, in->thisrow-1, thismcol++,
argv[i] ? atof(argv[i]) : GSL_NAN);
if(addnames)
apop_name_add(in->d->names, column[i], 'c');
} else if (c=='t'||c=='T'){
Asprintf(&(in->d->text[in->thisrow-1][thistcol++]), "%s",
argv[i] ? argv[i] : "NaN");
if(addnames)
apop_name_add(in->d->names, column[i], 't');
} else if (c=='w'||c=='W'){
apop_vector_realloc(in->d->weights, in->thisrow);
gsl_vector_set(in->d->weights, in->thisrow-1,
argv[i] ? atof(argv[i]) : GSL_NAN);
}
colct++;
}
int requested = in->intypes[0]+in->intypes[1]+in->intypes[2]+in->intypes[3]+in->intypes[4];
Apop_stopif(colct != requested, in->error_thrown='d'; return 1, 1,
"you asked for %i columns in your list of types(%s), but your query produced %u columns. "
"The remainder will be placed in the text section. Output data set's ->error element set to 'd'." , requested, in->instring, colct);
return 0;
}
apop_data *apop_sqlite_multiquery(const char *intypes, char *query){
Apop_stopif(!intypes, apop_return_data_error('t'), 0, "You gave me NULL for the list of input types. I can't work with that.");
Apop_stopif(!query, apop_return_data_error('q'), 0, "You gave me a NULL query. I can't work with that.");
char *err = NULL;
apop_qt info = { };
count_types(&info, intypes);
if (!db) apop_db_open(NULL);
sqlite3_exec(db, query, multiquery_callback, &info, &err);
Apop_stopif(info.error_thrown, if (!info.d) apop_data_alloc(); info.d->error='d'; return info.d,
0, "dimension error");
ERRCHECK_SET_ERROR(info.d)
return info.d;
}