-
Notifications
You must be signed in to change notification settings - Fork 7
/
array_to_percentiles.c
167 lines (134 loc) · 4.63 KB
/
array_to_percentiles.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
Datum array_to_percentiles(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(array_to_percentiles);
/**
* Returns a list of percentiles from an array of numbers.
* by Paul A. Jungwirth
*/
Datum
array_to_percentiles(PG_FUNCTION_ARGS)
{
// Our arguments:
ArrayType *vals;
ArrayType *percs;
ArrayType *ret;
// The array element type:
Oid valsType;
Oid percsType;
// The array element type widths for our input array:
int16 valsTypeWidth;
int16 percsTypeWidth;
int16 retTypeWidth;
// The array element type "is passed by value" flags (not really used):
bool valsTypeByValue;
bool percsTypeByValue;
bool retTypeByValue;
// The array element type alignment codes (not really used):
char valsTypeAlignmentCode;
char percsTypeAlignmentCode;
char retTypeAlignmentCode;
// The array contents, as PostgreSQL "Datum" objects:
Datum *valsContent;
Datum *percsContent;
Datum *retContent;
// List of "is null" flags for the array contents (not used):
bool *valsNullFlags;
bool *percsNullFlags;
// The size of the input array:
int valsLength;
int percsLength;
float8 *floatVals;
int i;
float8 perc;
float8 floatPos;
float8 v = 0;
if (PG_ARGISNULL(0) || PG_ARGISNULL(1)) {
ereport(ERROR, (errmsg("Null arguments not accepted")));
}
vals = PG_GETARG_ARRAYTYPE_P(0);
percs = PG_GETARG_ARRAYTYPE_P(1);
if (ARR_NDIM(vals) == 0 || ARR_NDIM(percs) == 0) {
PG_RETURN_NULL();
}
if (ARR_NDIM(vals) > 1 || ARR_NDIM(percs) > 1) {
ereport(ERROR, (errmsg("One-dimesional arrays are required")));
}
if (array_contains_nulls(vals) || array_contains_nulls(percs)) {
ereport(ERROR, (errmsg("Array contains null elements")));
}
// Determine the array element types.
valsType = ARR_ELEMTYPE(vals);
if (valsType != INT2OID &&
valsType != INT4OID &&
valsType != INT8OID &&
valsType != FLOAT4OID &&
valsType != FLOAT8OID) {
ereport(ERROR, (errmsg("Percentiles subject must be SMALLINT, INTEGER, BIGINT, REAL, or DOUBLE PRECISION values")));
}
percsType = ARR_ELEMTYPE(percs);
if (percsType != FLOAT8OID) {
ereport(ERROR, (errmsg("Percentiles list must have DOUBLE PRECISION values")));
}
valsLength = (ARR_DIMS(vals))[0];
percsLength = (ARR_DIMS(percs))[0];
if (percsLength == 0) {
ereport(ERROR, (errmsg("Percentiles list must contain at least one entry")));
}
get_typlenbyvalalign(valsType, &valsTypeWidth, &valsTypeByValue, &valsTypeAlignmentCode);
get_typlenbyvalalign(percsType, &percsTypeWidth, &percsTypeByValue, &percsTypeAlignmentCode);
// Extract the array contents (as Datum objects).
deconstruct_array(vals, valsType, valsTypeWidth, valsTypeByValue, valsTypeAlignmentCode,
&valsContent, &valsNullFlags, &valsLength);
deconstruct_array(percs, percsType, percsTypeWidth, percsTypeByValue, percsTypeAlignmentCode,
&percsContent, &percsNullFlags, &percsLength);
// Compute the percentiles:
floatVals = palloc(sizeof(float8) * valsLength);
switch (valsType) {
case INT2OID:
for (i = 0; i < valsLength; i++) {
floatVals[i] = DatumGetInt16(valsContent[i]);
}
break;
case INT4OID:
for (i = 0; i < valsLength; i++) {
floatVals[i] = DatumGetInt32(valsContent[i]);
}
break;
case INT8OID:
for (i = 0; i < valsLength; i++) {
floatVals[i] = DatumGetInt64(valsContent[i]);
}
break;
case FLOAT4OID:
for (i = 0; i < valsLength; i++) {
floatVals[i] = DatumGetFloat4(valsContent[i]);
}
break;
case FLOAT8OID:
for (i = 0; i < valsLength; i++) {
floatVals[i] = DatumGetFloat8(valsContent[i]);
}
break;
default:
ereport(ERROR, (errmsg("Percentile subject must be SMALLINT, INTEGER, BIGINT, REAL, or DOUBLE PRECISION values")));
break;
}
qsort(floatVals, valsLength, sizeof(float8), compare_float8);
retContent = palloc0(sizeof(Datum) * percsLength);
for (i = 0; i < percsLength; i++) {
perc = DatumGetFloat8(percsContent[i]);
if (perc < 0 || perc > 1) {
ereport(ERROR, (errmsg("Percent must be between 0 and 1")));
}
floatPos = (valsLength - 1) * perc;
v = floatVals[(int)floatPos];
if (floorl(floatPos) != floatPos) {
v += (floatVals[(int)floatPos + 1] - v) * (floatPos - floorl(floatPos));
}
retContent[i] = Float8GetDatum(v);
}
// Wrap the buckets in a new PostgreSQL array object.
get_typlenbyvalalign(FLOAT8OID, &retTypeWidth, &retTypeByValue, &retTypeAlignmentCode);
ret = construct_array(retContent, percsLength, FLOAT8OID, retTypeWidth, retTypeByValue, retTypeAlignmentCode);
// Return the final PostgreSQL array object.
PG_RETURN_ARRAYTYPE_P(ret);
}