/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* gos720 src/gos/2d/XTOP/programs/xlsclients/xlsclients.c 1.1 */ /* */ /* Licensed Materials - Property of IBM */ /* */ /* COPYRIGHT International Business Machines Corp. 1996 */ /* All Rights Reserved */ /* */ /* US Government Users Restricted Rights - Use, duplication or */ /* disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */ /* */ /* IBM_PROLOG_END_TAG */ /* SCCSID_BEGIN_TAG */ #ifndef lint static char sccsid[] = "@(#)09 1.1 src/gos/2d/XTOP/programs/xlsclients/xlsclients.c, xsample, gos720 7/16/96 11:22:31"; #endif /* SCCSID_END_TAG */ /* * $XConsortium: xlsclients.c,v 1.7 94/04/17 20:38:32 gildea Exp $ * * Copyright (c) 1989 X Consortium Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. * * * Author: Jim Fulton, MIT X Consortium */ #include #include #include #include #include #include char *ProgramName; static void usage () { fprintf (stderr, "usage: %s [-display dpy] [-m len] [-[a][l]]\n", ProgramName); exit (1); } main (argc, argv) int argc; char **argv; { int i; char *displayname = NULL; Bool all_screens = False; Bool verbose = False; Display *dpy; int maxcmdlen = 10000; ProgramName = argv[0]; for (i = 1; i < argc; i++) { char *arg = argv[i]; if (arg[0] == '-') { char *cp; switch (arg[1]) { case 'd': /* -display dpyname */ if (++i >= argc) usage (); displayname = argv[i]; continue; case 'm': /* -max maxcmdlen */ if (++i >= argc) usage (); maxcmdlen = atoi (argv[i]); continue; } for (cp = &arg[1]; *cp; cp++) { switch (*cp) { case 'a': /* -all */ all_screens = True; continue; case 'l': /* -long */ verbose = True; continue; default: usage (); } } } else { usage (); } } dpy = XOpenDisplay (displayname); if (!dpy) { fprintf (stderr, "%s: unable to open display \"%s\"\r\n", ProgramName, XDisplayName (displayname)); exit (1); } if (all_screens) { for (i = 0; i < ScreenCount(dpy); i++) { lookat (dpy, RootWindow(dpy,i), verbose, maxcmdlen); } } else { lookat (dpy, DefaultRootWindow(dpy), verbose, maxcmdlen); } XCloseDisplay (dpy); exit (0); } lookat (dpy, root, verbose, maxcmdlen) Display *dpy; Window root; Bool verbose; int maxcmdlen; { Window dummy, *children = NULL, client; unsigned int i, nchildren = 0; /* * clients are not allowed to stomp on the root and ICCCM doesn't yet * say anything about window managers putting stuff there; but, try * anyway. */ print_client_properties (dpy, root, verbose, maxcmdlen); /* * then, get the list of windows */ if (!XQueryTree (dpy, root, &dummy, &dummy, &children, &nchildren)) { return; } for (i = 0; i < nchildren; i++) { client = XmuClientWindow (dpy, children[i]); if (client != None) print_client_properties (dpy, client, verbose, maxcmdlen); } } static char *Nil = "(nil)"; print_client_properties (dpy, w, verbose, maxcmdlen) Display *dpy; Window w; Bool verbose; int maxcmdlen; { char **cliargv = NULL; int i, cliargc; XTextProperty nametp, machtp, tp; int charsleft = maxcmdlen; /* * get the WM_MACHINE and WM_COMMAND list of strings */ if (!XGetWMClientMachine (dpy, w, &machtp)) { machtp.value = NULL; machtp.encoding = None; } if (!XGetCommand (dpy, w, &cliargv, &cliargc)) { if (machtp.value) XFree ((char *) machtp.value); return; } /* * do header information */ if (verbose) { printf ("Window 0x%lx:\n", w); print_text_field (dpy, " Machine: ", &machtp); if (XGetWMName (dpy, w, &nametp)) { print_text_field (dpy, " Name: ", &nametp); if (nametp.value) XFree ((char *) nametp.value); } } else { print_text_field (dpy, NULL, &machtp); putchar (' '); putchar (' '); } if (machtp.value) XFree ((char *) machtp.value); if (verbose) { if (XGetWMIconName (dpy, w, &tp)) { print_text_field (dpy, " Icon Name: ", &tp); if (tp.value) XFree ((char *) tp.value); } } /* * do the command */ if (verbose) { printf (" Command: "); } for (i = 0; i < cliargc && charsleft > 0; ) { charsleft -= print_quoted_word (cliargv[i], charsleft); i++; if (i < cliargc && charsleft > 0) { putchar (' '); charsleft--; } } putchar ('\n'); XFreeStringList (cliargv); /* * do trailer information */ if (verbose) { XClassHint clh; if (XGetClassHint (dpy, w, &clh)) { printf (" Instance/Class: %s/%s", clh.res_name ? clh.res_name : Nil, clh.res_class ? clh.res_class : Nil); if (clh.res_name) XFree (clh.res_name); if (clh.res_class) XFree (clh.res_class); putchar ('\n'); } } } print_text_field (dpy, s, tp) Display *dpy; char *s; XTextProperty *tp; { if (tp->encoding == None || tp->format == 0) { printf ("''"); return; } if (s) printf ("%s", s); if (tp->encoding == XA_STRING && tp->format == 8) { printf ("%s", tp->value ? (char *) tp->value : Nil); } else { unknown (dpy, tp->encoding, tp->format); } if (s) putchar ('\n'); } /* returns the number of characters printed */ int print_quoted_word (s, maxlen) char *s; int maxlen; /* max number of chars we can print */ { register char *cp; Bool need_quote = False, in_quote = False; char quote_char = '\'', other_quote = '"'; int charsprinted = 0; /* * walk down seeing whether or not we need to quote */ for (cp = s; *cp; cp++) { if (! ((isascii(*cp) && isalnum(*cp)) || (*cp == '-' || *cp == '_' || *cp == '.' || *cp == '+' || *cp == '/' || *cp == '=' || *cp == ':' || *cp == ','))) { need_quote = True; break; } } /* * write out the string: if we hit a quote, then close any previous quote, * emit the other quote, swap quotes and continue on. */ in_quote = need_quote; if (need_quote) { putchar (quote_char); charsprinted++; maxlen--; } for (cp = s; *cp && maxlen>0; cp++) { if (*cp == quote_char) { if (in_quote) { putchar (quote_char); charsprinted++; maxlen--; } putchar (other_quote); charsprinted++; maxlen--; { char tmp = other_quote; other_quote = quote_char; quote_char = tmp; } in_quote = True; } putchar (*cp); charsprinted++; maxlen--; } /* close the quote if we opened one and if we printed the whole string */ if (in_quote && maxlen>0) { putchar (quote_char); charsprinted++; maxlen--; } return charsprinted; } unknown (dpy, actual_type, actual_format) Display *dpy; Atom actual_type; int actual_format; { char *s; printf ("", actual_type, actual_format); }