2010-01-07 03:45:19 +00:00
|
|
|
/* -*- mode: c++; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
* vim: ts=4 sw=4 noet ai cindent syntax=cpp
|
2009-07-28 21:44:22 +00:00
|
|
|
*
|
|
|
|
* smapi.c: conky support for IBM Thinkpad smapi
|
2008-03-18 17:09:47 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Phil Sutter <Phil@nwl.cc>
|
2008-06-15 18:38:33 +00:00
|
|
|
*
|
2008-03-18 17:09:47 +00:00
|
|
|
* This library 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 library 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 library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
*/
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "conky.h" /* text_buffer_size, PACKAGE_NAME, maybe more */
|
2009-12-20 02:14:30 +00:00
|
|
|
#include <errno.h>
|
2009-12-08 05:16:11 +00:00
|
|
|
#include "temphelper.h"
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "logging.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2008-03-18 17:09:47 +00:00
|
|
|
|
|
|
|
#define SYS_SMAPI_PATH "/sys/devices/platform/smapi"
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static int smapi_read_int(const char *path)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int i = 0;
|
2009-12-20 02:14:30 +00:00
|
|
|
if ((fp = fopen(path, "r"))) {
|
|
|
|
if (fscanf(fp, "%i\n", &i) < 0)
|
|
|
|
perror("fscanf()");
|
2009-12-17 21:11:42 +00:00
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int smapi_bat_installed_internal(int idx)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
|
|
|
char path[128];
|
|
|
|
struct stat sb;
|
2008-03-22 18:08:47 +00:00
|
|
|
int ret = 0;
|
2008-03-18 17:09:47 +00:00
|
|
|
|
|
|
|
snprintf(path, 127, SYS_SMAPI_PATH "/BAT%i", idx);
|
|
|
|
if (!stat(path, &sb) && (sb.st_mode & S_IFMT) == S_IFDIR) {
|
|
|
|
snprintf(path, 127, SYS_SMAPI_PATH "/BAT%i/installed", idx);
|
2008-03-22 18:08:47 +00:00
|
|
|
ret = (smapi_read_int(path) == 1) ? 1 : 0;
|
2008-03-18 17:09:47 +00:00
|
|
|
}
|
2008-03-22 18:08:47 +00:00
|
|
|
return ret;
|
2008-03-18 17:09:47 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static char *smapi_read_str(const char *path)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
2008-03-29 10:11:16 +00:00
|
|
|
char str[256] = "failed";
|
2008-03-22 18:08:47 +00:00
|
|
|
if ((fp = fopen(path, "r")) != NULL) {
|
2009-12-20 02:14:30 +00:00
|
|
|
if (fscanf(fp, "%255s\n", str) < 0)
|
|
|
|
perror("fscanf()");
|
2008-03-18 17:09:47 +00:00
|
|
|
fclose(fp);
|
|
|
|
}
|
2010-09-13 09:49:44 +00:00
|
|
|
return strndup(str, text_buffer_size.get(*state));
|
2008-03-18 17:09:47 +00:00
|
|
|
}
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static char *smapi_get_str(const char *fname)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
|
|
|
char path[128];
|
|
|
|
if(snprintf(path, 127, SYS_SMAPI_PATH "/%s", fname) < 0)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return smapi_read_str(path);
|
|
|
|
}
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static char *smapi_get_bat_str(int idx, const char *fname)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
|
|
|
char path[128];
|
|
|
|
if(snprintf(path, 127, SYS_SMAPI_PATH "/BAT%i/%s", idx, fname) < 0)
|
|
|
|
return NULL;
|
|
|
|
return smapi_read_str(path);
|
|
|
|
}
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static int smapi_get_bat_int(int idx, const char *fname)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
|
|
|
char path[128];
|
|
|
|
if(snprintf(path, 127, SYS_SMAPI_PATH "/BAT%i/%s", idx, fname) < 0)
|
|
|
|
return 0;
|
|
|
|
return smapi_read_int(path);
|
|
|
|
}
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static char *smapi_get_bat_val(const char *args)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
2008-03-22 19:39:43 +00:00
|
|
|
char fname[128];
|
2008-03-18 17:09:47 +00:00
|
|
|
int idx, cnt;
|
|
|
|
|
|
|
|
if(sscanf(args, "%i %n", &idx, &cnt) <= 0 ||
|
2008-03-22 19:39:43 +00:00
|
|
|
snprintf(fname, 127, "%s", (args + cnt)) < 0) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("smapi: wrong arguments, should be 'bat,<int>,<str>'");
|
2008-03-18 17:09:47 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-12-08 05:16:11 +00:00
|
|
|
if(!smapi_bat_installed_internal(idx))
|
2008-03-18 17:09:47 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return smapi_get_bat_str(idx, fname);
|
|
|
|
}
|
|
|
|
|
2009-12-17 21:11:42 +00:00
|
|
|
static char *smapi_get_val(const char *args)
|
2008-03-18 17:09:47 +00:00
|
|
|
{
|
2008-03-22 18:08:47 +00:00
|
|
|
char str[128];
|
2008-03-18 17:09:47 +00:00
|
|
|
|
2008-03-22 18:08:47 +00:00
|
|
|
if(!args || sscanf(args, "%127s", str) <= 0)
|
2008-03-18 17:09:47 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if(!strcmp(str, "bat"))
|
|
|
|
return smapi_get_bat_val(args + 4);
|
|
|
|
|
|
|
|
return smapi_get_str(str);
|
|
|
|
}
|
2009-11-08 18:01:42 +00:00
|
|
|
|
|
|
|
void print_smapi(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if (!obj->data.s)
|
|
|
|
return;
|
|
|
|
|
|
|
|
s = smapi_get_val(obj->data.s);
|
|
|
|
snprintf(p, p_max_size, "%s", s);
|
|
|
|
free(s);
|
|
|
|
}
|
|
|
|
|
2009-11-25 00:59:58 +00:00
|
|
|
uint8_t smapi_bat_percentage(struct text_object *obj)
|
2009-11-08 18:01:42 +00:00
|
|
|
{
|
2009-11-25 00:59:58 +00:00
|
|
|
int idx, val = 0;
|
2009-11-08 18:01:42 +00:00
|
|
|
if (obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
|
2009-12-08 05:16:11 +00:00
|
|
|
val = smapi_bat_installed_internal(idx) ?
|
2009-11-08 18:01:42 +00:00
|
|
|
smapi_get_bat_int(idx, "remaining_percent") : 0;
|
|
|
|
} else
|
|
|
|
NORM_ERR("argument to smapi_bat_perc must be an integer");
|
2009-11-25 00:59:58 +00:00
|
|
|
|
|
|
|
return val;
|
2009-11-08 18:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void print_smapi_bat_temp(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
|
|
|
int idx, val;
|
|
|
|
if (obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
|
2009-12-08 05:16:11 +00:00
|
|
|
val = smapi_bat_installed_internal(idx) ?
|
2009-11-08 18:01:42 +00:00
|
|
|
smapi_get_bat_int(idx, "temperature") : 0;
|
|
|
|
/* temperature is in milli degree celsius */
|
|
|
|
temp_print(p, p_max_size, val / 1000, TEMP_CELSIUS);
|
|
|
|
} else
|
|
|
|
NORM_ERR("argument to smapi_bat_temp must be an integer");
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_smapi_bat_power(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
|
|
|
int idx, val;
|
|
|
|
if (obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
|
2009-12-08 05:16:11 +00:00
|
|
|
val = smapi_bat_installed_internal(idx) ?
|
2009-11-08 18:01:42 +00:00
|
|
|
smapi_get_bat_int(idx, "power_now") : 0;
|
|
|
|
/* power_now is in mW, set to W with one digit precision */
|
|
|
|
snprintf(p, p_max_size, "%.1f", ((double)val / 1000));
|
|
|
|
} else
|
|
|
|
NORM_ERR("argument to smapi_bat_power must be an integer");
|
|
|
|
}
|
|
|
|
|
2009-12-04 00:27:58 +00:00
|
|
|
double smapi_bat_barval(struct text_object *obj)
|
2009-11-08 18:01:42 +00:00
|
|
|
{
|
2009-12-08 05:16:11 +00:00
|
|
|
if (obj->data.i >= 0 && smapi_bat_installed_internal(obj->data.i))
|
2009-12-04 00:27:58 +00:00
|
|
|
return smapi_get_bat_int(obj->data.i, "remaining_percent");
|
2009-11-23 22:48:12 +00:00
|
|
|
return 0;
|
2009-11-08 18:01:42 +00:00
|
|
|
}
|
2009-11-25 01:06:14 +00:00
|
|
|
|
|
|
|
int smapi_bat_installed(struct text_object *obj)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
if(obj->data.s && sscanf(obj->data.s, "%i", &idx) == 1) {
|
2009-12-08 05:16:11 +00:00
|
|
|
if(!smapi_bat_installed_internal(idx)) {
|
2009-11-25 01:06:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
NORM_ERR("argument to if_smapi_bat_installed must be an integer");
|
|
|
|
return 1;
|
|
|
|
}
|