]> git.sur5r.net Git - i3/i3status/blob - src/print_cpu_temperature.c
bugfix: don’t use TOPDIR (Thanks loblik)
[i3/i3status] / src / print_cpu_temperature.c
1 // vim:ts=8:expandtab
2 #include <stdlib.h>
3 #include <limits.h>
4 #include <stdio.h>
5 #include <string.h>
6 #include <yajl/yajl_gen.h>
7 #include <yajl/yajl_version.h>
8
9 #include "i3status.h"
10
11 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
12 #include <err.h>
13 #include <sys/types.h>
14 #include <sys/sysctl.h>
15 #define TZ_ZEROC 2732
16 #define TZ_KELVTOC(x) (((x) - TZ_ZEROC) / 10), abs(((x) - TZ_ZEROC) % 10)
17 #endif
18
19 #if defined(__OpenBSD__)
20 #include <sys/param.h>
21 #include <sys/types.h>
22 #include <sys/sysctl.h>
23 #include <sys/sensors.h>
24 #include <errno.h>
25 #include <err.h>
26 #endif
27
28 static char *thermal_zone;
29
30 /*
31  * Reads the CPU temperature from /sys/class/thermal/thermal_zone0/temp and
32  * returns the temperature in degree celcius.
33  *
34  */
35 void print_cpu_temperature_info(yajl_gen json_gen, char *buffer, int zone, const char *path, const char *format) {
36 #ifdef THERMAL_ZONE
37         const char *walk;
38         char *outwalk = buffer;
39         static char buf[16];
40
41         if (path == NULL) {
42                 asprintf(&thermal_zone, THERMAL_ZONE, zone);
43                 path = thermal_zone;
44         }
45
46         INSTANCE(path);
47
48         for (walk = format; *walk != '\0'; walk++) {
49                 if (*walk != '%') {
50                         *(outwalk++) = *walk;
51                         continue;
52                 }
53
54                 if (BEGINS_WITH(walk+1, "degrees")) {
55 #if defined(LINUX)
56                         long int temp;
57                         if (!slurp(path, buf, sizeof(buf)))
58                                 goto error;
59                         temp = strtol(buf, NULL, 10);
60                         if (temp == LONG_MIN || temp == LONG_MAX || temp <= 0)
61                                 *(outwalk++) = '?';
62                         else
63                                 outwalk += sprintf(outwalk, "%ld", (temp/1000));
64 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
65                         int sysctl_rslt;
66                         size_t sysctl_size = sizeof(sysctl_rslt);
67                         if (sysctlbyname(path, &sysctl_rslt, &sysctl_size, NULL, 0))
68                                 goto error;
69
70                         outwalk += sprintf(outwalk, "%d.%d", TZ_KELVTOC(sysctl_rslt));
71 #elif defined(__OpenBSD__)
72         struct sensordev sensordev;
73         struct sensor sensor;
74         size_t sdlen, slen;
75         int dev, numt, mib[5] = { CTL_HW, HW_SENSORS, 0, 0, 0 };
76
77         sdlen = sizeof(sensordev);
78         slen = sizeof(sensor);
79
80         for (dev = 0; ; dev++) {
81                 mib[2] = dev;
82                 if (sysctl(mib, 3, &sensordev, &sdlen, NULL, 0) == -1) {
83                         if (errno == ENXIO)
84                                 continue;
85                         if (errno == ENOENT)
86                                 break;
87                         goto error;
88                 }
89                 /*
90                  * 'path' is actually the node within the full path (eg, cpu0).
91                  * XXX: Extend the API to allow a string instead of just an int for path, this would
92                  * allow us to have a path of 'acpitz0' for example.
93                  */
94                 if (strncmp(sensordev.xname, path, strlen(path)) == 0) {
95                         mib[3] = SENSOR_TEMP;
96                         for (numt = 0; numt < sensordev.maxnumt[SENSOR_TEMP]; numt++) {
97                                 mib[4] = numt;
98                                 if (sysctl(mib, 5, &sensor, &slen, NULL, 0) == -1) {
99                                         if (errno != ENOENT)
100                                                 warn("sysctl");
101                                         continue;
102                                 }
103                                 outwalk += sprintf(outwalk, "%.2f", (sensor.value - 273150000) / 1000000.0 );
104                         }
105                 }
106         }
107 #endif
108                         walk += strlen("degrees");
109                 }
110         }
111         OUTPUT_FULL_TEXT(buffer);
112         return;
113 error:
114 #endif
115         (void)fputs("Cannot read temperature\n", stderr);
116 }