xref: /freebsd/lib/libbsdstat/bsdstat.h (revision 38b7eebc4a523983ae9146cc88dc55ba9ade0abc)
181bd3d89SAdrian Chadd /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
35e53a4f9SPedro F. Giffuni  *
481bd3d89SAdrian Chadd  * Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
581bd3d89SAdrian Chadd  * All rights reserved.
681bd3d89SAdrian Chadd  *
781bd3d89SAdrian Chadd  * Redistribution and use in source and binary forms, with or without
881bd3d89SAdrian Chadd  * modification, are permitted provided that the following conditions
981bd3d89SAdrian Chadd  * are met:
1081bd3d89SAdrian Chadd  * 1. Redistributions of source code must retain the above copyright
1181bd3d89SAdrian Chadd  *    notice, this list of conditions and the following disclaimer,
1281bd3d89SAdrian Chadd  *    without modification.
1381bd3d89SAdrian Chadd  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
1481bd3d89SAdrian Chadd  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
1581bd3d89SAdrian Chadd  *    redistribution must be conditioned upon including a substantially
1681bd3d89SAdrian Chadd  *    similar Disclaimer requirement for further binary redistribution.
1781bd3d89SAdrian Chadd  *
1881bd3d89SAdrian Chadd  * NO WARRANTY
1981bd3d89SAdrian Chadd  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2081bd3d89SAdrian Chadd  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2181bd3d89SAdrian Chadd  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
2281bd3d89SAdrian Chadd  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
2381bd3d89SAdrian Chadd  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
2481bd3d89SAdrian Chadd  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2581bd3d89SAdrian Chadd  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2681bd3d89SAdrian Chadd  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
2781bd3d89SAdrian Chadd  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2881bd3d89SAdrian Chadd  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
2981bd3d89SAdrian Chadd  * THE POSSIBILITY OF SUCH DAMAGES.
3081bd3d89SAdrian Chadd  */
3181bd3d89SAdrian Chadd 
3281bd3d89SAdrian Chadd #ifndef	_BSDSTAT_H_
3381bd3d89SAdrian Chadd #define	_BSDSTAT_H_
3481bd3d89SAdrian Chadd /*
3581bd3d89SAdrian Chadd  * Base class for managing+displaying periodically collected statistics.
3681bd3d89SAdrian Chadd  */
3781bd3d89SAdrian Chadd 
3881bd3d89SAdrian Chadd /*
39*38b7eebcSCheng-Yuan Wu  * Statistic definition/description.  These are defined
4081bd3d89SAdrian Chadd  * for stats that correspond 1-1 w/ a collected stat
4181bd3d89SAdrian Chadd  * and for stats that are calculated indirectly.
4281bd3d89SAdrian Chadd  */
4381bd3d89SAdrian Chadd struct fmt {
4481bd3d89SAdrian Chadd 	int	width;			/* printed field width */
4581bd3d89SAdrian Chadd 	const char* name;		/* stat field name referenced by user */
4681bd3d89SAdrian Chadd 	const char* label;		/* printed header label */
4781bd3d89SAdrian Chadd 	const char* desc;		/* verbose description */
4881bd3d89SAdrian Chadd };
4981bd3d89SAdrian Chadd 
5081bd3d89SAdrian Chadd #define	BSDSTAT_DECL_METHODS(_p) \
5181bd3d89SAdrian Chadd 	/* set the format of the statistics to display */	\
5281bd3d89SAdrian Chadd 	void (*setfmt)(_p, const char *);			\
5381bd3d89SAdrian Chadd 	/* collect+store ``current statistics'' */		\
5481bd3d89SAdrian Chadd 	void (*collect_cur)(_p);				\
5581bd3d89SAdrian Chadd 	/* collect+store ``total statistics'' */		\
5681bd3d89SAdrian Chadd 	void (*collect_tot)(_p);				\
5781bd3d89SAdrian Chadd 	/* update ``total statistics'' if necessary from current */ \
5881bd3d89SAdrian Chadd 	void (*update_tot)(_p);					\
5981bd3d89SAdrian Chadd 	/* format a statistic from the current stats */		\
6081bd3d89SAdrian Chadd 	int (*get_curstat)(_p, int, char [], size_t);		\
6181bd3d89SAdrian Chadd 	/* format a statistic from the total stats */		\
6281bd3d89SAdrian Chadd 	int (*get_totstat)(_p, int, char [], size_t);		\
6381bd3d89SAdrian Chadd 	/* print field headers terminated by a \n */		\
6481bd3d89SAdrian Chadd 	void (*print_header)(_p, FILE *);			\
6581bd3d89SAdrian Chadd 	/* print current statistics terminated by a \n */	\
6681bd3d89SAdrian Chadd 	void (*print_current)(_p, FILE *);			\
6781bd3d89SAdrian Chadd 	/* print total statistics terminated by a \n */		\
6881bd3d89SAdrian Chadd 	void (*print_total)(_p, FILE *);			\
6981bd3d89SAdrian Chadd 	/* print total statistics in a verbose (1 stat/line) format */ \
7081bd3d89SAdrian Chadd 	void (*print_verbose)(_p, FILE *);			\
7181bd3d89SAdrian Chadd 	/* print available statistics */			\
7281bd3d89SAdrian Chadd 	void (*print_fields)(_p, FILE *)
7381bd3d89SAdrian Chadd 
7481bd3d89SAdrian Chadd /*
7581bd3d89SAdrian Chadd  * Statistics base class.  This class is not usable; only
7681bd3d89SAdrian Chadd  * classes derived from it are useful.
7781bd3d89SAdrian Chadd  */
7881bd3d89SAdrian Chadd struct bsdstat {
7981bd3d89SAdrian Chadd 	const char *name;		/* statistics name, e.g. wlanstats */
8081bd3d89SAdrian Chadd 	const struct fmt *stats;	/* statistics in class */
8181bd3d89SAdrian Chadd 	int nstats;			/* number of stats */
8281bd3d89SAdrian Chadd #define	FMTS_IS_STAT	0x80	/* the following two bytes are the stat id */
8381bd3d89SAdrian Chadd 	unsigned char fmts[4096];	/* private: compiled stats to display */
8481bd3d89SAdrian Chadd 
8581bd3d89SAdrian Chadd 	BSDSTAT_DECL_METHODS(struct bsdstat *);
8681bd3d89SAdrian Chadd };
8781bd3d89SAdrian Chadd 
8881bd3d89SAdrian Chadd extern	void bsdstat_init(struct bsdstat *, const char *name,
8981bd3d89SAdrian Chadd 		    const struct fmt *stats, int nstats);
9081bd3d89SAdrian Chadd 
9181bd3d89SAdrian Chadd #define	BSDSTAT_DEFINE_BOUNCE(_t) \
9281bd3d89SAdrian Chadd static void _t##_setfmt(struct _t *wf, const char *fmt0)	\
9381bd3d89SAdrian Chadd 	{ wf->base.setfmt(&wf->base, fmt0); }			\
9481bd3d89SAdrian Chadd static void _t##_collect_cur(struct _t *wf)			\
9581bd3d89SAdrian Chadd 	{ wf->base.collect_cur(&wf->base); }			\
9681bd3d89SAdrian Chadd static void _t##_collect_tot(struct _t *wf)			\
9781bd3d89SAdrian Chadd 	{ wf->base.collect_tot(&wf->base); }			\
9881bd3d89SAdrian Chadd static void _t##_update_tot(struct _t *wf)			\
9981bd3d89SAdrian Chadd 	{ wf->base.update_tot(&wf->base); }			\
10081bd3d89SAdrian Chadd static int _t##_get_curstat(struct _t *wf, int s, char b[], size_t bs) \
10181bd3d89SAdrian Chadd 	{ return wf->base.get_curstat(&wf->base, s, b, bs); }	\
10281bd3d89SAdrian Chadd static int _t##_get_totstat(struct _t *wf, int s, char b[], size_t bs) \
10381bd3d89SAdrian Chadd 	{ return wf->base.get_totstat(&wf->base, s, b, bs); }	\
10481bd3d89SAdrian Chadd static void _t##_print_header(struct _t *wf, FILE *fd)		\
10581bd3d89SAdrian Chadd 	{ wf->base.print_header(&wf->base, fd); }		\
10681bd3d89SAdrian Chadd static void _t##_print_current(struct _t *wf, FILE *fd)		\
10781bd3d89SAdrian Chadd 	{ wf->base.print_current(&wf->base, fd); }		\
10881bd3d89SAdrian Chadd static void _t##_print_total(struct _t *wf, FILE *fd)		\
10981bd3d89SAdrian Chadd 	{ wf->base.print_total(&wf->base, fd); }		\
11081bd3d89SAdrian Chadd static void _t##_print_verbose(struct _t *wf, FILE *fd)		\
11181bd3d89SAdrian Chadd 	{ wf->base.print_verbose(&wf->base, fd); }		\
11281bd3d89SAdrian Chadd static void _t##_print_fields(struct _t *wf, FILE *fd)		\
11381bd3d89SAdrian Chadd 	{ wf->base.print_fields(&wf->base, fd); }
11481bd3d89SAdrian Chadd 
11581bd3d89SAdrian Chadd #define	BSDSTAT_BOUNCE(_p, _t) do {				\
11681bd3d89SAdrian Chadd 	_p->base.setfmt = _t##_setfmt;				\
11781bd3d89SAdrian Chadd 	_p->base.collect_cur = _t##_collect_cur;		\
11881bd3d89SAdrian Chadd 	_p->base.collect_tot = _t##_collect_tot;		\
11981bd3d89SAdrian Chadd 	_p->base.update_tot = _t##_update_tot;			\
12081bd3d89SAdrian Chadd 	_p->base.get_curstat = _t##_get_curstat;		\
12181bd3d89SAdrian Chadd 	_p->base.get_totstat = _t##_get_totstat;		\
12281bd3d89SAdrian Chadd 	_p->base.print_header = _t##_print_header;		\
12381bd3d89SAdrian Chadd 	_p->base.print_current = _t##_print_current;		\
12481bd3d89SAdrian Chadd 	_p->base.print_total = _t##_print_total;		\
12581bd3d89SAdrian Chadd 	_p->base.print_verbose = _t##_print_verbose;		\
12681bd3d89SAdrian Chadd 	_p->base.print_fields = _t##_print_fields;		\
12781bd3d89SAdrian Chadd } while (0)
12881bd3d89SAdrian Chadd #endif /* _BSDSTAT_H_ */
129