]> Dogcows Code - chaz/tint2/blob - src/battery/battery.c
fd4d59b26be8612418840b840b90266a969a3bb6
[chaz/tint2] / src / battery / battery.c
1 /**************************************************************************
2 *
3 * Tint2 : battery
4 *
5 * Copyright (C) 2009 Sebastian Reichel <elektranox@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2
9 * or any later version as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 **************************************************************************/
19
20 #include <string.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <cairo.h>
24 #include <cairo-xlib.h>
25 #include <pango/pangocairo.h>
26
27 #if defined(__OpenBSD__) || defined(__NetBSD__)
28 #include <machine/apmvar.h>
29 #include <err.h>
30 #include <sys/ioctl.h>
31 #include <unistd.h>
32 #endif
33
34 #if defined(__FreeBSD__)
35 #include <sys/types.h>
36 #include <sys/sysctl.h>
37 #endif
38
39 #include "window.h"
40 #include "server.h"
41 #include "panel.h"
42 #include "battery.h"
43 #include "timer.h"
44 #include "common.h"
45
46 PangoFontDescription *bat1_font_desc;
47 PangoFontDescription *bat2_font_desc;
48 struct batstate battery_state;
49 int battery_enabled;
50 int percentage_hide;
51 static timeout* battery_timeout;
52
53 static char buf_bat_percentage[10];
54 static char buf_bat_time[20];
55
56 int8_t battery_low_status;
57 unsigned char battery_low_cmd_send;
58 char *battery_low_cmd;
59 char *path_energy_now;
60 char *path_energy_full;
61 char *path_current_now;
62 char *path_status;
63
64 #if defined(__OpenBSD__) || defined(__NetBSD__)
65 int apm_fd;
66 #endif
67
68 void update_batterys(void* arg)
69 {
70 int old_percentage = battery_state.percentage;
71 int16_t old_hours = battery_state.time.hours;
72 int8_t old_minutes = battery_state.time.minutes;
73
74 update_battery();
75 if (old_percentage == battery_state.percentage && old_hours == battery_state.time.hours && old_minutes == battery_state.time.minutes)
76 return;
77
78 int i;
79 for (i=0 ; i < nb_panel ; i++) {
80 if (battery_state.percentage >= percentage_hide) {
81 if (panel1[i].battery.area.on_screen == 1) {
82 hide(&panel1[i].battery.area);
83 panel_refresh = 1;
84 }
85 }
86 else {
87 if (panel1[i].battery.area.on_screen == 0) {
88 show(&panel1[i].battery.area);
89 panel_refresh = 1;
90 }
91 }
92 if (panel1[i].battery.area.on_screen == 1) {
93 panel1[i].battery.area.resize = 1;
94 panel_refresh = 1;
95 }
96 }
97 }
98
99 void default_battery()
100 {
101 battery_enabled = 0;
102 percentage_hide = 101;
103 battery_low_cmd_send = 0;
104 battery_timeout = 0;
105 bat1_font_desc = 0;
106 bat2_font_desc = 0;
107 battery_low_cmd = 0;
108 path_energy_now = 0;
109 path_energy_full = 0;
110 path_current_now = 0;
111 path_status = 0;
112 battery_state.percentage = 0;
113 battery_state.time.hours = 0;
114 battery_state.time.minutes = 0;
115 #if defined(__OpenBSD__) || defined(__NetBSD__)
116 apm_fd = -1;
117 #endif
118 }
119
120 void cleanup_battery()
121 {
122 if (bat1_font_desc) pango_font_description_free(bat1_font_desc);
123 if (bat2_font_desc) pango_font_description_free(bat2_font_desc);
124 if (path_energy_now) g_free(path_energy_now);
125 if (path_energy_full) g_free(path_energy_full);
126 if (path_current_now) g_free(path_current_now);
127 if (path_status) g_free(path_status);
128 if (battery_low_cmd) g_free(battery_low_cmd);
129 if (battery_timeout) stop_timeout(battery_timeout);
130
131 #if defined(__OpenBSD__) || defined(__NetBSD__)
132 if ((apm_fd != -1) && (close(apm_fd) == -1))
133 warn("cannot close /dev/apm");
134 #endif
135 }
136
137
138 void init_battery()
139 {
140 if (!battery_enabled) return;
141
142 #if defined(__OpenBSD__) || defined(__NetBSD__)
143 apm_fd = open("/dev/apm", O_RDONLY);
144 if (apm_fd < 0) {
145 warn("init_battery: failed to open /dev/apm.");
146 battery_enabled = 0;
147 return;
148 }
149
150 #elif !defined(__FreeBSD__)
151 // check battery
152 GDir *directory = 0;
153 GError *error = NULL;
154 const char *entryname;
155 char *battery_dir = 0;
156
157 directory = g_dir_open("/sys/class/power_supply", 0, &error);
158 if (error)
159 g_error_free(error);
160 else {
161 while ((entryname=g_dir_read_name(directory))) {
162 if (strncmp(entryname,"AC", 2) == 0) continue;
163
164 char *path1 = g_build_filename("/sys/class/power_supply", entryname, "present", NULL);
165 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
166 g_free(path1);
167 battery_dir = g_build_filename("/sys/class/power_supply", entryname, NULL);
168 break;
169 }
170 g_free(path1);
171 }
172 }
173 if (directory)
174 g_dir_close(directory);
175 if (!battery_dir) {
176 fprintf(stderr, "ERROR: battery applet can't found power_supply\n");
177 default_battery();
178 return;
179 }
180
181 char *path1 = g_build_filename(battery_dir, "energy_now", NULL);
182 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
183 path_energy_now = g_build_filename(battery_dir, "energy_now", NULL);
184 path_energy_full = g_build_filename(battery_dir, "energy_full", NULL);
185 }
186 else {
187 char *path2 = g_build_filename(battery_dir, "charge_now", NULL);
188 if (g_file_test (path2, G_FILE_TEST_EXISTS)) {
189 path_energy_now = g_build_filename(battery_dir, "charge_now", NULL);
190 path_energy_full = g_build_filename(battery_dir, "charge_full", NULL);
191 }
192 else {
193 fprintf(stderr, "ERROR: can't found energy_* or charge_*\n");
194 }
195 g_free(path2);
196 }
197 if (path_energy_now && path_energy_full) {
198 path_current_now = g_build_filename(battery_dir, "current_now", NULL);
199 path_status = g_build_filename(battery_dir, "status", NULL);
200
201 // check file
202 FILE *fp1, *fp2, *fp3, *fp4;
203 fp1 = fopen(path_energy_now, "r");
204 fp2 = fopen(path_energy_full, "r");
205 fp3 = fopen(path_current_now, "r");
206 fp4 = fopen(path_status, "r");
207 if (fp1 == NULL || fp2 == NULL || fp3 == NULL || fp4 == NULL) {
208 cleanup_battery();
209 default_battery();
210 fprintf(stderr, "ERROR: battery applet can't open energy_now\n");
211 }
212 fclose(fp1);
213 fclose(fp2);
214 fclose(fp3);
215 fclose(fp4);
216 }
217
218 g_free(path1);
219 g_free(battery_dir);
220 #endif
221
222 if (battery_enabled && battery_timeout==0)
223 battery_timeout = add_timeout(10, 10000, update_batterys, 0);
224 }
225
226
227 void init_battery_panel(void *p)
228 {
229 Panel *panel = (Panel*)p;
230 Battery *battery = &panel->battery;
231
232 if (!battery_enabled)
233 return;
234
235 battery->area.parent = p;
236 battery->area.panel = p;
237 battery->area._draw_foreground = draw_battery;
238 battery->area.size_mode = SIZE_BY_CONTENT;
239 battery->area._resize = resize_battery;
240 }
241
242
243 void update_battery() {
244 #if !defined(__OpenBSD__) && !defined(__NetBSD__) && !defined(__FreeBSD__)
245 // unused on OpenBSD, silence compiler warnings
246 FILE *fp;
247 char tmp[25];
248 int64_t current_now = 0;
249 #endif
250 #if defined(__FreeBSD__)
251 int sysctl_out = 0;
252 size_t len = 0;
253 #endif
254 int64_t energy_now = 0, energy_full = 0;
255 int seconds = 0;
256 int8_t new_percentage = 0;
257
258 #if defined(__OpenBSD__) || defined(__NetBSD__)
259 struct apm_power_info info;
260 if (ioctl(apm_fd, APM_IOC_GETPOWER, &(info)) < 0)
261 warn("power update: APM_IOC_GETPOWER");
262
263 // best attempt at mapping to linux battery states
264 battery_state.state = BATTERY_UNKNOWN;
265 switch (info.battery_state) {
266 case APM_BATT_CHARGING:
267 battery_state.state = BATTERY_CHARGING;
268 break;
269 default:
270 battery_state.state = BATTERY_DISCHARGING;
271 break;
272 }
273
274 if (info.battery_life == 100)
275 battery_state.state = BATTERY_FULL;
276
277 // no mapping for openbsd really
278 energy_full = 0;
279 energy_now = 0;
280
281 if (info.minutes_left != -1)
282 seconds = info.minutes_left * 60;
283 else
284 seconds = -1;
285
286 new_percentage = info.battery_life;
287
288 #elif defined(__FreeBSD__)
289 len = sizeof(sysctl_out);
290
291 if (sysctlbyname("hw.acpi.battery.state", &sysctl_out, &len, NULL, 0) != 0)
292 fprintf(stderr, "power update: no such sysctl");
293
294 // attemp to map the battery state to linux
295 battery_state.state = BATTERY_UNKNOWN;
296
297 switch(sysctl_out) {
298 case 1:
299 battery_state.state = BATTERY_DISCHARGING;
300 break;
301 case 2:
302 battery_state.state = BATTERY_CHARGING;
303 break;
304 default:
305 battery_state.state = BATTERY_FULL;
306 break;
307 }
308
309 // no mapping for freebsd
310 energy_full = 0;
311 energy_now = 0;
312
313 if (sysctlbyname("hw.acpi.battery.time", &sysctl_out, &len, NULL, 0) != 0)
314 seconds = -1;
315 else
316 seconds = sysctl_out * 60;
317
318 // charging or error
319 if (seconds < 0)
320 seconds = 0;
321
322 if (sysctlbyname("hw.acpi.battery.life", &sysctl_out, &len, NULL, 0) != 0)
323 new_percentage = -1;
324 else
325 new_percentage = sysctl_out;
326
327 #else
328 fp = fopen(path_status, "r");
329 if(fp != NULL) {
330 if (fgets(tmp, sizeof tmp, fp)) {
331 battery_state.state = BATTERY_UNKNOWN;
332 if(strcasecmp(tmp, "Charging\n")==0) battery_state.state = BATTERY_CHARGING;
333 if(strcasecmp(tmp, "Discharging\n")==0) battery_state.state = BATTERY_DISCHARGING;
334 if(strcasecmp(tmp, "Full\n")==0) battery_state.state = BATTERY_FULL;
335 }
336 fclose(fp);
337 }
338
339 fp = fopen(path_energy_now, "r");
340 if(fp != NULL) {
341 if (fgets(tmp, sizeof tmp, fp)) energy_now = atoi(tmp);
342 fclose(fp);
343 }
344
345 fp = fopen(path_energy_full, "r");
346 if(fp != NULL) {
347 if (fgets(tmp, sizeof tmp, fp)) energy_full = atoi(tmp);
348 fclose(fp);
349 }
350
351 fp = fopen(path_current_now, "r");
352 if(fp != NULL) {
353 if (fgets(tmp, sizeof tmp, fp)) current_now = atoi(tmp);
354 fclose(fp);
355 }
356
357 if(current_now > 0) {
358 switch(battery_state.state) {
359 case BATTERY_CHARGING:
360 seconds = 3600 * (energy_full - energy_now) / current_now;
361 break;
362 case BATTERY_DISCHARGING:
363 seconds = 3600 * energy_now / current_now;
364 break;
365 default:
366 seconds = 0;
367 break;
368 }
369 } else seconds = 0;
370 #endif
371
372 battery_state.time.hours = seconds / 3600;
373 seconds -= 3600 * battery_state.time.hours;
374 battery_state.time.minutes = seconds / 60;
375 seconds -= 60 * battery_state.time.minutes;
376 battery_state.time.seconds = seconds;
377
378 if(energy_full > 0)
379 new_percentage = (energy_now*100)/energy_full;
380
381 if(battery_low_status > new_percentage && battery_state.state == BATTERY_DISCHARGING && !battery_low_cmd_send) {
382 tint_exec(battery_low_cmd);
383 battery_low_cmd_send = 1;
384 }
385 if(battery_low_status < new_percentage && battery_state.state == BATTERY_CHARGING && battery_low_cmd_send) {
386 battery_low_cmd_send = 0;
387 }
388
389 battery_state.percentage = new_percentage;
390
391 // clamp percentage to 100 in case battery is misreporting that its current charge is more than its max
392 if(battery_state.percentage > 100) {
393 battery_state.percentage = 100;
394 }
395 }
396
397
398 void draw_battery (void *obj, cairo_t *c)
399 {
400 Battery *battery = obj;
401 PangoLayout *layout;
402
403 layout = pango_cairo_create_layout (c);
404
405 // draw layout
406 pango_layout_set_font_description(layout, bat1_font_desc);
407 pango_layout_set_width(layout, battery->area.width * PANGO_SCALE);
408 pango_layout_set_alignment(layout, PANGO_ALIGN_CENTER);
409 pango_layout_set_text(layout, buf_bat_percentage, strlen(buf_bat_percentage));
410
411 cairo_set_source_rgba(c, battery->font.color[0], battery->font.color[1], battery->font.color[2], battery->font.alpha);
412
413 pango_cairo_update_layout(c, layout);
414 cairo_move_to(c, 0, battery->bat1_posy);
415 pango_cairo_show_layout(c, layout);
416
417 pango_layout_set_font_description(layout, bat2_font_desc);
418 pango_layout_set_indent(layout, 0);
419 pango_layout_set_text(layout, buf_bat_time, strlen(buf_bat_time));
420 pango_layout_set_width(layout, battery->area.width * PANGO_SCALE);
421
422 pango_cairo_update_layout(c, layout);
423 cairo_move_to(c, 0, battery->bat2_posy);
424 pango_cairo_show_layout(c, layout);
425
426 g_object_unref(layout);
427 }
428
429
430 int resize_battery(void *obj)
431 {
432 Battery *battery = obj;
433 Panel *panel = battery->area.panel;
434 int bat_percentage_height, bat_percentage_width, bat_percentage_height_ink;
435 int bat_time_height, bat_time_width, bat_time_height_ink;
436 int ret = 0;
437
438 battery->area.redraw = 1;
439
440 snprintf(buf_bat_percentage, sizeof(buf_bat_percentage), "%d%%", battery_state.percentage);
441 if(battery_state.state == BATTERY_FULL) {
442 strcpy(buf_bat_time, "Full");
443 } else {
444 snprintf(buf_bat_time, sizeof(buf_bat_time), "%02d:%02d", battery_state.time.hours, battery_state.time.minutes);
445 }
446 get_text_size2(bat1_font_desc, &bat_percentage_height_ink, &bat_percentage_height, &bat_percentage_width, panel->area.height, panel->area.width, buf_bat_percentage, strlen(buf_bat_percentage));
447 get_text_size2(bat2_font_desc, &bat_time_height_ink, &bat_time_height, &bat_time_width, panel->area.height, panel->area.width, buf_bat_time, strlen(buf_bat_time));
448
449 if (panel_horizontal) {
450 int new_size = (bat_percentage_width > bat_time_width) ? bat_percentage_width : bat_time_width;
451 new_size += (2*battery->area.paddingxlr) + (2*battery->area.bg->border.width);
452 if (new_size > battery->area.width || new_size < (battery->area.width-2)) {
453 // we try to limit the number of resize
454 battery->area.width = new_size;
455 battery->bat1_posy = ((battery->area.height - bat_percentage_height) / 2) - ((bat_time_height_ink + 2) / 2);
456 battery->bat2_posy = battery->bat1_posy + bat_percentage_height + 2 - (bat_percentage_height - bat_percentage_height_ink)/2 - (bat_time_height - bat_time_height_ink)/2;
457 ret = 1;
458 }
459 }
460 else {
461 int new_size = bat_percentage_height + bat_time_height + (2 * (battery->area.paddingxlr + battery->area.bg->border.width));
462 if (new_size > battery->area.height || new_size < (battery->area.height-2)) {
463 battery->area.height = new_size;
464 battery->bat1_posy = ((battery->area.height - bat_percentage_height) / 2) - ((bat_time_height_ink + 2) / 2);
465 battery->bat2_posy = battery->bat1_posy + bat_percentage_height + 2 - (bat_percentage_height - bat_percentage_height_ink)/2 - (bat_time_height - bat_time_height_ink)/2;
466 ret = 1;
467 }
468 }
469 return ret;
470 }
471
This page took 0.047774 seconds and 3 git commands to generate.