Subversion Repositories HelenOS-historic

Rev

Rev 1465 | Rev 1476 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1445 cejka 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
 
30
#include <kbd.h>
1451 cejka 31
#include <fb.h>
1445 cejka 32
#include <ipc/ipc.h>
1451 cejka 33
#include <ipc/fb.h>
1445 cejka 34
#include <ipc/services.h>
35
#include <errno.h>
1451 cejka 36
#include <key_buffer.h>
37
#include <console.h>
1453 palkovsky 38
#include <unistd.h>
39
#include <async.h>
1445 cejka 40
 
1466 palkovsky 41
static void sysput(char c)
42
{
43
    __SYSCALL3(SYS_IO, 1, &c, 1);
44
 
45
}
1451 cejka 46
//#define CONSOLE_COUNT VFB_CONNECTIONS
47
#define CONSOLE_COUNT 6
48
 
1445 cejka 49
#define NAME "CONSOLE"
50
 
1453 palkovsky 51
int active_client = 0;
52
 
53
 
1451 cejka 54
typedef struct {
55
    keybuffer_t keybuffer;
56
    int client_phone;
57
    int vfb_number; /* Not used */
58
    int vfb_phone;
59
    int used;
60
} connection_t;
61
 
62
connection_t connections[CONSOLE_COUNT];
63
 
64
static int find_free_connection()
65
{
66
    int i = 0;
67
 
68
    while (i < CONSOLE_COUNT) {
69
        if (connections[i].used == 0)
70
            return i;
71
        ++i;
72
    }
73
    return CONSOLE_COUNT;
74
}
75
 
76
 
77
static int find_connection(int client_phone)
78
{
79
    int i = 0;
80
 
81
    while (i < CONSOLE_COUNT) {
82
        if (connections[i].client_phone == client_phone)
83
            return i;
84
        ++i;
85
    }
86
    return  CONSOLE_COUNT;
87
}
88
 
1453 palkovsky 89
/* Handler for keyboard */
90
static void keyboard_events(ipc_callid_t iid, ipc_call_t *icall)
1445 cejka 91
{
1453 palkovsky 92
    ipc_callid_t callid;
1445 cejka 93
    ipc_call_t call;
1453 palkovsky 94
    int retval;
95
    int i;
96
 
97
    /* Ignore parameters, the connection is alread opened */
98
    while (1) {
99
        callid = async_get_call(&call);
100
        switch (IPC_GET_METHOD(call)) {
101
        case IPC_M_PHONE_HUNGUP:
102
            ipc_answer_fast(callid,0,0,0);
103
            /* TODO: Handle hangup */
104
            return;
105
        case KBD_PUSHCHAR:
106
            /* got key from keyboard driver */
1465 cejka 107
 
1453 palkovsky 108
            /* find active console */
1465 cejka 109
 
1453 palkovsky 110
            /* if client is awaiting key, send it */
1465 cejka 111
 
1453 palkovsky 112
            /*FIXME: else store key to its buffer */
113
            retval = 0;
114
            i = IPC_GET_ARG1(call) & 0xff;
115
            /* switch to another virtual console */
116
            if ((i >= KBD_KEY_F1) && (i < KBD_KEY_F1 + CONSOLE_COUNT)) {
117
                active_client = i - KBD_KEY_F1;
118
                break;
119
            }
120
            keybuffer_push(&(connections[active_client].keybuffer), i);
121
            /* Send it to first FB, DEBUG */
1459 palkovsky 122
//          ipc_call_async_2(connections[0].vfb_phone, FB_PUTCHAR, 0, IPC_GET_ARG1(call),NULL,NULL);
1465 cejka 123
//          ipc_call_sync_2(connections[0].vfb_phone, FB_PUTCHAR, 0, IPC_GET_ARG1(call),NULL,NULL);
1459 palkovsky 124
 
1453 palkovsky 125
            break;
126
        default:
1459 palkovsky 127
            retval = ENOENT;
1453 palkovsky 128
        }      
1459 palkovsky 129
        ipc_answer_fast(callid, retval, 0, 0);
1453 palkovsky 130
    }
131
}
132
 
133
/** Default thread for new connections */
134
void client_connection(ipc_callid_t iid, ipc_call_t *icall)
135
{
1445 cejka 136
    ipc_callid_t callid;
1453 palkovsky 137
    ipc_call_t call;
138
    int consnum;
139
    ipcarg_t arg1;
140
 
141
    if ((consnum = find_free_connection()) == CONSOLE_COUNT) {
142
        ipc_answer_fast(iid,ELIMIT,0,0);
143
        return;
144
    }
145
    connections[consnum].used = 1;
146
    connections[consnum].client_phone = IPC_GET_ARG3(call);
147
 
148
    /* Accept the connection */
149
    ipc_answer_fast(iid,0,0,0);
150
 
151
    while (1) {
152
        callid = async_get_call(&call);
153
        switch (IPC_GET_METHOD(call)) {
154
        case IPC_M_PHONE_HUNGUP:
155
            /* TODO */
156
            ipc_answer_fast(callid, 0,0,0);
157
            return;
158
        case CONSOLE_PUTCHAR:
1465 cejka 159
            /* Send message to fb */
1453 palkovsky 160
            ipc_call_async_2(connections[consnum].vfb_phone, FB_PUTCHAR, IPC_GET_ARG1(call), IPC_GET_ARG2(call), NULL, NULL);
161
            break;
162
        case CONSOLE_GETCHAR:
1465 cejka 163
            /* FIXME: Only temporary solution until request storage will be created  */
164
            while (!keybuffer_pop(&(connections[active_client].keybuffer), (char *)&arg1)) {
1453 palkovsky 165
                /* FIXME: buffer empty -> store request */
1466 palkovsky 166
                async_usleep(100000);
1453 palkovsky 167
            };
1465 cejka 168
 
1453 palkovsky 169
            break;
170
        }
1465 cejka 171
        ipc_answer_fast(callid, 0, arg1, 0);
1453 palkovsky 172
    }
173
}
174
 
175
int main(int argc, char *argv[])
176
{
177
    ipcarg_t phonehash;
1451 cejka 178
    int kbd_phone, fb_phone;
1445 cejka 179
    ipcarg_t retval, arg1 = 0xdead, arg2 = 0xbeef;
1451 cejka 180
    int i;
1445 cejka 181
 
182
    /* Connect to keyboard driver */
183
 
1451 cejka 184
    while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) {
1453 palkovsky 185
        usleep(10000);
1445 cejka 186
    };
187
 
1453 palkovsky 188
    if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonehash) != 0) {
1445 cejka 189
        return -1;
190
    };
1453 palkovsky 191
    async_new_connection(phonehash, 0, NULL, keyboard_events);
1445 cejka 192
 
193
    /* Connect to framebuffer driver */
194
 
1451 cejka 195
    for (i = 0; i < CONSOLE_COUNT; i++) {
196
        connections[i].used = 0;
197
        keybuffer_init(&(connections[i].keybuffer));
198
        /* TODO: init key_buffer */
199
        while ((connections[i].vfb_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0)) < 0) {
1465 cejka 200
            usleep(10000);
201
            //ipc_call_async_2(connections[i].vfb_phone, FB_PUTCHAR, 'a', 'b', NULL, (void *)NULL); 
1451 cejka 202
        }
203
    }
1445 cejka 204
 
1453 palkovsky 205
    if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonehash) != 0) {
1445 cejka 206
        return -1;
207
    };
208
 
1453 palkovsky 209
    async_manager();
1451 cejka 210
 
1445 cejka 211
    return 0;  
212
}