aboutsummaryrefslogtreecommitdiff
path: root/tools/tools/mwl/mwlstats/statfoo.c
blob: 9de060f452efd54010b33d48890feb9a7fd576e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*-
 * Copyright (c) 2007 Sam Leffler, Errno Consulting
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
 *    redistribution must be conditioned upon including a substantially
 *    similar Disclaimer requirement for further binary redistribution.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 * THE POSSIBILITY OF SUCH DAMAGES.
 *
 * $FreeBSD: src/tools/tools/mwl/mwlstats/statfoo.c,v 1.1.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
 */

#include <stdio.h>
#include <string.h>

#include "statfoo.h"

static void
statfoo_setfmt(struct statfoo *sf, const char *fmt0)
{
#define	N(a)	(sizeof(a)/sizeof(a[0]))
	char fmt[4096];
	char *fp, *tok;
	int i, j;

	j = 0;
	strlcpy(fmt, fmt0, sizeof(fmt));
	for (fp = fmt; (tok = strsep(&fp, ", ")) != NULL;) {
		for (i = 0; i < sf->nstats; i++)
			if (strcasecmp(tok, sf->stats[i].name) == 0)
				break;
		if (i >= sf->nstats) {
			fprintf(stderr, "%s: unknown statistic name \"%s\" "
				"skipped\n", sf->name, tok);
			continue;
		}
		if (j+3 > sizeof(sf->fmts)) {
			fprintf(stderr, "%s: not enough room for all stats; "
				"stopped at %s\n", sf->name, tok);
			break;
		}
		if (j != 0)
			sf->fmts[j++] = ' ';
		sf->fmts[j++] = 0x80 | i;
	}
	sf->fmts[j] = '\0';
#undef N
}

static void 
statfoo_collect(struct statfoo *sf)
{
	fprintf(stderr, "%s: don't know how to collect data\n", sf->name);
}

static void 
statfoo_update_tot(struct statfoo *sf)
{
	fprintf(stderr, "%s: don't know how to update total data\n", sf->name);
}

static int 
statfoo_get(struct statfoo *sf, int s, char b[], size_t bs)
{
	fprintf(stderr, "%s: don't know how to get stat #%u\n", sf->name, s);
	return 0;
}

static void
statfoo_print_header(struct statfoo *sf, FILE *fd)
{
	const unsigned char *cp;

	for (cp = sf->fmts; *cp != '\0'; cp++) {
		if (*cp & 0x80) {
			const struct fmt *f = &sf->stats[*cp &~ 0x80];
			fprintf(fd, "%*s", f->width, f->label);
		} else
			putc(*cp, fd);
	}
	putc('\n', fd);
}

static void
statfoo_print_current(struct statfoo *sf, FILE *fd)
{
	char buf[32];
	const unsigned char *cp;

	for (cp = sf->fmts; *cp != '\0'; cp++) {
		if (*cp & 0x80) {
			const struct fmt *f = &sf->stats[*cp &~ 0x80];
			if (sf->get_curstat(sf, *cp &~ 0x80, buf, sizeof(buf)))
				fprintf(fd, "%*s", f->width, buf);
		} else
			putc(*cp, fd);
	}
	putc('\n', fd);
}

static void
statfoo_print_total(struct statfoo *sf, FILE *fd)
{
	char buf[32];
	const unsigned char *cp;

	for (cp = sf->fmts; *cp != '\0'; cp++) {
		if (*cp & 0x80) {
			const struct fmt *f = &sf->stats[*cp &~ 0x80];
			if (sf->get_totstat(sf, *cp &~ 0x80, buf, sizeof(buf)))
				fprintf(fd, "%*s", f->width, buf);
		} else
			putc(*cp, fd);
	}
	putc('\n', fd);
}

static void
statfoo_print_verbose(struct statfoo *sf, FILE *fd)
{
	char s[32];
	int i;

	for (i = 0; i < sf->nstats; i++) {
		if (sf->get_totstat(sf, i, s, sizeof(s)) && strcmp(s, "0"))
			fprintf(fd, "%s %s\n", s, sf->stats[i].desc);
	}
}

static void
statfoo_print_fields(struct statfoo *sf, FILE *fd)
{
	int i, w, width;

	width = 0;
	for (i = 0; i < sf->nstats; i++) {
		w = strlen(sf->stats[i].name);
		if (w > width)
			width = w;
	}
	for (i = 0; i < sf->nstats; i++) {
		const struct fmt *f = &sf->stats[i];
		if (f->width != 0)
			fprintf(fd, "%-*s %s\n", width, f->name, f->desc);
	}
}

void
statfoo_init(struct statfoo *sf, const char *name, const struct fmt *stats, int nstats)
{
	sf->name = name;
	sf->stats = stats;
	sf->nstats = nstats;
	sf->setfmt = statfoo_setfmt;
	sf->collect_cur = statfoo_collect;
	sf->collect_tot = statfoo_collect;
	sf->update_tot = statfoo_update_tot;
	sf->get_curstat = statfoo_get;
	sf->get_totstat = statfoo_get;
	sf->print_header = statfoo_print_header;
	sf->print_current = statfoo_print_current;
	sf->print_total = statfoo_print_total;
	sf->print_verbose = statfoo_print_verbose;
	sf->print_fields = statfoo_print_fields;
}