2021-04-10 11:32:02 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "tests/meta-wayland-test-driver.h"
|
|
|
|
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
#include "wayland/meta-wayland-actor-surface.h"
|
|
|
|
#include "wayland/meta-wayland-private.h"
|
|
|
|
|
|
|
|
#include "test-driver-server-protocol.h"
|
|
|
|
|
2021-06-18 18:15:05 -04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
SYNC_POINT,
|
|
|
|
|
|
|
|
N_SIGNALS
|
|
|
|
};
|
|
|
|
|
|
|
|
static int signals[N_SIGNALS];
|
|
|
|
|
2021-04-10 11:32:02 -04:00
|
|
|
struct _MetaWaylandTestDriver
|
|
|
|
{
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
struct wl_global *test_driver;
|
2021-09-07 04:32:53 -04:00
|
|
|
|
|
|
|
GList *resources;
|
2022-05-13 15:56:50 -04:00
|
|
|
|
|
|
|
GHashTable *properties;
|
2021-04-10 11:32:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (MetaWaylandTestDriver, meta_wayland_test_driver,
|
|
|
|
G_TYPE_OBJECT)
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_actor_destroyed (ClutterActor *actor,
|
|
|
|
struct wl_resource *callback)
|
|
|
|
{
|
|
|
|
wl_callback_send_done (callback, 0);
|
|
|
|
wl_resource_destroy (callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sync_actor_destroy (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
|
|
|
uint32_t id,
|
|
|
|
struct wl_resource *surface_resource)
|
|
|
|
{
|
|
|
|
MetaWaylandSurface *surface = wl_resource_get_user_data (surface_resource);
|
|
|
|
MetaWaylandActorSurface *actor_surface;
|
|
|
|
MetaSurfaceActor *actor;
|
|
|
|
struct wl_resource *callback;
|
|
|
|
|
|
|
|
g_assert_nonnull (surface);
|
|
|
|
|
|
|
|
actor_surface = (MetaWaylandActorSurface *) surface->role;
|
|
|
|
g_assert_nonnull (actor_surface);
|
|
|
|
|
|
|
|
actor = meta_wayland_actor_surface_get_actor (actor_surface);
|
|
|
|
g_assert_nonnull (actor);
|
|
|
|
|
|
|
|
callback = wl_resource_create (client, &wl_callback_interface, 1, id);
|
|
|
|
|
|
|
|
g_signal_connect (actor, "destroy", G_CALLBACK (on_actor_destroyed),
|
|
|
|
callback);
|
|
|
|
}
|
|
|
|
|
2021-06-18 18:15:05 -04:00
|
|
|
static void
|
|
|
|
sync_point (struct wl_client *client,
|
|
|
|
struct wl_resource *resource,
|
2021-09-07 04:31:26 -04:00
|
|
|
uint32_t sequence,
|
|
|
|
struct wl_resource *surface_resource)
|
2021-06-18 18:15:05 -04:00
|
|
|
{
|
|
|
|
MetaWaylandTestDriver *test_driver = wl_resource_get_user_data (resource);
|
|
|
|
|
|
|
|
g_signal_emit (test_driver, signals[SYNC_POINT], 0,
|
|
|
|
sequence,
|
2021-09-07 04:31:26 -04:00
|
|
|
surface_resource,
|
2021-06-18 18:15:05 -04:00
|
|
|
client);
|
|
|
|
}
|
|
|
|
|
2021-04-10 11:32:02 -04:00
|
|
|
static const struct test_driver_interface meta_test_driver_interface = {
|
|
|
|
sync_actor_destroy,
|
2021-06-18 18:15:05 -04:00
|
|
|
sync_point,
|
2021-04-10 11:32:02 -04:00
|
|
|
};
|
|
|
|
|
2021-09-07 04:32:53 -04:00
|
|
|
static void
|
|
|
|
test_driver_destructor (struct wl_resource *resource)
|
|
|
|
{
|
|
|
|
MetaWaylandTestDriver *test_driver = wl_resource_get_user_data (resource);
|
|
|
|
|
|
|
|
test_driver->resources = g_list_remove (test_driver->resources, resource);
|
|
|
|
}
|
|
|
|
|
2021-04-10 11:32:02 -04:00
|
|
|
static void
|
|
|
|
bind_test_driver (struct wl_client *client,
|
|
|
|
void *user_data,
|
|
|
|
uint32_t version,
|
|
|
|
uint32_t id)
|
|
|
|
{
|
|
|
|
MetaWaylandTestDriver *test_driver = user_data;
|
|
|
|
struct wl_resource *resource;
|
2022-05-13 15:56:50 -04:00
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
2021-04-10 11:32:02 -04:00
|
|
|
|
|
|
|
resource = wl_resource_create (client, &test_driver_interface,
|
|
|
|
version, id);
|
|
|
|
wl_resource_set_implementation (resource, &meta_test_driver_interface,
|
2021-09-07 04:32:53 -04:00
|
|
|
test_driver, test_driver_destructor);
|
|
|
|
|
|
|
|
test_driver->resources = g_list_prepend (test_driver->resources, resource);
|
2022-05-13 15:56:50 -04:00
|
|
|
|
|
|
|
g_hash_table_iter_init (&iter, test_driver->properties);
|
|
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
|
|
|
test_driver_send_property (resource, key, value);
|
2021-04-10 11:32:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_test_driver_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MetaWaylandTestDriver *test_driver = META_WAYLAND_TEST_DRIVER (object);
|
|
|
|
|
|
|
|
g_clear_pointer (&test_driver->test_driver, wl_global_destroy);
|
2022-05-13 15:56:50 -04:00
|
|
|
g_clear_pointer (&test_driver->properties, g_hash_table_unref);
|
2021-04-10 11:32:02 -04:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_wayland_test_driver_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_test_driver_class_init (MetaWaylandTestDriverClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = meta_wayland_test_driver_finalize;
|
2021-06-18 18:15:05 -04:00
|
|
|
|
|
|
|
signals[SYNC_POINT] =
|
|
|
|
g_signal_new ("sync-point",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
2021-09-07 04:31:26 -04:00
|
|
|
G_TYPE_NONE, 3,
|
2021-06-18 18:15:05 -04:00
|
|
|
G_TYPE_UINT,
|
2021-09-07 04:31:26 -04:00
|
|
|
G_TYPE_POINTER,
|
2021-06-18 18:15:05 -04:00
|
|
|
G_TYPE_POINTER);
|
2021-04-10 11:32:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_wayland_test_driver_init (MetaWaylandTestDriver *test_driver)
|
|
|
|
{
|
2022-05-13 15:56:50 -04:00
|
|
|
test_driver->properties = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
|
|
g_free, g_free);
|
2021-04-10 11:32:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
MetaWaylandTestDriver *
|
|
|
|
meta_wayland_test_driver_new (MetaWaylandCompositor *compositor)
|
|
|
|
{
|
|
|
|
MetaWaylandTestDriver *test_driver;
|
|
|
|
|
|
|
|
test_driver = g_object_new (META_TYPE_WAYLAND_TEST_DRIVER, NULL);
|
|
|
|
test_driver->test_driver = wl_global_create (compositor->wayland_display,
|
|
|
|
&test_driver_interface,
|
|
|
|
1,
|
|
|
|
test_driver, bind_test_driver);
|
|
|
|
if (!test_driver->test_driver)
|
|
|
|
g_error ("Failed to register a global wl-subcompositor object");
|
|
|
|
|
|
|
|
return test_driver;
|
|
|
|
}
|
2021-09-07 04:32:53 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_test_driver_emit_sync_event (MetaWaylandTestDriver *test_driver,
|
|
|
|
uint32_t serial)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
|
|
|
for (l = test_driver->resources; l; l = l->next)
|
|
|
|
{
|
|
|
|
struct wl_resource *resource = l->data;
|
|
|
|
|
|
|
|
test_driver_send_sync_event (resource, serial);
|
|
|
|
}
|
|
|
|
}
|
2022-05-13 15:56:50 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_wayland_test_driver_set_property (MetaWaylandTestDriver *test_driver,
|
|
|
|
const char *name,
|
|
|
|
const char *value)
|
|
|
|
{
|
|
|
|
g_hash_table_replace (test_driver->properties,
|
|
|
|
g_strdup (name),
|
|
|
|
g_strdup (value));
|
|
|
|
}
|