libosmovty 1.9.0.196-9975
Osmocom VTY library
misc.h
Go to the documentation of this file.
1
3#pragma once
4
5#include <osmocom/vty/vty.h>
9
10#define VTY_DO_LOWER 1
11char *vty_cmd_string_from_valstr(void *ctx, const struct value_string *vals,
12 const char *prefix, const char *sep,
13 const char *end, int do_lower);
14
15void vty_out_rate_ctr_group(struct vty *vty, const char *prefix,
16 struct rate_ctr_group *ctrg);
17void vty_out_rate_ctr_group2(struct vty *vty, const char *prefix,
18 struct rate_ctr_group *ctrg, bool skip_zero);
19void vty_out_rate_ctr_group_fmt(struct vty *vty, const char *fmt,
20 struct rate_ctr_group *ctrg);
21void vty_out_rate_ctr_group_fmt2(struct vty *vty, const char *fmt,
22 struct rate_ctr_group *ctrg, bool skip_zero);
23
24
25void vty_out_stat_item_group(struct vty *vty, const char *prefix,
26 struct osmo_stat_item_group *statg);
27void vty_out_stat_item_group2(struct vty *vty, const char *prefix,
28 struct osmo_stat_item_group *statg, bool skip_zero);
29
30void vty_out_statistics_full(struct vty *vty, const char *prefix);
31void vty_out_statistics_full2(struct vty *vty, const char *prefix, bool skip_zero);
32void vty_out_statistics_partial(struct vty *vty, const char *prefix, int max_level);
33void vty_out_statistics_partial2(struct vty *vty, const char *prefix, int max_level, bool skip_zero);
34
35
36struct osmo_fsm;
37struct osmo_fsm_inst;
38void vty_out_fsm(struct vty *vty, struct osmo_fsm *fsm);
39void vty_out_fsm2(struct vty *vty, const char *prefix, struct osmo_fsm *fsm);
40void vty_out_fsm_inst(struct vty *vty, struct osmo_fsm_inst *fsmi);
41void vty_out_fsm_inst2(struct vty *vty, const char *prefix, struct osmo_fsm_inst *fsmi);
42void osmo_fsm_vty_add_cmds(void);
44
45
46int osmo_vty_write_config_file(const char *filename);
int osmo_vty_save_config_file(void)
Save the current state to the config file.
Definition: command.c:4393
int osmo_vty_write_config_file(const char *filename)
Write the current running config to a given file.
Definition: command.c:4375
void vty_out_rate_ctr_group_fmt(struct vty *vty, const char *fmt, struct rate_ctr_group *ctrg)
Definition: utils.c:234
void vty_out_rate_ctr_group(struct vty *vty, const char *prefix, struct rate_ctr_group *ctrg)
Definition: utils.c:89
void vty_out_rate_ctr_group2(struct vty *vty, const char *prefix, struct rate_ctr_group *ctrg, bool skip_zero)
print a rate counter group to given VTY
Definition: utils.c:79
void vty_out_rate_ctr_group_fmt2(struct vty *vty, const char *fmt, struct rate_ctr_group *ctrg, bool skip_zero)
print a rate counter group to given VTY, formatting the line for each counter according to a format s...
Definition: utils.c:227
void vty_out_stat_item_group2(struct vty *vty, const char *prefix, struct osmo_stat_item_group *statg, bool skip_zero)
print a stat item group to given VTY
Definition: utils.c:288
void vty_out_stat_item_group(struct vty *vty, const char *prefix, struct osmo_stat_item_group *statg)
Definition: utils.c:298
char * vty_cmd_string_from_valstr(void *ctx, const struct value_string *vals, const char *prefix, const char *sep, const char *end, int do_lower)
Generate a VTY command string from value_string.
Definition: utils.c:372
void vty_out_statistics_partial2(struct vty *vty, const char *prefix, int max_level, bool skip_zero)
Definition: utils.c:346
void vty_out_statistics_full(struct vty *vty, const char *prefix)
Definition: utils.c:366
void vty_out_statistics_partial(struct vty *vty, const char *prefix, int max_level)
Definition: utils.c:356
void vty_out_statistics_full2(struct vty *vty, const char *prefix, bool skip_zero)
Definition: utils.c:361
void vty_out_fsm2(struct vty *vty, const char *prefix, struct osmo_fsm *fsm)
Print information about a FSM [class] to the given VTY.
Definition: fsm_vty.c:53
void osmo_fsm_vty_add_cmds(void)
Install VTY commands for FSM introspection This installs a couple of VTY commands for introspection o...
Definition: fsm_vty.c:202
void vty_out_fsm_inst2(struct vty *vty, const char *prefix, struct osmo_fsm_inst *fsmi)
Print a FSM instance to the given VTY.
Definition: fsm_vty.c:93
void vty_out_fsm(struct vty *vty, struct osmo_fsm *fsm)
Print information about a FSM [class] to the given VTY.
Definition: fsm_vty.c:83
void vty_out_fsm_inst(struct vty *vty, struct osmo_fsm_inst *fsmi)
Print a FSM instance to the given VTY.
Definition: fsm_vty.c:121
void osmo_talloc_vty_add_cmds(void)
Install VTY commands for talloc context introspection.
Definition: talloc_ctx_vty.c:247
struct osmo_fsm * fsm
Internal representation of a single VTY.
Definition: vty.h:60