X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=driver%2Fxscreensaver-command.c;h=4c7a02855bd4dbaeb3d0ffdbdf531a9727c98ded;hb=ce3185de9d9705e259f2b60dd4b5509007fa17d4;hp=09ae5a013c3e7c7f59e11b561dcbdd1a84dd3b06;hpb=f3e0240915ed9f9b3a61781f5c7002d587563fe0;p=xscreensaver diff --git a/driver/xscreensaver-command.c b/driver/xscreensaver-command.c index 09ae5a01..4c7a0285 100644 --- a/driver/xscreensaver-command.c +++ b/driver/xscreensaver-command.c @@ -1,5 +1,5 @@ -/* xscreensaver-command, Copyright (c) 1991-1997 - * by Jamie Zawinski +/* xscreensaver-command, Copyright (c) 1991-1998 + * by Jamie Zawinski * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that @@ -10,56 +10,44 @@ * implied warranty. */ +#define STANDALONE + #ifdef HAVE_CONFIG_H # include "config.h" #endif #include +#include + +#ifdef HAVE_UNISTD_H +# include +#endif + #include /* for CARD32 */ #include #include #include /* for XGetClassHint() */ #include -#include + +#include /* only needed to get through xscreensaver.h */ #include "version.h" +#ifdef STANDALONE + static char *progname; + static Atom XA_VROOT; + static Atom XA_SCREENSAVER, XA_SCREENSAVER_VERSION, XA_SCREENSAVER_TIME; +#else /* !STANDALONE */ +# include "xscreensaver.h" +#endif /* !STANDALONE */ + + #ifdef _VROOT_H_ ERROR! you must not include vroot.h in this file #endif -static char *screensaver_version; -static char *usage = "usage: %s -\n\ -\n\ - This program provides external control of a running xscreensaver process.\n\ - Version %s, copyright (c) 1991-1997 Jamie Zawinski .\n\ -\n\ - -demo Enter interactive demo mode.\n\ - -deactivate Turns off the screensaver if it is on, as user input would.\n\ - -activate Turns it on as if the user had been idle for long enough.\n\ - -cycle Stops the current hack and runs a new one.\n\ - -next Like either -activate or -cycle, depending on which is more\n\ - appropriate, except that the screenhack that will be run is\n\ - the next one in the list of hacks, instead of a randomly-\n\ - chosen one. This option is good for looking at a demo of\n\ - each of the hacks in place.\n\ - -prev Like -next, but goes in the other direction.\n\ - -exit Causes the screensaver process to exit. It should be ok to\n\ - just kill the process (NOT with -9!) but this is a slightly\n\ - easier way.\n\ - -restart Causes the screensaver process to exit and then restart with\n\ - the same command line arguments. This is a good way of \n\ - causing the screensaver to re-read the resource database.\n\ - -lock Same as -activate, but with immediate locking.\n\ - -version Prints the version of XScreenSaver that is running.\n\ - -time Prints the time at which the screensaver turned on.\n\ -\n\ - See the man page for more details.\n\ - For updates, check http://people.netscape.com/jwz/xscreensaver/\n\ -\n"; - static Window -find_screensaver_window (Display *dpy, char *progname, char **version) +find_screensaver_window (Display *dpy, char **version) { int i; Window root = RootWindowOfScreen (DefaultScreenOfDisplay (dpy)); @@ -84,7 +72,7 @@ find_screensaver_window (Display *dpy, char *progname, char **version) char *v; if (XGetWindowProperty (dpy, kids[i], - XInternAtom (dpy, "_SCREENSAVER_VERSION", False), + XA_SCREENSAVER_VERSION, 0, 200, False, XA_STRING, &type, &format, &nitems, &bytesafter, (unsigned char **) &v) @@ -102,79 +90,21 @@ find_screensaver_window (Display *dpy, char *progname, char **version) } -#define USAGE() \ - { fprintf (stderr, usage, argv[0], screensaver_version); exit (1); } - -int -main (int argc, char **argv) +void +xscreensaver_command (Display *dpy, Atom command) { - Display *dpy; - Window window; - int i; - int query = 0; -#define Q_version 1 -#define Q_time 2 - char *message = 0, *dpyname = 0; char *v = 0; + Window window = find_screensaver_window (dpy, &v); - screensaver_version = (char *) malloc (5); - memcpy (screensaver_version, screensaver_id + 17, 4); - screensaver_version [4] = 0; - for (i = 1; i < argc; i++) - { - char *s = argv [i]; - int L = strlen (s); - if (L < 2) USAGE (); - if (!strncmp (s, "-display", L)) dpyname = argv [++i]; - else if (message) USAGE () - else if (!strncmp (s, "-activate", L)) message = "ACTIVATE"; - else if (!strncmp (s, "-deactivate", L)) message = "DEACTIVATE"; - else if (!strncmp (s, "-cycle", L)) message = "CYCLE"; - else if (!strncmp (s, "-next", L)) message = "NEXT"; - else if (!strncmp (s, "-prev", L)) message = "PREV"; - else if (!strncmp (s, "-exit", L)) message = "EXIT"; - else if (!strncmp (s, "-restart", L)) message = "RESTART"; - else if (!strncmp (s, "-demo", L)) message = "DEMO"; - else if (!strncmp (s, "-lock", L)) message = "LOCK"; - else if (!strncmp (s, "-version", L)) query = Q_version; - else if (!strncmp (s, "-time", L)) query = Q_time; - else USAGE (); - } - if (!message && !query) USAGE (); - if (!dpyname) dpyname = (char *) getenv ("DISPLAY"); - dpy = XOpenDisplay (dpyname); - if (!dpy) - { - fprintf (stderr, "%s: can't open display %s\n", argv[0], - (dpyname ? dpyname : "(null)")); - exit (1); - } - window = find_screensaver_window (dpy, argv[0], &v); - - if (message) - { - XEvent event; - event.xany.type = ClientMessage; - event.xclient.display = dpy; - event.xclient.window = window; - event.xclient.message_type = XInternAtom (dpy, "SCREENSAVER", False); - event.xclient.format = 32; - event.xclient.data.l[0] = (long) XInternAtom (dpy, message, False); - if (! XSendEvent (dpy, window, False, 0L, &event)) - { - fprintf (stderr, "%s: XSendEvent(dpy, 0x%x ...) failed.\n", argv [0], - (unsigned int) window); - exit (1); - } - } - else if (query) + if (command == XA_SCREENSAVER_TIME || + command == XA_SCREENSAVER_VERSION) { XClassHint hint; memset (&hint, 0, sizeof(hint)); if (!v || !*v) { fprintf (stderr, "%s: version property not set on window 0x%x?\n", - argv [0], (unsigned int) window); + progname, (unsigned int) window); exit (1); } @@ -182,13 +112,13 @@ main (int argc, char **argv) if (!hint.res_class) { fprintf (stderr, "%s: class hints not set on window 0x%x?\n", - argv [0], (unsigned int) window); + progname, (unsigned int) window); exit (1); } fprintf (stdout, "%s %s", hint.res_class, v); - if (query != Q_time) + if (command != XA_SCREENSAVER_TIME) { fprintf (stdout, "\n"); } @@ -204,8 +134,7 @@ main (int argc, char **argv) xgwa.map_state = IsViewable; XGetWindowAttributes (dpy, window, &xgwa); - if (XGetWindowProperty (dpy, window, - XInternAtom (dpy, "__SWM_VROOT", False), + if (XGetWindowProperty (dpy, window, XA_VROOT, 0, 0, False, XA_WINDOW, &type, &format, &nitems, &bytesafter, &data) @@ -217,7 +146,7 @@ main (int argc, char **argv) data = 0; if (XGetWindowProperty (dpy, window, - XInternAtom (dpy, "_SCREENSAVER_TIME",False), + XA_SCREENSAVER_TIME, 0, 1, False, XA_INTEGER, &type, &format, &nitems, &bytesafter, &data) @@ -229,9 +158,10 @@ main (int argc, char **argv) time_t tt = (time_t) time32; if (active_p) - fprintf (stdout, ": active since "); + fprintf (stdout, ": screen blanked since "); else - fprintf (stdout, ": inactive since "); + /* suggestions for a better way to phrase this are welcome. */ + fprintf (stdout, ": screen non-blanked since "); fprintf (stdout, "%s", ctime(&tt)); if (data) free (data); } @@ -241,15 +171,183 @@ main (int argc, char **argv) fprintf (stdout, "\n"); fflush (stdout); fprintf (stderr, "%s: no time on window 0x%x (%s %s).\n", - argv[0], (unsigned int) window, + progname, (unsigned int) window, hint.res_class, (v ? v : "???")); exit (1); } } } + else + { + XEvent event; + event.xany.type = ClientMessage; + event.xclient.display = dpy; + event.xclient.window = window; + event.xclient.message_type = XA_SCREENSAVER; + event.xclient.format = 32; + event.xclient.data.l[0] = (long) command; + if (! XSendEvent (dpy, window, False, 0L, &event)) + { + fprintf (stderr, "%s: XSendEvent(dpy, 0x%x ...) failed.\n", + progname, (unsigned int) window); + exit (1); + } + } + XSync (dpy, 0); +} + + + +#ifdef STANDALONE +static Atom XA_ACTIVATE, XA_DEACTIVATE, XA_CYCLE, XA_NEXT, XA_PREV; +static Atom XA_EXIT, XA_RESTART, XA_DEMO, XA_PREFS, XA_LOCK; + +static char *progname; +static char *screensaver_version; +static char *usage = "\n\ +usage: %s -