Subversion Repositories HelenOS

Rev

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