diff options
author | sabetts <sabetts> | 2000-10-15 23:08:47 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2000-10-15 23:08:47 +0000 |
commit | 8adb6de4f3310672589eb27cf4fc161e46d81cdd (patch) | |
tree | f61e6c7ed0ebdde48f74aa533233194bc8125797 /src | |
parent | cce91d966d0b7ccda8de348f431d7b4e234665cd (diff) | |
download | ratpoison-8adb6de4f3310672589eb27cf4fc161e46d81cdd.zip |
added --kill and --restart to kill and restart a running ratpoison process
Diffstat (limited to 'src')
-rw-r--r-- | src/data.h | 4 | ||||
-rw-r--r-- | src/events.c | 13 | ||||
-rw-r--r-- | src/main.c | 110 |
3 files changed, 109 insertions, 18 deletions
@@ -63,6 +63,7 @@ extern int num_screens; extern Display *dpy; extern Atom rp_restart; +extern Atom rp_kill; extern Atom wm_state; extern Atom wm_change_state; @@ -75,4 +76,7 @@ extern Atom wm_colormaps; convenience. */ extern int exit_signal; +/* Arguments passed to ratpoison. */ +extern char **myargv; + #endif /* _DATA_H */ diff --git a/src/events.c b/src/events.c index a4f3ce7..f40aed7 100644 --- a/src/events.c +++ b/src/events.c @@ -239,6 +239,19 @@ static void client_msg (XClientMessageEvent *ev) { PRINT_DEBUG ("Recieved client message.\n"); + + if (ev->message_type == rp_restart) + { + PRINT_DEBUG ("Restarting\n"); + clean_up (); + execvp(myargv[0], myargv); + } + else if (ev->message_type == rp_kill) + { + PRINT_DEBUG ("Exiting\n"); + clean_up (); + exit (EXIT_SUCCESS); + } } static void @@ -40,6 +40,7 @@ Atom wm_take_focus; Atom wm_colormaps; Atom rp_restart; +Atom rp_kill; screen_info *screens; int num_screens; @@ -53,6 +54,8 @@ char **myargv; /* Command line options */ static struct option ratpoison_longopts[] = { {"help", no_argument, 0, 'h'}, {"version", no_argument, 0, 'v'}, + {"restart", no_argument, 0, 'r'}, + {"kill", no_argument, 0, 'k'}, {0, 0, 0, 0} }; static char ratpoison_opts[] = "hv"; @@ -65,13 +68,56 @@ sighandler () } void +send_restart () +{ + XEvent ev; + int status; + + ev.xclient.type = ClientMessage; + ev.xclient.window = DefaultRootWindow (dpy); + ev.xclient.message_type = rp_restart; + ev.xclient.format = 32; + ev.xclient.data.l[0] = rp_restart; + ev.xclient.data.l[1] = CurrentTime; + + status = XSendEvent (dpy, DefaultRootWindow (dpy), False, SubstructureRedirectMask, &ev); + if (status == 0) + { + PRINT_ERROR ("failed to send restart event\n"); + } +} + +void +send_kill () +{ + XEvent ev; + int status; + + ev.xclient.type = ClientMessage; + ev.xclient.window = DefaultRootWindow (dpy); + ev.xclient.message_type = rp_kill; + ev.xclient.format = 32; + ev.xclient.data.l[0] = rp_kill; + ev.xclient.data.l[1] = CurrentTime; + + status = XSendEvent (dpy, DefaultRootWindow (dpy), False, SubstructureRedirectMask, &ev); + if (status == 0) + { + PRINT_ERROR ("failed to send kill event\n"); + } +} + + +void hup_handler () { - /* This doesn't seem to restart more than once for some reason...*/ + /* Doesn't function correctly. The event IS placed on the queue but + XSync() doesn't seem to sync it and until other events come in + the restart event won't be processed. */ + PRINT_DEBUG ("Restarting with a fresh plate.\n"); - fprintf (stderr, "ratpoison: Restarting with a fresh plate.\n"); - clean_up (); - execvp(myargv[0], myargv); + send_restart (); + XSync(dpy, False); } void @@ -120,18 +166,23 @@ print_help () { printf ("Help for %s %s\n\n", PACKAGE, VERSION); printf ("-h, --help Display this help screen\n"); - printf ("-v, --version Display the version\n\n"); + printf ("-v, --version Display the version\n"); + printf ("-r, --restart Restart ratpoison\n"); + printf ("-k, --kill Kill ratpoison\n\n"); printf ("Report bugs to ratpoison-devel@lists.sourceforge.net\n\n"); exit (EXIT_SUCCESS); } + int main (int argc, char *argv[]) { int i; int c; + int do_kill = 0; + int do_restart = 0; myargv = argv; @@ -151,6 +202,12 @@ main (int argc, char *argv[]) case 'v': print_version (); break; + case 'k': + do_kill = 1; + break; + case 'r': + do_restart = 1; + break; default: exit (EXIT_FAILURE); } @@ -169,6 +226,33 @@ main (int argc, char *argv[]) if (signal (SIGINT, sighandler) == SIG_IGN) signal (SIGINT, SIG_IGN); if (signal (SIGHUP, hup_handler) == SIG_IGN) signal (SIGHUP, SIG_IGN); + /* Set ratpoison specific Atoms. */ + rp_restart = XInternAtom (dpy, "RP_RESTART", False); + rp_kill = XInternAtom (dpy, "RP_KILL", False); + + if (do_kill) + { + send_kill (); + XSync (dpy, False); + clean_up (); + return EXIT_SUCCESS; + } + if (do_restart) + { + send_restart (); + XSync (dpy, False); + clean_up (); + return EXIT_SUCCESS; + } + + /* Set our Atoms */ + wm_state = XInternAtom(dpy, "WM_STATE", False); + wm_change_state = XInternAtom(dpy, "WM_CHANGE_STATE", False); + wm_protocols = XInternAtom(dpy, "WM_PROTOCOLS", False); + wm_delete = XInternAtom(dpy, "WM_DELETE_WINDOW", False); + wm_take_focus = XInternAtom(dpy, "WM_TAKE_FOCUS", False); + wm_colormaps = XInternAtom(dpy, "WM_COLORMAP_WINDOWS", False); + init_numbers (); init_window_list (); @@ -194,18 +278,6 @@ main (int argc, char *argv[]) init_screen (&screens[i], i); } - /* Set our Atoms */ - wm_state = XInternAtom(dpy, "WM_STATE", False); - wm_change_state = XInternAtom(dpy, "WM_CHANGE_STATE", False); - wm_protocols = XInternAtom(dpy, "WM_PROTOCOLS", False); - wm_delete = XInternAtom(dpy, "WM_DELETE_WINDOW", False); - wm_take_focus = XInternAtom(dpy, "WM_TAKE_FOCUS", False); - wm_colormaps = XInternAtom(dpy, "WM_COLORMAP_WINDOWS", False); - - rp_restart = XInternAtom (dpy, "RP_RESTART", False); - - XSync (dpy, False); - /* Set an initial window as active. */ rp_current_window = rp_window_head; set_active_window (rp_current_window); @@ -264,7 +336,6 @@ init_screen (screen_info *s, int screen_num) PropertyChangeMask | ColormapChangeMask | SubstructureRedirectMask | KeyPressMask | SubstructureNotifyMask ); - XSync (dpy, 0); /* Create the program bar window. */ s->bar_is_raised = 0; @@ -282,6 +353,9 @@ init_screen (screen_info *s, int screen_num) s->input_window = XCreateSimpleWindow (dpy, s->root, 0, 0, 1, 1, 1, fg_color.pixel, bg_color.pixel); XSelectInput (dpy, s->input_window, KeyPressMask); + + XSync (dpy, 0); + scanwins (s); } |