forked from megastep/mysql-udf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
udf_geomean.cc
165 lines (125 loc) · 3.44 KB
/
udf_geomean.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
/*
returns the geometric mean of values
input parameters:
data (real)
number of decimals in result (int, optional)
output:
geometric mean of the values (real)
registering the function:
CREATE AGGREGATE FUNCTION geomean RETURNS REAL SONAME 'udf_geomean.so';
getting rid of the function:
DROP FUNCTION geomean;
*/
#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
extern "C" {
my_bool geomean_init( UDF_INIT* initid, UDF_ARGS* args, char* message );
void geomean_deinit( UDF_INIT* initid );
void geomean_clear( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error );
void geomean_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
void geomean_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
double geomean( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
}
struct geomean_data
{
unsigned long count;
bool isset;
double value;
};
my_bool geomean_init( UDF_INIT* initid, UDF_ARGS* args, char* message ) {
if (args->arg_count < 1 || args->arg_count>2) {
strcpy(message,"wrong number of arguments: geomean() requires one or two arguments");
return 1;
}
if (args->arg_type[0] == INT_RESULT) {
args->arg_type[0] = REAL_RESULT;
}
if (args->arg_type[0] != REAL_RESULT) {
strcpy(message,"geomean() requires a real as parameter 1");
return 1;
}
if (args->arg_count>1 && (args->arg_type[1] != INT_RESULT)) {
strcpy(message,"geomean() requires an int as parameter 2");
return 1;
}
initid->decimals = 2;
if (args->arg_count == 2 && (*((ulong*)args->args[1]) <= 16)) {
initid->decimals = *((ulong*)args->args[1]);
}
geomean_data *buffer = new geomean_data;
buffer->count = 0;
buffer->value = 0;
buffer->isset = false;
initid->maybe_null = 1;
initid->max_length = 32;
initid->ptr = (char*)buffer;
return 0;
}
void geomean_deinit( UDF_INIT* initid )
{
delete initid->ptr;
}
void geomean_clear( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
geomean_data *buffer = (geomean_data*)initid->ptr;
buffer->count = 0;
buffer->value=0;
buffer->isset=false;
*is_null = 0;
*is_error = 0;
}
void geomean_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
geomean_clear( initid, args, is_null, is_error );
geomean_add( initid, args, is_null, is_error );
}
void geomean_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
if (args->args[0]!=NULL)
{
double value;
geomean_data *buffer = (geomean_data*)initid->ptr;
value=(double) *((double*) args->args[0]);
buffer->count++;
if (buffer->isset)
{
buffer->value*=value;
} else
{
buffer->value=value;
buffer->isset=true;
}
}
}
double geomean( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
geomean_data* buffer = (geomean_data*)initid->ptr;
if (buffer->count==0 || *is_error!=0)
{
*is_null = 1;
return 0.0;
}
*is_null=0;
if (buffer->count==1)
{
return buffer->value;
}
return (double) pow(buffer->value,1.0/buffer->count);
}
#endif