source: mainline/uspace/console/console.c@ 06e1e95

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 06e1e95 was 2def788, checked in by Jakub Jermar <jakub@…>, 19 years ago

Prototype for mmap() should be in mman.h.
Anyway, is there any common sense behind naming of mman.h and mman.c?

  • Property mode set to 100644
File size: 13.5 KB
RevLine 
[51c1b003]1/*
2 * Copyright (C) 2006 Josef Cejka
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 */
[ce5bcb4]28
[231a60a]29/** @addtogroup console
[ce5bcb4]30 * @{
31 */
32/** @file
33 */
34
[085bd54]35/* TODO: remove */
36#include <stdio.h>
[51c1b003]37
[79460ae]38#include <fb.h>
[51c1b003]39#include <ipc/ipc.h>
[15039b67]40#include <keys.h>
[79460ae]41#include <ipc/fb.h>
[51c1b003]42#include <ipc/services.h>
43#include <errno.h>
[79460ae]44#include <key_buffer.h>
45#include <console.h>
[eaf34f7]46#include <unistd.h>
47#include <async.h>
[cf28036c]48#include <libadt/fifo.h>
[3993b3d]49#include <screenbuffer.h>
[2def788]50#include <sys/mman.h>
[79460ae]51
[e1c4849]52#include "gcons.h"
53
[cf28036c]54#define MAX_KEYREQUESTS_BUFFERED 32
[51c1b003]55
56#define NAME "CONSOLE"
57
[e87e18f]58/** Index of currently used virtual console.
59 */
[390a678]60int active_console = 0;
[eaf34f7]61
[e87e18f]62/** Information about framebuffer
63 */
[3993b3d]64struct {
65 int phone; /**< Framebuffer phone */
[bb51e9a8]66 ipcarg_t rows; /**< Framebuffer rows */
67 ipcarg_t cols; /**< Framebuffer columns */
[3993b3d]68} fb_info;
69
[e87e18f]70
[79460ae]71typedef struct {
[e87e18f]72 keybuffer_t keybuffer; /**< Buffer for incoming keys. */
73 FIFO_CREATE_STATIC(keyrequests, ipc_callid_t , MAX_KEYREQUESTS_BUFFERED); /**< Buffer for unsatisfied request for keys. */
74 int keyrequest_counter; /**< Number of requests in buffer. */
75 int client_phone; /**< Phone to connected client. */
76 int used; /**< 1 if this virtual console is connected to some client.*/
77 screenbuffer_t screenbuffer; /**< Screenbuffer for saving screen contents and related settings. */
[79460ae]78} connection_t;
79
[429acb9]80static connection_t connections[CONSOLE_COUNT]; /**< Array of data for virtual consoles */
81static keyfield_t *interbuffer = NULL; /**< Pointer to memory shared with framebufer used for faster virt. console switching */
82
83static int kernel_pixmap = -1; /**< Number of fb pixmap, where kernel console is stored */
[bb51e9a8]84
85
[e87e18f]86/** Find unused virtual console.
87 *
88 */
[d32af35]89static int find_free_connection(void)
[79460ae]90{
91 int i = 0;
92
[d32af35]93 for (i=0; i < CONSOLE_COUNT; i++) {
94 if (!connections[i].used)
[79460ae]95 return i;
96 }
[d32af35]97 return -1;
[79460ae]98}
99
[429acb9]100static void clrscr(void)
101{
[085bd54]102 async_msg(fb_info.phone, FB_CLEAR, 0);
[429acb9]103}
104
105static void curs_visibility(int v)
106{
[085bd54]107 async_msg(fb_info.phone, FB_CURSOR_VISIBILITY, v);
[429acb9]108}
109
110static void curs_goto(int row, int col)
111{
[085bd54]112 async_msg_2(fb_info.phone, FB_CURSOR_GOTO, row, col);
[429acb9]113
114}
115
116static void set_style(style_t *style)
117{
[085bd54]118 async_msg_2(fb_info.phone, FB_SET_STYLE, style->fg_color, style->bg_color);
[429acb9]119}
120
121static void set_style_col(int fgcolor, int bgcolor)
122{
[085bd54]123 async_msg_2(fb_info.phone, FB_SET_STYLE, fgcolor, bgcolor);
[429acb9]124}
125
126static void prtchr(char c, int row, int col)
127{
[085bd54]128 async_msg_3(fb_info.phone, FB_PUTCHAR, c, row, col);
[429acb9]129
130}
131
[10569b1]132/** Check key and process special keys.
133 *
134 * */
135static void write_char(int console, char key)
136{
137 screenbuffer_t *scr = &(connections[console].screenbuffer);
138
139 switch (key) {
140 case '\n':
141 scr->position_y += 1;
142 scr->position_x = 0;
143 break;
144 case '\r':
145 break;
146 case '\t':
147 scr->position_x += 8;
148 scr->position_x -= scr->position_x % 8;
149 break;
150 case '\b':
151 if (scr->position_x == 0)
152 break;
153
154 scr->position_x--;
155
[429acb9]156 if (console == active_console)
157 prtchr(' ', scr->position_y, scr->position_x);
[10569b1]158
159 screenbuffer_putchar(scr, ' ');
160
161 break;
162 default:
[429acb9]163 if (console == active_console)
164 prtchr(key, scr->position_y, scr->position_x);
[10569b1]165
166 screenbuffer_putchar(scr, key);
167 scr->position_x++;
168 }
169
170 scr->position_y += (scr->position_x >= scr->size_x);
171
172 if (scr->position_y >= scr->size_y) {
173 scr->position_y = scr->size_y - 1;
[c891ed39]174 screenbuffer_clear_line(scr, scr->top_line);
175 scr->top_line = (scr->top_line+1) % scr->size_y;
[b1f51f0]176 if (console == active_console)
[085bd54]177 async_msg(fb_info.phone, FB_SCROLL, 1);
[10569b1]178 }
179
180 scr->position_x = scr->position_x % scr->size_x;
[bd929cfb]181
[429acb9]182 if (console == active_console)
183 curs_goto(scr->position_y, scr->position_x);
[10569b1]184
185}
186
[429acb9]187/** Save current screen to pixmap, draw old pixmap
188 *
189 * @param oldpixmap Old pixmap
190 * @return ID of pixmap of current screen
191 */
192static int switch_screens(int oldpixmap)
193{
194 int newpmap;
195
196 /* Save screen */
[085bd54]197 newpmap = async_req(fb_info.phone, FB_VP2PIXMAP, 0, NULL);
[429acb9]198 if (newpmap < 0)
199 return -1;
200
201 if (oldpixmap != -1) {
202 /* Show old screen */
[085bd54]203 async_msg_2(fb_info.phone, FB_VP_DRAW_PIXMAP, 0, oldpixmap);
[429acb9]204 /* Drop old pixmap */
[085bd54]205 async_msg(fb_info.phone, FB_DROP_PIXMAP, oldpixmap);
[429acb9]206 }
207
208 return newpmap;
209}
210
211/** Switch to new console */
212static void change_console(int newcons)
213{
214 connection_t *conn;
215 static int console_pixmap = -1;
[bd02038]216 int i, j, rc;
[6d5005c]217 keyfield_t *field;
218 style_t *style;
[429acb9]219
220 if (newcons == active_console)
221 return;
222
[a7d2d78]223 if (newcons == KERNEL_CONSOLE) {
224 if (active_console == KERNEL_CONSOLE)
[429acb9]225 return;
[a7d2d78]226 active_console = KERNEL_CONSOLE;
[429acb9]227 curs_visibility(0);
228
[1f83244]229 async_serialize_start();
[429acb9]230 if (kernel_pixmap == -1) {
231 /* store/restore unsupported */
232 set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
233 clrscr();
234 } else {
235 gcons_in_kernel();
236 console_pixmap = switch_screens(kernel_pixmap);
237 kernel_pixmap = -1;
238 }
[1f83244]239 async_serialize_end();
[429acb9]240
241 __SYSCALL0(SYS_DEBUG_ENABLE_CONSOLE);
242 return;
243 }
244
[1f83244]245 async_serialize_start();
246
[429acb9]247 if (console_pixmap != -1) {
248 kernel_pixmap = switch_screens(console_pixmap);
249 console_pixmap = -1;
250 }
251 active_console = newcons;
252 gcons_change_console(newcons);
253 conn = &connections[active_console];
254
[7bc1e74]255 set_style(&conn->screenbuffer.style);
[6d5005c]256 curs_visibility(0);
[429acb9]257 if (interbuffer) {
258 for (i = 0; i < conn->screenbuffer.size_x; i++)
259 for (j = 0; j < conn->screenbuffer.size_y; j++)
260 interbuffer[i + j*conn->screenbuffer.size_x] = *get_field_at(&(conn->screenbuffer),i, j);
[7bc1e74]261 /* This call can preempt, but we are already at the end */
[bd02038]262 rc = async_req_2(fb_info.phone, FB_DRAW_TEXT_DATA, 0, 0, NULL, NULL);
[6d5005c]263 };
264
[c891ed39]265 if ((!interbuffer) || (rc != 0)) {
[6d5005c]266 set_style(&conn->screenbuffer.style);
[429acb9]267 clrscr();
[6d5005c]268 style = &conn->screenbuffer.style;
269
270 for (j = 0; j < conn->screenbuffer.size_y; j++)
271 for (i = 0; i < conn->screenbuffer.size_x; i++) {
272 field = get_field_at(&(conn->screenbuffer),i, j);
273 if (!style_same(*style, field->style))
274 set_style(&field->style);
275 style = &field->style;
276 if ((field->character == ' ') && (style_same(field->style, conn->screenbuffer.style)))
277 continue;
278
279 prtchr(field->character, j, i);
[429acb9]280 }
281 }
[6d5005c]282
[7284260]283 curs_goto(conn->screenbuffer.position_y, conn->screenbuffer.position_x);
[6d5005c]284 curs_visibility(conn->screenbuffer.is_cursor_visible);
[1f83244]285
286 async_serialize_end();
[429acb9]287}
[10569b1]288
[e87e18f]289/** Handler for keyboard */
[eaf34f7]290static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall)
[51c1b003]291{
[eaf34f7]292 ipc_callid_t callid;
[51c1b003]293 ipc_call_t call;
[eaf34f7]294 int retval;
[dd641e3]295 int c;
[c1d2c9d]296 connection_t *conn;
[1f83244]297 int newcon;
[bb51e9a8]298
[eaf34f7]299 /* Ignore parameters, the connection is alread opened */
300 while (1) {
301 callid = async_get_call(&call);
302 switch (IPC_GET_METHOD(call)) {
303 case IPC_M_PHONE_HUNGUP:
304 /* TODO: Handle hangup */
305 return;
[1f83244]306 case KBD_MS_LEFT:
307 newcon = gcons_mouse_btn(IPC_GET_ARG1(call));
308 if (newcon != -1)
309 change_console(newcon);
[501a8ba]310 retval = 0;
[1f83244]311 break;
[830ac99]312 case KBD_MS_MOVE:
313 gcons_mouse_move(IPC_GET_ARG1(call), IPC_GET_ARG2(call));
[501a8ba]314 retval = 0;
[830ac99]315 break;
[eaf34f7]316 case KBD_PUSHCHAR:
317 /* got key from keyboard driver */
[b27a97bb]318
[eaf34f7]319 retval = 0;
[a805c24]320 c = IPC_GET_ARG1(call);
[eaf34f7]321 /* switch to another virtual console */
[cf28036c]322
[c1d2c9d]323 conn = &connections[active_console];
[da0c91e7]324// if ((c >= KBD_KEY_F1) && (c < KBD_KEY_F1 + CONSOLE_COUNT)) {
[dd641e3]325 if ((c >= 0x101) && (c < 0x101 + CONSOLE_COUNT)) {
326 if (c == 0x112)
[a7d2d78]327 change_console(KERNEL_CONSOLE);
[429acb9]328 else
[dd641e3]329 change_console(c - 0x101);
[eaf34f7]330 break;
331 }
[cf28036c]332
333 /* if client is awaiting key, send it */
[c1d2c9d]334 if (conn->keyrequest_counter > 0) {
335 conn->keyrequest_counter--;
336 ipc_answer_fast(fifo_pop(conn->keyrequests), 0, c, 0);
[cf28036c]337 break;
338 }
339
[c1d2c9d]340 keybuffer_push(&conn->keybuffer, c);
[501a8ba]341 retval = 0;
[ad123964]342
[eaf34f7]343 break;
344 default:
[1029d3d3]345 retval = ENOENT;
[085bd54]346 }
[1029d3d3]347 ipc_answer_fast(callid, retval, 0, 0);
[eaf34f7]348 }
349}
350
351/** Default thread for new connections */
[b1f51f0]352static void client_connection(ipc_callid_t iid, ipc_call_t *icall)
[eaf34f7]353{
[51c1b003]354 ipc_callid_t callid;
[eaf34f7]355 ipc_call_t call;
356 int consnum;
[3756912]357 ipcarg_t arg1, arg2;
[e9073f2]358 connection_t *conn;
[eaf34f7]359
[d32af35]360 if ((consnum = find_free_connection()) == -1) {
[eaf34f7]361 ipc_answer_fast(iid,ELIMIT,0,0);
362 return;
363 }
[e9073f2]364 conn = &connections[consnum];
[085bd54]365 conn->used = 1;
[a7d2d78]366
[085bd54]367 async_serialize_start();
[a7d2d78]368 gcons_notify_connect(consnum);
[e9073f2]369 conn->client_phone = IPC_GET_ARG3(call);
370 screenbuffer_clear(&conn->screenbuffer);
[10569b1]371
[eaf34f7]372 /* Accept the connection */
373 ipc_answer_fast(iid,0,0,0);
[085bd54]374
[eaf34f7]375 while (1) {
[085bd54]376 async_serialize_end();
[eaf34f7]377 callid = async_get_call(&call);
[085bd54]378 async_serialize_start();
379
[3756912]380 arg1 = arg2 = 0;
[eaf34f7]381 switch (IPC_GET_METHOD(call)) {
382 case IPC_M_PHONE_HUNGUP:
[e9073f2]383 gcons_notify_disconnect(consnum);
[085bd54]384
[e9073f2]385 /* Answer all pending requests */
386 while (conn->keyrequest_counter > 0) {
387 conn->keyrequest_counter--;
388 ipc_answer_fast(fifo_pop(conn->keyrequests), ENOENT, 0, 0);
389 break;
390 }
[0d11fc1c]391 conn->used = 0;
[eaf34f7]392 return;
393 case CONSOLE_PUTCHAR:
[10569b1]394 write_char(consnum, IPC_GET_ARG1(call));
[d6cc453]395 gcons_notify_char(consnum);
[ad123964]396 break;
397 case CONSOLE_CLEAR:
[3993b3d]398 /* Send message to fb */
399 if (consnum == active_console) {
[085bd54]400 async_msg(fb_info.phone, FB_CLEAR, 0);
[3993b3d]401 }
402
[e9073f2]403 screenbuffer_clear(&conn->screenbuffer);
[3993b3d]404
[eaf34f7]405 break;
[ad123964]406 case CONSOLE_GOTO:
[3993b3d]407
[e9073f2]408 screenbuffer_goto(&conn->screenbuffer, IPC_GET_ARG2(call), IPC_GET_ARG1(call));
[6118e5f6]409 if (consnum == active_console)
410 curs_goto(IPC_GET_ARG1(call),IPC_GET_ARG2(call));
[3993b3d]411
[ad123964]412 break;
[0c6984e]413
[3756912]414 case CONSOLE_GETSIZE:
[d6cc453]415 arg1 = fb_info.rows;
416 arg2 = fb_info.cols;
[3756912]417 break;
[0c6984e]418 case CONSOLE_FLUSH:
[a3d2939]419 if (consnum == active_console)
420 async_req_2(fb_info.phone, FB_FLUSH, 0, 0, NULL, NULL);
[a9bd960c]421 break;
422 case CONSOLE_SET_STYLE:
423
424 arg1 = IPC_GET_ARG1(call);
425 arg2 = IPC_GET_ARG2(call);
[e9073f2]426 screenbuffer_set_style(&conn->screenbuffer,arg1, arg2);
[a9bd960c]427 if (consnum == active_console)
[429acb9]428 set_style_col(arg1, arg2);
[a9bd960c]429
[0c6984e]430 break;
[a8b2b5b2]431 case CONSOLE_CURSOR_VISIBILITY:
432 arg1 = IPC_GET_ARG1(call);
[e9073f2]433 conn->screenbuffer.is_cursor_visible = arg1;
[a8b2b5b2]434 if (consnum == active_console)
435 curs_visibility(arg1);
436 break;
[eaf34f7]437 case CONSOLE_GETCHAR:
[e9073f2]438 if (keybuffer_empty(&conn->keybuffer)) {
[cf28036c]439 /* buffer is empty -> store request */
[e9073f2]440 if (conn->keyrequest_counter < MAX_KEYREQUESTS_BUFFERED) {
441 fifo_push(conn->keyrequests, callid);
442 conn->keyrequest_counter++;
[cf28036c]443 } else {
444 /* no key available and too many requests => fail */
445 ipc_answer_fast(callid, ELIMIT, 0, 0);
446 }
447 continue;
[eaf34f7]448 };
[e9073f2]449 keybuffer_pop(&conn->keybuffer, (int *)&arg1);
[b27a97bb]450
[eaf34f7]451 break;
452 }
[3756912]453 ipc_answer_fast(callid, 0, arg1, arg2);
[eaf34f7]454 }
455}
456
457int main(int argc, char *argv[])
458{
459 ipcarg_t phonehash;
[501a8ba]460 int kbd_phone;
[79460ae]461 int i;
[da0c91e7]462
463 async_set_client_connection(client_connection);
[51c1b003]464
465 /* Connect to keyboard driver */
466
[79460ae]467 while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) {
[eaf34f7]468 usleep(10000);
[51c1b003]469 };
470
[eaf34f7]471 if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0) {
[51c1b003]472 return -1;
473 };
[290c0db]474 async_new_connection(phonehash, 0, NULL, keyboard_events);
475
[51c1b003]476 /* Connect to framebuffer driver */
477
[3993b3d]478 while ((fb_info.phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0)) < 0) {
479 usleep(10000);
480 }
[429acb9]481
482 /* Save old kernel screen */
483 kernel_pixmap = switch_screens(-1);
[e1c4849]484
485 /* Initialize gcons */
486 gcons_init(fb_info.phone);
487 /* Synchronize, the gcons can have something in queue */
[085bd54]488 async_req(fb_info.phone, FB_FLUSH, 0, NULL);
[e92aabf]489 /* Enable double buffering */
490 async_msg_2(fb_info.phone, FB_VIEWPORT_DB, (sysarg_t)-1, 1);
[3993b3d]491
[d3f2cad]492 async_req_2(fb_info.phone, FB_GET_CSIZE, 0, 0, &(fb_info.rows), &(fb_info.cols));
[429acb9]493 set_style_col(DEFAULT_FOREGROUND, DEFAULT_BACKGROUND);
494 clrscr();
[3993b3d]495
496 /* Init virtual consoles */
[79460ae]497 for (i = 0; i < CONSOLE_COUNT; i++) {
498 connections[i].used = 0;
499 keybuffer_init(&(connections[i].keybuffer));
[cf28036c]500
501 connections[i].keyrequests.head = connections[i].keyrequests.tail = 0;
502 connections[i].keyrequests.items = MAX_KEYREQUESTS_BUFFERED;
503 connections[i].keyrequest_counter = 0;
[3993b3d]504
505 if (screenbuffer_init(&(connections[i].screenbuffer), fb_info.cols, fb_info.rows ) == NULL) {
506 /*FIXME: handle error */
507 return -1;
508 }
[79460ae]509 }
[d32af35]510 connections[KERNEL_CONSOLE].used = 1;
[51c1b003]511
[390a678]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) {
[d3f2cad]513 if (async_req_3(fb_info.phone, IPC_M_AS_AREA_SEND, (ipcarg_t)interbuffer, 0, AS_AREA_READ, NULL, NULL, NULL) != 0) {
[390a678]514 munmap(interbuffer, sizeof(keyfield_t) * fb_info.cols * fb_info.rows);
515 interbuffer = NULL;
516 }
517 }
[a805c24]518
[a8b2b5b2]519 curs_goto(0,0);
520 curs_visibility(connections[active_console].screenbuffer.is_cursor_visible);
[10569b1]521
[b1f51f0]522 /* Register at NS */
[eaf34f7]523 if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) {
[51c1b003]524 return -1;
525 };
526
[eaf34f7]527 async_manager();
[51c1b003]528
529 return 0;
530}
[ce5bcb4]531
532/** @}
533 */
Note: See TracBrowser for help on using the repository browser.