2 * collectd - src/apple_sensors.c
3 * Copyright (C) 2006,2007 Florian octo Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian octo Forster <octo at collectd.org>
32 #if HAVE_MACH_MACH_TYPES_H
33 #include <mach/mach_types.h>
35 #if HAVE_MACH_MACH_INIT_H
36 #include <mach/mach_init.h>
38 #if HAVE_MACH_MACH_ERROR_H
39 #include <mach/mach_error.h>
41 #if HAVE_MACH_MACH_PORT_H
42 #include <mach/mach_port.h>
44 #if HAVE_COREFOUNDATION_COREFOUNDATION_H
45 #include <CoreFoundation/CoreFoundation.h>
47 #if HAVE_IOKIT_IOKITLIB_H
48 #include <IOKit/IOKitLib.h>
50 #if HAVE_IOKIT_IOTYPES_H
51 #include <IOKit/IOTypes.h>
54 static mach_port_t io_master_port = MACH_PORT_NULL;
56 static int as_init(void) {
59 if (io_master_port != MACH_PORT_NULL) {
60 mach_port_deallocate(mach_task_self(), io_master_port);
61 io_master_port = MACH_PORT_NULL;
64 status = IOMasterPort(MACH_PORT_NULL, &io_master_port);
65 if (status != kIOReturnSuccess) {
66 ERROR("IOMasterPort failed: %s", mach_error_string(status));
67 io_master_port = MACH_PORT_NULL;
74 static void as_submit(const char *type, const char *type_instance, double val) {
75 value_list_t vl = VALUE_LIST_INIT;
77 vl.values = &(value_t){.gauge = val};
79 sstrncpy(vl.plugin, "apple_sensors", sizeof(vl.plugin));
80 sstrncpy(vl.type, type, sizeof(vl.type));
81 sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));
83 plugin_dispatch_values(&vl);
86 static int as_read(void) {
88 io_iterator_t iterator;
90 CFMutableDictionaryRef prop_dict;
97 if (!io_master_port || (io_master_port == MACH_PORT_NULL))
100 status = IOServiceGetMatchingServices(
101 io_master_port, IOServiceNameMatching("IOHWSensor"), &iterator);
102 if (status != kIOReturnSuccess) {
103 ERROR("IOServiceGetMatchingServices failed: %s", mach_error_string(status));
107 while ((io_obj = IOIteratorNext(iterator))) {
109 status = IORegistryEntryCreateCFProperties(
110 io_obj, &prop_dict, kCFAllocatorDefault, kNilOptions);
111 if (status != kIOReturnSuccess) {
112 DEBUG("IORegistryEntryCreateCFProperties failed: %s",
113 mach_error_string(status));
117 /* Copy the sensor type. */
119 if (!CFDictionaryGetValueIfPresent(prop_dict, CFSTR("type"), &property))
121 if (CFGetTypeID(property) != CFStringGetTypeID())
123 if (!CFStringGetCString(property, type, sizeof(type),
124 kCFStringEncodingASCII))
126 type[sizeof(type) - 1] = '\0';
128 /* Copy the sensor location. This will be used as `instance'. */
130 if (!CFDictionaryGetValueIfPresent(prop_dict, CFSTR("location"), &property))
132 if (CFGetTypeID(property) != CFStringGetTypeID())
134 if (!CFStringGetCString(property, inst, sizeof(inst),
135 kCFStringEncodingASCII))
137 inst[sizeof(inst) - 1] = '\0';
138 for (int i = 0; i < 128; i++) {
141 else if (isalnum(inst[i]))
142 inst[i] = (char)tolower(inst[i]);
147 /* Get the actual value. Some computation, based on the `type'
150 if (!CFDictionaryGetValueIfPresent(prop_dict, CFSTR("current-value"),
153 if (CFGetTypeID(property) != CFNumberGetTypeID())
155 if (!CFNumberGetValue(property, kCFNumberIntType, &value_int))
158 /* Found e.g. in the 1.5GHz PowerBooks */
159 if (strcmp(type, "temperature") == 0) {
160 value_double = ((double)value_int) / 65536.0;
161 sstrncpy(type, "temperature", sizeof(type));
162 } else if (strcmp(type, "temp") == 0) {
163 value_double = ((double)value_int) / 10.0;
164 sstrncpy(type, "temperature", sizeof(type));
165 } else if (strcmp(type, "fanspeed") == 0) {
166 value_double = ((double)value_int) / 65536.0;
167 sstrncpy(type, "fanspeed", sizeof(type));
168 } else if (strcmp(type, "voltage") == 0) {
169 /* Leave this to the battery plugin. */
171 } else if (strcmp(type, "adc") == 0) {
172 value_double = ((double)value_int) / 10.0;
173 sstrncpy(type, "fanspeed", sizeof(type));
175 DEBUG("apple_sensors: Read unknown sensor type: %s", type);
176 value_double = (double)value_int;
179 as_submit(type, inst, value_double);
181 CFRelease(prop_dict);
182 IOObjectRelease(io_obj);
183 } /* while (iterator) */
185 IOObjectRelease(iterator);
190 void module_register(void) {
191 plugin_register_init("apple_sensors", as_init);
192 plugin_register_read("apple_sensors", as_read);
193 } /* void module_register */