blob: e28541ba89c5daa0ad9d893f0bd529ef28f00917 [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/* 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
Holger Hans Peter Freythera9f526a2011-04-18 16:45:45 +020023#include <string.h>
Harald Welteec8b4502010-02-20 20:34:29 +010024
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010025#include <osmocom/core/linuxlist.h>
26#include <osmocom/core/talloc.h>
27#include <osmocom/core/statistics.h>
Harald Welteec8b4502010-02-20 20:34:29 +010028
29static LLIST_HEAD(counters);
30
31void *tall_ctr_ctx;
32
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020033struct osmo_counter *osmo_counter_alloc(const char *name)
Harald Welteec8b4502010-02-20 20:34:29 +010034{
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020035 struct osmo_counter *ctr = talloc_zero(tall_ctr_ctx, struct osmo_counter);
Harald Welteec8b4502010-02-20 20:34:29 +010036
37 if (!ctr)
38 return NULL;
39
40 ctr->name = name;
41 llist_add_tail(&ctr->list, &counters);
42
43 return ctr;
44}
45
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020046void osmo_counter_free(struct osmo_counter *ctr)
Harald Welteec8b4502010-02-20 20:34:29 +010047{
48 llist_del(&ctr->list);
49 talloc_free(ctr);
50}
51
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020052int osmo_counters_for_each(int (*handle_counter)(struct osmo_counter *, void *),
53 void *data)
Harald Welteec8b4502010-02-20 20:34:29 +010054{
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020055 struct osmo_counter *ctr;
Harald Welteec8b4502010-02-20 20:34:29 +010056 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
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020067struct osmo_counter *osmo_counter_get_by_name(const char *name)
Daniel Willmann334c8e12011-04-08 10:46:19 +020068{
Pablo Neira Ayuso220abab2011-05-07 12:43:04 +020069 struct osmo_counter *ctr;
Daniel Willmann334c8e12011-04-08 10:46:19 +020070
71 llist_for_each_entry(ctr, &counters, list) {
72 if (!strcmp(ctr->name, name))
73 return ctr;
74 }
75 return NULL;
76}