vty: integration with logging framework
[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
24 #include <sys/types.h>
25
26 #include <osmocore/linuxlist.h>
27 #include <osmocore/talloc.h>
28 #include <osmocore/statistics.h>
29
30 static LLIST_HEAD(counters);
31
32 void *tall_ctr_ctx;
33
34 struct counter *counter_alloc(const char *name)
35 {
36         struct counter *ctr = talloc_zero(tall_ctr_ctx, struct counter);
37
38         if (!ctr)
39                 return NULL;
40
41         ctr->name = name;
42         llist_add_tail(&ctr->list, &counters);
43
44         return ctr;
45 }
46
47 void counter_free(struct counter *ctr)
48 {
49         llist_del(&ctr->list);
50         talloc_free(ctr);
51 }
52
53 int counters_for_each(int (*handle_counter)(struct counter *, void *), void *data)
54 {
55         struct counter *ctr;
56         int rc = 0;
57
58         llist_for_each_entry(ctr, &counters, list) {
59                 rc = handle_counter(ctr, data);
60                 if (rc < 0)
61                         return rc;
62         }
63
64         return rc;
65 }
66