/* $Id: plugin_i2c_sensors.c,v 1.4 2004/01/29 04:40:02 reinelt Exp $ * * I2C sensors plugin * * Copyright 2003,2004 Xavier Vello * * This file is part of LCD4Linux. * * LCD4Linux 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, or (at your option) * any later version. * * LCD4Linux is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even 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., 675 Mass Ave, Cambridge, MA 02139, USA. * * * $Log: plugin_i2c_sensors.c,v $ * Revision 1.4 2004/01/29 04:40:02 reinelt * every .c file includes "config.h" now * * Revision 1.3 2004/01/27 08:13:39 reinelt * ported PPP token to plugin_ppp * * Revision 1.2 2004/01/27 05:06:10 reinelt * i2c update from Xavier * * Revision 1.1 2004/01/10 17:36:56 reinelt * * I2C Sensors plugin from Xavier added * * */ /* * exported functions: * * int plugin_init_i2c_sensors (void) * adds function i2c_sensors() to retrieve informations from * the i2c sensors via the sysfs interface of 2.6.x kernels * * -- WARNING -- * This plugin is only for kernel series 2.5/2.6 and higher ! * It uses the new sysfs pseudo-filesystem that you can mount with: * mount -t sysfs none /sys * * -- WARNING #2 -- * This plugin should detect where your sensors are at startup. * If you can't get any token to work, ensure you don't get * an error message with "lcd4linux -Fvvv". * * If so, try to force the path to your sensors in the conf like this : * i2c_sensors-path '/sys/bus/i2c/devices/0-6000/' * (replace 0-6000 with the appropriate dir) * */ #include "config.h" #include #include #include #include #include #include #include "debug.h" #include "plugin.h" #include "cfg.h" #include "hash.h" static char *path=NULL; static HASH I2Csensors = { 0, }; static int parse_i2c_sensors(RESULT *arg) { double value; char val[32]; char buffer[32]; char *key=R2S(arg); char file[64]; FILE *stream; // construct absolute path to the file to read strcpy(file, path); strcat(file, key); // read of file to buffer stream=fopen(file, "r"); if (stream==NULL) { error ("fopen(%s) failed",file); return -1; } fgets (buffer, sizeof(buffer), stream); fclose (stream); if (!buffer) { error ("%s empty ?!",file); return -1; } // now the formating stuff, depending on the file : // Some values must be divided by 1000, the others // are parsed directly (we just remove the \n). if (!strncmp(key, "temp_", 5) || !strncmp(key, "curr_", 5) || !strncmp(key, "in_", 3) || !strncmp(key, "vid", 3)) { value = strtod(buffer, NULL); // FIXME: any way to do this without converting to double ? value /= 1000.0; sprintf(val, "%f", value); } else { sprintf(val, "%s", buffer); // we supress this nasty \n at the end val[strlen(val)-1]='\0'; } hash_set (&I2Csensors, key, val); return 0; } void my_i2c_sensors (RESULT *result, RESULT *arg) { int age; char *val; char *key=R2S(arg); age=hash_age(&I2Csensors, key, &val); // refresh every 100msec if (age<0 || age>100) { parse_i2c_sensors(arg); val=hash_get(&I2Csensors, key); } if (val) { SetResult(&result, R_STRING, val); } else { SetResult(&result, R_STRING, "??"); } } void my_i2c_sensors_path(void) { struct dirent *dir; struct dirent *file; const char *base="/sys/bus/i2c/devices/"; char dname[64]; DIR *fd1; DIR *fd2; int done; fd1 = opendir(base); if (fd1==NULL) return; while((dir = readdir(fd1))) { // Skip '.' and '..' if (strcmp(dir->d_name, "." )==0 || strcmp(dir->d_name, "..")==0) { continue; } // dname is the absolute path strcpy(dname, base); strcat(dname, dir->d_name); strcat(dname, "/"); fd2 = opendir(dname); done = 0; while((file = readdir(fd2))) { if (!strcmp(file->d_name, "temp_input1")) { // FIXME : do all sensors have a temp_input1 ? path = realloc(path, strlen(dname)+1); strcpy(path, dname); done=1; break; } } closedir(fd2); if (done) break; } closedir(fd1); } int plugin_init_i2c_sensors (void) { char *path_cfg=cfg_get(NULL, "i2c_sensors-path", ""); if (strncmp(path_cfg, "/", 1)) { debug("No path to i2c sensors found in the conf, calling my_i2c_sensors_path()"); my_i2c_sensors_path(); if (!path) { error("[i2c_sensors] No i2c sensors found via the i2c interface !"); error("[i2c_sensors] Try to specify the path to the sensors !"); } else { debug("Your i2c sensors are probably in %s", path); debug("if i2c_sensors doesn't work, try to specify the path in your conf"); } } else { if (path_cfg[strlen(path_cfg)-1] != '/') { // the headless user forgot the trailing slash :/ debug("adding a trailing slash at the end of the path"); path_cfg = realloc(path_cfg, strlen(path_cfg)+2); strcat(path_cfg, "/"); } debug("Path to i2c sensors from the conf : %s", path_cfg); debug("if i2c_sensors doesn't work, double check this value !"); path = realloc(path, strlen(path_cfg)+1); strcpy(path, path_cfg); free(path_cfg); } // we activate the function only if there's a possibly path found if (!path) { free(path); } else { AddFunction ("i2c_sensors", 1, my_i2c_sensors); } return 0; }