malloc + memset -> zalloc
[platform/upstream/weston.git] / tests / weston-test-client-helper.h
1 /*
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
26 #include <assert.h>
27 #include "weston-test-runner.h"
28 #include "wayland-test-client-protocol.h"
29
30 struct client {
31         struct wl_display *wl_display;
32         struct wl_registry *wl_registry;
33         struct wl_compositor *wl_compositor;
34         struct wl_shm *wl_shm;
35         struct test *test;
36         struct input *input;
37         struct output *output;
38         struct surface *surface;
39         int has_argb;
40         struct wl_list global_list;
41 };
42
43 struct global {
44         uint32_t name;
45         char *interface;
46         uint32_t version;
47         struct wl_list link;
48 };
49
50 struct test {
51         struct wl_test *wl_test;
52         int pointer_x;
53         int pointer_y;
54 };
55
56 struct input {
57         struct wl_seat *wl_seat;
58         struct pointer *pointer;
59         struct keyboard *keyboard;
60 };
61
62 struct pointer {
63         struct wl_pointer *wl_pointer;
64         struct surface *focus;
65         int x;
66         int y;
67         uint32_t button;
68         uint32_t state;
69 };
70
71 struct keyboard {
72         struct wl_keyboard *wl_keyboard;
73         struct surface *focus;
74         uint32_t key;
75         uint32_t state;
76         uint32_t mods_depressed;
77         uint32_t mods_latched;
78         uint32_t mods_locked;
79         uint32_t group;
80 };
81
82 struct output {
83         struct wl_output *wl_output;
84         int x;
85         int y;
86         int width;
87         int height;
88 };
89
90 struct surface {
91         struct wl_surface *wl_surface;
92         struct wl_buffer *wl_buffer;
93         struct output *output;
94         int x;
95         int y;
96         int width;
97         int height;
98         void *data;
99 };
100
101 struct client *
102 client_create(int x, int y, int width, int height);
103
104 struct wl_buffer *
105 create_shm_buffer(struct client *client, int width, int height, void **pixels);
106
107 int
108 surface_contains(struct surface *surface, int x, int y);
109
110 void
111 move_client(struct client *client, int x, int y);
112
113 #define client_roundtrip(c) do { \
114         assert(wl_display_roundtrip((c)->wl_display) >= 0); \
115 } while (0)
116
117 struct wl_callback *
118 frame_callback_set(struct wl_surface *surface, int *done);
119
120 void
121 frame_callback_wait(struct client *client, int *done);
122
123 #endif