forked from bayesfactor/mysql-percentile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudf_percentile.cc
226 lines (183 loc) · 5.16 KB
/
udf_percentile.cc
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
/*
returns the percentile of the values in a distribution
input parameters:
data (real or int)
desired percentile of result, 0-100 (int)
decimals of output (optional, int)
output:
percentile value of the distribution (real)
compiling
gcc -fPIC -Wall -I /usr/include/mysql51/mysql/ -shared -o udf_percentile.so udf_percentile.cc
udf_percentile.so /usr/lib64/mysql/plugin/
registering the function:
CREATE AGGREGATE FUNCTION percentile RETURNS REAL SONAME 'udf_percentile.so';
getting rid of the function:
DROP FUNCTION percentile;
hat tip to Jan Steemann's udf_median function http://mysql-udf.sourceforge.net/
*/
#ifdef STANDARD
#include <stdio.h>
#include <string.h>
#ifdef __WIN__
typedef unsigned __int64 ulonglong;
typedef __int64 longlong;
#else
typedef unsigned long long ulonglong;
typedef long long longlong;
#endif /*__WIN__*/
#else
#include <my_global.h>
#include <my_sys.h>
#endif
#include <mysql.h>
#include <m_ctype.h>
#include <m_string.h>
#ifdef HAVE_DLOPEN
#define BUFFERSIZE 1024
extern "C" {
my_bool percentile_init( UDF_INIT* initid, UDF_ARGS* args, char* message );
void percentile_deinit( UDF_INIT* initid );
void percentile_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
void percentile_clear(UDF_INIT* initid, char *is_null, char *error);
void percentile_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
double percentile( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
}
struct percentile_data
{
unsigned long count;
unsigned long abscount;
unsigned long pages;
double *values;
};
my_bool percentile_init( UDF_INIT* initid, UDF_ARGS* args, char* message )
{
if ( args->arg_count < 2 || args->arg_count>3)
{
strcpy(message,"wrong number of arguments: percentile() requires two - three arguments");
return 1;
}
if (args->arg_type[0]!=REAL_RESULT && args->arg_type[0]!=INT_RESULT)
{
strcpy(message,"percentile() requires a real or int as parameter 1");
return 1;
}
if (args->arg_type[1]!=REAL_RESULT && args->arg_type[1]!=INT_RESULT)
{
asprintf(&message,"percentile() requires a real/int as parameter 2, instead %d",args->arg_type[1]);
return 1;
}
if (args->arg_count>2 && args->arg_type[2]!=INT_RESULT)
{
strcpy(message,"percentile() requires an int as parameter 3");
return 1;
}
initid->decimals=2;
if (args->arg_count==3 && (*((ulong*)args->args[2])<=16))
{
initid->decimals=*((ulong*)args->args[2]);
}
percentile_data *buffer = new percentile_data;
buffer->count = 0;
buffer->abscount=0;
buffer->pages = 1;
buffer->values = NULL;
initid->maybe_null = 1;
initid->max_length = 32;
initid->ptr = (char*)buffer;
return 0;
}
void percentile_deinit( UDF_INIT* initid )
{
percentile_data *buffer = (percentile_data*)initid->ptr;
if (buffer->values != NULL)
{
free(buffer->values);
buffer->values=NULL;
}
delete initid->ptr;
}
void percentile_clear(UDF_INIT* initid, char *is_null, char *error){
percentile_data *buffer = (percentile_data*)initid->ptr;
buffer->count = 0;
buffer->abscount=0;
buffer->pages = 1;
*is_null = 0;
*error = 0;
if (buffer->values != NULL)
{
free(buffer->values);
buffer->values=NULL;
}
buffer->values=(double *) malloc(BUFFERSIZE*sizeof(double));
}
void percentile_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
percentile_clear(initid, is_null, is_error);
percentile_add( initid, args, is_null, is_error );
}
void percentile_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
if (args->args[0]!=NULL)
{
percentile_data *buffer = (percentile_data*)initid->ptr;
if (buffer->count>=BUFFERSIZE)
{
buffer->pages++;
buffer->count=0;
buffer->values=(double *) realloc(buffer->values,BUFFERSIZE*buffer->pages*sizeof(double));
}
if(args->arg_type[0]==INT_RESULT){
buffer->values[buffer->abscount++] = (double) *((longlong*)args->args[0]);
}
else{
buffer->values[buffer->abscount++] = *((double*)args->args[0]);
}
buffer->count++;
}
}
int compare_doubles (const void *a, const void *b)
{
const double *da = (const double *) a;
const double *db = (const double *) b;
return (*da > *db) - (*da < *db);
}
double percentile( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
percentile_data* buffer = (percentile_data*)initid->ptr;
double pctile;
if (buffer->abscount==0 || *is_error!=0)
{
*is_null = 1;
return 0.0;
}
*is_null=0;
if (buffer->abscount==1)
{
return buffer->values[0];
}
qsort(buffer->values,buffer->abscount,sizeof(double),compare_doubles);
if(args->arg_type[1]==INT_RESULT){
pctile = (double) *((longlong*)args->args[1]);
}
else{
pctile = *((double*)args->args[1]);
}
int n = buffer->abscount - 1;
if(pctile <=0){
return buffer->values[0];
}
if(pctile>=100){
return buffer->values[n];
}
double i = (n * pctile) / 100.0 ;
int ix = (int) i;
if (i == ix)
{
return buffer->values[ix];
} else
{
int j = ix + 1 >= n ? n : ix + 1;
return(buffer->values[ix]*(j - i) + buffer->values[j]*(i - ix));
}
}
#endif