blob: 2cf3d8f20f6b21ad294097e43d5048943af53744 [file] [log] [blame]
U. Artie Eoff1ba9b382012-12-07 13:50:32 -08001/*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the copyright holders not be used in
9 * advertising or publicity pertaining to distribution of the software
10 * without specific, written prior permission. The copyright holders make
11 * no representations about the suitability of this software for any
12 * purpose. It is provided "as is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 */
22
23#ifndef _WESTON_TEST_CLIENT_HELPER_H_
24#define _WESTON_TEST_CLIENT_HELPER_H_
25
Andrew Wedgbury9cd661e2014-04-07 12:40:35 +010026#include "config.h"
27
U. Artie Eoff1ba9b382012-12-07 13:50:32 -080028#include <assert.h>
29#include "weston-test-runner.h"
30#include "wayland-test-client-protocol.h"
31
32struct client {
33 struct wl_display *wl_display;
34 struct wl_registry *wl_registry;
35 struct wl_compositor *wl_compositor;
36 struct wl_shm *wl_shm;
37 struct test *test;
38 struct input *input;
39 struct output *output;
40 struct surface *surface;
41 int has_argb;
Kristian Høgsberg1cb3df42012-12-11 23:03:56 -050042 struct wl_list global_list;
43};
44
45struct global {
46 uint32_t name;
47 char *interface;
48 uint32_t version;
49 struct wl_list link;
U. Artie Eoff1ba9b382012-12-07 13:50:32 -080050};
51
52struct test {
53 struct wl_test *wl_test;
54 int pointer_x;
55 int pointer_y;
Neil Roberts40c0c3f2013-10-29 20:13:45 +000056 uint32_t n_egl_buffers;
U. Artie Eoff1ba9b382012-12-07 13:50:32 -080057};
58
59struct input {
60 struct wl_seat *wl_seat;
61 struct pointer *pointer;
62 struct keyboard *keyboard;
63};
64
65struct pointer {
66 struct wl_pointer *wl_pointer;
67 struct surface *focus;
68 int x;
69 int y;
70 uint32_t button;
71 uint32_t state;
72};
73
74struct keyboard {
75 struct wl_keyboard *wl_keyboard;
76 struct surface *focus;
77 uint32_t key;
78 uint32_t state;
79 uint32_t mods_depressed;
80 uint32_t mods_latched;
81 uint32_t mods_locked;
82 uint32_t group;
83};
84
85struct output {
86 struct wl_output *wl_output;
87 int x;
88 int y;
89 int width;
90 int height;
91};
92
93struct surface {
94 struct wl_surface *wl_surface;
95 struct wl_buffer *wl_buffer;
96 struct output *output;
97 int x;
98 int y;
99 int width;
100 int height;
101 void *data;
102};
103
Bryce Harrington2cd82b72014-11-19 17:18:36 -0800104static inline void *
105xzalloc(size_t size)
106{
107 void *p;
108
109 p = calloc(1, size);
110 assert(p);
111
112 return p;
113}
114
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800115struct client *
116client_create(int x, int y, int width, int height);
117
Pekka Paalanen32ac9b92013-02-08 17:01:26 +0200118struct wl_buffer *
119create_shm_buffer(struct client *client, int width, int height, void **pixels);
120
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800121int
122surface_contains(struct surface *surface, int x, int y);
123
124void
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800125move_client(struct client *client, int x, int y);
126
Pekka Paalanenf2aa64f2012-12-12 14:26:41 +0200127#define client_roundtrip(c) do { \
128 assert(wl_display_roundtrip((c)->wl_display) >= 0); \
129} while (0)
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800130
Pekka Paalanen8aaef7d2013-02-08 17:01:25 +0200131struct wl_callback *
132frame_callback_set(struct wl_surface *surface, int *done);
133
Marek Chalupa1740aa82014-07-16 11:32:50 +0200134int
135frame_callback_wait_nofail(struct client *client, int *done);
136
137#define frame_callback_wait(c, d) assert(frame_callback_wait_nofail((c), (d)))
Pekka Paalanen8aaef7d2013-02-08 17:01:25 +0200138
Neil Roberts40c0c3f2013-10-29 20:13:45 +0000139int
140get_n_egl_buffers(struct client *client);
141
Kristian Høgsberg42284f52014-01-01 17:38:04 -0800142void
143skip(const char *fmt, ...);
144
Marek Chalupa4d06d462014-07-16 11:27:06 +0200145void
146expect_protocol_error(struct client *client,
147 const struct wl_interface *intf, uint32_t code);
148
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800149#endif