blob: e190337ca4b22ada39abb381d513cc162b9998ae [file] [log] [blame]
Harald Welte3fb0b6f2010-05-19 19:02:52 +02001/* utility routines for printing common objects in the Osmocom world */
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>
Harald Weltefab0ae92012-08-17 12:17:38 +020025#include <string.h>
Holger Hans Peter Freytherb321b932012-09-11 10:39:29 +020026#include <ctype.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020027
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010028#include <osmocom/core/linuxlist.h>
29#include <osmocom/core/talloc.h>
30#include <osmocom/core/timer.h>
31#include <osmocom/core/rate_ctr.h>
Jacob Erlbeck738d9e22015-10-06 15:21:56 +020032#include <osmocom/core/stat_item.h>
Harald Weltefab0ae92012-08-17 12:17:38 +020033#include <osmocom/core/utils.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020034
35#include <osmocom/vty/vty.h>
36
Harald Welte7acb30c2011-08-17 17:13:48 +020037/* \file utils.c */
38
39/*! \addtogroup rate_ctr
40 * @{
41 */
42
43/*! \brief print a rate counter group to given VTY
44 * \param[in] vty The VTY to which it should be printed
45 * \param[in] prefix Any additional log prefix ahead of each line
46 * \param[in] ctrg Rate counter group to be printed
47 */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020048void vty_out_rate_ctr_group(struct vty *vty, const char *prefix,
49 struct rate_ctr_group *ctrg)
50{
51 unsigned int i;
52
53 vty_out(vty, "%s%s:%s", prefix, ctrg->desc->group_description, VTY_NEWLINE);
54 for (i = 0; i < ctrg->desc->num_ctr; i++) {
55 struct rate_ctr *ctr = &ctrg->ctr[i];
56 vty_out(vty, " %s%s: %8" PRIu64 " "
57 "(%" PRIu64 "/s %" PRIu64 "/m %" PRIu64 "/h %" PRIu64 "/d)%s",
58 prefix, ctrg->desc->ctr_desc[i].description, ctr->current,
59 ctr->intv[RATE_CTR_INTV_SEC].rate,
60 ctr->intv[RATE_CTR_INTV_MIN].rate,
61 ctr->intv[RATE_CTR_INTV_HOUR].rate,
62 ctr->intv[RATE_CTR_INTV_DAY].rate,
63 VTY_NEWLINE);
64 };
65}
Harald Welte7acb30c2011-08-17 17:13:48 +020066
Jacob Erlbeck738d9e22015-10-06 15:21:56 +020067/*! \brief print a stat item group to given VTY
68 * \param[in] vty The VTY to which it should be printed
69 * \param[in] prefix Any additional log prefix ahead of each line
70 * \param[in] statg Stat item group to be printed
71 */
72void vty_out_stat_item_group(struct vty *vty, const char *prefix,
73 struct stat_item_group *statg)
74{
75 unsigned int i;
76
77 vty_out(vty, "%s%s:%s", prefix, statg->desc->group_description,
78 VTY_NEWLINE);
79 for (i = 0; i < statg->desc->num_items; i++) {
80 struct stat_item *item = statg->items[i];
81 vty_out(vty, " %s%s: %8" PRIi32 " %s%s",
82 prefix, item->desc->description,
83 stat_item_get_last(item),
84 item->desc->unit, VTY_NEWLINE);
85 };
86}
87
Harald Weltefab0ae92012-08-17 12:17:38 +020088/*! \brief Generate a VTY command string from value_string */
89char *vty_cmd_string_from_valstr(void *ctx, const struct value_string *vals,
90 const char *prefix, const char *sep,
91 const char *end, int do_lower)
92{
93 int len = 0, offset = 0, ret, rem;
Jacob Erlbeckcd195fa2013-08-06 14:29:15 +020094 int size = strlen(prefix) + strlen(end);
95 int sep_len = strlen(sep);
Harald Weltefab0ae92012-08-17 12:17:38 +020096 const struct value_string *vs;
97 char *str;
98
99 for (vs = vals; vs->value || vs->str; vs++)
Jacob Erlbeckcd195fa2013-08-06 14:29:15 +0200100 size += strlen(vs->str) + sep_len;
Harald Weltefab0ae92012-08-17 12:17:38 +0200101
102 rem = size;
103 str = talloc_zero_size(ctx, size);
104 if (!str)
105 return NULL;
106
Jacob Erlbeckae15a2c2013-08-06 14:29:14 +0200107 ret = snprintf(str + offset, rem, "%s", prefix);
Harald Weltefab0ae92012-08-17 12:17:38 +0200108 if (ret < 0)
109 goto err;
110 OSMO_SNPRINTF_RET(ret, rem, offset, len);
111
112 for (vs = vals; vs->value || vs->str; vs++) {
113 if (vs->str) {
114 int j, name_len = strlen(vs->str)+1;
115 char name[name_len];
116
117 for (j = 0; j < name_len; j++)
118 name[j] = do_lower ?
119 tolower(vs->str[j]) : vs->str[j];
120
121 name[name_len-1] = '\0';
122 ret = snprintf(str + offset, rem, "%s%s", name, sep);
123 if (ret < 0)
124 goto err;
125 OSMO_SNPRINTF_RET(ret, rem, offset, len);
126 }
127 }
Jacob Erlbeckcd195fa2013-08-06 14:29:15 +0200128 offset -= sep_len; /* to remove the trailing sep */
129 rem += sep_len;
Harald Weltefab0ae92012-08-17 12:17:38 +0200130
Jacob Erlbeckae15a2c2013-08-06 14:29:14 +0200131 ret = snprintf(str + offset, rem, "%s", end);
Harald Weltefab0ae92012-08-17 12:17:38 +0200132 if (ret < 0)
133 goto err;
134 OSMO_SNPRINTF_RET(ret, rem, offset, len);
135err:
136 str[size-1] = '\0';
137 return str;
138}
139
140
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200141/*! @} */