From 329357a1c7cb7e71a41b5122752e2ac6bc7ac641 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 28 Jun 2009 18:33:23 +0100 Subject: [PATCH] Look deeper in window tree for YPP client --- pctb/pages.c | 198 ++++++++++++++++++++++++++------------------------- 1 file changed, 101 insertions(+), 97 deletions(-) diff --git a/pctb/pages.c b/pctb/pages.c index d298ac4..c5cc941 100644 --- a/pctb/pages.c +++ b/pctb/pages.c @@ -611,112 +611,116 @@ void set_yppclient_window(unsigned long wul) { DEBUG_DEFINE_SOME_DEBUGF(findypp,debugfind) +static int nfound; +static Atom wm_name; +static int screen; + +static void findypp_recurse(int depth, int targetdepth, Window w) { + unsigned int nchildren; + int i; + Window *children=0; + Window gotroot, gotparent; + + static const char prefix[]= "Puzzle Pirates - "; + static const char onthe[]= " on the "; + static const char suffix[]= " ocean"; +#define S(x) (sizeof((x))-1) + + debugfind("FINDYPP %d/%d screen %d %*s %lx", + depth,targetdepth,screen, + depth,"",(unsigned long)w); + + if (depth!=targetdepth) { + xassert( XQueryTree(disp,w, + &gotroot,&gotparent, + &children,&nchildren) ); + debugfind(" nchildren=%d\n",nchildren); + + for (i=0; i=' ' && c<=126) fputc(c,debug); + else fprintf(debug,"\\x%02x",c & 0xff); + } + fputs("\": ",debug); + } + +#define REQUIRE(pred) \ + if (!(pred)) { debugfind(" failed test %s\n", #pred); return; } \ + else + + REQUIRE( gottype!=None ); + REQUIRE( len ); + REQUIRE( gotfmt==8 ); + + REQUIRE( len >= S(prefix) + 1 + S(onthe) + 1 + S(suffix) ); + + char *spc1= strchr( title + S(prefix), ' '); REQUIRE(spc1); + char *spc2= strrchr((title + len) - S(suffix), ' '); REQUIRE(spc2); + + REQUIRE( (title + len) - spc1 >= S(onthe) + S(suffix) ); + REQUIRE( spc2 - title >= S(prefix) + S(onthe) ); + + REQUIRE( !memcmp(title, prefix, S(prefix)) ); + REQUIRE( !memcmp(title + len - S(suffix), suffix, S(suffix)) ); + REQUIRE( !memcmp(spc1, onthe, S(onthe)) ); + +#define ASSIGN(what, start, end) \ + what= masprintf("%.*s", (end)-(start), start); \ + if (o_##what) REQUIRE( !strcasecmp(o_##what, what) ); \ + else + + ASSIGN(ocean, spc1 + S(onthe), (title + len) - S(suffix)); + ASSIGN(pirate, title + S(prefix), spc1); + + debugfind(" YES!\n"); + id= w; + nfound++; + progress_log("found YPP client (0x%lx):" + " %s ocean - %s.", + (unsigned long)id, ocean, pirate); +} + void find_yppclient_window(void) { - Window root, gotroot, gotparent; - int screen; - int nfound=0; + int targetdepth; + + nfound=0; if (id) return; progress("looking for YPP client window..."); - static const char prefix[]= "Puzzle Pirates - "; - static const char onthe[]= " on the "; - static const char suffix[]= " ocean"; -#define S(x) (sizeof((x))-1) + xassert( (wm_name= XInternAtom(disp,"WM_NAME",True)) != None); - Atom wm_name= XInternAtom(disp,"WM_NAME",True); - xassert(wm_name != None); - - for (screen=0; screen=' ' && c<=126) fputc(c,debug); - else fprintf(debug,"\\x%02x",c & 0xff); - } - fputs("\": ",debug); - } - -#define REQUIRE(pred) \ - if (!(pred)) { debugfind(" failed test %s\n", #pred); continue; } \ - else - - REQUIRE( gottype!=None ); - REQUIRE( len ); - REQUIRE( gotfmt==8 ); - - REQUIRE( len >= S(prefix) + 1 + S(onthe) + 1 + S(suffix) ); - - char *spc1= strchr( title + S(prefix), ' '); REQUIRE(spc1); - char *spc2= strrchr((title + len) - S(suffix), ' '); REQUIRE(spc2); - - REQUIRE( (title + len) - spc1 >= S(onthe) + S(suffix) ); - REQUIRE( spc2 - title >= S(prefix) + S(onthe) ); - - REQUIRE( !memcmp(title, prefix, S(prefix)) ); - REQUIRE( !memcmp(title + len - S(suffix), suffix, S(suffix)) ); - REQUIRE( !memcmp(spc1, onthe, S(onthe)) ); - -#define ASSIGN(what, start, end) \ - what= masprintf("%.*s", (end)-(start), start); \ - if (o_##what) REQUIRE( !strcasecmp(o_##what, what) ); \ - else - - ASSIGN(ocean, spc1 + S(onthe), (title + len) - S(suffix)); - ASSIGN(pirate, title + S(prefix), spc1); - - debugfind(" YES!\n"); - id= w2; - nfound++; - progress_log("found YPP client (0x%lx):" - " %s ocean - %s.", - (unsigned long)id, ocean, pirate); - } - if (children2) XFree(children2); + for (targetdepth=1; targetdepth<4; targetdepth++) { + for (screen=0; screen1) fatal("Found several possible YPP clients. Close one,\n" " disambiguate with --pirate or --ocean," -- 2.30.2