uvtd: vt: implement VT_GETMODE/SETMODE ioctl state-tracking
[platform/upstream/kmscon.git] / src / uterm_input_internal.h
1 /*
2  * uterm - Linux User-Space Terminal
3  *
4  * Copyright (c) 2011-2012 David Herrmann <dh.herrmann@googlemail.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files
8  * (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25
26 /* Internal definitions */
27
28 #ifndef UTERM_INPUT_INTERNAL_H
29 #define UTERM_INPUT_INTERNAL_H
30
31 #include <inttypes.h>
32 #include <limits.h>
33 #include <stdbool.h>
34 #include <stdlib.h>
35 #include <xkbcommon/xkbcommon-keysyms.h>
36 #include "eloop.h"
37 #include "shl_dlist.h"
38 #include "shl_misc.h"
39 #include "uterm_input.h"
40
41 enum uterm_input_device_capability {
42         UTERM_DEVICE_HAS_KEYS = (1 << 0),
43         UTERM_DEVICE_HAS_LEDS = (1 << 1),
44 };
45
46 struct uterm_input_dev {
47         struct shl_dlist list;
48         struct uterm_input *input;
49
50         unsigned int capabilities;
51         int rfd;
52         char *node;
53         struct ev_fd *fd;
54         struct xkb_state *state;
55         /* Used in sleep/wake up to store the key's pressed/released state. */
56         char key_state_bits[SHL_DIV_ROUND_UP(KEY_CNT, CHAR_BIT)];
57
58         unsigned int num_syms;
59         struct uterm_input_event event;
60         struct uterm_input_event repeat_event;
61
62         bool repeating;
63         struct ev_timer *repeat_timer;
64 };
65
66 struct uterm_input {
67         unsigned long ref;
68         struct ev_eloop *eloop;
69         int awake;
70         unsigned int repeat_rate;
71         unsigned int repeat_delay;
72
73         struct shl_hook *hook;
74         struct xkb_context *ctx;
75         struct xkb_keymap *keymap;
76
77         struct shl_dlist devices;
78 };
79
80 static inline bool input_bit_is_set(const unsigned long *array, int bit)
81 {
82         return !!(array[bit / LONG_BIT] & (1LL << (bit % LONG_BIT)));
83 }
84
85 int uxkb_desc_init(struct uterm_input *input,
86                    const char *model,
87                    const char *layout,
88                    const char *variant,
89                    const char *options);
90 void uxkb_desc_destroy(struct uterm_input *input);
91
92 int uxkb_dev_init(struct uterm_input_dev *dev);
93 void uxkb_dev_destroy(struct uterm_input_dev *dev);
94 int uxkb_dev_process(struct uterm_input_dev *dev,
95                      uint16_t key_state,
96                      uint16_t code);
97 void uxkb_dev_sleep(struct uterm_input_dev *dev);
98 void uxkb_dev_wake_up(struct uterm_input_dev *dev);
99
100 #endif /* UTERM_INPUT_INTERNAL_H */