source: mainline/console/console.c@ e0bfcf8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e0bfcf8 was a3d2939, checked in by Ondrej Palkovsky <ondrap@…>, 20 years ago

Do somewhat intelligent mouse hiding.

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