chiark / gitweb /
do not add up enums
[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 #define Q_ZERO(f,t,...) \
368   total_##f= 0;
369 ALL_ACCUMULATE_FIELDS(Q_ZERO)
370
371   r = chdir_base();
372   if (r) goto bad;
373
374   di= opendir(".");  if (!di) { batfaile("opendir","battery"); goto bad; }
375   while ((de= readdir(di))) {
376     if (de->d_name[0]==0 || de->d_name[0]=='.') continue;
377
378     batdirname= de->d_name;
379     r= readbattery();
380     tidybattery();
381
382     if (r) {
383     bad:
384       charging_mask |= (1u << CHGST_ERROR);
385       break;
386     }
387
388     if (this_type == TYPE_BATTERY) {
389       if (!this_present)
390         continue;
391
392       charging_mask |= 1u << this_state;
393
394 #define QTY_SUPPLIED(f,...)   this_##f != VAL_NOTFOUND &&
395 #define QTY_USE_ENERGY(f,...) this_##f = this_##f##_energy;
396 #define QTY_USE_CHARGE(f,...) this_##f = this_##f##_charge;
397
398       double funky_multiplier;
399       if (BAT_QTYS(QTY_SUPPLIED,_energy,,) 1) {
400         if (debug) printf(" using energy\n");
401         BAT_QTYS(QTY_USE_ENERGY,,,);
402         funky_multiplier = 1.0;
403       } else if (BAT_QTYS(QTY_SUPPLIED,_charge,,)
404                  this_voltage != VAL_NOTFOUND) {
405         if (debug) printf(" using charge\n");
406         BAT_QTYS(QTY_USE_CHARGE,,,);
407         funky_multiplier = this_voltage * 1e-6;
408       } else {
409         batfailc("neither complete set of energy nor charge");
410         continue;
411       }
412       if (this_state == CHGST_DISCHARGING)
413         /* negate it */
414         total_present_rate -= 2.0 * this_present_rate * funky_multiplier;
415
416 #define Q_ACCUMULATE_FUNKY(f,...)                       \
417       total_##f += this_##f * funky_multiplier;
418 BAT_QTYS(Q_ACCUMULATE_FUNKY,,,)
419     }
420
421 #define Q_ACCUMULATE_PLAIN(f,t,...)                     \
422     if (this_type == TYPE_##t)                  \
423       total_##f += this_##f;
424 ALL_PLAIN_ACCUMULATE_FIELDS(Q_ACCUMULATE_PLAIN)
425
426       
427   }
428   closedir(di);
429
430   printf("TOTAL:\n");
431 #define T_PRINT(f,...)                                  \
432     printf(" %-30s = %20.6f\n", #f, total_##f);
433 BAT_QTYS(T_PRINT,,,)
434 ALL_PLAIN_ACCUMULATE_FIELDS(T_PRINT)
435   }
436
437   if ((charging_mask & (1u<<CHGST_DISCHARGING)) &&
438       !total_online/*mains*/) {
439     double time_remaining =
440       -total_remaining_capacity * 3600.0 / total_present_rate;
441     if (debug) printf(" %-30s = %20.6f\n", "time remaining", time_remaining);
442     if (time_remaining < alarmlevel)
443       alarmed = 1;
444   }
445
446   if (total_design_capacity < 0.5)
447     total_design_capacity= 1.0;
448
449   if (total_last_full_capacity < total_remaining_capacity)
450     total_last_full_capacity= total_remaining_capacity;
451   if (total_design_capacity < total_last_full_capacity)
452     total_design_capacity= total_last_full_capacity;
453
454   nondegraded_norm= total_last_full_capacity / total_design_capacity;
455   fill_norm= total_remaining_capacity / total_design_capacity;
456   ratepersec_norm=  total_present_rate
457     / (3600.0 * total_design_capacity);
458 }
459
460 static void initacquire(void) {
461 }  
462
463 /*---------- argument parsing ----------*/
464
465 #define COLOURS                                 \
466   C(blue,      discharging)                     \
467   C(green,     charging)                        \
468   C(cyan,      charged)                         \
469   C(darkcyan,  notcharging)                     \
470   C(grey,      confusing)                       \
471   C(black,     normal)                          \
472   C(red,       low)                             \
473   C(dimgrey,   degraded)                        \
474   C(darkgreen, absent)                          \
475   C(yellow,    error)                           \
476   C(white,     equilibrium)                     \
477   GC(remain)                                    \
478   GC(white)                                     \
479   GC(empty)
480
481 static XrmDatabase xrm;
482 static Display *disp;
483 static int screen;
484
485 static const char defaultresources[]=
486 #define GC(g)
487 #define C(c,u)                                  \
488   "*" #u "Color: " #c "\n"
489   COLOURS
490 #undef GC
491 #undef C
492   ;
493
494 #define S(s) ((char*)(s))
495 static const XrmOptionDescRec optiontable[]= {
496   { S("-debug"),        S("*debug"),        XrmoptionIsArg },
497   { S("-warningTime"),  S("*warningTime"),  XrmoptionSepArg },
498   { S("-display"),      S("*display"),      XrmoptionSepArg },
499   { S("-geometry"),     S("*geometry"),     XrmoptionSepArg },
500 #define GC(g)
501 #define C(c,u)                                                  \
502   { S("-" #u "Color"),  S("*" #u "Color"),  XrmoptionSepArg },  \
503   { S("-" #u "Colour"), S("*" #u "Color"),  XrmoptionSepArg },
504   COLOURS
505 #undef GC
506 #undef C
507 };
508
509 static const char *getresource(const char *want) {
510   char name_buf[256], class_buf[256];
511   XrmValue val;
512   char *rep_type_dummy;
513   int r;
514
515   assert(strlen(want) < 128);
516   sprintf(name_buf,"xacpi-simple.%s",want);
517   sprintf(class_buf,"Xacpi-Simple.%s",want);
518   
519   r= XrmGetResource(xrm, name_buf,class_buf, &rep_type_dummy, &val);
520   if (!r) return 0;
521   
522   return val.addr;
523 }
524
525 static void more_resources(const char *str, const char *why) {
526   XrmDatabase more;
527
528   if (!str) return;
529
530   more= XrmGetStringDatabase((char*)str);
531   if (!more) fail(why);
532   XrmCombineDatabase(more,&xrm,0);
533 }
534
535 static void parseargs(int argc, char **argv) {
536   Screen *screenscreen;
537   
538   XrmInitialize();
539
540   XrmParseCommand(&xrm, (XrmOptionDescRec*)optiontable,
541                   sizeof(optiontable)/sizeof(*optiontable),
542                   program_name, &argc, argv);
543
544   if (argc>1) badusage();
545
546   debug= !!getresource("debug");
547
548   const char *alarmlevel_string= getresource("alarmLevel");
549   alarmlevel = alarmlevel_string ? atoi(alarmlevel_string) : 300;
550
551   disp= XOpenDisplay(getresource("display"));
552   if (!disp) fail("could not open display");
553
554   screen= DefaultScreen(disp);
555
556   screenscreen= ScreenOfDisplay(disp,screen);
557   if (!screenscreen) fail("screenofdisplay");
558   more_resources(XScreenResourceString(screenscreen), "screen resources");
559   more_resources(XResourceManagerString(disp), "display resources");
560   more_resources(defaultresources, "default resources");
561
562
563 /*---------- display ----------*/
564
565 static Window win;
566 static int width, height;
567 static Colormap cmap;
568 static unsigned long lastbackground;
569
570 typedef struct {
571   GC gc;
572   unsigned long lastfg;
573 } Gcstate;
574
575 #define C(c,u) static unsigned long pix_##c;
576 #define GC(g) static Gcstate gc_##g;
577   COLOURS
578 #undef C
579 #undef GC
580
581 static void refresh(void);
582
583 #define CHGMASK_CHG_DIS ((1u<<CHGST_CHARGING) | (1u<<CHGST_DISCHARGING))
584
585 static void failr(const char *m, int r) {
586   fprintf(stderr,"error: %s (code %d)\n", m, r);
587   exit(-1);
588 }
589
590 static void setbackground(unsigned long newbg) {
591   int r;
592   
593   if (newbg == lastbackground) return;
594   r= XSetWindowBackground(disp,win,newbg);
595   if (!r) fail("XSetWindowBackground");
596   lastbackground= newbg;
597 }
598
599 static void setforeground(Gcstate *g, unsigned long px) {
600   XGCValues gcv;
601   int r;
602   
603   if (g->lastfg == px) return;
604   
605   memset(&gcv,0,sizeof(gcv));
606   g->lastfg= gcv.foreground= px;
607   r= XChangeGC(disp,g->gc,GCForeground,&gcv);
608   if (!r) fail("XChangeGC");
609 }
610
611 static void show_solid(unsigned long px) {
612   setbackground(px);
613   XClearWindow(disp,win);
614 }
615
616 static void show(void) {
617   double elap, then;
618   int i, leftmost_lit, leftmost_nondeg, beyond, first_beyond;
619
620   if (!charging_mask)
621     return show_solid(pix_darkgreen);
622
623   if (charging_mask & (1u << CHGST_ERROR))
624     return show_solid(pix_yellow);
625
626   setbackground(pix_dimgrey);
627   XClearWindow(disp,win);
628   
629   setforeground(&gc_remain,
630                 !(charging_mask & CHGMASK_CHG_DIS) ?
631                 (~charging_mask & (1u << CHGST_CHARGED) ?
632                  pix_darkcyan : pix_cyan) :
633                 !(~charging_mask & CHGMASK_CHG_DIS) ? pix_grey :
634                 charging_mask & (1u<<CHGST_CHARGING)
635                 ? pix_green : pix_blue);
636                 
637   setforeground(&gc_empty, alarmed ? pix_red : pix_black);
638
639   for (i=0, first_beyond=1; i<height; i++) {
640     elap= !i ? 0 :
641       height==2 ? BOTTOM :
642       TOP * exp( (double)i / (height-2) * log( (double)BOTTOM/TOP ) );
643     
644     then= fill_norm + ratepersec_norm * elap;
645
646     beyond=
647       ((charging_mask & (1u<<CHGST_DISCHARGING) && then <= 0.0) ||
648        (charging_mask & (1u<<CHGST_CHARGING) && then>=nondegraded_norm));
649
650     if (then <= 0.0) then= 0.0;
651     else if (then >= nondegraded_norm) then= nondegraded_norm;
652
653     leftmost_lit= width * then;
654     leftmost_nondeg= width * nondegraded_norm;
655
656     if (beyond && first_beyond) {
657       XDrawLine(disp, win, gc_white.gc, 0,i, leftmost_nondeg,i);
658       first_beyond= 0;
659     } else {
660       if (leftmost_lit < leftmost_nondeg)
661         XDrawLine(disp, win, gc_empty.gc,
662                   leftmost_lit,i, leftmost_nondeg,i);
663       if (leftmost_lit >= 0)
664         XDrawLine(disp, win, gc_remain.gc, 0,i, leftmost_lit,i);
665     }
666   }
667 }
668
669 static void initgc(Gcstate *gc_r) {
670   XGCValues gcv;
671
672   memset(&gcv,0,sizeof(gcv));
673   gcv.function= GXcopy;
674   gcv.line_width= 1;
675   gc_r->lastfg= gcv.foreground= pix_white;
676   gc_r->gc= XCreateGC(disp,win, GCFunction|GCLineWidth|GCForeground, &gcv);
677 }
678
679 static void colour(unsigned long *pix_r, const char *whichcolour) {
680   XColor xc;
681   const char *name;
682   Status st;
683
684   name= getresource(whichcolour);
685   if (!name) fail("get colour resource");
686   
687   st= XAllocNamedColor(disp,cmap,name,&xc,&xc);
688   if (!st) fail(name);
689   
690   *pix_r= xc.pixel;
691 }
692
693 static void initgraphics(int argc, char **argv) {
694   int xwmgr, r;
695   const char *geom_string;
696   XSizeHints *normal_hints;
697   XWMHints *wm_hints;
698   XClassHint *class_hint;
699   int pos_x, pos_y, gravity;
700   char *program_name_silly;
701   
702   program_name_silly= (char*)program_name;
703
704   normal_hints= XAllocSizeHints();
705   wm_hints= XAllocWMHints();
706   class_hint= XAllocClassHint();
707
708   if (!normal_hints || !wm_hints || !class_hint)
709     fail("could not alloc hint(s)");
710
711   geom_string= getresource("geometry");
712
713   xwmgr= XWMGeometry(disp,screen, geom_string,"128x32", 0,
714                  normal_hints,
715                  &pos_x, &pos_y,
716                  &width, &height,
717                  &gravity);
718
719   win= XCreateSimpleWindow(disp,DefaultRootWindow(disp),
720                            pos_x,pos_y,width,height,0,0,0);
721   cmap= DefaultColormap(disp,screen);
722   
723 #define C(c,u) colour(&pix_##c, #u "Color");
724 #define GC(g) initgc(&gc_##g);
725   COLOURS
726 #undef C
727 #undef GC
728
729   r= XSetWindowBackground(disp,win,pix_dimgrey);
730   if (!r) fail("init set background");
731   lastbackground= pix_dimgrey;
732
733   normal_hints->flags= PWinGravity;
734   normal_hints->win_gravity= gravity;
735   normal_hints->x= pos_x;
736   normal_hints->y= pos_y;
737   normal_hints->width= width;
738   normal_hints->height= height;
739   if ((xwmgr & XValue) || (xwmgr & YValue))
740     normal_hints->flags |= USPosition;
741
742   wm_hints->flags= InputHint;
743   wm_hints->input= False;
744
745   class_hint->res_name= program_name_silly;
746   class_hint->res_class= program_name_silly;
747
748   XmbSetWMProperties(disp,win, program_name,program_name,
749                      argv,argc, normal_hints, wm_hints, class_hint);
750
751   XSelectInput(disp,win, ExposureMask|StructureNotifyMask);
752   XMapWindow(disp,win);
753 }
754  
755 static void refresh(void) {
756   acquiredata();
757   show();
758 }
759
760 static void newgeometry(void) {
761   int dummy;
762   unsigned int udummy, gotwidth, gotheight;
763   Window dummyw;
764   
765   XGetGeometry(disp,win, &dummyw,&dummy,&dummy, &gotwidth,&gotheight,
766                &udummy,&udummy);
767   assert(gotwidth < INT_MAX);
768   assert(gotheight < INT_MAX);
769   width = gotwidth;
770   height = gotheight;
771 }
772
773 static void eventloop(void) {
774   XEvent ev;
775   struct pollfd pfd;
776   int r, timeout;
777   
778   newgeometry();
779   refresh();
780
781   for (;;) {
782     XFlush(disp);
783
784     pfd.fd= ConnectionNumber(disp);
785     pfd.events= POLLIN|POLLERR;
786
787     timeout= !(charging_mask & (1u << CHGST_ERROR)) ? TIMEOUT : TIMEOUT_ONERROR;
788     r= poll(&pfd,1,timeout);
789     if (r==-1 && errno!=EINTR) failr("poll",errno);
790
791     while (XPending(disp)) {
792       XNextEvent(disp,&ev);
793       if (ev.type == ConfigureNotify) {
794         XConfigureEvent *ce= (void*)&ev;
795         width= ce->width;
796         height= ce->height;
797       }
798     }
799     refresh();
800   }
801 }
802
803 int main(int argc, char **argv) {
804   parseargs(argc,argv);
805   initacquire();
806   initgraphics(argc,argv);
807   eventloop();
808   return 0;
809 }