X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-utils.git;a=blobdiff_plain;f=cprogs%2Fxacpi-simple.c;h=cbbe292991714cb49ec6e5692b1ca455ae2c9695;hp=c0810eaad93ce286a9a88097e0573c351acdf23b;hb=4a3f20ad305c69535145628f8f75736cc7bef10d;hpb=50227f5a203c93a5a13ef093de45352e0c68169e diff --git a/cprogs/xacpi-simple.c b/cprogs/xacpi-simple.c index c0810ea..cbbe292 100644 --- a/cprogs/xacpi-simple.c +++ b/cprogs/xacpi-simple.c @@ -1,22 +1,16 @@ -/* todo - power vs current - Full - old way of doing alarm -*/ - /* * display outputs, per line: * - * Remaining: | Empty: | Degraded: - * blue | black | dimgrey discharging - * green | black | dimgrey charging - * cyan | black | dimgrey charged - * grey | black | dimgrey charging&discharching! - * darkcyan | black | dimgrey none of the above - * blue | red | dimgrey discharging - low! - * green | red | dimgrey charging - low - * cyan | red | dimgrey charged - low [1] - * grey | red | dimgrey charging&discharching, low [1] + * Remaining: | Empty: | Degraded: + * blue | black | dimgrey discharging + * green | black | dimgrey charging + * cyan | black | dimgrey charged + * grey | black | dimgrey charging&discharching! + * lightgrey | black | dimgrey none of the above + * blue | red | dimgrey discharging - low! + * green | red | dimgrey charging - low + * cyan | red | dimgrey charged - low [1] + * grey | red | dimgrey charging&discharching, low [1] * ... darkgreen ... no batteries present * ... yellow ... error * @@ -51,6 +45,7 @@ #include #include #include +#include #include #include @@ -67,6 +62,7 @@ #define TIMEOUT_ONERROR 3333 /* milliseconds */ static const char program_name[]= "xacpi-simple"; +static int debug, alarmlevel; /*---------- general utility stuff and declarations ----------*/ @@ -82,7 +78,7 @@ typedef uint64_t value; typedef struct fileinfo fileinfo; typedef int parser(const fileinfo*); -static parser parse_uevent, parse_separate; +static parser parse_uevent; struct fileinfo { const char *filename; @@ -102,21 +98,23 @@ typedef struct batinfo_field { const char *enumarray[10]; } batinfo_field; -#define BAT_QTYS(_) \ - _(design_capacity, ENERGY, CHARGE, FULL_DESIGN ) \ - _(last_full_capacity, ENERGY, CHARGE, FULL ) \ - _(remaining_capacity, ENERGY, CHARGE, NOW ) \ - _(present_rate, POWER, CURRENT, NOW ) +#define BAT_QTYS(_, _ec, EC_, PC_) \ + _(design_capacity##_ec, BATTERY, EC_##FULL_DESIGN ) \ + _(last_full_capacity##_ec, BATTERY, EC_##FULL ) \ + _(remaining_capacity##_ec, BATTERY, EC_##NOW ) \ + _(present_rate##_ec, BATTERY, PC_##NOW ) /* ENERGY [mWh]; POWER [mW]; CHARGE [uAh]; CURRENT [uA] */ -#define UEVENT_QTY_CHARGE(f,lle,llc,lr) \ - _(f##_energy, BATTERY, lle##_##lr ) \ - _(f##_charge, BATTERY, llc##_##lr ) +#define UEVENT_ESSENTIAL_QUANTITY_FIELDS(_) \ + _(present, BATTERY, PRESENT /* bool */ ) \ + _(online, MAINS, ONLINE /* bool */ ) + +#define UEVENT_FUNKY_QUANTITY_FIELDS(_) \ + BAT_QTYS(_,_energy,ENERGY_,POWER_) \ + BAT_QTYS(_,_charge,CHARGE_,CURRENT_) -#define UEVENT_QUANTITY_FIELDS(_) \ - BAT_QTYS(UEVENT_QTY_CHARGE) \ - _(present, BATTERY, PRESENT ) /* boolean */ \ - _(online, MAINS, ONLINE ) /* boolean */ +#define UEVENT_OPTIONAL_QUANTITY_FIELDS(_) \ + _(voltage, BATTERY, VOLTAGE_NOW /* uV */ ) #define UEVENT_ENUM_FIELDS(_) \ _(state, BATTERY, STATUS, "Discharging","Charging","Full","Unknown" ) \ @@ -133,20 +131,34 @@ typedef struct batinfo_field { #define TYPE_BOTH 100 /* Except this is a magic invalid value. */ #define SEPARATE_QUANTITY_FIELDS(_) \ - _(alarm, BATTERY, "alarm", "0", "1") + /* See commit ec6f5f0be800bc5f2a27046833dba04e0c67ffac for + the code needed to use this */ -#define ALL_FIELDS(_) \ - UEVENT_QUANTITY_FIELDS(_) \ + +#define ALL_DIRECT_VARS(_) \ + UEVENT_ESSENTIAL_QUANTITY_FIELDS(_) \ + UEVENT_FUNKY_QUANTITY_FIELDS(_) \ + UEVENT_OPTIONAL_QUANTITY_FIELDS(_) \ UEVENT_ENUM_FIELDS(_) \ SEPARATE_QUANTITY_FIELDS(_) -#define ALL_QUANTITY_FIELDS(_) \ - UEVENT_QUANTITY_FIELDS(_) \ +#define ALL_VARS(_) \ + ALL_DIRECT_VARS(_) \ + BAT_QTYS(_,,,) + +#define ALL_NEEDED_FIELDS(_) \ + UEVENT_ESSENTIAL_QUANTITY_FIELDS(_) \ + UEVENT_ENUM_FIELDS(_) \ SEPARATE_QUANTITY_FIELDS(_) -#define ALL_VARS(_) \ - ALL_FIELDS(_) \ - BAT_QTYS(_) +#define ALL_PLAIN_ACCUMULATE_FIELDS(_) \ + UEVENT_ESSENTIAL_QUANTITY_FIELDS(_) \ + SEPARATE_QUANTITY_FIELDS(_) + +#define ALL_ACCUMULATE_FIELDS(_) \ + ALL_PLAIN_ACCUMULATE_FIELDS(_) \ + BAT_QTYS(_,,,) + #define F_VAR(f,...) \ static value this_##f; @@ -156,7 +168,9 @@ ALL_VARS(F_VAR) #define E_FLD(f,t,l,vl...) { "POWER_SUPPLY_" #l, &this_##f, { vl } }, static const batinfo_field uevent_fields[]= { - UEVENT_QUANTITY_FIELDS(Q_FLD) + UEVENT_ESSENTIAL_QUANTITY_FIELDS(Q_FLD) + UEVENT_FUNKY_QUANTITY_FIELDS(Q_FLD) + UEVENT_OPTIONAL_QUANTITY_FIELDS(Q_FLD) UEVENT_ENUM_FIELDS(E_FLD) { 0 } }; @@ -242,11 +256,6 @@ static int parse_value(const fileinfo *cfile, const batinfo_field *field) { return 0; } -static int parse_separate(const fileinfo *cfile) { - batlinevalue = batlinebuf; - return parse_value(cfile, cfile->extra); -} - static int parse_uevent(const fileinfo *cfile) { char *equals= strchr(batlinebuf,'='); if (!equals) @@ -310,6 +319,13 @@ ALL_VARS(V_NOTFOUND) batfile= 0; } + if (debug) { + printf("%s:\n",batdirname); +#define V_PRINT(f,...) \ + printf(" %-30s = %20"PRId64"\n", #f, (int64_t)this_##f); +ALL_DIRECT_VARS(V_PRINT) + } + int needsfields_MAINS = this_type == TYPE_MAINS; int needsfields_BATTERY = this_type == TYPE_BATTERY; int needsfields_BOTH = 1; @@ -322,7 +338,7 @@ ALL_VARS(V_NOTFOUND) batdirname, #f); \ missing++; \ } -ALL_FIELDS(V_NEEDED) +ALL_NEEDED_FIELDS(V_NEEDED) if (missing) return -1; @@ -334,11 +350,11 @@ ALL_FIELDS(V_NEEDED) /* These next three variables are the results of the charging state */ static unsigned charging_mask; /* 1u<1) badusage(); + debug= !!getresource("debug"); + + const char *alarmlevel_string= getresource("alarmLevel"); + alarmlevel = alarmlevel_string ? atoi(alarmlevel_string) : 300; + disp= XOpenDisplay(getresource("display")); if (!disp) fail("could not open display"); @@ -524,7 +576,7 @@ typedef struct { unsigned long lastfg; } Gcstate; -#define C(c,u) static unsigned long pix_##c; +#define C(c,u) static unsigned long pix_##u; #define GC(g) static Gcstate gc_##g; COLOURS #undef C @@ -570,23 +622,23 @@ static void show(void) { int i, leftmost_lit, leftmost_nondeg, beyond, first_beyond; if (!charging_mask) - return show_solid(pix_darkgreen); + return show_solid(pix_absent); if (charging_mask & (1u << CHGST_ERROR)) - return show_solid(pix_yellow); + return show_solid(pix_error); - setbackground(pix_dimgrey); + setbackground(pix_degraded); XClearWindow(disp,win); setforeground(&gc_remain, !(charging_mask & CHGMASK_CHG_DIS) ? (~charging_mask & (1u << CHGST_CHARGED) ? - pix_darkcyan : pix_cyan) : - !(~charging_mask & CHGMASK_CHG_DIS) ? pix_grey : + pix_notcharging : pix_charged) : + !(~charging_mask & CHGMASK_CHG_DIS) ? pix_confusing : charging_mask & (1u<lastfg= gcv.foreground= pix_white; + gc_r->lastfg= gcv.foreground= pix_equilibrium; gc_r->gc= XCreateGC(disp,win, GCFunction|GCLineWidth|GCForeground, &gcv); } @@ -672,15 +724,15 @@ static void initgraphics(int argc, char **argv) { pos_x,pos_y,width,height,0,0,0); cmap= DefaultColormap(disp,screen); -#define C(c,u) colour(&pix_##c, #u "Color"); +#define C(c,u) colour(&pix_##u, #u "Color"); #define GC(g) initgc(&gc_##g); COLOURS #undef C #undef GC - r= XSetWindowBackground(disp,win,pix_dimgrey); + r= XSetWindowBackground(disp,win,pix_degraded); if (!r) fail("init set background"); - lastbackground= pix_dimgrey; + lastbackground= pix_degraded; normal_hints->flags= PWinGravity; normal_hints->win_gravity= gravity;