X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fpsensor.c;h=8f15edfe5c55c8a355adfae14ca45e781c00fa2c;hb=16bbd456867fad57caa2119383e5f5b2fc1b5f90;hp=a385ddac5211e1a2f37aa932ad610f05e187fee7;hpb=50f4ccc689450a5aeb49b2469ac8d1863696fba4;p=psensor.git diff --git a/src/lib/psensor.c b/src/lib/psensor.c index a385dda..8f15edf 100644 --- a/src/lib/psensor.c +++ b/src/lib/psensor.c @@ -1,61 +1,71 @@ /* - Copyright (C) 2010-2011 jeanfi@gmail.com - - 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 Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ - + * Copyright (C) 2010-2014 jeanfi@gmail.com + * + * 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 Street, Fifth Floor, Boston, MA + * 02110-1301 USA + */ #include #include -#include -#include +#include +#include +#define _(str) gettext(str) -#include "hdd.h" -#include "psensor.h" -#include "lmsensor.h" +#include +#include +#include -struct psensor *psensor_create(char *id, char *name, - unsigned int type, int values_max_length) +struct psensor *psensor_create(char *id, + char *name, + char *chip, + unsigned int type, + int values_max_length) { - struct psensor *psensor - = (struct psensor *)malloc(sizeof(struct psensor)); + struct psensor *psensor; + + psensor = (struct psensor *)malloc(sizeof(struct psensor)); psensor->id = id; psensor->name = name; - psensor->enabled = 1; - psensor->min = UNKNOWN_VALUE; - psensor->max = UNKNOWN_VALUE; + psensor->chip = chip; + psensor->min = UNKNOWN_DBL_VALUE; + psensor->max = UNKNOWN_DBL_VALUE; psensor->type = type; psensor->values_max_length = values_max_length; - psensor->measures = measures_create(values_max_length); + psensor->measures = measures_dbl_create(values_max_length); - psensor->alarm_limit = 0; + psensor->alarm_enabled = 0; + psensor->alarm_high_threshold = 0; + psensor->alarm_low_threshold = 0; psensor->cb_alarm_raised = NULL; psensor->cb_alarm_raised_data = NULL; psensor->alarm_raised = 0; - psensor->alarm_enabled = 0; - psensor->url = NULL; psensor->color = NULL; + psensor->graph_enabled = 1; + psensor->appindicator_enabled = 0; + + psensor->provider_data = NULL; + psensor->provider_data_free_fct = &free; + return psensor; } @@ -66,10 +76,11 @@ void psensor_values_resize(struct psensor *s, int new_size) cur_size = s->values_max_length; cur_ms = s->measures; - new_ms = measures_create(new_size); + new_ms = measures_dbl_create(new_size); if (cur_ms) { int i; + for (i = 0; i < new_size - 1 && i < cur_size - 1; i++) measure_copy(&cur_ms[cur_size - i - 1], &new_ms[new_size - i - 1]); @@ -81,21 +92,30 @@ void psensor_values_resize(struct psensor *s, int new_size) s->measures = new_ms; } -void psensor_free(struct psensor *sensor) +void psensor_free(struct psensor *s) { - if (sensor) { - free(sensor->name); - free(sensor->id); + if (!s) + return; - if (sensor->color) - free(sensor->color); + log_debug("Cleanup %s", s->id); - measures_free(sensor->measures); + free(s->name); + free(s->id); - free(sensor->url); + if (s->chip) + free(s->chip); - free(sensor); - } + if (s->color) + free(s->color); + + measures_free(s->measures); + + free(s->url); + + if (s->provider_data && s->provider_data_free_fct) + s->provider_data_free_fct(s->provider_data); + + free(s); } void psensor_list_free(struct psensor **sensors) @@ -135,18 +155,15 @@ int psensor_list_size(struct psensor **sensors) return size; } -int psensor_list_contains_type(struct psensor **sensors, unsigned int type) +bool psensor_list_contains_type(struct psensor **sensors, unsigned int type) { - struct psensor **s; - if (!sensors) return 0; - s = sensors; - while (*s) { - if ((*s)->type == type) + while (*sensors) { + if ((*sensors)->type & type) return 1; - s++; + sensors++; } return 0; @@ -155,7 +172,9 @@ int psensor_list_contains_type(struct psensor **sensors, unsigned int type) struct psensor **psensor_list_add(struct psensor **sensors, struct psensor *sensor) { - int size = psensor_list_size(sensors); + int size; + + size = psensor_list_size(sensors); struct psensor **result = malloc((size + 1 + 1) * sizeof(struct psensor *)); @@ -169,6 +188,22 @@ struct psensor **psensor_list_add(struct psensor **sensors, return result; } +void psensor_list_append(struct psensor ***sensors, struct psensor *sensor) +{ + struct psensor **tmp; + + if (!sensor) + return; + + tmp = psensor_list_add(*sensors, sensor); + + if (tmp != *sensors) { + free(*sensors); + *sensors = tmp; + } +} + + struct psensor *psensor_list_get_by_id(struct psensor **sensors, const char *id) { struct psensor **sensors_cur = sensors; @@ -188,29 +223,36 @@ int is_temp_type(unsigned int type) return type & SENSOR_TYPE_TEMP; } -int is_fan_type(unsigned int type) +char * +psensor_value_to_str(unsigned int type, double value, int use_celsius) { - return type & SENSOR_TYPE_FAN; -} + char *str; + const char *unit; -char *psensor_value_to_string(unsigned int type, double value) -{ - /* should not be possible to exceed 20 characters with temp or - rpm values the .x part is never displayed */ - char *str = malloc(20); + /* + * should not be possible to exceed 20 characters with temp or + * rpm values the .x part is never displayed + */ + str = malloc(20); - char *unit; + unit = psensor_type_to_unit_str(type, use_celsius); - if (is_temp_type(type)) - unit = "C"; - else - unit = ""; + if (is_temp_type(type) && !use_celsius) + value = celsius_to_fahrenheit(value); sprintf(str, "%.0f%s", value, unit); return str; } +char * +psensor_measure_to_str(const struct measure *m, + unsigned int type, + unsigned int use_celsius) +{ + return psensor_value_to_str(type, m->value, use_celsius); +} + void psensor_set_current_value(struct psensor *sensor, double value) { struct timeval tv; @@ -221,9 +263,7 @@ void psensor_set_current_value(struct psensor *sensor, double value) psensor_set_current_measure(sensor, value, tv); } -void -psensor_set_current_measure(struct psensor *s, - double v, struct timeval tv) +void psensor_set_current_measure(struct psensor *s, double v, struct timeval tv) { memmove(s->measures, &s->measures[1], @@ -232,17 +272,16 @@ psensor_set_current_measure(struct psensor *s, s->measures[s->values_max_length - 1].value = v; s->measures[s->values_max_length - 1].time = tv; - if (s->min == UNKNOWN_VALUE || v < s->min) + if (s->min == UNKNOWN_DBL_VALUE || v < s->min) s->min = v; - if (s->max == UNKNOWN_VALUE || v > s->max) + if (s->max == UNKNOWN_DBL_VALUE || v > s->max) s->max = v; - if (s->alarm_limit && s->alarm_enabled) { - if (v > s->alarm_limit) { + if (s->alarm_enabled) { + if (v > s->alarm_high_threshold || v < s->alarm_low_threshold) { if (!s->alarm_raised && s->cb_alarm_raised) - s->cb_alarm_raised(s, - s->cb_alarm_raised_data); + s->cb_alarm_raised(s, s->cb_alarm_raised_data); s->alarm_raised = 1; } else { @@ -251,7 +290,7 @@ psensor_set_current_measure(struct psensor *s, } } -double psensor_get_current_value(struct psensor *sensor) +double psensor_get_current_value(const struct psensor *sensor) { return sensor->measures[sensor->values_max_length - 1].value; } @@ -265,25 +304,25 @@ struct measure *psensor_get_current_measure(struct psensor *sensor) Returns the minimal value of a given 'type' (SENSOR_TYPE_TEMP or SENSOR_TYPE_FAN) */ -double get_min_value(struct psensor **sensors, int type) +static double get_min_value(struct psensor **sensors, int type) { - double m = UNKNOWN_VALUE; + double m = UNKNOWN_DBL_VALUE; struct psensor **s = sensors; while (*s) { struct psensor *sensor = *s; - if (sensor->enabled && (sensor->type & type)) { + if (sensor->type & type) { int i; double t; for (i = 0; i < sensor->values_max_length; i++) { t = sensor->measures[i].value; - if (t == UNKNOWN_VALUE) + if (t == UNKNOWN_DBL_VALUE) continue; - if (m == UNKNOWN_VALUE || t < m) + if (m == UNKNOWN_DBL_VALUE || t < m) m = t; } } @@ -297,24 +336,25 @@ double get_min_value(struct psensor **sensors, int type) Returns the maximal value of a given 'type' (SENSOR_TYPE_TEMP or SENSOR_TYPE_FAN) */ -static double get_max_value(struct psensor **sensors, int type) +double get_max_value(struct psensor **sensors, int type) { - double m = UNKNOWN_VALUE; + double m = UNKNOWN_DBL_VALUE; struct psensor **s = sensors; while (*s) { struct psensor *sensor = *s; - if (sensor->enabled && (sensor->type & type)) { + if (sensor->type & type) { int i; double t; + for (i = 0; i < sensor->values_max_length; i++) { t = sensor->measures[i].value; - if (t == UNKNOWN_VALUE) + if (t == UNKNOWN_DBL_VALUE) continue; - if (m == UNKNOWN_VALUE || t > m) + if (m == UNKNOWN_DBL_VALUE || t > m) m = t; } } @@ -327,16 +367,16 @@ static double get_max_value(struct psensor **sensors, int type) double psensor_get_max_current_value(struct psensor **sensors, unsigned int type) { - double m = UNKNOWN_VALUE; + double m = UNKNOWN_DBL_VALUE; struct psensor **s_cur = sensors; while (*s_cur) { struct psensor *s = *s_cur; - if (s->enabled && (s->type & type)) { + if (s->graph_enabled && (s->type & type)) { double v = psensor_get_current_value(s); - if (m == UNKNOWN_VALUE || v > m) + if (m == UNKNOWN_DBL_VALUE || v > m) m = v; } @@ -366,81 +406,124 @@ double get_max_temp(struct psensor **sensors) return get_max_value(sensors, SENSOR_TYPE_TEMP); } -struct psensor **get_all_sensors(int values_max_length) +const char *psensor_type_to_str(unsigned int type) { - struct psensor **psensors = NULL; - int count = 0; - const sensors_chip_name *chip; - int chip_nr = 0; - struct psensor **tmp_psensors; - const sensors_feature *feature; - struct psensor *psensor; - int i; + if (type & SENSOR_TYPE_NVCTRL) { + if (type & SENSOR_TYPE_TEMP) + return "Temperature"; + else if (type & SENSOR_TYPE_GRAPHICS) + return "Graphics usage"; + else if (type & SENSOR_TYPE_VIDEO) + return "Video usage"; + else if (type & SENSOR_TYPE_MEMORY) + return "Memory usage"; + else if (type & SENSOR_TYPE_PCIE) + return "PCIe usage"; + + return "NVIDIA GPU"; + } - while ((chip = sensors_get_detected_chips(NULL, &chip_nr))) { - i = 0; - while ((feature = sensors_get_features(chip, &i))) { + if (type & SENSOR_TYPE_ATIADL) { + if (type & SENSOR_TYPE_TEMP) + return "AMD GPU Temperature"; + else if (type & SENSOR_TYPE_RPM) + return "AMD GPU Fan Speed"; + /*else type & SENSOR_TYPE_USAGE */ + return "AMD GPU Usage"; + } - if (feature->type == SENSORS_FEATURE_TEMP - || feature->type == SENSORS_FEATURE_FAN) { + if ((type & SENSOR_TYPE_HDD_TEMP) == SENSOR_TYPE_HDD_TEMP) + return "HDD Temperature"; - psensor = lmsensor_psensor_create - (chip, feature, values_max_length); + if ((type & SENSOR_TYPE_CPU_USAGE) == SENSOR_TYPE_CPU_USAGE) + return "CPU Usage"; - if (psensor) { - tmp_psensors - = psensor_list_add(psensors, - psensor); + if (type & SENSOR_TYPE_TEMP) + return "Temperature"; - free(psensors); + if (type & SENSOR_TYPE_RPM) + return "Fan"; - psensors = tmp_psensors; + if (type & SENSOR_TYPE_CPU) + return "CPU"; - count++; - } - } - } - } + if (type & SENSOR_TYPE_REMOTE) + return "Remote"; - tmp_psensors = hdd_psensor_list_add(psensors, values_max_length); + if (type & SENSOR_TYPE_MEMORY) + return "Memory"; - if (tmp_psensors != psensors) { - free(psensors); - psensors = tmp_psensors; - } + return "N/A"; +} - if (!psensors) { /* there is no detected sensors */ - psensors = malloc(sizeof(struct psensor *)); - *psensors = NULL; - } - return psensors; +const char *psensor_type_to_unit_str(unsigned int type, int use_celsius) +{ + if (is_temp_type(type)) { + if (use_celsius) + return "\302\260C"; + return "\302\260F"; + } else if (type & SENSOR_TYPE_RPM) { + return _("RPM"); + } else if (type & SENSOR_TYPE_PERCENT) { + return _("%"); + } + return _("N/A"); } -const char *psensor_type_to_str(unsigned int type) +void psensor_log_measures(struct psensor **sensors) { - if (type & SENSOR_TYPE_REMOTE) - return "Remote"; + if (log_level == LOG_DEBUG) + while (*sensors) { + log_debug("Measure: %s %.2f", + (*sensors)->name, + psensor_get_current_value(*sensors)); - if (type & SENSOR_TYPE_LMSENSOR_TEMP) - return "Temperature"; + sensors++; + } +} - if (type & SENSOR_TYPE_LMSENSOR_FAN) - return "Fan"; +struct psensor **psensor_list_copy(struct psensor **sensors) +{ + struct psensor **result; + int n, i; - if (type & SENSOR_TYPE_NVIDIA) - return "NVidia GPU Temperature"; + n = psensor_list_size(sensors); + result = malloc((n+1) * sizeof(struct psensor *)); + for (i = 0; i < n; i++) + result[i] = sensors[i]; + result[n] = NULL; - if (type & SENSOR_TYPE_HDD_TEMP) - return "HDD Temperature"; + return result; +} - return "N/A"; /* should not be possible */ +char * +psensor_current_value_to_str(const struct psensor *s, unsigned int use_celsius) +{ + return psensor_value_to_str(s->type, + psensor_get_current_value(s), + use_celsius); } -void psensor_list_update_measures(struct psensor **sensors) +struct psensor **psensor_list_filter_graph_enabled(struct psensor **sensors) { - lmsensor_psensor_list_update(sensors); + int n, i; + struct psensor **result, **cur, *s; + + if (!sensors) + return NULL; + + n = psensor_list_size(sensors); + result = malloc((n+1) * sizeof(struct psensor *)); + + for (cur = sensors, i = 0; *cur; cur++) { + s = *cur; - if (psensor_list_contains_type(sensors, SENSOR_TYPE_HDD_TEMP)) - hdd_psensor_list_update(sensors); + if (s->graph_enabled) + result[i++] = s; + } + + result[i] = NULL; + + return result; }