Rev 1723 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1723 | Rev 1740 | ||
---|---|---|---|
1 | /* |
1 | /* |
2 | * Copyright (C) 2006 Josef Cejka |
2 | * Copyright (C) 2006 Josef Cejka |
3 | * All rights reserved. |
3 | * All rights reserved. |
4 | * |
4 | * |
5 | * Redistribution and use in source and binary forms, with or without |
5 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions |
6 | * modification, are permitted provided that the following conditions |
7 | * are met: |
7 | * are met: |
8 | * |
8 | * |
9 | * - Redistributions of source code must retain the above copyright |
9 | * - Redistributions of source code must retain the above copyright |
10 | * notice, this list of conditions and the following disclaimer. |
10 | * notice, this list of conditions and the following disclaimer. |
11 | * - Redistributions in binary form must reproduce the above copyright |
11 | * - Redistributions in binary form must reproduce the above copyright |
12 | * notice, this list of conditions and the following disclaimer in the |
12 | * notice, this list of conditions and the following disclaimer in the |
13 | * documentation and/or other materials provided with the distribution. |
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 |
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. |
15 | * derived from this software without specific prior written permission. |
16 | * |
16 | * |
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
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 |
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
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 |
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
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 |
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. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
29 | /** @defgroup console Console |
29 | /** @addtogroup console |
30 | * @brief HelenOS console. |
- | |
31 | * @{ |
30 | * @{ |
32 | */ |
31 | */ |
33 | /** @file |
32 | /** @file |
34 | */ |
33 | */ |
35 | 34 | ||
36 | /* TODO: remove */ |
35 | /* TODO: remove */ |
37 | #include <stdio.h> |
36 | #include <stdio.h> |
38 | 37 | ||
39 | #include <fb.h> |
38 | #include <fb.h> |
40 | #include <ipc/ipc.h> |
39 | #include <ipc/ipc.h> |
41 | #include <keys.h> |
40 | #include <keys.h> |
42 | #include <ipc/fb.h> |
41 | #include <ipc/fb.h> |
43 | #include <ipc/services.h> |
42 | #include <ipc/services.h> |
44 | #include <errno.h> |
43 | #include <errno.h> |
45 | #include <key_buffer.h> |
44 | #include <key_buffer.h> |
46 | #include <console.h> |
45 | #include <console.h> |
47 | #include <unistd.h> |
46 | #include <unistd.h> |
48 | #include <async.h> |
47 | #include <async.h> |
49 | #include <libadt/fifo.h> |
48 | #include <libadt/fifo.h> |
50 | #include <screenbuffer.h> |
49 | #include <screenbuffer.h> |
51 | #include <sys/mman.h> |
50 | #include <sys/mman.h> |
52 | 51 | ||
53 | #include "gcons.h" |
52 | #include "gcons.h" |
54 | 53 | ||
55 | #define MAX_KEYREQUESTS_BUFFERED 32 |
54 | #define MAX_KEYREQUESTS_BUFFERED 32 |
56 | 55 | ||
57 | #define NAME "CONSOLE" |
56 | #define NAME "CONSOLE" |
58 | 57 | ||
59 | /** Index of currently used virtual console. |
58 | /** Index of currently used virtual console. |
60 | */ |
59 | */ |
61 | int active_console = 0; |
60 | int active_console = 0; |
62 | 61 | ||
63 | /** Information about framebuffer |
62 | /** Information about framebuffer |
64 | */ |
63 | */ |
65 | struct { |
64 | struct { |
66 | int phone; /**< Framebuffer phone */ |
65 | int phone; /**< Framebuffer phone */ |
67 | ipcarg_t rows; /**< Framebuffer rows */ |
66 | ipcarg_t rows; /**< Framebuffer rows */ |
68 | ipcarg_t cols; /**< Framebuffer columns */ |
67 | ipcarg_t cols; /**< Framebuffer columns */ |
69 | } fb_info; |
68 | } fb_info; |
70 | 69 | ||
71 | 70 | ||
72 | typedef struct { |
71 | typedef struct { |
73 | keybuffer_t keybuffer; /**< Buffer for incoming keys. */ |
72 | keybuffer_t keybuffer; /**< Buffer for incoming keys. */ |
74 | FIFO_CREATE_STATIC(keyrequests, ipc_callid_t , MAX_KEYREQUESTS_BUFFERED); /**< Buffer for unsatisfied request for keys. */ |
73 | FIFO_CREATE_STATIC(keyrequests, ipc_callid_t , MAX_KEYREQUESTS_BUFFERED); /**< Buffer for unsatisfied request for keys. */ |
75 | int keyrequest_counter; /**< Number of requests in buffer. */ |
74 | int keyrequest_counter; /**< Number of requests in buffer. */ |
76 | int client_phone; /**< Phone to connected client. */ |
75 | int client_phone; /**< Phone to connected client. */ |
77 | int used; /**< 1 if this virtual console is connected to some client.*/ |
76 | int used; /**< 1 if this virtual console is connected to some client.*/ |
78 | screenbuffer_t screenbuffer; /**< Screenbuffer for saving screen contents and related settings. */ |
77 | screenbuffer_t screenbuffer; /**< Screenbuffer for saving screen contents and related settings. */ |
79 | } connection_t; |
78 | } connection_t; |
80 | 79 | ||
81 | static connection_t connections[CONSOLE_COUNT]; /**< Array of data for virtual consoles */ |
80 | static connection_t connections[CONSOLE_COUNT]; /**< Array of data for virtual consoles */ |
82 | static keyfield_t *interbuffer = NULL; /**< Pointer to memory shared with framebufer used for faster virt. console switching */ |
81 | static keyfield_t *interbuffer = NULL; /**< Pointer to memory shared with framebufer used for faster virt. console switching */ |
83 | 82 | ||
84 | static int kernel_pixmap = -1; /**< Number of fb pixmap, where kernel console is stored */ |
83 | static int kernel_pixmap = -1; /**< Number of fb pixmap, where kernel console is stored */ |
85 | 84 | ||
86 | 85 | ||
87 | /** Find unused virtual console. |
86 | /** Find unused virtual console. |
88 | * |
87 | * |
89 | */ |
88 | */ |
90 | static int find_free_connection(void) |
89 | static int find_free_connection(void) |
91 | { |
90 | { |
92 | int i = 0; |
91 | int i = 0; |
93 | 92 | ||
94 | for (i=0; i < CONSOLE_COUNT; i++) { |
93 | for (i=0; i < CONSOLE_COUNT; i++) { |
95 | if (!connections[i].used) |
94 | if (!connections[i].used) |
96 | return i; |
95 | return i; |
97 | } |
96 | } |
98 | return -1; |
97 | return -1; |
99 | } |
98 | } |
100 | 99 | ||
101 | static void clrscr(void) |
100 | static void clrscr(void) |
102 | { |
101 | { |
103 | async_msg(fb_info.phone, FB_CLEAR, 0); |
102 | async_msg(fb_info.phone, FB_CLEAR, 0); |
104 | } |
103 | } |
105 | 104 | ||
106 | static void curs_visibility(int v) |
105 | static void curs_visibility(int v) |
107 | { |
106 | { |
108 | async_msg(fb_info.phone, FB_CURSOR_VISIBILITY, v); |
107 | async_msg(fb_info.phone, FB_CURSOR_VISIBILITY, v); |
109 | } |
108 | } |
110 | 109 | ||
111 | static void curs_goto(int row, int col) |
110 | static void curs_goto(int row, int col) |
112 | { |
111 | { |
113 | async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col); |
112 | async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col); |
114 | 113 | ||
115 | } |
114 | } |
116 | 115 | ||
117 | static void set_style(style_t *style) |
116 | static void set_style(style_t *style) |
118 | { |
117 | { |
119 | async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color, style->bg_color); |
118 | async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color, style->bg_color); |
120 | } |
119 | } |
121 | 120 | ||
122 | static void set_style_col(int fgcolor, int bgcolor) |
121 | static void set_style_col(int fgcolor, int bgcolor) |
123 | { |
122 | { |
124 | async_msg_2(fb_info.phone, FB_SET_STYLE, fgcolor, bgcolor); |
123 | async_msg_2(fb_info.phone, FB_SET_STYLE, fgcolor, bgcolor); |
125 | } |
124 | } |
126 | 125 | ||
127 | static void prtchr(char c, int row, int col) |
126 | static void prtchr(char c, int row, int col) |
128 | { |
127 | { |
129 | async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col); |
128 | async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col); |
130 | 129 | ||
131 | } |
130 | } |
132 | 131 | ||
133 | /** Check key and process special keys. |
132 | /** Check key and process special keys. |
134 | * |
133 | * |
135 | * */ |
134 | * */ |
136 | static void write_char(int console, char key) |
135 | static void write_char(int console, char key) |
137 | { |
136 | { |
138 | screenbuffer_t *scr = &(connections[console].screenbuffer); |
137 | screenbuffer_t *scr = &(connections[console].screenbuffer); |
139 | 138 | ||
140 | switch (key) { |
139 | switch (key) { |
141 | case '\n': |
140 | case '\n': |
142 | scr->position_y += 1; |
141 | scr->position_y += 1; |
143 | scr->position_x = 0; |
142 | scr->position_x = 0; |
144 | break; |
143 | break; |
145 | case '\r': |
144 | case '\r': |
146 | break; |
145 | break; |
147 | case '\t': |
146 | case '\t': |
148 | scr->position_x += 8; |
147 | scr->position_x += 8; |
149 | scr->position_x -= scr->position_x % 8; |
148 | scr->position_x -= scr->position_x % 8; |
150 | break; |
149 | break; |
151 | case '\b': |
150 | case '\b': |
152 | if (scr->position_x == 0) |
151 | if (scr->position_x == 0) |
153 | break; |
152 | break; |
154 | 153 | ||
155 | scr->position_x--; |
154 | scr->position_x--; |
156 | 155 | ||
157 | if (console == active_console) |
156 | if (console == active_console) |
158 | prtchr(' ', scr->position_y, scr->position_x); |
157 | prtchr(' ', scr->position_y, scr->position_x); |
159 | 158 | ||
160 | screenbuffer_putchar(scr, ' '); |
159 | screenbuffer_putchar(scr, ' '); |
161 | 160 | ||
162 | break; |
161 | break; |
163 | default: |
162 | default: |
164 | if (console == active_console) |
163 | if (console == active_console) |
165 | prtchr(key, scr->position_y, scr->position_x); |
164 | prtchr(key, scr->position_y, scr->position_x); |
166 | 165 | ||
167 | screenbuffer_putchar(scr, key); |
166 | screenbuffer_putchar(scr, key); |
168 | scr->position_x++; |
167 | scr->position_x++; |
169 | } |
168 | } |
170 | 169 | ||
171 | scr->position_y += (scr->position_x >= scr->size_x); |
170 | scr->position_y += (scr->position_x >= scr->size_x); |
172 | 171 | ||
173 | if (scr->position_y >= scr->size_y) { |
172 | if (scr->position_y >= scr->size_y) { |
174 | scr->position_y = scr->size_y - 1; |
173 | scr->position_y = scr->size_y - 1; |
175 | screenbuffer_clear_line(scr, scr->top_line); |
174 | screenbuffer_clear_line(scr, scr->top_line); |
176 | scr->top_line = (scr->top_line+1) % scr->size_y; |
175 | scr->top_line = (scr->top_line+1) % scr->size_y; |
177 | if (console == active_console) |
176 | if (console == active_console) |
178 | async_msg(fb_info.phone, FB_SCROLL, 1); |
177 | async_msg(fb_info.phone, FB_SCROLL, 1); |
179 | } |
178 | } |
180 | 179 | ||
181 | scr->position_x = scr->position_x % scr->size_x; |
180 | scr->position_x = scr->position_x % scr->size_x; |
182 | 181 | ||
183 | if (console == active_console) |
182 | if (console == active_console) |
184 | curs_goto(scr->position_y, scr->position_x); |
183 | curs_goto(scr->position_y, scr->position_x); |
185 | 184 | ||
186 | } |
185 | } |
187 | 186 | ||
188 | /** Save current screen to pixmap, draw old pixmap |
187 | /** Save current screen to pixmap, draw old pixmap |
189 | * |
188 | * |
190 | * @param oldpixmap Old pixmap |
189 | * @param oldpixmap Old pixmap |
191 | * @return ID of pixmap of current screen |
190 | * @return ID of pixmap of current screen |
192 | */ |
191 | */ |
193 | static int switch_screens(int oldpixmap) |
192 | static int switch_screens(int oldpixmap) |
194 | { |
193 | { |
195 | int newpmap; |
194 | int newpmap; |
196 | 195 | ||
197 | /* Save screen */ |
196 | /* Save screen */ |
198 | newpmap = async_req(fb_info.phone, FB_VP2PIXMAP, 0, NULL); |
197 | newpmap = async_req(fb_info.phone, FB_VP2PIXMAP, 0, NULL); |
199 | if (newpmap < 0) |
198 | if (newpmap < 0) |
200 | return -1; |
199 | return -1; |
201 | 200 | ||
202 | if (oldpixmap != -1) { |
201 | if (oldpixmap != -1) { |
203 | /* Show old screen */ |
202 | /* Show old screen */ |
204 | async_msg_2(fb_info.phone, FB_VP_DRAW_PIXMAP, 0, oldpixmap); |
203 | async_msg_2(fb_info.phone, FB_VP_DRAW_PIXMAP, 0, oldpixmap); |
205 | /* Drop old pixmap */ |
204 | /* Drop old pixmap */ |
206 | async_msg(fb_info.phone, FB_DROP_PIXMAP, oldpixmap); |
205 | async_msg(fb_info.phone, FB_DROP_PIXMAP, oldpixmap); |
207 | } |
206 | } |
208 | 207 | ||
209 | return newpmap; |
208 | return newpmap; |
210 | } |
209 | } |
211 | 210 | ||
212 | /** Switch to new console */ |
211 | /** Switch to new console */ |
213 | static void change_console(int newcons) |
212 | static void change_console(int newcons) |
214 | { |
213 | { |
215 | connection_t *conn; |
214 | connection_t *conn; |
216 | static int console_pixmap = -1; |
215 | static int console_pixmap = -1; |
217 | int i, j, rc; |
216 | int i, j, rc; |
218 | keyfield_t *field; |
217 | keyfield_t *field; |
219 | style_t *style; |
218 | style_t *style; |
220 | 219 | ||
221 | if (newcons == active_console) |
220 | if (newcons == active_console) |
222 | return; |
221 | return; |
223 | 222 | ||
224 | if (newcons == KERNEL_CONSOLE) { |
223 | if (newcons == KERNEL_CONSOLE) { |
225 | if (active_console == KERNEL_CONSOLE) |
224 | if (active_console == KERNEL_CONSOLE) |
226 | return; |
225 | return; |
227 | active_console = KERNEL_CONSOLE; |
226 | active_console = KERNEL_CONSOLE; |
228 | curs_visibility(0); |
227 | curs_visibility(0); |
229 | 228 | ||
230 | async_serialize_start(); |
229 | async_serialize_start(); |
231 | if (kernel_pixmap == -1) { |
230 | if (kernel_pixmap == -1) { |
232 | /* store/restore unsupported */ |
231 | /* store/restore unsupported */ |
233 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND); |
232 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND); |
234 | clrscr(); |
233 | clrscr(); |
235 | } else { |
234 | } else { |
236 | gcons_in_kernel(); |
235 | gcons_in_kernel(); |
237 | console_pixmap = switch_screens(kernel_pixmap); |
236 | console_pixmap = switch_screens(kernel_pixmap); |
238 | kernel_pixmap = -1; |
237 | kernel_pixmap = -1; |
239 | } |
238 | } |
240 | async_serialize_end(); |
239 | async_serialize_end(); |
241 | 240 | ||
242 | __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE); |
241 | __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE); |
243 | return; |
242 | return; |
244 | } |
243 | } |
245 | 244 | ||
246 | async_serialize_start(); |
245 | async_serialize_start(); |
247 | 246 | ||
248 | if (console_pixmap != -1) { |
247 | if (console_pixmap != -1) { |
249 | kernel_pixmap = switch_screens(console_pixmap); |
248 | kernel_pixmap = switch_screens(console_pixmap); |
250 | console_pixmap = -1; |
249 | console_pixmap = -1; |
251 | } |
250 | } |
252 | active_console = newcons; |
251 | active_console = newcons; |
253 | gcons_change_console(newcons); |
252 | gcons_change_console(newcons); |
254 | conn = &connections[active_console]; |
253 | conn = &connections[active_console]; |
255 | 254 | ||
256 | set_style(&conn->screenbuffer.style); |
255 | set_style(&conn->screenbuffer.style); |
257 | curs_visibility(0); |
256 | curs_visibility(0); |
258 | if (interbuffer) { |
257 | if (interbuffer) { |
259 | for (i = 0; i < conn->screenbuffer.size_x; i++) |
258 | for (i = 0; i < conn->screenbuffer.size_x; i++) |
260 | for (j = 0; j < conn->screenbuffer.size_y; j++) |
259 | for (j = 0; j < conn->screenbuffer.size_y; j++) |
261 | interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j); |
260 | interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j); |
262 | /* This call can preempt, but we are already at the end */ |
261 | /* This call can preempt, but we are already at the end */ |
263 | rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL); |
262 | rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL); |
264 | }; |
263 | }; |
265 | 264 | ||
266 | if ((!interbuffer) || (rc != 0)) { |
265 | if ((!interbuffer) || (rc != 0)) { |
267 | set_style(&conn->screenbuffer.style); |
266 | set_style(&conn->screenbuffer.style); |
268 | clrscr(); |
267 | clrscr(); |
269 | style = &conn->screenbuffer.style; |
268 | style = &conn->screenbuffer.style; |
270 | 269 | ||
271 | for (j = 0; j < conn->screenbuffer.size_y; j++) |
270 | for (j = 0; j < conn->screenbuffer.size_y; j++) |
272 | for (i = 0; i < conn->screenbuffer.size_x; i++) { |
271 | for (i = 0; i < conn->screenbuffer.size_x; i++) { |
273 | field = get_field_at(&(conn->screenbuffer),i, j); |
272 | field = get_field_at(&(conn->screenbuffer),i, j); |
274 | if (!style_same(*style, field->style)) |
273 | if (!style_same(*style, field->style)) |
275 | set_style(&field->style); |
274 | set_style(&field->style); |
276 | style = &field->style; |
275 | style = &field->style; |
277 | if ((field->character == ' ') && (style_same(field->style, conn->screenbuffer.style))) |
276 | if ((field->character == ' ') && (style_same(field->style, conn->screenbuffer.style))) |
278 | continue; |
277 | continue; |
279 | 278 | ||
280 | prtchr(field->character, j, i); |
279 | prtchr(field->character, j, i); |
281 | } |
280 | } |
282 | } |
281 | } |
283 | 282 | ||
284 | curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x); |
283 | curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x); |
285 | curs_visibility(conn->screenbuffer.is_cursor_visible); |
284 | curs_visibility(conn->screenbuffer.is_cursor_visible); |
286 | 285 | ||
287 | async_serialize_end(); |
286 | async_serialize_end(); |
288 | } |
287 | } |
289 | 288 | ||
290 | /** Handler for keyboard */ |
289 | /** Handler for keyboard */ |
291 | static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall) |
290 | static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall) |
292 | { |
291 | { |
293 | ipc_callid_t callid; |
292 | ipc_callid_t callid; |
294 | ipc_call_t call; |
293 | ipc_call_t call; |
295 | int retval; |
294 | int retval; |
296 | int c; |
295 | int c; |
297 | connection_t *conn; |
296 | connection_t *conn; |
298 | int newcon; |
297 | int newcon; |
299 | 298 | ||
300 | /* Ignore parameters, the connection is alread opened */ |
299 | /* Ignore parameters, the connection is alread opened */ |
301 | while (1) { |
300 | while (1) { |
302 | callid = async_get_call(&call); |
301 | callid = async_get_call(&call); |
303 | switch (IPC_GET_METHOD(call)) { |
302 | switch (IPC_GET_METHOD(call)) { |
304 | case IPC_M_PHONE_HUNGUP: |
303 | case IPC_M_PHONE_HUNGUP: |
305 | /* TODO: Handle hangup */ |
304 | /* TODO: Handle hangup */ |
306 | return; |
305 | return; |
307 | case KBD_MS_LEFT: |
306 | case KBD_MS_LEFT: |
308 | newcon = gcons_mouse_btn(IPC_GET_ARG1(call)); |
307 | newcon = gcons_mouse_btn(IPC_GET_ARG1(call)); |
309 | if (newcon != -1) |
308 | if (newcon != -1) |
310 | change_console(newcon); |
309 | change_console(newcon); |
311 | retval = 0; |
310 | retval = 0; |
312 | break; |
311 | break; |
313 | case KBD_MS_MOVE: |
312 | case KBD_MS_MOVE: |
314 | gcons_mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); |
313 | gcons_mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); |
315 | retval = 0; |
314 | retval = 0; |
316 | break; |
315 | break; |
317 | case KBD_PUSHCHAR: |
316 | case KBD_PUSHCHAR: |
318 | /* got key from keyboard driver */ |
317 | /* got key from keyboard driver */ |
319 | 318 | ||
320 | retval = 0; |
319 | retval = 0; |
321 | c = IPC_GET_ARG1(call); |
320 | c = IPC_GET_ARG1(call); |
322 | /* switch to another virtual console */ |
321 | /* switch to another virtual console */ |
323 | 322 | ||
324 | conn = &connections[active_console]; |
323 | conn = &connections[active_console]; |
325 | // if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) { |
324 | // if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) { |
326 | if ((c >= 0x101) && (c < 0x101 + CONSOLE_COUNT)) { |
325 | if ((c >= 0x101) && (c < 0x101 + CONSOLE_COUNT)) { |
327 | if (c == 0x112) |
326 | if (c == 0x112) |
328 | change_console(KERNEL_CONSOLE); |
327 | change_console(KERNEL_CONSOLE); |
329 | else |
328 | else |
330 | change_console(c - 0x101); |
329 | change_console(c - 0x101); |
331 | break; |
330 | break; |
332 | } |
331 | } |
333 | 332 | ||
334 | /* if client is awaiting key, send it */ |
333 | /* if client is awaiting key, send it */ |
335 | if (conn->keyrequest_counter > 0) { |
334 | if (conn->keyrequest_counter > 0) { |
336 | conn->keyrequest_counter--; |
335 | conn->keyrequest_counter--; |
337 | ipc_answer_fast(fifo_pop(conn->keyrequests), 0, c, 0); |
336 | ipc_answer_fast(fifo_pop(conn->keyrequests), 0, c, 0); |
338 | break; |
337 | break; |
339 | } |
338 | } |
340 | 339 | ||
341 | keybuffer_push(&conn->keybuffer, c); |
340 | keybuffer_push(&conn->keybuffer, c); |
342 | retval = 0; |
341 | retval = 0; |
343 | 342 | ||
344 | break; |
343 | break; |
345 | default: |
344 | default: |
346 | retval = ENOENT; |
345 | retval = ENOENT; |
347 | } |
346 | } |
348 | ipc_answer_fast(callid, retval, 0, 0); |
347 | ipc_answer_fast(callid, retval, 0, 0); |
349 | } |
348 | } |
350 | } |
349 | } |
351 | 350 | ||
352 | /** Default thread for new connections */ |
351 | /** Default thread for new connections */ |
353 | static void client_connection(ipc_callid_t iid, ipc_call_t *icall) |
352 | static void client_connection(ipc_callid_t iid, ipc_call_t *icall) |
354 | { |
353 | { |
355 | ipc_callid_t callid; |
354 | ipc_callid_t callid; |
356 | ipc_call_t call; |
355 | ipc_call_t call; |
357 | int consnum; |
356 | int consnum; |
358 | ipcarg_t arg1, arg2; |
357 | ipcarg_t arg1, arg2; |
359 | connection_t *conn; |
358 | connection_t *conn; |
360 | 359 | ||
361 | if ((consnum = find_free_connection()) == -1) { |
360 | if ((consnum = find_free_connection()) == -1) { |
362 | ipc_answer_fast(iid,ELIMIT,0,0); |
361 | ipc_answer_fast(iid,ELIMIT,0,0); |
363 | return; |
362 | return; |
364 | } |
363 | } |
365 | conn = &connections[consnum]; |
364 | conn = &connections[consnum]; |
366 | conn->used = 1; |
365 | conn->used = 1; |
367 | 366 | ||
368 | async_serialize_start(); |
367 | async_serialize_start(); |
369 | gcons_notify_connect(consnum); |
368 | gcons_notify_connect(consnum); |
370 | conn->client_phone = IPC_GET_ARG3(call); |
369 | conn->client_phone = IPC_GET_ARG3(call); |
371 | screenbuffer_clear(&conn->screenbuffer); |
370 | screenbuffer_clear(&conn->screenbuffer); |
372 | 371 | ||
373 | /* Accept the connection */ |
372 | /* Accept the connection */ |
374 | ipc_answer_fast(iid,0,0,0); |
373 | ipc_answer_fast(iid,0,0,0); |
375 | 374 | ||
376 | while (1) { |
375 | while (1) { |
377 | async_serialize_end(); |
376 | async_serialize_end(); |
378 | callid = async_get_call(&call); |
377 | callid = async_get_call(&call); |
379 | async_serialize_start(); |
378 | async_serialize_start(); |
380 | 379 | ||
381 | arg1 = arg2 = 0; |
380 | arg1 = arg2 = 0; |
382 | switch (IPC_GET_METHOD(call)) { |
381 | switch (IPC_GET_METHOD(call)) { |
383 | case IPC_M_PHONE_HUNGUP: |
382 | case IPC_M_PHONE_HUNGUP: |
384 | gcons_notify_disconnect(consnum); |
383 | gcons_notify_disconnect(consnum); |
385 | 384 | ||
386 | /* Answer all pending requests */ |
385 | /* Answer all pending requests */ |
387 | while (conn->keyrequest_counter > 0) { |
386 | while (conn->keyrequest_counter > 0) { |
388 | conn->keyrequest_counter--; |
387 | conn->keyrequest_counter--; |
389 | ipc_answer_fast(fifo_pop(conn->keyrequests), ENOENT, 0, 0); |
388 | ipc_answer_fast(fifo_pop(conn->keyrequests), ENOENT, 0, 0); |
390 | break; |
389 | break; |
391 | } |
390 | } |
392 | conn->used = 0; |
391 | conn->used = 0; |
393 | return; |
392 | return; |
394 | case CONSOLE_PUTCHAR: |
393 | case CONSOLE_PUTCHAR: |
395 | write_char(consnum, IPC_GET_ARG1(call)); |
394 | write_char(consnum, IPC_GET_ARG1(call)); |
396 | gcons_notify_char(consnum); |
395 | gcons_notify_char(consnum); |
397 | break; |
396 | break; |
398 | case CONSOLE_CLEAR: |
397 | case CONSOLE_CLEAR: |
399 | /* Send message to fb */ |
398 | /* Send message to fb */ |
400 | if (consnum == active_console) { |
399 | if (consnum == active_console) { |
401 | async_msg(fb_info.phone, FB_CLEAR, 0); |
400 | async_msg(fb_info.phone, FB_CLEAR, 0); |
402 | } |
401 | } |
403 | 402 | ||
404 | screenbuffer_clear(&conn->screenbuffer); |
403 | screenbuffer_clear(&conn->screenbuffer); |
405 | 404 | ||
406 | break; |
405 | break; |
407 | case CONSOLE_GOTO: |
406 | case CONSOLE_GOTO: |
408 | 407 | ||
409 | screenbuffer_goto(&conn->screenbuffer, IPC_GET_ARG2(call), IPC_GET_ARG1(call)); |
408 | screenbuffer_goto(&conn->screenbuffer, IPC_GET_ARG2(call), IPC_GET_ARG1(call)); |
410 | if (consnum == active_console) |
409 | if (consnum == active_console) |
411 | curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call)); |
410 | curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call)); |
412 | 411 | ||
413 | break; |
412 | break; |
414 | 413 | ||
415 | case CONSOLE_GETSIZE: |
414 | case CONSOLE_GETSIZE: |
416 | arg1 = fb_info.rows; |
415 | arg1 = fb_info.rows; |
417 | arg2 = fb_info.cols; |
416 | arg2 = fb_info.cols; |
418 | break; |
417 | break; |
419 | case CONSOLE_FLUSH: |
418 | case CONSOLE_FLUSH: |
420 | if (consnum == active_console) |
419 | if (consnum == active_console) |
421 | async_req_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL); |
420 | async_req_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL); |
422 | break; |
421 | break; |
423 | case CONSOLE_SET_STYLE: |
422 | case CONSOLE_SET_STYLE: |
424 | 423 | ||
425 | arg1 = IPC_GET_ARG1(call); |
424 | arg1 = IPC_GET_ARG1(call); |
426 | arg2 = IPC_GET_ARG2(call); |
425 | arg2 = IPC_GET_ARG2(call); |
427 | screenbuffer_set_style(&conn->screenbuffer,arg1, arg2); |
426 | screenbuffer_set_style(&conn->screenbuffer,arg1, arg2); |
428 | if (consnum == active_console) |
427 | if (consnum == active_console) |
429 | set_style_col(arg1, arg2); |
428 | set_style_col(arg1, arg2); |
430 | 429 | ||
431 | break; |
430 | break; |
432 | case CONSOLE_CURSOR_VISIBILITY: |
431 | case CONSOLE_CURSOR_VISIBILITY: |
433 | arg1 = IPC_GET_ARG1(call); |
432 | arg1 = IPC_GET_ARG1(call); |
434 | conn->screenbuffer.is_cursor_visible = arg1; |
433 | conn->screenbuffer.is_cursor_visible = arg1; |
435 | if (consnum == active_console) |
434 | if (consnum == active_console) |
436 | curs_visibility(arg1); |
435 | curs_visibility(arg1); |
437 | break; |
436 | break; |
438 | case CONSOLE_GETCHAR: |
437 | case CONSOLE_GETCHAR: |
439 | if (keybuffer_empty(&conn->keybuffer)) { |
438 | if (keybuffer_empty(&conn->keybuffer)) { |
440 | /* buffer is empty -> store request */ |
439 | /* buffer is empty -> store request */ |
441 | if (conn->keyrequest_counter < MAX_KEYREQUESTS_BUFFERED) { |
440 | if (conn->keyrequest_counter < MAX_KEYREQUESTS_BUFFERED) { |
442 | fifo_push(conn->keyrequests, callid); |
441 | fifo_push(conn->keyrequests, callid); |
443 | conn->keyrequest_counter++; |
442 | conn->keyrequest_counter++; |
444 | } else { |
443 | } else { |
445 | /* no key available and too many requests => fail */ |
444 | /* no key available and too many requests => fail */ |
446 | ipc_answer_fast(callid, ELIMIT, 0, 0); |
445 | ipc_answer_fast(callid, ELIMIT, 0, 0); |
447 | } |
446 | } |
448 | continue; |
447 | continue; |
449 | }; |
448 | }; |
450 | keybuffer_pop(&conn->keybuffer, (int *)&arg1); |
449 | keybuffer_pop(&conn->keybuffer, (int *)&arg1); |
451 | 450 | ||
452 | break; |
451 | break; |
453 | } |
452 | } |
454 | ipc_answer_fast(callid, 0, arg1, arg2); |
453 | ipc_answer_fast(callid, 0, arg1, arg2); |
455 | } |
454 | } |
456 | } |
455 | } |
457 | 456 | ||
458 | int main(int argc, char *argv[]) |
457 | int main(int argc, char *argv[]) |
459 | { |
458 | { |
460 | ipcarg_t phonehash; |
459 | ipcarg_t phonehash; |
461 | int kbd_phone; |
460 | int kbd_phone; |
462 | int i; |
461 | int i; |
463 | 462 | ||
464 | async_set_client_connection(client_connection); |
463 | async_set_client_connection(client_connection); |
465 | 464 | ||
466 | /* Connect to keyboard driver */ |
465 | /* Connect to keyboard driver */ |
467 | 466 | ||
468 | while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) { |
467 | while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) { |
469 | usleep(10000); |
468 | usleep(10000); |
470 | }; |
469 | }; |
471 | 470 | ||
472 | if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0) { |
471 | if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0) { |
473 | return -1; |
472 | return -1; |
474 | }; |
473 | }; |
475 | async_new_connection(phonehash, 0, NULL, keyboard_events); |
474 | async_new_connection(phonehash, 0, NULL, keyboard_events); |
476 | 475 | ||
477 | /* Connect to framebuffer driver */ |
476 | /* Connect to framebuffer driver */ |
478 | 477 | ||
479 | while ((fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0)) < 0) { |
478 | while ((fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0)) < 0) { |
480 | usleep(10000); |
479 | usleep(10000); |
481 | } |
480 | } |
482 | 481 | ||
483 | /* Save old kernel screen */ |
482 | /* Save old kernel screen */ |
484 | kernel_pixmap = switch_screens(-1); |
483 | kernel_pixmap = switch_screens(-1); |
485 | 484 | ||
486 | /* Initialize gcons */ |
485 | /* Initialize gcons */ |
487 | gcons_init(fb_info.phone); |
486 | gcons_init(fb_info.phone); |
488 | /* Synchronize, the gcons can have something in queue */ |
487 | /* Synchronize, the gcons can have something in queue */ |
489 | async_req(fb_info.phone, FB_FLUSH, 0, NULL); |
488 | async_req(fb_info.phone, FB_FLUSH, 0, NULL); |
490 | /* Enable double buffering */ |
489 | /* Enable double buffering */ |
491 | async_msg_2(fb_info.phone, FB_VIEWPORT_DB, (sysarg_t)-1, 1); |
490 | async_msg_2(fb_info.phone, FB_VIEWPORT_DB, (sysarg_t)-1, 1); |
492 | 491 | ||
493 | async_req_2(fb_info.phone, FB_GET_CSIZE, 0, 0, &(fb_info.rows), &(fb_info.cols)); |
492 | async_req_2(fb_info.phone, FB_GET_CSIZE, 0, 0, &(fb_info.rows), &(fb_info.cols)); |
494 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND); |
493 | set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND); |
495 | clrscr(); |
494 | clrscr(); |
496 | 495 | ||
497 | /* Init virtual consoles */ |
496 | /* Init virtual consoles */ |
498 | for (i = 0; i < CONSOLE_COUNT; i++) { |
497 | for (i = 0; i < CONSOLE_COUNT; i++) { |
499 | connections[i].used = 0; |
498 | connections[i].used = 0; |
500 | keybuffer_init(&(connections[i].keybuffer)); |
499 | keybuffer_init(&(connections[i].keybuffer)); |
501 | 500 | ||
502 | connections[i].keyrequests.head = connections[i].keyrequests.tail = 0; |
501 | connections[i].keyrequests.head = connections[i].keyrequests.tail = 0; |
503 | connections[i].keyrequests.items = MAX_KEYREQUESTS_BUFFERED; |
502 | connections[i].keyrequests.items = MAX_KEYREQUESTS_BUFFERED; |
504 | connections[i].keyrequest_counter = 0; |
503 | connections[i].keyrequest_counter = 0; |
505 | 504 | ||
506 | if (screenbuffer_init(&(connections[i].screenbuffer), fb_info.cols, fb_info.rows ) == NULL) { |
505 | if (screenbuffer_init(&(connections[i].screenbuffer), fb_info.cols, fb_info.rows ) == NULL) { |
507 | /*FIXME: handle error */ |
506 | /*FIXME: handle error */ |
508 | return -1; |
507 | return -1; |
509 | } |
508 | } |
510 | } |
509 | } |
511 | connections[KERNEL_CONSOLE].used = 1; |
510 | connections[KERNEL_CONSOLE].used = 1; |
512 | 511 | ||
513 | if ((interbuffer = mmap(NULL, sizeof(keyfield_t) * fb_info.cols * fb_info.rows , PROTO_READ|PROTO_WRITE, MAP_ANONYMOUS|MAP_PRIVATE, 0 ,0 )) != NULL) { |
512 | if ((interbuffer = mmap(NULL, sizeof(keyfield_t) * fb_info.cols * fb_info.rows , PROTO_READ|PROTO_WRITE, MAP_ANONYMOUS|MAP_PRIVATE, 0 ,0 )) != NULL) { |
514 | if (async_req_3(fb_info.phone, IPC_M_AS_AREA_SEND, (ipcarg_t)interbuffer, 0, AS_AREA_READ, NULL, NULL, NULL) != 0) { |
513 | if (async_req_3(fb_info.phone, IPC_M_AS_AREA_SEND, (ipcarg_t)interbuffer, 0, AS_AREA_READ, NULL, NULL, NULL) != 0) { |
515 | munmap(interbuffer, sizeof(keyfield_t) * fb_info.cols * fb_info.rows); |
514 | munmap(interbuffer, sizeof(keyfield_t) * fb_info.cols * fb_info.rows); |
516 | interbuffer = NULL; |
515 | interbuffer = NULL; |
517 | } |
516 | } |
518 | } |
517 | } |
519 | 518 | ||
520 | curs_goto(0,0); |
519 | curs_goto(0,0); |
521 | curs_visibility(connections[active_console].screenbuffer.is_cursor_visible); |
520 | curs_visibility(connections[active_console].screenbuffer.is_cursor_visible); |
522 | 521 | ||
523 | /* Register at NS */ |
522 | /* Register at NS */ |
524 | if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) { |
523 | if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) { |
525 | return -1; |
524 | return -1; |
526 | }; |
525 | }; |
527 | 526 | ||
528 | async_manager(); |
527 | async_manager(); |
529 | 528 | ||
530 | return 0; |
529 | return 0; |
531 | } |
530 | } |
532 | 531 | ||
533 | /** @} |
532 | /** @} |
534 | */ |
533 | */ |
535 | - | ||
536 | 534 |