Subversion Repositories HelenOS

Rev

Rev 2618 | Rev 2621 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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