blob: fb03533ff95a225eb301566441f2abf65e19acfb (
plain)
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
|
#include <glib.h>
#include "autoscaler.h"
/* i wish i could have used C99 initializers instead of writing this function */
void
autoscaler_init (AutoScaler *that,
gint64 interval,
guint64 floor)
{
that->update_interval = interval;
that->floor = floor;
that->max = 0;
that->count = 0;
that->last_update = 0;
that->sum = 0;
that->last_average = 0.0f;
}
guint64
autoscaler_get_max (AutoScaler *that,
guint64 current)
{
gint64 now;
that->sum += current;
that->count++;
now = g_get_monotonic_time ();
if ((now - that->last_update) > that->update_interval)
{
float new_average = (float) that->sum / (float) that->count;
float average;
if (new_average < that->last_average)
average = ((that->last_average * 0.5f) + new_average) / 1.5f;
else
average = new_average;
that->max = (guint64) (average * 1.2f);
that->sum = 0;
that->count = 0;
that->last_update = now;
that->last_average = average;
}
that->max = MAX(that->max, current);
that->max = MAX(that->max, that->floor);
#if 0
printf("%p max = %u, current = %u, last_average = %f\n", that, that->max, current, that->last_average);
#endif
return that->max;
}
|