Skip to content

Commit 4f3cdfc

Browse files
committed
Label fans during logging
This is more useful on desktops than laptops.
1 parent 559a2f3 commit 4f3cdfc

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

src/daemon.c

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ static void cleanup_and_exit(int exit_code)
8686
if (fans->file != NULL) {
8787
fclose(fans->file);
8888
}
89+
free(fans->label);
8990
free(fans->fan_output_path);
9091
free(fans->fan_manual_path);
9192
free(fans);

src/global.h

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ struct s_sensors {
1717
struct s_fans {
1818
FILE* file;
1919
char* path; // TODO: unused
20+
char* label;
2021
char* fan_output_path;
2122
char* fan_manual_path;
2223
int step_up;

src/mbpfan.c

+31-3
Original file line numberDiff line numberDiff line change
@@ -258,18 +258,38 @@ static int read_value(const char *path)
258258
return value;
259259
}
260260

261+
static void read_value_str(const char *path, char *str, size_t len)
262+
{
263+
FILE *file = fopen(path, "r");
264+
if (file != NULL) {
265+
fgets(str, len, file);
266+
fclose(file);
267+
}
268+
}
269+
270+
static void trim_trailing_whitespace(char *str)
271+
{
272+
for (ssize_t i = strlen(str) - 1; i >= 0; --i) {
273+
if (isspace(str[i]) || str[i] == '\n') {
274+
str[i] = '\0';
275+
}
276+
}
277+
}
278+
261279
t_fans *retrieve_fans()
262280
{
263281
t_fans *fans_head = NULL;
264282
t_fans *fan = NULL;
265283

266284
char *path_output = NULL;
285+
char *path_label = NULL;
267286
char *path_manual = NULL;
268287
char *path_fan_max = NULL;
269288
char *path_fan_min = NULL;
270289

271290
const char *path_begin = "/sys/devices/platform/applesmc.768/fan";
272291
const char *path_output_end = "_output";
292+
const char *path_label_end = "_label";
273293
const char *path_man_end = "_manual";
274294
const char *path_max_speed = "_max";
275295
const char *path_min_speed = "_min";
@@ -280,6 +300,7 @@ t_fans *retrieve_fans()
280300
for(counter = 0; counter<NUM_FANS; counter++) {
281301

282302
path_output = smprintf("%s%d%s", path_begin, counter, path_output_end);
303+
path_label = smprintf("%s%d%s", path_begin, counter, path_label_end);
283304
path_manual = smprintf("%s%d%s", path_begin, counter, path_man_end);
284305
path_fan_min = smprintf("%s%d%s",path_begin, counter, path_min_speed);
285306
path_fan_max = smprintf("%s%d%s",path_begin, counter, path_max_speed);
@@ -303,7 +324,12 @@ t_fans *retrieve_fans()
303324
fan->fan_max_speed = MAX_FAN_SPEED_DEFAULT;
304325
else
305326
fan->fan_max_speed = fan_speed;
306-
327+
328+
size_t max_label_len = 64;
329+
fan->label = malloc(max_label_len);
330+
read_value_str(path_label, fan->label, max_label_len);
331+
trim_trailing_whitespace(fan->label);
332+
307333
fan->old_speed = 0;
308334

309335
if (fans_head == NULL) {
@@ -326,6 +352,8 @@ t_fans *retrieve_fans()
326352
}
327353
free(path_fan_min);
328354
path_fan_min = NULL;
355+
free(path_label);
356+
path_label = NULL;
329357
free(path_fan_max);
330358
path_fan_max = NULL;
331359
free(path_output);
@@ -620,10 +648,10 @@ void mbpfan()
620648
}
621649

622650
if(verbose) {
623-
printf("Old Temp %d: New Temp: %d, Fan Speed: %d\n", old_temp, new_temp, fan_speed);
651+
printf("Fan: %s Old Temp %d: New Temp: %d Speed: %d\n", fan->label, old_temp, new_temp, fan_speed);
624652

625653
if(daemonize) {
626-
syslog(LOG_INFO, "Old Temp %d: New Temp: %d, Fan Speed: %d", old_temp, new_temp, fan_speed);
654+
syslog(LOG_INFO, "Fan: %s Old Temp %d: New Temp: %d Speed: %d", fan->label, old_temp, new_temp, fan_speed);
627655
}
628656
}
629657

0 commit comments

Comments
 (0)