Change filedescriptor API to be thread safe
[profile/ivi/wayland.git] / src / wayland-private.h
1 /*
2  * Copyright © 2008-2011 Kristian Høgsberg
3  * Copyright © 2011 Intel Corporation
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and its
6  * documentation for any purpose is hereby granted without fee, provided that
7  * the above copyright notice appear in all copies and that both that copyright
8  * notice and this permission notice appear in supporting documentation, and
9  * that the name of the copyright holders not be used in advertising or
10  * publicity pertaining to distribution of the software without specific,
11  * written prior permission.  The copyright holders make no representations
12  * about the suitability of this software for any purpose.  It is provided "as
13  * is" without express or implied warranty.
14  *
15  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
21  * OF THIS SOFTWARE.
22  */
23
24 #ifndef WAYLAND_PRIVATE_H
25 #define WAYLAND_PRIVATE_H
26
27 #include <stdarg.h>
28 #include <ffi.h>
29 #include "wayland-util.h"
30
31 #define WL_ZOMBIE_OBJECT ((void *) 2)
32
33 #define WL_MAP_SERVER_SIDE 0
34 #define WL_MAP_CLIENT_SIDE 1
35 #define WL_SERVER_ID_START 0xff000000
36
37 struct wl_map {
38         struct wl_array client_entries;
39         struct wl_array server_entries;
40         uint32_t free_list;
41 };
42
43 typedef void (*wl_iterator_func_t)(void *element, void *data);
44
45 void wl_map_init(struct wl_map *map);
46 void wl_map_release(struct wl_map *map);
47 uint32_t wl_map_insert_new(struct wl_map *map, uint32_t side, void *data);
48 int wl_map_insert_at(struct wl_map *map, uint32_t i, void *data);
49 int wl_map_reserve_new(struct wl_map *map, uint32_t i);
50 void wl_map_remove(struct wl_map *map, uint32_t i);
51 void *wl_map_lookup(struct wl_map *map, uint32_t i);
52 void wl_map_for_each(struct wl_map *map, wl_iterator_func_t func, void *data);
53
54 struct wl_connection;
55 struct wl_closure;
56
57 struct wl_connection *wl_connection_create(int fd);
58 void wl_connection_destroy(struct wl_connection *connection);
59 void wl_connection_copy(struct wl_connection *connection, void *data, size_t size);
60 void wl_connection_consume(struct wl_connection *connection, size_t size);
61
62 int wl_connection_flush(struct wl_connection *connection);
63 int wl_connection_read(struct wl_connection *connection);
64
65 int wl_connection_write(struct wl_connection *connection, const void *data, size_t count);
66 int wl_connection_queue(struct wl_connection *connection,
67                         const void *data, size_t count);
68
69 struct wl_closure {
70         int count;
71         const struct wl_message *message;
72         ffi_type *types[20];
73         ffi_cif cif;
74         void *args[20];
75         uint32_t *start;
76         uint32_t buffer[0];
77 };
78
79 struct argument_details {
80         char type;
81         int nullable;
82 };
83
84 const char *
85 get_next_argument(const char *signature, struct argument_details *details);
86
87 int
88 arg_count_for_signature(const char *signature);
89
90 struct wl_closure *
91 wl_closure_vmarshal(struct wl_object *sender,
92                     uint32_t opcode, va_list ap,
93                     const struct wl_message *message);
94
95 struct wl_closure *
96 wl_connection_demarshal(struct wl_connection *connection,
97                         uint32_t size,
98                         struct wl_map *objects,
99                         const struct wl_message *message);
100
101 void
102 wl_closure_invoke(struct wl_closure *closure,
103                   struct wl_object *target, void (*func)(void), void *data);
104 int
105 wl_closure_send(struct wl_closure *closure, struct wl_connection *connection);
106 int
107 wl_closure_queue(struct wl_closure *closure, struct wl_connection *connection);
108 void
109 wl_closure_print(struct wl_closure *closure, struct wl_object *target, int send);
110 void
111 wl_closure_destroy(struct wl_closure *closure);
112
113 extern wl_log_func_t wl_log_handler;
114
115 void wl_log(const char *fmt, ...);
116
117 #endif