]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libdevstat/devstat.h
This commit was generated by cvs2svn to compensate for changes in r81404,
[FreeBSD/FreeBSD.git] / lib / libdevstat / devstat.h
1 /*
2  * Copyright (c) 1997, 1998 Kenneth D. Merry.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #ifndef _DEVSTAT_H
32 #define _DEVSTAT_H
33 #include <sys/cdefs.h>
34 #include <sys/devicestat.h>
35
36 #include <kvm.h>
37
38 #define DEVSTAT_ERRBUF_SIZE  2048 /* size of the devstat library error string */
39
40 extern char devstat_errbuf[];
41
42 typedef enum {
43         DEVSTAT_MATCH_NONE      = 0x00,
44         DEVSTAT_MATCH_TYPE      = 0x01,
45         DEVSTAT_MATCH_IF        = 0x02,
46         DEVSTAT_MATCH_PASS      = 0x04
47 } devstat_match_flags;
48
49 typedef enum {
50         DSM_NONE,
51         DSM_TOTAL_BYTES,
52         DSM_TOTAL_BYTES_READ,
53         DSM_TOTAL_BYTES_WRITE,
54         DSM_TOTAL_TRANSFERS,
55         DSM_TOTAL_TRANSFERS_READ,
56         DSM_TOTAL_TRANSFERS_WRITE,
57         DSM_TOTAL_TRANSFERS_OTHER,
58         DSM_TOTAL_BLOCKS,
59         DSM_TOTAL_BLOCKS_READ,
60         DSM_TOTAL_BLOCKS_WRITE,
61         DSM_KB_PER_TRANSFER,
62         DSM_KB_PER_TRANSFER_READ,
63         DSM_KB_PER_TRANSFER_WRITE,
64         DSM_TRANSFERS_PER_SECOND,
65         DSM_TRANSFERS_PER_SECOND_READ,
66         DSM_TRANSFERS_PER_SECOND_WRITE,
67         DSM_TRANSFERS_PER_SECOND_OTHER,
68         DSM_MB_PER_SECOND,
69         DSM_MB_PER_SECOND_READ,
70         DSM_MB_PER_SECOND_WRITE,
71         DSM_BLOCKS_PER_SECOND,
72         DSM_BLOCKS_PER_SECOND_READ,
73         DSM_BLOCKS_PER_SECOND_WRITE,
74         DSM_MS_PER_TRANSACTION,
75         DSM_MS_PER_TRANSACTION_READ,
76         DSM_MS_PER_TRANSACTION_WRITE,
77         DSM_MAX
78 } devstat_metric;
79
80 struct devstat_match {
81         devstat_match_flags     match_fields;
82         devstat_type_flags      device_type;
83         int                     num_match_categories;
84 };
85
86 struct devstat_match_table {
87         char                    *match_str;
88         devstat_type_flags      type;
89         devstat_match_flags     match_field;
90 };
91
92 struct device_selection {
93         u_int32_t       device_number;
94         char            device_name[DEVSTAT_NAME_LEN];
95         int             unit_number;
96         int             selected;
97         u_int64_t       bytes;
98         int             position;
99 };
100
101 struct devinfo {
102         struct devstat  *devices;
103         u_int8_t        *mem_ptr;
104         long            generation;
105         int             numdevs;
106 };
107
108 struct statinfo {
109         long            cp_time[CPUSTATES];
110         long            tk_nin;
111         long            tk_nout;
112         struct devinfo  *dinfo;
113         struct timeval  busy_time;
114 };
115
116 typedef enum {
117         DS_SELECT_ADD,
118         DS_SELECT_ONLY,
119         DS_SELECT_REMOVE,
120         DS_SELECT_ADDONLY
121 } devstat_select_mode;
122
123 __BEGIN_DECLS
124 /* Legacy interfaces. */
125 int getnumdevs(void);
126 long getgeneration(void);
127 int getversion(void);
128 int checkversion(void);
129 int getdevs(struct statinfo *stats);
130 int selectdevs(struct device_selection **dev_select, int *num_selected,
131                int *num_selections, long *select_generation, 
132                long current_generation, struct devstat *devices, int numdevs,
133                struct devstat_match *matches, int num_matches,
134                char **dev_selections, int num_dev_selections,
135                devstat_select_mode select_mode, int maxshowdevs,
136                int perf_select);
137 int buildmatch(char *match_str, struct devstat_match **matches,
138                int *num_matches);
139 int compute_stats(struct devstat *current, struct devstat *previous,
140                   long double etime, u_int64_t *total_bytes,
141                   u_int64_t *total_transfers, u_int64_t *total_blocks,
142                   long double *kb_per_transfer,
143                   long double *transfers_per_second, long double *mb_per_second,
144                   long double *blocks_per_second,
145                   long double *ms_per_transaction);
146 long double compute_etime(struct timeval cur_time, struct timeval prev_time);
147
148 /* New interfaces. */
149 int devstat_getnumdevs(kvm_t *kd);
150 long devstat_getgeneration(kvm_t *kd);
151 int devstat_getversion(kvm_t *kd);
152 int devstat_checkversion(kvm_t *kd);
153 int devstat_getdevs(kvm_t *kd, struct statinfo *stats);
154 int devstat_selectdevs(struct device_selection **dev_select, int *num_selected,
155                        int *num_selections, long *select_generation, 
156                        long current_generation, struct devstat *devices,
157                        int numdevs, struct devstat_match *matches,
158                        int num_matches, char **dev_selections,
159                        int num_dev_selections, devstat_select_mode select_mode,
160                        int maxshowdevs, int perf_select);
161 int devstat_buildmatch(char *match_str, struct devstat_match **matches,
162                        int *num_matches);
163 int devstat_compute_statistics(struct devstat *current,
164                                struct devstat *previous,
165                                long double etime, ...);
166 long double devstat_compute_etime(struct timeval cur_time,
167                                   struct timeval prev_time);
168 __END_DECLS
169
170 #endif /* _DEVSTAT_H  */