83bb6ed33a3b4bc436fa9188dcc167d6c218f199
[osmocom-bb.git] / src / statistics.c
1 /* utility routines for keeping some statistics */
2
3 /* (C) 2009 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 <string.h>
24
25 #include <osmocom/core/linuxlist.h>
26 #include <osmocom/core/talloc.h>
27 #include <osmocom/core/statistics.h>
28
29 static LLIST_HEAD(counters);
30
31 void *tall_ctr_ctx;
32
33 struct counter *counter_alloc(const char *name)
34 {
35         struct counter *ctr = talloc_zero(tall_ctr_ctx, struct counter);
36
37         if (!ctr)
38                 return NULL;
39
40         ctr->name = name;
41         llist_add_tail(&ctr->list, &counters);
42
43         return ctr;
44 }
45
46 void counter_free(struct counter *ctr)
47 {
48         llist_del(&ctr->list);
49         talloc_free(ctr);
50 }
51
52 int counters_for_each(int (*handle_counter)(struct counter *, void *), void *data)
53 {
54         struct counter *ctr;
55         int rc = 0;
56
57         llist_for_each_entry(ctr, &counters, list) {
58                 rc = handle_counter(ctr, data);
59                 if (rc < 0)
60                         return rc;
61         }
62
63         return rc;
64 }
65
66 struct counter *counter_get_by_name(const char *name)
67 {
68         struct counter *ctr;
69
70         llist_for_each_entry(ctr, &counters, list) {
71                 if (!strcmp(ctr->name, name))
72                         return ctr;
73         }
74         return NULL;
75 }