]> Dogcows Code - chaz/tint2/blob - src/battery/battery.c
moved initial values in function default_xxx
[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 #include "window.h"
28 #include "server.h"
29 #include "area.h"
30 #include "panel.h"
31 #include "taskbar.h"
32 #include "battery.h"
33 #include "clock.h"
34 #include "timer.h"
35
36 PangoFontDescription *bat1_font_desc;
37 PangoFontDescription *bat2_font_desc;
38 struct batstate battery_state;
39 int battery_enabled;
40 int percentage_hide;
41 static timeout* battery_timeout;
42
43 static char buf_bat_percentage[10];
44 static char buf_bat_time[20];
45
46 int8_t battery_low_status;
47 unsigned char battery_low_cmd_send;
48 char *battery_low_cmd;
49 char *path_energy_now;
50 char *path_energy_full;
51 char *path_current_now;
52 char *path_status;
53
54 void update_batterys(void* arg)
55 {
56 int i;
57 update_battery();
58 for (i=0 ; i < nb_panel ; i++) {
59 if (battery_state.percentage >= percentage_hide) {
60 if (panel1[i].battery.area.on_screen == 1) {
61 panel1[i].battery.area.on_screen = 0;
62 // force resize on panel
63 panel1[i].area.resize = 1;
64 panel_refresh = 1;
65 }
66 continue;
67 }
68 else {
69 if (panel1[i].battery.area.on_screen == 0) {
70 panel1[i].battery.area.on_screen = 1;
71 // force resize on panel
72 panel1[i].area.resize = 1;
73 panel_refresh = 1;
74 }
75 }
76 panel1[i].battery.area.resize = 1;
77 }
78 }
79
80 void default_battery()
81 {
82 battery_enabled = 0;
83 percentage_hide = 101;
84 battery_low_cmd_send = 0;
85 battery_timeout = 0;
86 bat1_font_desc = 0;
87 bat2_font_desc = 0;
88 battery_low_cmd = 0;
89 path_energy_now = 0;
90 path_energy_full = 0;
91 path_current_now = 0;
92 path_status = 0;
93 }
94
95 void cleanup_battery()
96 {
97 if (bat1_font_desc) pango_font_description_free(bat1_font_desc);
98 if (bat2_font_desc) pango_font_description_free(bat2_font_desc);
99 if (path_energy_now) g_free(path_energy_now);
100 if (path_energy_full) g_free(path_energy_full);
101 if (path_current_now) g_free(path_current_now);
102 if (path_status) g_free(path_status);
103 if (battery_low_cmd) g_free(battery_low_cmd);
104 }
105
106
107 void init_battery()
108 {
109 // check battery
110 GDir *directory = 0;
111 GError *error = NULL;
112 const char *entryname;
113 char *battery_dir = 0;
114
115 if (!battery_enabled) return;
116
117 directory = g_dir_open("/sys/class/power_supply", 0, &error);
118 if (error)
119 g_error_free(error);
120 else {
121 while ((entryname=g_dir_read_name(directory))) {
122 if (strncmp(entryname,"AC", 2) == 0) continue;
123
124 char *path1 = g_build_filename("/sys/class/power_supply", entryname, "present", NULL);
125 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
126 g_free(path1);
127 battery_dir = g_build_filename("/sys/class/power_supply", entryname, NULL);
128 break;
129 }
130 g_free(path1);
131 }
132 }
133 if (directory)
134 g_dir_close(directory);
135 if (!battery_dir) {
136 cleanup_battery();
137 fprintf(stderr, "ERROR: battery applet can't found power_supply\n");
138 return;
139 }
140
141 char *path1 = g_build_filename(battery_dir, "energy_now", NULL);
142 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
143 path_energy_now = g_build_filename(battery_dir, "energy_now", NULL);
144 path_energy_full = g_build_filename(battery_dir, "energy_full", NULL);
145 }
146 else {
147 char *path2 = g_build_filename(battery_dir, "charge_now", NULL);
148 if (g_file_test (path2, G_FILE_TEST_EXISTS)) {
149 path_energy_now = g_build_filename(battery_dir, "charge_now", NULL);
150 path_energy_full = g_build_filename(battery_dir, "charge_full", NULL);
151 }
152 else {
153 fprintf(stderr, "ERROR: can't found energy_* or charge_*\n");
154 }
155 g_free(path2);
156 }
157 if (path_energy_now && path_energy_full) {
158 path_current_now = g_build_filename(battery_dir, "current_now", NULL);
159 path_status = g_build_filename(battery_dir, "status", NULL);
160
161 // check file
162 FILE *fp1, *fp2, *fp3, *fp4;
163 fp1 = fopen(path_energy_now, "r");
164 fp2 = fopen(path_energy_full, "r");
165 fp3 = fopen(path_current_now, "r");
166 fp4 = fopen(path_status, "r");
167 if (fp1 == NULL || fp2 == NULL || fp3 == NULL || fp4 == NULL) {
168 cleanup_battery();
169 fprintf(stderr, "ERROR: battery applet can't open energy_now\n");
170 }
171 fclose(fp1);
172 fclose(fp2);
173 fclose(fp3);
174 fclose(fp4);
175 }
176
177 g_free(path1);
178 g_free(battery_dir);
179
180 if (battery_enabled && battery_timeout==0)
181 battery_timeout = add_timeout(10, 10000, update_batterys, 0);
182 }
183
184
185 void init_battery_panel(void *p)
186 {
187 Panel *panel = (Panel*)p;
188 Battery *battery = &panel->battery;
189 int bat_percentage_height, bat_percentage_height_ink, bat_time_height, bat_time_height_ink;
190
191 if (!battery_enabled)
192 return;
193
194 battery->area.parent = p;
195 battery->area.panel = p;
196 battery->area._draw_foreground = draw_battery;
197 battery->area._resize = resize_battery;
198 battery->area.resize = 1;
199 battery->area.redraw = 1;
200 battery->area.on_screen = 1;
201
202 update_battery(&battery_state);
203 snprintf(buf_bat_percentage, sizeof(buf_bat_percentage), "%d%%", battery_state.percentage);
204 snprintf(buf_bat_time, sizeof(buf_bat_time), "%02d:%02d", battery_state.time.hours, battery_state.time.minutes);
205
206 get_text_size(bat1_font_desc, &bat_percentage_height_ink, &bat_percentage_height, panel->area.height, buf_bat_percentage, strlen(buf_bat_percentage));
207 get_text_size(bat2_font_desc, &bat_time_height_ink, &bat_time_height, panel->area.height, buf_bat_time, strlen(buf_bat_time));
208
209 if (panel_horizontal) {
210 // panel horizonal => fixed height and posy
211 battery->area.posy = panel->area.bg->border.width + panel->area.paddingy;
212 battery->area.height = panel->area.height - (2 * battery->area.posy);
213 }
214 else {
215 // panel vertical => fixed width, height, posy and posx
216 battery->area.posy = panel->clock.area.posy + panel->clock.area.height + panel->area.paddingx;
217 battery->area.height = (2 * battery->area.paddingxlr) + (bat_time_height + bat_percentage_height);
218 battery->area.posx = panel->area.bg->border.width + panel->area.paddingy;
219 battery->area.width = panel->area.width - (2 * panel->area.bg->border.width) - (2 * panel->area.paddingy);
220 }
221
222 battery->bat1_posy = (battery->area.height - bat_percentage_height) / 2;
223 battery->bat1_posy -= ((bat_time_height_ink + 2) / 2);
224 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;
225 }
226
227
228 void update_battery() {
229 FILE *fp;
230 char tmp[25];
231 int64_t energy_now = 0, energy_full = 0, current_now = 0;
232 int seconds = 0;
233 int8_t new_percentage = 0;
234
235 fp = fopen(path_status, "r");
236 if(fp != NULL) {
237 if (fgets(tmp, sizeof tmp, fp)) {
238 battery_state.state = BATTERY_UNKNOWN;
239 if(strcasecmp(tmp, "Charging\n")==0) battery_state.state = BATTERY_CHARGING;
240 if(strcasecmp(tmp, "Discharging\n")==0) battery_state.state = BATTERY_DISCHARGING;
241 if(strcasecmp(tmp, "Full\n")==0) battery_state.state = BATTERY_FULL;
242 }
243 fclose(fp);
244 }
245
246 fp = fopen(path_energy_now, "r");
247 if(fp != NULL) {
248 if (fgets(tmp, sizeof tmp, fp)) energy_now = atoi(tmp);
249 fclose(fp);
250 }
251
252 fp = fopen(path_energy_full, "r");
253 if(fp != NULL) {
254 if (fgets(tmp, sizeof tmp, fp)) energy_full = atoi(tmp);
255 fclose(fp);
256 }
257
258 fp = fopen(path_current_now, "r");
259 if(fp != NULL) {
260 if (fgets(tmp, sizeof tmp, fp)) current_now = atoi(tmp);
261 fclose(fp);
262 }
263
264 if(current_now > 0) {
265 switch(battery_state.state) {
266 case BATTERY_CHARGING:
267 seconds = 3600 * (energy_full - energy_now) / current_now;
268 break;
269 case BATTERY_DISCHARGING:
270 seconds = 3600 * energy_now / current_now;
271 break;
272 default:
273 seconds = 0;
274 break;
275 }
276 } else seconds = 0;
277
278 battery_state.time.hours = seconds / 3600;
279 seconds -= 3600 * battery_state.time.hours;
280 battery_state.time.minutes = seconds / 60;
281 seconds -= 60 * battery_state.time.minutes;
282 battery_state.time.seconds = seconds;
283
284 if(energy_full > 0)
285 new_percentage = (energy_now*100)/energy_full;
286
287 if(battery_low_status > new_percentage && battery_state.state == BATTERY_DISCHARGING && !battery_low_cmd_send) {
288 system(battery_low_cmd); // return value == -1, since we've set SIGCHLD to SIGIGN
289 battery_low_cmd_send = 1;
290 }
291 if(battery_low_status < new_percentage && battery_state.state == BATTERY_CHARGING && battery_low_cmd_send) {
292 battery_low_cmd_send = 0;
293 }
294
295 battery_state.percentage = new_percentage;
296
297 // clamp percentage to 100 in case battery is misreporting that its current charge is more than its max
298 if(battery_state.percentage > 100) {
299 battery_state.percentage = 100;
300 }
301 }
302
303
304 void draw_battery (void *obj, cairo_t *c)
305 {
306 Battery *battery = obj;
307 PangoLayout *layout;
308
309 layout = pango_cairo_create_layout (c);
310
311 // draw layout
312 pango_layout_set_font_description(layout, bat1_font_desc);
313 pango_layout_set_width(layout, battery->area.width * PANGO_SCALE);
314 pango_layout_set_alignment(layout, PANGO_ALIGN_CENTER);
315 pango_layout_set_text(layout, buf_bat_percentage, strlen(buf_bat_percentage));
316
317 cairo_set_source_rgba(c, battery->font.color[0], battery->font.color[1], battery->font.color[2], battery->font.alpha);
318
319 pango_cairo_update_layout(c, layout);
320 cairo_move_to(c, 0, battery->bat1_posy);
321 pango_cairo_show_layout(c, layout);
322
323 pango_layout_set_font_description(layout, bat2_font_desc);
324 pango_layout_set_indent(layout, 0);
325 pango_layout_set_text(layout, buf_bat_time, strlen(buf_bat_time));
326 pango_layout_set_width(layout, battery->area.width * PANGO_SCALE);
327
328 pango_cairo_update_layout(c, layout);
329 cairo_move_to(c, 0, battery->bat2_posy);
330 pango_cairo_show_layout(c, layout);
331
332 g_object_unref(layout);
333 }
334
335
336 void resize_battery(void *obj)
337 {
338 Battery *battery = obj;
339 PangoLayout *layout;
340 int percentage_width, time_width, new_width;
341
342 percentage_width = time_width = 0;
343 battery->area.redraw = 1;
344
345 snprintf(buf_bat_percentage, sizeof(buf_bat_percentage), "%d%%", battery_state.percentage);
346 if(battery_state.state == BATTERY_FULL) {
347 strcpy(buf_bat_time, "Full");
348 } else {
349 snprintf(buf_bat_time, sizeof(buf_bat_time), "%02d:%02d", battery_state.time.hours, battery_state.time.minutes);
350 }
351 // vertical panel doen't adjust width
352 if (!panel_horizontal) return;
353
354 cairo_surface_t *cs;
355 cairo_t *c;
356 Pixmap pmap;
357 pmap = XCreatePixmap(server.dsp, server.root_win, battery->area.width, battery->area.height, server.depth);
358
359 cs = cairo_xlib_surface_create(server.dsp, pmap, server.visual, battery->area.width, battery->area.height);
360 c = cairo_create(cs);
361 layout = pango_cairo_create_layout(c);
362
363 // check width
364 pango_layout_set_font_description(layout, bat1_font_desc);
365 pango_layout_set_indent(layout, 0);
366 pango_layout_set_text(layout, buf_bat_percentage, strlen(buf_bat_percentage));
367 pango_layout_get_pixel_size(layout, &percentage_width, NULL);
368
369 pango_layout_set_font_description(layout, bat2_font_desc);
370 pango_layout_set_indent(layout, 0);
371 pango_layout_set_text(layout, buf_bat_time, strlen(buf_bat_time));
372 pango_layout_get_pixel_size(layout, &time_width, NULL);
373
374 if(percentage_width > time_width) new_width = percentage_width;
375 else new_width = time_width;
376
377 new_width += (2*battery->area.paddingxlr) + (2*battery->area.bg->border.width);
378
379 int old_width = battery->area.width;
380
381 Panel *panel = ((Area*)obj)->panel;
382 battery->area.width = new_width + 1;
383 battery->area.posx = panel->area.width - battery->area.width - panel->area.paddingxlr - panel->area.bg->border.width;
384 if (panel->clock.area.on_screen)
385 battery->area.posx -= (panel->clock.area.width + panel->area.paddingx);
386
387 if(new_width > old_width || new_width < (old_width-6)) {
388 // refresh and resize other objects on panel
389 // we try to limit the number of refresh
390 // printf("battery_width %d, new_width %d\n", battery->area.width, new_width);
391 panel->area.resize = 1;
392 systray.area.resize = 1;
393 panel_refresh = 1;
394 }
395
396 g_object_unref (layout);
397 cairo_destroy (c);
398 cairo_surface_destroy (cs);
399 XFreePixmap (server.dsp, pmap);
400 }
401
This page took 0.056949 seconds and 5 git commands to generate.