summary refs log blame commit diff stats
path: root/plugins/sysinfo/hwmon.c
blob: 389244ac31322c9b420022c76cfe30b14091e889 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                       
                                                                            


















                                                                     
     












                                                                     
      











                                                                                        
/*
 * hwmon.c - Hardware monitoring functions for X-Sys
 * Copyright (C) 2005 Tony Vroon
 *
 * 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 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include "xsys.h"

int hwmon_chip_present()
{
	FILE *fp = fopen("/sys/class/hwmon/hwmon0/device/name", "r");
	if(fp != NULL) {
		fclose(fp);
		return 1;
	}
	return 0;
}

#if 0
void get_hwmon_chip_name(char *name)
{
	char *position, buffer[bsize];
	FILE *fp = fopen("/sys/class/hwmon/hwmon0/device/name", "r");
	if(fp != NULL) {
		if(fgets(buffer, bsize, fp) != NULL) {
			position = strstr(buffer, "\n");
                        *(position) = '\0';
			snprintf(name, sizeof(name), "%s", buffer);
		}
		fclose(fp);
	}
}
#endif

void get_hwmon_temp(unsigned int *value, unsigned int *sensor)
{
	char buffer[bsize];
	snprintf(buffer, bsize, "/sys/class/hwmon/hwmon0/device/temp%i_input", *sensor);
	FILE *fp = fopen(buffer, "r");
	if(fp != NULL) {
		if(fgets(buffer, bsize, fp) != NULL)
			*value = atoi(buffer);
		fclose(fp);
	}
}
n>0); } else { data1 = g_value_peek_pointer (param_values + 0); data2 = closure->data; } callback = (GMarshalFunc_BOOLEAN__STRING) (marshal_data ? marshal_data : cc->callback); v_return = callback (data1, g_marshal_value_peek_string (param_values + 1), data2); g_value_set_boolean (return_value, v_return); } /* OBJECT:OBJECT,OBJECT (./marshal.list:2) */ void sexy_marshal_OBJECT__OBJECT_OBJECT (GClosure *closure, GValue *return_value, guint n_param_values, const GValue *param_values, gpointer invocation_hint, gpointer marshal_data) { typedef GObject* (*GMarshalFunc_OBJECT__OBJECT_OBJECT) (gpointer data1, gpointer arg_1, gpointer arg_2, gpointer data2); register GMarshalFunc_OBJECT__OBJECT_OBJECT callback; register GCClosure *cc = (GCClosure*) closure; register gpointer data1, data2; GObject* v_return; g_return_if_fail (return_value != NULL); g_return_if_fail (n_param_values == 3); if (G_CCLOSURE_SWAP_DATA (closure)) { data1 = closure->data; data2 = g_value_peek_pointer (param_values + 0); } else { data1 = g_value_peek_pointer (param_values + 0); data2 = closure->data; } callback = (GMarshalFunc_OBJECT__OBJECT_OBJECT) (marshal_data ? marshal_data : cc->callback); v_return = callback (data1, g_marshal_value_peek_object (param_values + 1), g_marshal_value_peek_object (param_values + 2), data2); g_value_take_object (return_value, v_return); }