]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/ping.c
fix timers so that they work when theres lots of repeating timers in the queue..
[mikachu/openbox.git] / openbox / ping.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    client.h for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2008   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "ping.h"
21 #include "client.h"
22 #include "prop.h"
23 #include "event.h"
24 #include "mainloop.h"
25 #include "openbox.h"
26
27 typedef struct _ObPingTarget
28 {
29     ObClient *client;
30     ObPingEventHandler h;
31     Time sent;
32     gint waiting;
33 } ObPingTarget;
34
35 static GSList *ping_targets = NULL;
36 static gboolean active = FALSE;
37
38 #define PING_TIMEOUT (G_USEC_PER_SEC * 3)
39 /*! Warn the user after this many PING_TIMEOUT intervals */
40 #define PING_TIMEOUT_WARN 3
41
42 static void ping_send(ObPingTarget *t);
43 static void ping_end(ObClient *client, gpointer data);
44 static gboolean ping_timeout(gpointer data);
45
46 void ping_start(struct _ObClient *client, ObPingEventHandler h)
47 {
48     GSList *it;
49     ObPingTarget *t;
50
51     g_assert(client->ping == TRUE);
52
53     /* make sure we're not already pinging it */
54     for (it = ping_targets; it != NULL; it = g_slist_next(it)) {
55         t = it->data;
56         if (t->client == client) return;
57     }
58
59     t = g_new(ObPingTarget, 1);
60     t->client = client;
61     t->h = h;
62     t->waiting = 1; /* first wait for a reply */
63
64     ping_send(t);
65     ping_targets = g_slist_prepend(ping_targets, t);
66     ob_main_loop_timeout_add(ob_main_loop, PING_TIMEOUT, ping_timeout,
67                              t, g_direct_equal, NULL);
68
69     if (!active) {
70         active = TRUE;
71         /* listen for the client to disappear */
72         client_add_destroy_notify(ping_end, NULL);
73     }
74 }
75
76 void ping_stop(struct _ObClient *c)
77 {
78     ping_end(c, NULL);
79 }
80
81 void ping_got_pong(Time timestamp)
82 {
83     GSList *it;
84     ObPingTarget *t;
85
86     /* make sure we're not already pinging it */
87     for (it = ping_targets; it != NULL; it = g_slist_next(it)) {
88         t = it->data;
89         if (t->sent == timestamp) {
90             /*ob_debug("PONG: '%s' (timestamp %lu)\n", t->client->title,
91                      t->sent);*/
92             if (t->waiting > PING_TIMEOUT_WARN) {
93                 /* we had notified that they weren't responding, so now we
94                    need to notify that they are again */
95                 t->h(t->client, FALSE);
96             }
97             t->waiting = 0; /* not waiting for a reply anymore */
98             break;
99         }
100     }
101
102     if (it == NULL)
103         ob_debug("Got PONG with timestamp %lu but not waiting for one\n",
104                  timestamp);
105 }
106
107 static void ping_send(ObPingTarget *t)
108 {
109     t->sent = event_get_server_time();
110     /*ob_debug("PING: '%s' (timestamp %lu)\n", t->client->title, t->sent);*/
111     PROP_MSG_TO(t->client->window, t->client->window, wm_protocols,
112                 prop_atoms.net_wm_ping, t->sent, t->client->window, 0, 0,
113                 NoEventMask);
114 }
115
116 static gboolean ping_timeout(gpointer data)
117 {
118     ObPingTarget *t = data;
119
120     if (t->waiting == 0) { /* got a reply already */
121         /* send another ping to make sure it's still alive */
122         ping_send(t);
123     }
124
125     if (t->waiting == PING_TIMEOUT_WARN)
126         t->h(t->client, TRUE); /* notify that the client isn't responding */
127
128     ++t->waiting;
129
130     return TRUE; /* repeat */
131 }
132
133 static void ping_end(ObClient *client, gpointer data)
134 {
135     GSList *it;
136     ObPingTarget *t;
137
138     for (it = ping_targets; it != NULL; it = g_slist_next(it)) {
139         t = it->data;
140         if (t->client == client) {
141             ping_targets = g_slist_remove_link(ping_targets, it);
142             ob_main_loop_timeout_remove_data(ob_main_loop, ping_timeout, t,
143                                              FALSE);
144             g_free(t);
145             break;
146         }
147     }
148
149     /* stop listening if we're not waiting for any more pings */
150     if (!ping_targets) {
151         active = TRUE;
152         client_remove_destroy_notify(ping_end);
153     }    
154 }