Make context reference counted
[platform/upstream/libinput.git] / src / libinput-private.h
1 /*
2  * Copyright © 2013 Jonas Ådahl
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 LIBINPUT_PRIVATE_H
24 #define LIBINPUT_PRIVATE_H
25
26 #include "linux/input.h"
27
28 #include "libinput.h"
29 #include "libinput-util.h"
30
31 struct libinput_source;
32
33 struct libinput_interface_backend {
34         int (*resume)(struct libinput *libinput);
35         void (*suspend)(struct libinput *libinput);
36         void (*destroy)(struct libinput *libinput);
37 };
38
39 struct libinput {
40         int epoll_fd;
41         struct list source_destroy_list;
42
43         struct list seat_list;
44
45         struct {
46                 struct list list;
47                 struct libinput_source *source;
48                 int fd;
49         } timer;
50
51         struct libinput_event **events;
52         size_t events_count;
53         size_t events_len;
54         size_t events_in;
55         size_t events_out;
56
57         const struct libinput_interface *interface;
58         const struct libinput_interface_backend *interface_backend;
59         void *user_data;
60         int refcount;
61 };
62
63 typedef void (*libinput_seat_destroy_func) (struct libinput_seat *seat);
64
65 struct libinput_seat {
66         struct libinput *libinput;
67         struct list link;
68         struct list devices_list;
69         void *user_data;
70         int refcount;
71         libinput_seat_destroy_func destroy;
72
73         char *physical_name;
74         char *logical_name;
75
76         uint32_t slot_map;
77
78         uint32_t button_count[KEY_CNT];
79 };
80
81 struct libinput_device {
82         struct libinput_seat *seat;
83         struct list link;
84         void *user_data;
85         int terminated;
86         int refcount;
87 };
88
89 typedef void (*libinput_source_dispatch_t)(void *data);
90
91
92 #define log_debug(...) log_msg(LIBINPUT_LOG_PRIORITY_DEBUG, __VA_ARGS__)
93 #define log_info(...) log_msg(LIBINPUT_LOG_PRIORITY_INFO, __VA_ARGS__)
94 #define log_error(...) log_msg(LIBINPUT_LOG_PRIORITY_ERROR, __VA_ARGS__)
95 #define log_bug_kernel(...) log_msg(LIBINPUT_LOG_PRIORITY_ERROR, "kernel bug: " __VA_ARGS__)
96 #define log_bug_libinput(...) log_msg(LIBINPUT_LOG_PRIORITY_ERROR, "libinput bug: " __VA_ARGS__);
97 #define log_bug_client(...) log_msg(LIBINPUT_LOG_PRIORITY_ERROR, "client bug: " __VA_ARGS__);
98
99 void
100 log_msg(enum libinput_log_priority priority, const char *format, ...);
101 void
102 log_msg_va(enum libinput_log_priority priority,
103            const char *format,
104            va_list args);
105
106 int
107 libinput_init(struct libinput *libinput,
108               const struct libinput_interface *interface,
109               const struct libinput_interface_backend *interface_backend,
110               void *user_data);
111
112 struct libinput_source *
113 libinput_add_fd(struct libinput *libinput,
114                 int fd,
115                 libinput_source_dispatch_t dispatch,
116                 void *data);
117
118 void
119 libinput_remove_source(struct libinput *libinput,
120                        struct libinput_source *source);
121
122 int
123 open_restricted(struct libinput *libinput,
124                 const char *path, int flags);
125
126 void
127 close_restricted(struct libinput *libinput, int fd);
128
129 void
130 libinput_seat_init(struct libinput_seat *seat,
131                    struct libinput *libinput,
132                    const char *physical_name,
133                    const char *logical_name,
134                    libinput_seat_destroy_func destroy);
135
136 void
137 libinput_device_init(struct libinput_device *device,
138                      struct libinput_seat *seat);
139
140 void
141 notify_added_device(struct libinput_device *device);
142
143 void
144 notify_removed_device(struct libinput_device *device);
145
146 void
147 keyboard_notify_key(struct libinput_device *device,
148                     uint32_t time,
149                     uint32_t key,
150                     enum libinput_keyboard_key_state state);
151
152 void
153 pointer_notify_motion(struct libinput_device *device,
154                       uint32_t time,
155                       double dx,
156                       double dy);
157
158 void
159 pointer_notify_motion_absolute(struct libinput_device *device,
160                                uint32_t time,
161                                double x,
162                                double y);
163
164 void
165 pointer_notify_button(struct libinput_device *device,
166                       uint32_t time,
167                       int32_t button,
168                       enum libinput_button_state state);
169
170 void
171 pointer_notify_axis(struct libinput_device *device,
172                     uint32_t time,
173                     enum libinput_pointer_axis axis,
174                     double value);
175
176 void
177 touch_notify_touch_down(struct libinput_device *device,
178                         uint32_t time,
179                         int32_t slot,
180                         int32_t seat_slot,
181                         double x,
182                         double y);
183
184 void
185 touch_notify_touch_motion(struct libinput_device *device,
186                           uint32_t time,
187                           int32_t slot,
188                           int32_t seat_slot,
189                           double x,
190                           double y);
191
192 void
193 touch_notify_touch_up(struct libinput_device *device,
194                       uint32_t time,
195                       int32_t slot,
196                       int32_t seat_slot);
197
198 void
199 touch_notify_frame(struct libinput_device *device,
200                    uint32_t time);
201 #endif /* LIBINPUT_PRIVATE_H */