source: mainline/uspace/lib/c/generic/io/input.c@ 0dd16778

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 0dd16778 was 593e023, checked in by Martin Decky <martin@…>, 11 years ago

allow compositor and console to coexist side-by-side, use the input server as a poor man's seat arbitrator

  • kernel console notifies both about the release and grab events
  • input server arbitrates the seat selection between kernel console and any number of user space UIs (currently the console server and the compositor server)
  • input port yield and reclaim methods have been removed (they are used only on Ski and Niagara, both already need a more generic mechanism for the kernel/user space cooperation)
  • console and compositor server keep track of the kernel console via the input arbitration
  • move the waiting for a character device from init and terminal widget to getterm
  • Property mode set to 100644
File size: 4.9 KB
Line 
1/*
2 * Copyright (c) 2012 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libc
30 * @{
31 */
32/**
33 * @file
34 * @brief Input protocol client stub
35 */
36
37#include <async.h>
38#include <assert.h>
39#include <errno.h>
40#include <io/kbd_event.h>
41#include <io/input.h>
42#include <ipc/input.h>
43#include <stdlib.h>
44
45static void input_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg);
46
47int input_open(async_sess_t *sess, input_ev_ops_t *ev_ops,
48 void *arg, input_t **rinput)
49{
50 input_t *input = calloc(1, sizeof(input_t));
51 if (input == NULL)
52 return ENOMEM;
53
54 input->sess = sess;
55 input->ev_ops = ev_ops;
56 input->user = arg;
57
58 async_exch_t *exch = async_exchange_begin(sess);
59
60 int rc = async_connect_to_me(exch, 0, 0, 0, input_cb_conn, input);
61 async_exchange_end(exch);
62
63 if (rc != EOK)
64 goto error;
65
66 *rinput = input;
67 return EOK;
68
69error:
70 if (input != NULL)
71 free(input);
72
73 return rc;
74}
75
76void input_close(input_t *input)
77{
78 /* XXX Synchronize with input_cb_conn */
79 free(input);
80}
81
82int input_activate(input_t *input)
83{
84 async_exch_t *exch = async_exchange_begin(input->sess);
85 int rc = async_req_0_0(exch, INPUT_ACTIVATE);
86 async_exchange_end(exch);
87
88 return rc;
89}
90
91static void input_ev_active(input_t *input, ipc_callid_t callid,
92 ipc_call_t *call)
93{
94 int rc = input->ev_ops->active(input);
95 async_answer_0(callid, rc);
96}
97
98static void input_ev_deactive(input_t *input, ipc_callid_t callid,
99 ipc_call_t *call)
100{
101 int rc = input->ev_ops->deactive(input);
102 async_answer_0(callid, rc);
103}
104
105static void input_ev_key(input_t *input, ipc_callid_t callid,
106 ipc_call_t *call)
107{
108 kbd_event_type_t type;
109 keycode_t key;
110 keymod_t mods;
111 wchar_t c;
112 int rc;
113
114 type = IPC_GET_ARG1(*call);
115 key = IPC_GET_ARG2(*call);
116 mods = IPC_GET_ARG3(*call);
117 c = IPC_GET_ARG4(*call);
118
119 rc = input->ev_ops->key(input, type, key, mods, c);
120 async_answer_0(callid, rc);
121}
122
123static void input_ev_move(input_t *input, ipc_callid_t callid,
124 ipc_call_t *call)
125{
126 int dx;
127 int dy;
128 int rc;
129
130 dx = IPC_GET_ARG1(*call);
131 dy = IPC_GET_ARG2(*call);
132
133 rc = input->ev_ops->move(input, dx, dy);
134 async_answer_0(callid, rc);
135}
136
137static void input_ev_abs_move(input_t *input, ipc_callid_t callid,
138 ipc_call_t *call)
139{
140 unsigned x;
141 unsigned y;
142 unsigned max_x;
143 unsigned max_y;
144 int rc;
145
146 x = IPC_GET_ARG1(*call);
147 y = IPC_GET_ARG2(*call);
148 max_x = IPC_GET_ARG3(*call);
149 max_y = IPC_GET_ARG4(*call);
150
151 rc = input->ev_ops->abs_move(input, x, y, max_x, max_y);
152 async_answer_0(callid, rc);
153}
154
155static void input_ev_button(input_t *input, ipc_callid_t callid,
156 ipc_call_t *call)
157{
158 int bnum;
159 int press;
160 int rc;
161
162 bnum = IPC_GET_ARG1(*call);
163 press = IPC_GET_ARG2(*call);
164
165 rc = input->ev_ops->button(input, bnum, press);
166 async_answer_0(callid, rc);
167}
168
169static void input_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg)
170{
171 input_t *input = (input_t *)arg;
172
173 while (true) {
174 ipc_call_t call;
175 ipc_callid_t callid = async_get_call(&call);
176
177 if (!IPC_GET_IMETHOD(call)) {
178 /* TODO: Handle hangup */
179 return;
180 }
181
182 switch (IPC_GET_IMETHOD(call)) {
183 case INPUT_EVENT_ACTIVE:
184 input_ev_active(input, callid, &call);
185 break;
186 case INPUT_EVENT_DEACTIVE:
187 input_ev_deactive(input, callid, &call);
188 break;
189 case INPUT_EVENT_KEY:
190 input_ev_key(input, callid, &call);
191 break;
192 case INPUT_EVENT_MOVE:
193 input_ev_move(input, callid, &call);
194 break;
195 case INPUT_EVENT_ABS_MOVE:
196 input_ev_abs_move(input, callid, &call);
197 break;
198 case INPUT_EVENT_BUTTON:
199 input_ev_button(input, callid, &call);
200 break;
201 default:
202 async_answer_0(callid, ENOTSUP);
203 }
204 }
205}
206
207/** @}
208 */
Note: See TracBrowser for help on using the repository browser.