{
struct weston_input_device *wd = (struct weston_input_device *) device;
struct weston_compositor *compositor = wd->compositor;
+ struct weston_surface *focus = (struct weston_surface *) device->pointer_focus;
+ uint32_t serial = wl_display_next_serial(compositor->wl_display);
if (state) {
+ if (compositor->ping_handler && focus)
+ compositor->ping_handler(focus, serial);
weston_compositor_idle_inhibit(compositor);
if (device->button_count == 0) {
device->grab_button = button;
{
struct weston_input_device *wd = (struct weston_input_device *) device;
struct weston_compositor *compositor = wd->compositor;
+ struct weston_surface *focus = (struct weston_surface *) device->pointer_focus;
+ uint32_t serial = wl_display_next_serial(compositor->wl_display);
+
+ if (compositor->ping_handler && focus)
+ compositor->ping_handler(focus, serial);
weston_compositor_activity(compositor);
{
struct weston_input_device *wd = (struct weston_input_device *) device;
struct weston_compositor *compositor = wd->compositor;
+ struct weston_surface *focus = (struct weston_surface *) device->pointer_focus;
+ uint32_t serial = wl_display_next_serial(compositor->wl_display);
uint32_t *k, *end;
if (state) {
+ if (compositor->ping_handler && focus)
+ compositor->ping_handler(focus, serial);
+
weston_compositor_idle_inhibit(compositor);
device->grab_key = key;
device->grab_time = time;
screenshooter_create(ec);
+ ec->ping_handler = NULL;
+
wl_data_device_manager_init(ec->wl_display);
glActiveTexture(GL_TEXTURE0);
SHELL_SURFACE_POPUP
};
+struct ping_timer {
+ struct wl_event_source *source;
+ uint32_t pong_received;
+ uint32_t serial;
+};
+
struct shell_surface {
struct wl_resource resource;
enum shell_surface_type type;
int32_t saved_x, saved_y;
bool saved_position_valid;
+ int unresponsive;
struct {
struct weston_transform transform;
struct weston_surface *black_surface;
} fullscreen;
+ struct ping_timer *ping_timer;
+
struct weston_output *fullscreen_output;
struct weston_output *output;
struct wl_list link;
};
static int
+ping_timeout_handler(void *data)
+{
+ struct shell_surface *shsurf = data;
+
+ if (!shsurf || !shsurf->ping_timer)
+ return 1;
+
+ if (shsurf->ping_timer->pong_received) {
+ free(shsurf->ping_timer);
+ shsurf->ping_timer = NULL;
+ } else {
+ /* Client is not responding */
+ shsurf->unresponsive = 1;
+ }
+
+ return 1;
+}
+
+static void
+ping_handler(struct weston_surface *surface, uint32_t serial)
+{
+ struct shell_surface *shsurf;
+ shsurf = get_shell_surface(surface);
+ struct wl_event_loop *loop;
+ int ping_timeout = 15000;
+
+ if (!shsurf)
+ return;
+
+ if (!shsurf->ping_timer) {
+ shsurf->ping_timer = malloc(sizeof shsurf->ping_timer);
+ if (!shsurf->ping_timer)
+ return;
+
+ shsurf->ping_timer->serial = serial;
+ shsurf->ping_timer->pong_received = 0;
+ loop = wl_display_get_event_loop(surface->compositor->wl_display);
+ shsurf->ping_timer->source =
+ wl_event_loop_add_timer(loop, ping_timeout_handler, shsurf);
+ wl_event_source_timer_update(shsurf->ping_timer->source, ping_timeout);
+
+ wl_shell_surface_send_ping(&shsurf->resource, serial);
+ }
+}
+
+static void
+shell_surface_pong(struct wl_client *client, struct wl_resource *resource,
+ uint32_t serial)
+{
+ struct shell_surface *shsurf = resource->data;
+
+ if (!shsurf || !shsurf->ping_timer)
+ return;
+
+ if (shsurf->ping_timer->serial == serial) {
+ shsurf->ping_timer->pong_received = 1;
+ shsurf->unresponsive = 0;
+ free(shsurf->ping_timer);
+ shsurf->ping_timer = NULL;
+ }
+}
+
+static int
weston_surface_move(struct weston_surface *es,
struct weston_input_device *wd)
{
}
static const struct wl_shell_surface_interface shell_surface_implementation = {
+ shell_surface_pong,
shell_surface_move,
shell_surface_resize,
shell_surface_set_toplevel,
*/
wl_list_remove(&shsurf->surface_destroy_listener.link);
shsurf->surface->configure = NULL;
+ if (shsurf->ping_timer)
+ free(shsurf->ping_timer);
wl_list_remove(&shsurf->link);
free(shsurf);
surface->configure = shell_surface_configure;
+ shsurf->unresponsive = 0;
+
shsurf->resource.destroy = destroy_shell_surface;
shsurf->resource.object.id = id;
shsurf->resource.object.interface = &wl_shell_surface_interface;
shsurf->fullscreen.type = WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT;
shsurf->fullscreen.framerate = 0;
shsurf->fullscreen.black_surface = NULL;
+ shsurf->ping_timer = NULL;
wl_list_init(&shsurf->fullscreen.transform.link);
shsurf->surface_destroy_listener.notify = shell_handle_surface_destroy;
static void
shell_destroy(struct wl_listener *listener, void *data)
{
+ struct weston_surface *surface;
+ struct shell_surface *shsurf;
struct desktop_shell *shell =
container_of(listener, struct desktop_shell, destroy_listener);
if (shell->child.client)
wl_client_destroy(shell->child.client);
+ wl_list_for_each(surface, &shell->compositor->surface_list, link) {
+ shsurf = get_shell_surface(surface);
+ if (!shsurf)
+ continue;
+ if (shsurf->ping_timer)
+ free(shsurf->ping_timer);
+ }
+
free(shell->screensaver.path);
free(shell);
}
wl_signal_add(&ec->lock_signal, &shell->lock_listener);
shell->unlock_listener.notify = unlock;
wl_signal_add(&ec->unlock_signal, &shell->unlock_listener);
+ ec->ping_handler = ping_handler;
wl_list_init(&shell->backgrounds);
wl_list_init(&shell->panels);