Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/console/console.c

    r700af62 r228e490  
    317317static void change_console(console_t *cons)
    318318{
    319         if (cons == active_console) {
     319        if (cons == active_console)
    320320                return;
    321         }
    322321       
    323322        fb_pending_flush();
     
    459458                        if (IPC_GET_ARG1(call) == 1) {
    460459                                int newcon = gcons_mouse_btn((bool) IPC_GET_ARG2(call));
    461                                 if (newcon != -1) {
     460                                if (newcon != -1)
    462461                                        change_console(&consoles[newcon]);
    463                                 }
    464462                        }
    465463                        retval = 0;
     
    712710}
    713711
    714 static int connect_keyboard(char *path)
    715 {
    716         int fd = open(path, O_RDONLY);
    717         if (fd < 0) {
    718                 return fd;
    719         }
    720        
    721         int phone = fd_phone(fd);
    722         if (phone < 0) {
     712static bool console_init(char *input)
     713{
     714        /* Connect to input device */
     715        int input_fd = open(input, O_RDONLY);
     716        if (input_fd < 0) {
     717                printf(NAME ": Failed opening %s\n", input);
     718                return false;
     719        }
     720       
     721        kbd_phone = fd_phone(input_fd);
     722        if (kbd_phone < 0) {
    723723                printf(NAME ": Failed to connect to input device\n");
    724                 return phone;
     724                return false;
    725725        }
    726726       
    727727        /* NB: The callback connection is slotted for removal */
    728728        sysarg_t phonehash;
    729         int rc = async_req_3_5(phone, IPC_M_CONNECT_TO_ME, SERVICE_CONSOLE,
    730             0, 0, NULL, NULL, NULL, NULL, &phonehash);
    731         if (rc != EOK) {
     729        if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, 0, &phonehash) != 0) {
    732730                printf(NAME ": Failed to create callback from input device\n");
    733                 return rc;
     731                return false;
    734732        }
    735733       
    736734        async_new_connection(phonehash, 0, NULL, keyboard_events);
    737 
    738         printf(NAME ": we got a hit (new keyboard \"%s\").\n", path);
    739 
    740         return phone;
    741 }
    742 
    743 
    744 static int check_new_keyboards(void *arg)
    745 {
    746         char *class_name = (char *) arg;
    747 
    748         int index = 1;
    749 
    750         while (true) {
    751                 async_usleep(1 * 500 * 1000);
    752                 char *path;
    753                 int rc = asprintf(&path, "/dev/class/%s\\%d", class_name, index);
    754                 if (rc < 0) {
    755                         continue;
    756                 }
    757                 rc = 0;
    758                 rc = connect_keyboard(path);
    759                 if (rc > 0) {
    760                         /* We do not allow unplug. */
    761                         index++;
    762                 }
    763 
    764                 free(path);
    765         }
    766 
    767         return EOK;
    768 }
    769 
    770 
    771 /** Start a fibril monitoring hot-plugged keyboards.
    772  */
    773 static void check_new_keyboards_in_background()
    774 {
    775         fid_t fid = fibril_create(check_new_keyboards, (void *)"keyboard");
    776         if (!fid) {
    777                 printf(NAME ": failed to create hot-plug-watch fibril.\n");
    778                 return;
    779         }
    780         fibril_add_ready(fid);
    781 }
    782 
    783 static bool console_init(char *input)
    784 {
    785         /* Connect to input device */
    786         kbd_phone = connect_keyboard(input);
    787         if (kbd_phone < 0) {
    788                 return false;
    789         }
    790 
     735       
    791736        /* Connect to mouse device */
    792737        mouse_phone = -1;
     
    804749        }
    805750       
    806         sysarg_t phonehash;
    807751        if (ipc_connect_to_me(mouse_phone, SERVICE_CONSOLE, 0, 0, &phonehash) != 0) {
    808752                printf(NAME ": Failed to create callback from mouse device\n");
     
    897841        async_set_interrupt_received(interrupt_received);
    898842       
    899         /* Start fibril for checking on hot-plugged keyboards. */
    900         check_new_keyboards_in_background();
    901 
    902843        return true;
    903844}
     
    919860        if (!console_init(argv[1]))
    920861                return -1;
    921 
     862       
    922863        printf(NAME ": Accepting connections\n");
    923864        async_manager();
Note: See TracChangeset for help on using the changeset viewer.