forked from megastep/mysql-udf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
udf_weightedavg.cc
158 lines (121 loc) · 3.5 KB
/
udf_weightedavg.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
/*
returns the weighted average of values
input parameters:
data (real)
weight (real)
number of decimals in result (int, optional)
output:
weighted of the values (real)
registering the function:
CREATE AGGREGATE FUNCTION weightedavg RETURNS REAL SONAME 'udf_weightedavg.so';
getting rid of the function:
DROP FUNCTION weightedavg;
*/
#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 weightedavg_init( UDF_INIT* initid, UDF_ARGS* args, char* message );
void weightedavg_deinit( UDF_INIT* initid );
void weightedavg_clear( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error );
void weightedavg_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
void weightedavg_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
double weightedavg( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
}
struct weightedavg_data
{
unsigned long count;
double datasum;
double weightsum;
};
my_bool weightedavg_init( UDF_INIT* initid, UDF_ARGS* args, char* message )
{
if (args->arg_count < 2 || args->arg_count>3)
{
strcpy(message,"wrong number of arguments: weightedavg() requires two or three arguments");
return 1;
}
if (args->arg_type[0]!=REAL_RESULT)
{
strcpy(message,"weightedavg() requires a real as parameter 1");
return 1;
}
if (args->arg_type[1]!=REAL_RESULT)
{
strcpy(message,"weightedavg() requires a real as parameter 2");
return 1;
}
if (args->arg_count>2 && (args->arg_type[3]!=INT_RESULT))
{
strcpy(message,"weightedavg() 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]);
}
weightedavg_data *buffer = new weightedavg_data;
buffer->count = 0;
buffer->datasum = 0;
buffer->weightsum = 0;
initid->maybe_null = 1;
initid->max_length = 32;
initid->ptr = (char*)buffer;
return 0;
}
void weightedavg_deinit( UDF_INIT* initid )
{
delete initid->ptr;
}
void weightedavg_clear( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
weightedavg_data *buffer = (weightedavg_data*)initid->ptr;
buffer->count = 0;
buffer->datasum = 0;
buffer->weightsum = 0;
*is_null = 0;
*is_error = 0;
}
void weightedavg_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
weightedavg_clear( initid, args, is_null, is_error );
weightedavg_add( initid, args, is_null, is_error );
}
void weightedavg_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
if (args->args[0]!=NULL && args->args[1]!=NULL)
{
weightedavg_data *buffer = (weightedavg_data*)initid->ptr;
buffer->datasum+=(double) *((double*) args->args[0])*(double) *((double*) args->args[1]);
buffer->weightsum+=(double) *((double*) args->args[1]);
buffer->count++;
}
}
double weightedavg( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
weightedavg_data* buffer = (weightedavg_data*)initid->ptr;
if (buffer->count==0 || buffer->weightsum==0.0 || *is_error!=0)
{
*is_null = 1;
return 0.0;
}
*is_null=0;
return (double) buffer->datasum/buffer->weightsum;
}
#endif