chiark / gitweb /
52e02a2e269e2829c4d8c5dc0cb221f98df019b7
[chiark-utils.git] / cprogs / xacpi-simple.c
1 /*
2  * display outputs, per line:
3  *
4  *   Remaining: | Empty:        | Degraded:
5  *     blue     |  black        |  dimgrey      discharging
6  *     green    |  black        |  dimgrey      charging
7  *     cyan     |  black        |  dimgrey      charged
8  *     grey     |  black        |  dimgrey      charging&discharching!
9  *     darkcyan |  black        |  dimgrey      none of the above
10  *     blue     |  red          |  dimgrey      discharging - low!
11  *     green    |  red          |  dimgrey      charging - low
12  *     cyan     |  red          |  dimgrey      charged - low [1]
13  *     grey     |  red          |  dimgrey      charging&discharching, low [1]
14  *       ...  darkgreen  ...                    no batteries present
15  *       ...  yellow  ...                       error
16  *
17  * [1] battery must be quite badly degraded
18  */
19 /*
20  * Copyright (C) 2004 Ian Jackson <ian@davenant.greenend.org.uk>
21  *
22  * This is free software; you can redistribute it and/or modify
23  * it under the terms of the GNU General Public License as
24  * published by the Free Software Foundation; either version 3,
25  * or (at your option) any later version.
26  *
27  * This is distributed in the hope that it will be useful, but
28  * WITHOUT ANY WARRANTY; without even the implied warranty of
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30  * GNU General Public License for more details.
31  *
32  * You should have received a copy of the GNU General Public
33  * License along with this file; if not, consult the Free Software
34  * Foundation's website at www.fsf.org, or the GNU Project website at
35  * www.gnu.org.
36  */
37
38 #include <stdio.h>
39 #include <assert.h>
40 #include <math.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <errno.h>
44 #include <unistd.h>
45 #include <ctype.h>
46 #include <stdint.h>
47 #include <limits.h>
48 #include <inttypes.h>
49
50 #include <sys/poll.h>
51 #include <sys/types.h>
52 #include <dirent.h>
53
54 #include <X11/Xlib.h>
55 #include <X11/Xutil.h>
56 #include <X11/Xresource.h>
57
58 #define TOP      60
59 #define BOTTOM 3600
60
61 #define TIMEOUT         5000 /* milliseconds */
62 #define TIMEOUT_ONERROR 3333 /* milliseconds */
63
64 static const char program_name[]= "xacpi-simple";
65 static int debug, alarmlevel;
66
67 /*---------- general utility stuff and declarations ----------*/
68
69 static void fail(const char *m) {
70   fprintf(stderr,"error: %s\n", m);
71   exit(-1);
72 }
73 static void badusage(void) { fail("bad usage"); }
74
75 typedef uint64_t value;
76 #define VAL_NOTFOUND (~(value)0)
77
78 typedef struct fileinfo fileinfo;
79 typedef int parser(const fileinfo*);
80
81 static parser parse_uevent;
82
83 struct fileinfo {
84   const char *filename;
85   parser *parse;
86   const void *extra;
87 };
88
89 /*---------- structure of and results from /sys/class/power/... ----------*/
90 /* variables this_... are the results from readbattery();
91  * if readbattery() succeeds the appropriate ones are all valid
92  * and not VAL_NOTFOUND
93  */
94
95 typedef struct batinfo_field {
96   const char *label;
97   value *valuep;
98   const char *enumarray[10];
99 } batinfo_field;
100
101 #define BAT_QTYS(_, _ec, EC_, PC_)                              \
102   _(design_capacity##_ec,    BATTERY,  EC_##FULL_DESIGN )       \
103   _(last_full_capacity##_ec, BATTERY,  EC_##FULL        )       \
104   _(remaining_capacity##_ec, BATTERY,  EC_##NOW         )       \
105   _(present_rate##_ec,       BATTERY,  PC_##NOW         )
106  /* ENERGY [mWh]; POWER [mW]; CHARGE [uAh]; CURRENT [uA] */
107
108 #define UEVENT_ESSENTIAL_QUANTITY_FIELDS(_)                     \
109   _(present,                 BATTERY,  PRESENT /* bool */ )     \
110   _(online,                  MAINS,    ONLINE  /* bool */ )
111
112 #define UEVENT_FUNKY_QUANTITY_FIELDS(_)         \
113   BAT_QTYS(_,_energy,ENERGY_,POWER_)            \
114   BAT_QTYS(_,_charge,CHARGE_,CURRENT_)
115
116 #define UEVENT_OPTIONAL_QUANTITY_FIELDS(_)                      \
117   _(voltage,                 BATTERY,  VOLTAGE_NOW /* uV */ )
118
119 #define UEVENT_ENUM_FIELDS(_)                                           \
120   _(state,   BATTERY,  STATUS,  "Discharging","Charging","Full","Unknown" ) \
121   _(type,    BOTH,     TYPE,    "Mains",       "Battery"              )
122
123 #define CHGST_DISCHARGING 0 /* Reflects order in _(state,...) above     */
124 #define CHGST_CHARGING    1 /* Also, much code assumes exactly          */
125 #define CHGST_CHARGED     2 /* these three possible states.             */
126 #define CHGST_UNKNOWN     3 /* these three possible states.             */
127 #define CHGST_ERROR       8 /* Except that this one is an extra bit.    */
128
129 #define TYPE_MAINS        0 /* Reflects order in _(type,...) above        */
130 #define TYPE_BATTERY      1 /* Also, much code assumes exactly these two  */
131 #define TYPE_BOTH       100 /* Except this is a magic invalid value.      */
132
133 #define SEPARATE_QUANTITY_FIELDS(_)             \
134   /* See commit ec6f5f0be800bc5f2a27046833dba04e0c67ffac for
135      the code needed to use this */
136
137
138 #define ALL_DIRECT_VARS(_)                      \
139   UEVENT_ESSENTIAL_QUANTITY_FIELDS(_)           \
140   UEVENT_FUNKY_QUANTITY_FIELDS(_)               \
141   UEVENT_OPTIONAL_QUANTITY_FIELDS(_)            \
142   UEVENT_ENUM_FIELDS(_)                         \
143   SEPARATE_QUANTITY_FIELDS(_)
144
145 #define ALL_VARS(_)                             \
146   ALL_DIRECT_VARS(_)                            \
147   BAT_QTYS(_,,,)
148
149 #define ALL_NEEDED_FIELDS(_)                    \
150   UEVENT_ESSENTIAL_QUANTITY_FIELDS(_)           \
151   UEVENT_ENUM_FIELDS(_)                         \
152   SEPARATE_QUANTITY_FIELDS(_)
153
154 #define ALL_PLAIN_ACCUMULATE_FIELDS(_)          \
155   UEVENT_ESSENTIAL_QUANTITY_FIELDS(_)           \
156   SEPARATE_QUANTITY_FIELDS(_)
157
158 #define ALL_ACCUMULATE_FIELDS(_)                \
159   ALL_PLAIN_ACCUMULATE_FIELDS(_)                \
160   BAT_QTYS(_,,,)
161
162
163 #define F_VAR(f,...) \
164 static value this_##f;
165 ALL_VARS(F_VAR)
166
167 #define Q_FLD(f,t,l)        { "POWER_SUPPLY_" #l, &this_##f },
168 #define E_FLD(f,t,l,vl...)  { "POWER_SUPPLY_" #l, &this_##f, { vl } },
169
170 static const batinfo_field uevent_fields[]= {
171   UEVENT_ESSENTIAL_QUANTITY_FIELDS(Q_FLD)
172   UEVENT_FUNKY_QUANTITY_FIELDS(Q_FLD)
173   UEVENT_OPTIONAL_QUANTITY_FIELDS(Q_FLD)
174   UEVENT_ENUM_FIELDS(E_FLD)
175   { 0 }
176 };
177
178 #define S_FLD(f,t,fn,vl...)                                             \
179 static const batinfo_field bif_##f = { 0, &this_##f, { vl } };
180   SEPARATE_QUANTITY_FIELDS(S_FLD)
181
182 #define S_FILE(f,t,fn,vl...) { fn, parse_separate, &bif_##f },
183
184 static const fileinfo files[]= {
185   { "uevent",  parse_uevent,  uevent_fields },
186   SEPARATE_QUANTITY_FIELDS(S_FILE)
187   { 0 }
188 };
189
190 /*---------- parsing of one thingx in /sys/class/power/... ----------*/
191
192 /* variables private to the parser and its error handlers */
193 static char batlinebuf[1000];
194 static FILE *batfile;
195 static const char *batdirname;
196 static const char *batfilename;
197 static const char *batlinevalue;
198
199 static int batfailf(const char *why) {
200   if (batlinevalue) {
201     fprintf(stderr,"%s/%s: %s value `%s': %s\n",
202             batdirname,batfilename, batlinebuf,batlinevalue,why);
203   } else {
204     fprintf(stderr,"%s/%s: %s: `%s'\n",
205             batdirname,batfilename, why, batlinebuf);
206   }
207   return -1;
208 }
209
210 static int batfailc(const char *why) {
211   fprintf(stderr,"%s/%s: %s\n",
212           batdirname,batfilename, why);
213   return -1;
214 }
215
216 static int batfaile(const char *syscall, const char *target) {
217   fprintf(stderr,"%s: failed to %s %s: %s\n",
218           batdirname ? batdirname : "*", syscall, target, strerror(errno));
219   return -1;
220 }
221
222 static int chdir_base(void) {
223   int r;
224   
225   r= chdir("/sys/class/power_supply");
226   if (r) return batfaile("chdir","/sys/class/power_supply");
227
228   return 0;
229 }
230
231 static void tidybattery(void) {
232   if (batfile) { fclose(batfile); batfile=0; }
233 }
234
235 static int parse_value(const fileinfo *cfile, const batinfo_field *field) {
236   if (*field->valuep != VAL_NOTFOUND)
237     return batfailf("value specified multiple times");
238
239   if (!field->enumarray[0]) {
240
241     char *ep;
242     *field->valuep= strtoull(batlinevalue,&ep,10);
243     if (*ep)
244       batfailf("value number syntax incorrect");
245
246   } else {
247         
248     const char *const *enumsearch;
249     for (*field->valuep=0, enumsearch=field->enumarray;
250          *enumsearch && strcmp(*enumsearch,batlinevalue);
251          (*field->valuep)++, enumsearch++);
252     if (!*enumsearch)
253       batfailf("unknown enum value");
254
255   }
256   return 0;
257 }
258
259 static int parse_uevent(const fileinfo *cfile) {
260   char *equals= strchr(batlinebuf,'=');
261   if (!equals)
262     return batfailf("line without a equals");
263   *equals= 0;
264   batlinevalue = equals+1;
265
266   const batinfo_field *field;
267   for (field=cfile->extra; field->label; field++) {
268     if (!strcmp(field->label,batlinebuf))
269       goto found;
270   }
271   return 0;
272
273  found:
274   return parse_value(cfile, field);
275 }
276
277 static int readbattery(void) { /* 0=>ok, -1=>couldn't */
278   
279   const fileinfo *cfile;
280   char *sr;
281   int r, l;
282   
283   r= chdir_base();
284   if (r) return r;
285
286   r= chdir(batdirname);
287   if (r) return batfaile("chdir",batdirname);
288
289 #define V_NOTFOUND(f,...) \
290   this_##f = VAL_NOTFOUND;
291 ALL_VARS(V_NOTFOUND)
292
293   for (cfile=files;
294        (batfilename= cfile->filename);
295        cfile++) {
296     batfile= fopen(batfilename,"r");
297     if (!batfile) {
298       if (errno == ENOENT) continue;
299       return batfaile("open",batfilename);
300     }
301
302     for (;;) {
303       batlinevalue= 0;
304       
305       sr= fgets(batlinebuf,sizeof(batlinebuf),batfile);
306       if (ferror(batfile)) return batfaile("read",batfilename);
307       if (!sr && feof(batfile)) break;
308       l= strlen(batlinebuf);
309       assert(l>0);
310       if (batlinebuf[l-1] != '\n')
311         return batfailf("line too long");
312       batlinebuf[l-1]= 0;
313
314       if (cfile->parse(cfile))
315         return -1;
316     }
317
318     fclose(batfile);
319     batfile= 0;
320   }
321
322   if (debug) {
323     printf("%s:\n",batdirname);
324 #define V_PRINT(f,...)                                  \
325     printf(" %-30s = %20"PRId64"\n", #f, (int64_t)this_##f);
326 ALL_DIRECT_VARS(V_PRINT)
327   }
328
329   int needsfields_MAINS   = this_type == TYPE_MAINS;
330   int needsfields_BATTERY = this_type == TYPE_BATTERY;
331   int needsfields_BOTH    = 1;
332
333   int missing = 0;
334
335 #define V_NEEDED(f,t,...)                               \
336   if (needsfields_##t && this_##f == VAL_NOTFOUND) {    \
337     fprintf(stderr,"%s: %s: not found\n",               \
338             batdirname, #f);                            \
339     missing++;                                          \
340   }
341 ALL_NEEDED_FIELDS(V_NEEDED)
342
343   if (missing) return -1;
344
345   return 0;
346 }   
347
348 /*---------- data collection and analysis ----------*/
349
350 /* These next three variables are the results of the charging state */
351 static unsigned charging_mask; /* 1u<<CHGST_* | ... */
352 static double nondegraded_norm, fill_norm, ratepersec_norm;
353 static int alarmed;
354
355 #define Q_VAR(f,t,...) \
356 static double total_##f;
357   ALL_ACCUMULATE_FIELDS(Q_VAR)
358
359 static void acquiredata(void) {
360   DIR *di;
361   struct dirent *de;
362   int r;
363   
364   charging_mask= 0;
365   alarmed = 0;
366
367   if (debug) printf("\n");
368
369 #define Q_ZERO(f,t,...) \
370   total_##f= 0;
371 ALL_ACCUMULATE_FIELDS(Q_ZERO)
372
373   r = chdir_base();
374   if (r) goto bad;
375
376   di= opendir(".");  if (!di) { batfaile("opendir","battery"); goto bad; }
377   while ((de= readdir(di))) {
378     if (de->d_name[0]==0 || de->d_name[0]=='.') continue;
379
380     batdirname= de->d_name;
381     r= readbattery();
382     tidybattery();
383
384     if (r) {
385     bad:
386       charging_mask |= (1u << CHGST_ERROR);
387       break;
388     }
389
390     if (this_type == TYPE_BATTERY) {
391       if (!this_present)
392         continue;
393
394       charging_mask |= 1u << this_state;
395
396 #define QTY_SUPPLIED(f,...)   this_##f != VAL_NOTFOUND &&
397 #define QTY_USE_ENERGY(f,...) this_##f = this_##f##_energy;
398 #define QTY_USE_CHARGE(f,...) this_##f = this_##f##_charge;
399
400       double funky_multiplier;
401       if (BAT_QTYS(QTY_SUPPLIED,_energy,,) 1) {
402         if (debug) printf(" using energy\n");
403         BAT_QTYS(QTY_USE_ENERGY,,,);
404         funky_multiplier = 1.0;
405       } else if (BAT_QTYS(QTY_SUPPLIED,_charge,,)
406                  this_voltage != VAL_NOTFOUND) {
407         if (debug) printf(" using charge\n");
408         BAT_QTYS(QTY_USE_CHARGE,,,);
409         funky_multiplier = this_voltage * 1e-6;
410       } else {
411         batfailc("neither complete set of energy nor charge");
412         continue;
413       }
414       if (this_state == CHGST_DISCHARGING)
415         /* negate it */
416         total_present_rate -= 2.0 * this_present_rate * funky_multiplier;
417
418 #define Q_ACCUMULATE_FUNKY(f,...)                       \
419       total_##f += this_##f * funky_multiplier;
420 BAT_QTYS(Q_ACCUMULATE_FUNKY,,,)
421     }
422
423 #define Q_ACCUMULATE_PLAIN(f,t,...)                     \
424     if (this_type == TYPE_##t)                  \
425       total_##f += this_##f;
426 ALL_PLAIN_ACCUMULATE_FIELDS(Q_ACCUMULATE_PLAIN)
427
428       
429   }
430   closedir(di);
431
432   if (debug) {
433     printf("TOTAL:\n");
434     printf(" %-30s = %#20x\n", "mask", charging_mask);
435 #define T_PRINT(f,...)                                  \
436     printf(" %-30s = %20.6f\n", #f, total_##f);
437 BAT_QTYS(T_PRINT,,,)
438 ALL_PLAIN_ACCUMULATE_FIELDS(T_PRINT)
439   }
440
441   if ((charging_mask & (1u<<CHGST_DISCHARGING)) &&
442       !total_online/*mains*/) {
443     double time_remaining =
444       -total_remaining_capacity * 3600.0 / total_present_rate;
445     if (debug) printf(" %-30s = %20.6f\n", "time remaining", time_remaining);
446     if (time_remaining < alarmlevel)
447       alarmed = 1;
448   }
449
450   if (total_design_capacity < 0.5)
451     total_design_capacity= 1.0;
452
453   if (total_last_full_capacity < total_remaining_capacity)
454     total_last_full_capacity= total_remaining_capacity;
455   if (total_design_capacity < total_last_full_capacity)
456     total_design_capacity= total_last_full_capacity;
457
458   nondegraded_norm= total_last_full_capacity / total_design_capacity;
459   fill_norm= total_remaining_capacity / total_design_capacity;
460   ratepersec_norm=  total_present_rate
461     / (3600.0 * total_design_capacity);
462 }
463
464 static void initacquire(void) {
465 }  
466
467 /*---------- argument parsing ----------*/
468
469 #define COLOURS                                 \
470   C(blue,      discharging)                     \
471   C(green,     charging)                        \
472   C(cyan,      charged)                         \
473   C(darkcyan,  notcharging)                     \
474   C(grey,      confusing)                       \
475   C(black,     normal)                          \
476   C(red,       low)                             \
477   C(dimgrey,   degraded)                        \
478   C(darkgreen, absent)                          \
479   C(yellow,    error)                           \
480   C(white,     equilibrium)                     \
481   GC(remain)                                    \
482   GC(white)                                     \
483   GC(empty)
484
485 static XrmDatabase xrm;
486 static Display *disp;
487 static int screen;
488
489 static const char defaultresources[]=
490 #define GC(g)
491 #define C(c,u)                                  \
492   "*" #u "Color: " #c "\n"
493   COLOURS
494 #undef GC
495 #undef C
496   ;
497
498 #define S(s) ((char*)(s))
499 static const XrmOptionDescRec optiontable[]= {
500   { S("-debug"),        S("*debug"),        XrmoptionIsArg },
501   { S("-warningTime"),  S("*warningTime"),  XrmoptionSepArg },
502   { S("-display"),      S("*display"),      XrmoptionSepArg },
503   { S("-geometry"),     S("*geometry"),     XrmoptionSepArg },
504 #define GC(g)
505 #define C(c,u)                                                  \
506   { S("-" #u "Color"),  S("*" #u "Color"),  XrmoptionSepArg },  \
507   { S("-" #u "Colour"), S("*" #u "Color"),  XrmoptionSepArg },
508   COLOURS
509 #undef GC
510 #undef C
511 };
512
513 static const char *getresource(const char *want) {
514   char name_buf[256], class_buf[256];
515   XrmValue val;
516   char *rep_type_dummy;
517   int r;
518
519   assert(strlen(want) < 128);
520   sprintf(name_buf,"xacpi-simple.%s",want);
521   sprintf(class_buf,"Xacpi-Simple.%s",want);
522   
523   r= XrmGetResource(xrm, name_buf,class_buf, &rep_type_dummy, &val);
524   if (!r) return 0;
525   
526   return val.addr;
527 }
528
529 static void more_resources(const char *str, const char *why) {
530   XrmDatabase more;
531
532   if (!str) return;
533
534   more= XrmGetStringDatabase((char*)str);
535   if (!more) fail(why);
536   XrmCombineDatabase(more,&xrm,0);
537 }
538
539 static void parseargs(int argc, char **argv) {
540   Screen *screenscreen;
541   
542   XrmInitialize();
543
544   XrmParseCommand(&xrm, (XrmOptionDescRec*)optiontable,
545                   sizeof(optiontable)/sizeof(*optiontable),
546                   program_name, &argc, argv);
547
548   if (argc>1) badusage();
549
550   debug= !!getresource("debug");
551
552   const char *alarmlevel_string= getresource("alarmLevel");
553   alarmlevel = alarmlevel_string ? atoi(alarmlevel_string) : 300;
554
555   disp= XOpenDisplay(getresource("display"));
556   if (!disp) fail("could not open display");
557
558   screen= DefaultScreen(disp);
559
560   screenscreen= ScreenOfDisplay(disp,screen);
561   if (!screenscreen) fail("screenofdisplay");
562   more_resources(XScreenResourceString(screenscreen), "screen resources");
563   more_resources(XResourceManagerString(disp), "display resources");
564   more_resources(defaultresources, "default resources");
565
566
567 /*---------- display ----------*/
568
569 static Window win;
570 static int width, height;
571 static Colormap cmap;
572 static unsigned long lastbackground;
573
574 typedef struct {
575   GC gc;
576   unsigned long lastfg;
577 } Gcstate;
578
579 #define C(c,u) static unsigned long pix_##c;
580 #define GC(g) static Gcstate gc_##g;
581   COLOURS
582 #undef C
583 #undef GC
584
585 static void refresh(void);
586
587 #define CHGMASK_CHG_DIS ((1u<<CHGST_CHARGING) | (1u<<CHGST_DISCHARGING))
588
589 static void failr(const char *m, int r) {
590   fprintf(stderr,"error: %s (code %d)\n", m, r);
591   exit(-1);
592 }
593
594 static void setbackground(unsigned long newbg) {
595   int r;
596   
597   if (newbg == lastbackground) return;
598   r= XSetWindowBackground(disp,win,newbg);
599   if (!r) fail("XSetWindowBackground");
600   lastbackground= newbg;
601 }
602
603 static void setforeground(Gcstate *g, unsigned long px) {
604   XGCValues gcv;
605   int r;
606   
607   if (g->lastfg == px) return;
608   
609   memset(&gcv,0,sizeof(gcv));
610   g->lastfg= gcv.foreground= px;
611   r= XChangeGC(disp,g->gc,GCForeground,&gcv);
612   if (!r) fail("XChangeGC");
613 }
614
615 static void show_solid(unsigned long px) {
616   setbackground(px);
617   XClearWindow(disp,win);
618 }
619
620 static void show(void) {
621   double elap, then;
622   int i, leftmost_lit, leftmost_nondeg, beyond, first_beyond;
623
624   if (!charging_mask)
625     return show_solid(pix_darkgreen);
626
627   if (charging_mask & (1u << CHGST_ERROR))
628     return show_solid(pix_yellow);
629
630   setbackground(pix_dimgrey);
631   XClearWindow(disp,win);
632   
633   setforeground(&gc_remain,
634                 !(charging_mask & CHGMASK_CHG_DIS) ?
635                 (~charging_mask & (1u << CHGST_CHARGED) ?
636                  pix_darkcyan : pix_cyan) :
637                 !(~charging_mask & CHGMASK_CHG_DIS) ? pix_grey :
638                 charging_mask & (1u<<CHGST_CHARGING)
639                 ? pix_green : pix_blue);
640                 
641   setforeground(&gc_empty, alarmed ? pix_red : pix_black);
642
643   for (i=0, first_beyond=1; i<height; i++) {
644     elap= !i ? 0 :
645       height==2 ? BOTTOM :
646       TOP * exp( (double)i / (height-2) * log( (double)BOTTOM/TOP ) );
647     
648     then= fill_norm + ratepersec_norm * elap;
649
650     beyond=
651       ((charging_mask & (1u<<CHGST_DISCHARGING) && then <= 0.0) ||
652        (charging_mask & (1u<<CHGST_CHARGING) && then>=nondegraded_norm));
653
654     if (then <= 0.0) then= 0.0;
655     else if (then >= nondegraded_norm) then= nondegraded_norm;
656
657     leftmost_lit= width * then;
658     leftmost_nondeg= width * nondegraded_norm;
659
660     if (beyond && first_beyond) {
661       XDrawLine(disp, win, gc_white.gc, 0,i, leftmost_nondeg,i);
662       first_beyond= 0;
663     } else {
664       if (leftmost_lit < leftmost_nondeg)
665         XDrawLine(disp, win, gc_empty.gc,
666                   leftmost_lit,i, leftmost_nondeg,i);
667       if (leftmost_lit >= 0)
668         XDrawLine(disp, win, gc_remain.gc, 0,i, leftmost_lit,i);
669     }
670   }
671 }
672
673 static void initgc(Gcstate *gc_r) {
674   XGCValues gcv;
675
676   memset(&gcv,0,sizeof(gcv));
677   gcv.function= GXcopy;
678   gcv.line_width= 1;
679   gc_r->lastfg= gcv.foreground= pix_white;
680   gc_r->gc= XCreateGC(disp,win, GCFunction|GCLineWidth|GCForeground, &gcv);
681 }
682
683 static void colour(unsigned long *pix_r, const char *whichcolour) {
684   XColor xc;
685   const char *name;
686   Status st;
687
688   name= getresource(whichcolour);
689   if (!name) fail("get colour resource");
690   
691   st= XAllocNamedColor(disp,cmap,name,&xc,&xc);
692   if (!st) fail(name);
693   
694   *pix_r= xc.pixel;
695 }
696
697 static void initgraphics(int argc, char **argv) {
698   int xwmgr, r;
699   const char *geom_string;
700   XSizeHints *normal_hints;
701   XWMHints *wm_hints;
702   XClassHint *class_hint;
703   int pos_x, pos_y, gravity;
704   char *program_name_silly;
705   
706   program_name_silly= (char*)program_name;
707
708   normal_hints= XAllocSizeHints();
709   wm_hints= XAllocWMHints();
710   class_hint= XAllocClassHint();
711
712   if (!normal_hints || !wm_hints || !class_hint)
713     fail("could not alloc hint(s)");
714
715   geom_string= getresource("geometry");
716
717   xwmgr= XWMGeometry(disp,screen, geom_string,"128x32", 0,
718                  normal_hints,
719                  &pos_x, &pos_y,
720                  &width, &height,
721                  &gravity);
722
723   win= XCreateSimpleWindow(disp,DefaultRootWindow(disp),
724                            pos_x,pos_y,width,height,0,0,0);
725   cmap= DefaultColormap(disp,screen);
726   
727 #define C(c,u) colour(&pix_##c, #u "Color");
728 #define GC(g) initgc(&gc_##g);
729   COLOURS
730 #undef C
731 #undef GC
732
733   r= XSetWindowBackground(disp,win,pix_dimgrey);
734   if (!r) fail("init set background");
735   lastbackground= pix_dimgrey;
736
737   normal_hints->flags= PWinGravity;
738   normal_hints->win_gravity= gravity;
739   normal_hints->x= pos_x;
740   normal_hints->y= pos_y;
741   normal_hints->width= width;
742   normal_hints->height= height;
743   if ((xwmgr & XValue) || (xwmgr & YValue))
744     normal_hints->flags |= USPosition;
745
746   wm_hints->flags= InputHint;
747   wm_hints->input= False;
748
749   class_hint->res_name= program_name_silly;
750   class_hint->res_class= program_name_silly;
751
752   XmbSetWMProperties(disp,win, program_name,program_name,
753                      argv,argc, normal_hints, wm_hints, class_hint);
754
755   XSelectInput(disp,win, ExposureMask|StructureNotifyMask);
756   XMapWindow(disp,win);
757 }
758  
759 static void refresh(void) {
760   acquiredata();
761   show();
762 }
763
764 static void newgeometry(void) {
765   int dummy;
766   unsigned int udummy, gotwidth, gotheight;
767   Window dummyw;
768   
769   XGetGeometry(disp,win, &dummyw,&dummy,&dummy, &gotwidth,&gotheight,
770                &udummy,&udummy);
771   assert(gotwidth < INT_MAX);
772   assert(gotheight < INT_MAX);
773   width = gotwidth;
774   height = gotheight;
775 }
776
777 static void eventloop(void) {
778   XEvent ev;
779   struct pollfd pfd;
780   int r, timeout;
781   
782   newgeometry();
783   refresh();
784
785   for (;;) {
786     XFlush(disp);
787
788     pfd.fd= ConnectionNumber(disp);
789     pfd.events= POLLIN|POLLERR;
790
791     timeout= !(charging_mask & (1u << CHGST_ERROR)) ? TIMEOUT : TIMEOUT_ONERROR;
792     r= poll(&pfd,1,timeout);
793     if (r==-1 && errno!=EINTR) failr("poll",errno);
794
795     while (XPending(disp)) {
796       XNextEvent(disp,&ev);
797       if (ev.type == ConfigureNotify) {
798         XConfigureEvent *ce= (void*)&ev;
799         width= ce->width;
800         height= ce->height;
801       }
802     }
803     refresh();
804   }
805 }
806
807 int main(int argc, char **argv) {
808   parseargs(argc,argv);
809   initacquire();
810   initgraphics(argc,argv);
811   eventloop();
812   return 0;
813 }