rate_ctr: Store the numeric index as part of 'rate_ctr_group'
[osmocom-bb.git] / src / rate_ctr.c
1 /* utility routines for keeping conters about events and the event rates */
2
3 /* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
4  *
5  * All Rights Reserved
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22
23 #include <stdint.h>
24 #include <inttypes.h>
25 #include <string.h>
26
27 #include <osmocore/linuxlist.h>
28 #include <osmocore/talloc.h>
29 #include <osmocore/timer.h>
30 #include <osmocore/rate_ctr.h>
31
32 static LLIST_HEAD(rate_ctr_groups);
33
34 static void *tall_rate_ctr_ctx;
35
36 struct rate_ctr_group *rate_ctr_group_alloc(void *ctx,
37                                             const struct rate_ctr_group_desc *desc,
38                                             unsigned int idx)
39 {
40         unsigned int size;
41         struct rate_ctr_group *group;
42
43         size = sizeof(struct rate_ctr_group) +
44                         desc->num_ctr * sizeof(struct rate_ctr);
45
46         if (!ctx)
47                 ctx = tall_rate_ctr_ctx;
48
49         group = talloc_zero_size(ctx, size);
50         if (!group)
51                 return NULL;
52
53         group->desc = desc;
54         group->idx = idx;
55         /* Generate the Group prefix from the user-specified index */
56         group->name_prefix = talloc_size(group, strlen(desc->group_prefix_fmt) + 20);
57         sprintf(group->name_prefix, desc->group_prefix_fmt, idx);
58
59         llist_add(&group->list, &rate_ctr_groups);
60
61         return group;
62 }
63
64 void rate_ctr_group_free(struct rate_ctr_group *grp)
65 {
66         llist_del(&grp->list);
67         talloc_free(grp);
68 }
69
70 void rate_ctr_add(struct rate_ctr *ctr, int inc)
71 {
72         ctr->current += inc;
73 }
74
75 static void interval_expired(struct rate_ctr *ctr, enum rate_ctr_intv intv)
76 {
77         /* calculate rate over last interval */
78         ctr->intv[intv].rate = ctr->current - ctr->intv[intv].last;
79         /* save current counter for next interval */
80         ctr->intv[intv].last = ctr->current;
81 }
82
83 static struct timer_list rate_ctr_timer;
84 static uint64_t timer_ticks;
85
86 /* The one-second interval has expired */
87 static void rate_ctr_group_intv(struct rate_ctr_group *grp)
88 {
89         unsigned int i;
90
91         for (i = 0; i < grp->desc->num_ctr; i++) {
92                 struct rate_ctr *ctr = &grp->ctr[i];
93
94                 interval_expired(ctr, RATE_CTR_INTV_SEC);
95                 if ((timer_ticks % 60) == 0)
96                         interval_expired(ctr, RATE_CTR_INTV_MIN);
97                 if ((timer_ticks % (60*60)) == 0)
98                         interval_expired(ctr, RATE_CTR_INTV_HOUR);
99                 if ((timer_ticks % (24*60*60)) == 0)
100                         interval_expired(ctr, RATE_CTR_INTV_DAY);
101         }
102 }
103
104 static void rate_ctr_timer_cb(void *data)
105 {
106         struct rate_ctr_group *ctrg;
107
108         /* Increment number of ticks before we calculate intervals,
109          * as a counter value of 0 would already wrap all counters */
110         timer_ticks++;
111
112         llist_for_each_entry(ctrg, &rate_ctr_groups, list)
113                 rate_ctr_group_intv(ctrg);
114
115         bsc_schedule_timer(&rate_ctr_timer, 1, 0);
116 }
117
118 int rate_ctr_init(void *tall_ctx)
119 {
120         tall_rate_ctr_ctx = tall_ctx;
121         rate_ctr_timer.cb = rate_ctr_timer_cb;
122         bsc_schedule_timer(&rate_ctr_timer, 1, 0);
123
124         return 0;
125 }