forked from sysstat/sysstat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rd_sensors.c
292 lines (268 loc) · 8.06 KB
/
rd_sensors.c
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/*
* rd_sensors.c: Read sensors statistics
* (C) 1999-2014 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
* for more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program; if not, write to the Free Software Foundation, Inc., *
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
***************************************************************************
*/
#include <stdio.h>
#include <string.h>
#include "common.h"
#include "rd_sensors.h"
#ifdef USE_NLS
#include <locale.h>
#include <libintl.h>
#define _(string) gettext(string)
#else
#define _(string) (string)
#endif
#ifdef HAVE_SENSORS
#include "sensors/sensors.h"
#endif
/*
***************************************************************************
* Read fan statistics.
*
* IN:
* @st_pwr_fan Structure where stats will be saved.
* @nbr Total number of fans.
*
* OUT:
* @st_pwr_fan Structure with statistics.
***************************************************************************
*/
void read_fan(struct stats_pwr_fan *st_pwr_fan, int nbr)
{
#ifdef HAVE_SENSORS
int count = 0;
const sensors_chip_name *chip;
const sensors_feature *feature;
const sensors_subfeature *sub;
struct stats_pwr_fan *st_pwr_fan_i;
int chip_nr = 0;
int i, j;
memset(st_pwr_fan, 0, STATS_PWR_FAN_SIZE);
while ((chip = sensors_get_detected_chips(NULL, &chip_nr))) {
i = 0;
while ((feature = sensors_get_features(chip, &i))) {
if ((feature->type == SENSORS_FEATURE_FAN) && (count < nbr)) {
j = 0;
st_pwr_fan_i = st_pwr_fan + count;
sensors_snprintf_chip_name(st_pwr_fan_i->device, MAX_SENSORS_DEV_LEN, chip);
while ((sub = sensors_get_all_subfeatures(chip, feature, &j))) {
if ((sub->type == SENSORS_SUBFEATURE_FAN_INPUT) &&
(sub->flags & SENSORS_MODE_R)) {
if (sensors_get_value(chip, sub->number, &st_pwr_fan_i->rpm)) {
st_pwr_fan_i->rpm = 0;
}
}
else if ((sub->type == SENSORS_SUBFEATURE_FAN_MIN)) {
if (sensors_get_value(chip, sub->number, &st_pwr_fan_i->rpm_min)) {
st_pwr_fan_i->rpm_min = 0;
}
}
}
count++;
}
}
}
#endif /* HAVE_SENSORS */
}
/*
***************************************************************************
* Read device temperature statistics.
*
* IN:
* @st_pwr_temp Structure where stats will be saved.
* @nbr Total number of fans.
*
* OUT:
* @st_pwr_temp Structure with statistics.
***************************************************************************
*/
void read_temp(struct stats_pwr_temp *st_pwr_temp, int nbr)
{
#ifdef HAVE_SENSORS
int count = 0;
const sensors_chip_name *chip;
const sensors_feature *feature;
const sensors_subfeature *sub;
struct stats_pwr_temp *st_pwr_temp_i;
int chip_nr = 0;
int i, j;
memset(st_pwr_temp, 0, STATS_PWR_TEMP_SIZE);
while ((chip = sensors_get_detected_chips(NULL, &chip_nr))) {
i = 0;
while ((feature = sensors_get_features(chip, &i))) {
if ((feature->type == SENSORS_FEATURE_TEMP) && (count < nbr)) {
j = 0;
st_pwr_temp_i = st_pwr_temp + count;
sensors_snprintf_chip_name(st_pwr_temp_i->device, MAX_SENSORS_DEV_LEN, chip);
while ((sub = sensors_get_all_subfeatures(chip, feature, &j))) {
if ((sub->type == SENSORS_SUBFEATURE_TEMP_INPUT) &&
(sub->flags & SENSORS_MODE_R)) {
if (sensors_get_value(chip, sub->number, &st_pwr_temp_i->temp)) {
st_pwr_temp_i->temp = 0;
}
}
else if ((sub->type == SENSORS_SUBFEATURE_TEMP_MIN)) {
if (sensors_get_value(chip, sub->number, &st_pwr_temp_i->temp_min)) {
st_pwr_temp_i->temp_min = 0;
}
}
else if ((sub->type == SENSORS_SUBFEATURE_TEMP_MAX)) {
if (sensors_get_value(chip, sub->number, &st_pwr_temp_i->temp_max)) {
st_pwr_temp_i->temp_max = 0;
}
}
}
count++;
}
}
}
#endif /* HAVE_SENSORS */
}
/*
***************************************************************************
* Read voltage inputs statistics.
*
* IN:
* @st_pwr_in Structure where stats will be saved.
* @nbr Total number of voltage inputs.
*
* OUT:
* @st_pwr_in Structure with statistics.
***************************************************************************
*/
void read_in(struct stats_pwr_in *st_pwr_in, int nbr)
{
#ifdef HAVE_SENSORS
int count = 0;
const sensors_chip_name *chip;
const sensors_feature *feature;
const sensors_subfeature *sub;
struct stats_pwr_in *st_pwr_in_i;
int chip_nr = 0;
int i, j;
memset(st_pwr_in, 0, STATS_PWR_IN_SIZE);
while ((chip = sensors_get_detected_chips(NULL, &chip_nr))) {
i = 0;
while ((feature = sensors_get_features(chip, &i))) {
if ((feature->type == SENSORS_FEATURE_IN) && (count < nbr)) {
j = 0;
st_pwr_in_i = st_pwr_in + count;
sensors_snprintf_chip_name(st_pwr_in_i->device, MAX_SENSORS_DEV_LEN, chip);
while ((sub = sensors_get_all_subfeatures(chip, feature, &j))) {
if ((sub->type == SENSORS_SUBFEATURE_IN_INPUT) &&
(sub->flags & SENSORS_MODE_R)) {
if (sensors_get_value(chip, sub->number, &st_pwr_in_i->in)) {
st_pwr_in_i->in = 0;
}
}
else if ((sub->type == SENSORS_SUBFEATURE_IN_MIN)) {
if (sensors_get_value(chip, sub->number, &st_pwr_in_i->in_min)) {
st_pwr_in_i->in_min = 0;
}
}
else if ((sub->type == SENSORS_SUBFEATURE_IN_MAX)) {
if (sensors_get_value(chip, sub->number, &st_pwr_in_i->in_max)) {
st_pwr_in_i->in_max = 0;
}
}
}
count++;
}
}
}
#endif /* HAVE_SENSORS */
}
#ifdef HAVE_SENSORS
/*
***************************************************************************
* Count the number of sensors of given type on the machine.
*
* IN:
* @type Type of sensors.
*
* RETURNS:
* Number of sensors.
***************************************************************************
*/
int get_sensors_nr(sensors_feature_type type) {
int count = 0;
const sensors_chip_name *chip;
const sensors_feature *feature;
int chip_nr = 0;
int i;
while ((chip = sensors_get_detected_chips(NULL, &chip_nr))) {
i = 0;
while ((feature = sensors_get_features(chip, &i))) {
if (feature->type == type) {
count++;
}
}
}
return count;
}
#endif /* HAVE_SENSORS */
/*
***************************************************************************
* Count the number of fans on the machine.
*
* RETURNS:
* Number of fans.
***************************************************************************
*/
int get_fan_nr(void)
{
#ifdef HAVE_SENSORS
return get_sensors_nr(SENSORS_FEATURE_FAN);
#else
return 0;
#endif /* HAVE_SENSORS */
}
/*
***************************************************************************
* Count the number of temperature sensors on the machine.
*
* RETURNS:
* Number of temperature sensors.
***************************************************************************
*/
int get_temp_nr(void)
{
#ifdef HAVE_SENSORS
return get_sensors_nr(SENSORS_FEATURE_TEMP);
#else
return 0;
#endif /* HAVE_SENSORS */
}
/*
***************************************************************************
* Count the number of voltage inputs on the machine.
*
* RETURNS:
* Number of voltage inputs.
***************************************************************************
*/
int get_in_nr(void)
{
#ifdef HAVE_SENSORS
return get_sensors_nr(SENSORS_FEATURE_IN);
#else
return 0;
#endif /* HAVE_SENSORS */
}