]> git.proxmox.com Git - spiceterm.git/blob - spiceterm.c
implement mouse_report mode
[spiceterm.git] / spiceterm.c
1 /*
2
3 Copyright (C) 2013 Proxmox Server Solutions GmbH
4
5 Copyright: spiceterm is under GNU GPL, the GNU General Public License.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; version 2 dated June, 1991.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20
21 Author: Dietmar Maurer <dietmar@proxmox.com>
22
23 Note: most of the code here is copied from vncterm (which is
24 also written by me).
25
26 */
27
28 #define _GNU_SOURCE
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <sys/types.h>
34 #include <sys/socket.h>
35 #include <arpa/inet.h>
36 #include <netdb.h>
37 #include <pty.h> /* for openpty and forkpty */
38 #include <string.h>
39 #include <errno.h>
40 #include <sys/ioctl.h>
41 #include <sys/wait.h>
42 #include <signal.h>
43 #include <locale.h>
44
45 #include "spiceterm.h"
46
47 #include <glib.h>
48 #include <spice.h>
49 #include <spice/enums.h>
50 #include <spice/macros.h>
51 #include <spice/qxl_dev.h>
52
53 #include <gdk/gdkkeysyms.h>
54
55 #include "event_loop.h"
56 #include "translations.h"
57
58 static int debug = 0;
59
60 #define DPRINTF(x, format, ...) { \
61 if (x <= debug) { \
62 printf("%s: " format "\n" , __FUNCTION__, ## __VA_ARGS__); \
63 } \
64 }
65
66 #define TERM "xterm"
67
68 #define TERMIDCODE "[?1;2c" // vt100 ID
69
70 #define CHECK_ARGC(argc,argv,i) if (i >= argc-1) { \
71 fprintf(stderr, "ERROR: not enough arguments for: %s\n", argv[i]); \
72 print_usage(NULL); \
73 exit(1); \
74 }
75
76 /* these colours are from linux kernel drivers/char/vt.c */
77
78 unsigned char color_table[] = { 0, 4, 2, 6, 1, 5, 3, 7,
79 8,12,10,14, 9,13,11,15 };
80
81
82 static void
83 print_usage(const char *msg)
84 {
85 if (msg) { fprintf(stderr, "ERROR: %s\n", msg); }
86 fprintf(stderr, "USAGE: spiceterm [spiceopts] [-c command [args]]\n");
87 }
88
89 /* Convert UCS2 to UTF8 sequence, trailing zero */
90 /*
91 static int
92 ucs2_to_utf8 (gunichar2 c, char *out)
93 {
94 if (c < 0x80) {
95 out[0] = c; // 0*******
96 out[1] = 0;
97 return 1;
98 } else if (c < 0x800) {
99 out[0] = 0xc0 | (c >> 6); // 110***** 10******
100 out[1] = 0x80 | (c & 0x3f);
101 out[2] = 0;
102 return 2;
103 } else {
104 out[0] = 0xe0 | (c >> 12); // 1110**** 10****** 10******
105 out[1] = 0x80 | ((c >> 6) & 0x3f);
106 out[2] = 0x80 | (c & 0x3f);
107 out[3] = 0;
108 return 3;
109 }
110
111 return 0;
112 }
113 */
114
115 static void
116 draw_char_at (spiceTerm *vt, int x, int y, gunichar2 ch, TextAttributes attrib)
117 {
118 if (x < 0 || y < 0 || x >= vt->width || y >= vt->height) {
119 return;
120 }
121
122 spice_screen_draw_char(vt->screen, x, y, ch, attrib);
123 }
124
125 static void
126 spiceterm_update_xy (spiceTerm *vt, int x, int y)
127 {
128 if (x < 0 || y < 0 || x >= vt->width || y >= vt->height) { return; }
129
130 int y1 = (vt->y_base + y) % vt->total_height;
131 int y2 = y1 - vt->y_displ;
132 if (y2 < 0) {
133 y2 += vt->total_height;
134 }
135 if (y2 < vt->height) {
136 TextCell *c = &vt->cells[y1 * vt->width + x];
137 draw_char_at (vt, x, y2, c->ch, c->attrib);
138 }
139 }
140
141 static void
142 spiceterm_clear_xy (spiceTerm *vt, int x, int y)
143 {
144 if (x < 0 || y < 0 || x >= vt->width || y >= vt->height) { return; }
145
146 int y1 = (vt->y_base + y) % vt->total_height;
147 int y2 = y1 - vt->y_displ;
148 if (y2 < 0) {
149 y2 += vt->total_height;
150 }
151 if (y2 < vt->height) {
152 TextCell *c = &vt->cells[y1 * vt->width + x];
153 c->ch = ' ';
154 c->attrib = vt->default_attrib;
155 c->attrib.fgcol = vt->cur_attrib.fgcol;
156 c->attrib.bgcol = vt->cur_attrib.bgcol;
157
158 draw_char_at (vt, x, y, c->ch, c->attrib);
159 }
160 }
161
162 static void
163 spiceterm_show_cursor (spiceTerm *vt, int show)
164 {
165 int x = vt->cx;
166 if (x >= vt->width) {
167 x = vt->width - 1;
168 }
169
170 int y1 = (vt->y_base + vt->cy) % vt->total_height;
171 int y = y1 - vt->y_displ;
172 if (y < 0) {
173 y += vt->total_height;
174 }
175
176 if (y < vt->height) {
177
178 TextCell *c = &vt->cells[y1 * vt->width + x];
179
180 if (show) {
181 TextAttributes attrib = vt->default_attrib;
182 attrib.invers = !(attrib.invers); /* invert fg and bg */
183 draw_char_at (vt, x, y, c->ch, attrib);
184 } else {
185 draw_char_at (vt, x, y, c->ch, c->attrib);
186 }
187 }
188 }
189
190 static void
191 spiceterm_refresh (spiceTerm *vt)
192 {
193 int x, y, y1;
194
195 y1 = vt->y_displ;
196 for(y = 0; y < vt->height; y++) {
197 TextCell *c = vt->cells + y1 * vt->width;
198 for(x = 0; x < vt->width; x++) {
199 draw_char_at (vt, x, y, c->ch, c->attrib);
200 c++;
201 }
202 if (++y1 == vt->total_height)
203 y1 = 0;
204 }
205
206 spiceterm_show_cursor (vt, 1);
207 }
208
209 static void
210 spiceterm_scroll_down (spiceTerm *vt, int top, int bottom, int lines)
211 {
212 if ((top + lines) >= bottom) {
213 lines = bottom - top -1;
214 }
215
216 if (top < 0 || bottom > vt->height || top >= bottom || lines < 1) {
217 return;
218 }
219
220 int i;
221 for(i = bottom - top - lines - 1; i >= 0; i--) {
222 int src = ((vt->y_base + top + i) % vt->total_height)*vt->width;
223 int dst = ((vt->y_base + top + lines + i) % vt->total_height)*vt->width;
224
225 memmove(vt->cells + dst, vt->cells + src, vt->width*sizeof (TextCell));
226 }
227
228 for (i = 0; i < lines; i++) {
229 int j;
230 TextCell *c = vt->cells + ((vt->y_base + top + i) % vt->total_height)*vt->width;
231 for(j = 0; j < vt->width; j++) {
232 c->attrib = vt->default_attrib;
233 c->ch = ' ';
234 c++;
235 }
236 }
237
238 int h = lines * 16;
239 int y0 = top*16;
240 int y1 = y0 + h;
241 int y2 = bottom*16;
242
243 spice_screen_scroll(vt->screen, 0, y1, vt->screen->primary_width, y2, 0, y0);
244 spice_screen_clear(vt->screen, 0, y0, vt->screen->primary_width, y1);
245 }
246
247 static void
248 spiceterm_scroll_up (spiceTerm *vt, int top, int bottom, int lines, int moveattr)
249 {
250 if ((top + lines) >= bottom) {
251 lines = bottom - top - 1;
252 }
253
254 if (top < 0 || bottom > vt->height || top >= bottom || lines < 1) {
255 return;
256 }
257
258
259 int h = lines * 16;
260 int y0 = top*16;
261 int y1 = (top + lines)*16;
262 int y2 = bottom*16;
263
264 spice_screen_scroll(vt->screen, 0, y0, vt->screen->primary_width, y2 -h, 0, y1);
265 spice_screen_clear(vt->screen, 0, y2 -h, vt->screen->primary_width, y2);
266
267 if (!moveattr) {
268 return;
269 }
270
271 // move attributes
272
273 int i;
274 for(i = 0; i < (bottom - top - lines); i++) {
275 int dst = ((vt->y_base + top + i) % vt->total_height)*vt->width;
276 int src = ((vt->y_base + top + lines + i) % vt->total_height)*vt->width;
277
278 memmove(vt->cells + dst, vt->cells + src, vt->width*sizeof (TextCell));
279 }
280
281 for (i = 1; i <= lines; i++) {
282 int j;
283 TextCell *c = vt->cells + ((vt->y_base + bottom - i) % vt->total_height)*vt->width;
284 for(j = 0; j < vt->width; j++) {
285 c->attrib = vt->default_attrib;
286 c->ch = ' ';
287 c++;
288 }
289 }
290 }
291
292 static void
293 spiceterm_virtual_scroll (spiceTerm *vt, int lines)
294 {
295 if (vt->altbuf || lines == 0) return;
296
297 if (lines < 0) {
298 lines = -lines;
299 int i = vt->scroll_height;
300 if (i > vt->total_height - vt->height)
301 i = vt->total_height - vt->height;
302 int y1 = vt->y_base - i;
303 if (y1 < 0)
304 y1 += vt->total_height;
305 for(i = 0; i < lines; i++) {
306 if (vt->y_displ == y1) break;
307 if (--vt->y_displ < 0) {
308 vt->y_displ = vt->total_height - 1;
309 }
310 }
311 } else {
312 int i;
313 for(i = 0; i < lines; i++) {
314 if (vt->y_displ == vt->y_base) break;
315 if (++vt->y_displ == vt->total_height) {
316 vt->y_displ = 0;
317 }
318 }
319 }
320
321 spiceterm_refresh (vt);
322 }
323
324 static void
325 spiceterm_respond_esc (spiceTerm *vt, const char *esc)
326 {
327 int len = strlen (esc);
328 int i;
329
330 if (vt->ibuf_count < (IBUFSIZE - 1 - len)) {
331 vt->ibuf[vt->ibuf_count++] = 27;
332 for (i = 0; i < len; i++) {
333 vt->ibuf[vt->ibuf_count++] = esc[i];
334 }
335 }
336 }
337
338 static void
339 spiceterm_put_lf (spiceTerm *vt)
340 {
341 if (vt->cy + 1 == vt->region_bottom) {
342
343 if (vt->altbuf || vt->region_top != 0 || vt->region_bottom != vt->height) {
344 spiceterm_scroll_up (vt, vt->region_top, vt->region_bottom, 1, 1);
345 return;
346 }
347
348 if (vt->y_displ == vt->y_base) {
349 spiceterm_scroll_up (vt, vt->region_top, vt->region_bottom, 1, 0);
350 }
351
352 if (vt->y_displ == vt->y_base) {
353 if (++vt->y_displ == vt->total_height) {
354 vt->y_displ = 0;
355 }
356 }
357
358 if (++vt->y_base == vt->total_height) {
359 vt->y_base = 0;
360 }
361
362 if (vt->scroll_height < vt->total_height) {
363 vt->scroll_height++;
364 }
365
366 int y1 = (vt->y_base + vt->height - 1) % vt->total_height;
367 TextCell *c = &vt->cells[y1 * vt->width];
368 int x;
369 for (x = 0; x < vt->width; x++) {
370 c->ch = ' ';
371 c->attrib = vt->default_attrib;
372 c++;
373 }
374
375 // fprintf (stderr, "BASE: %d DISPLAY %d\n", vt->y_base, vt->y_displ);
376
377 } else if (vt->cy < vt->height - 1) {
378 vt->cy += 1;
379 }
380 }
381
382 static void
383 spiceterm_csi_m (spiceTerm *vt)
384 {
385 int i;
386
387 for (i = 0; i < vt->esc_count; i++) {
388 switch (vt->esc_buf[i]) {
389 case 0: /* reset all console attributes to default */
390 vt->cur_attrib = vt->default_attrib;
391 break;
392 case 1:
393 vt->cur_attrib.bold = 1;
394 break;
395 case 4:
396 vt->cur_attrib.uline = 1;
397 break;
398 case 5:
399 vt->cur_attrib.blink = 1;
400 break;
401 case 7:
402 vt->cur_attrib.invers = 1;
403 break;
404 case 8:
405 vt->cur_attrib.unvisible = 1;
406 break;
407 case 10:
408 vt->cur_enc = LAT1_MAP;
409 // fixme: dispaly controls = 0 ?
410 // fixme: toggle meta = 0 ?
411 break;
412 case 11:
413 vt->cur_enc = IBMPC_MAP;
414 // fixme: dispaly controls = 1 ?
415 // fixme: toggle meta = 0 ?
416 break;
417 case 12:
418 vt->cur_enc = IBMPC_MAP;
419 // fixme: dispaly controls = 1 ?
420 // fixme: toggle meta = 1 ?
421 break;
422 case 22:
423 vt->cur_attrib.bold = 0;
424 break;
425 case 24:
426 vt->cur_attrib.uline = 0;
427 break;
428 case 25:
429 vt->cur_attrib.blink = 0;
430 break;
431 case 27:
432 vt->cur_attrib.invers = 0;
433 break;
434 case 28:
435 vt->cur_attrib.unvisible = 0;
436 break;
437 case 30:
438 case 31:
439 case 32:
440 case 33:
441 case 34:
442 case 35:
443 case 36:
444 case 37:
445 /* set foreground color */
446 vt->cur_attrib.fgcol = color_table [vt->esc_buf[i] - 30];
447 break;
448 case 38:
449 /* reset color to default, enable underline */
450 vt->cur_attrib.fgcol = vt->default_attrib.fgcol;
451 vt->cur_attrib.uline = 1;
452 break;
453 case 39:
454 /* reset color to default, disable underline */
455 vt->cur_attrib.fgcol = vt->default_attrib.fgcol;
456 vt->cur_attrib.uline = 0;
457 break;
458 case 40:
459 case 41:
460 case 42:
461 case 43:
462 case 44:
463 case 45:
464 case 46:
465 case 47:
466 /* set background color */
467 vt->cur_attrib.bgcol = color_table [vt->esc_buf[i] - 40];
468 break;
469 case 49:
470 /* reset background color */
471 vt->cur_attrib.bgcol = vt->default_attrib.bgcol;
472 break;
473 default:
474 fprintf(stderr, "unhandled ESC[%d m code\n",vt->esc_buf[i]);
475 //fixme: implement
476 }
477 }
478 }
479
480 static void
481 spiceterm_save_cursor (spiceTerm *vt)
482 {
483 vt->cx_saved = vt->cx;
484 vt->cy_saved = vt->cy;
485 vt->cur_attrib_saved = vt->cur_attrib;
486 vt->charset_saved = vt->charset;
487 vt->g0enc_saved = vt->g0enc;
488 vt->g1enc_saved = vt->g1enc;
489 vt->cur_enc_saved = vt->cur_enc;
490 }
491
492 static void
493 spiceterm_restore_cursor (spiceTerm *vt)
494 {
495 vt->cx = vt->cx_saved;
496 vt->cy = vt->cy_saved;
497 vt->cur_attrib = vt->cur_attrib_saved;
498 vt->charset = vt->charset_saved;
499 vt->g0enc = vt->g0enc_saved;
500 vt->g1enc = vt->g1enc_saved;
501 vt->cur_enc = vt->cur_enc_saved;
502 }
503
504 static void
505 spiceterm_set_alternate_buffer (spiceTerm *vt, int on_off)
506 {
507 int x, y;
508
509 vt->y_displ = vt->y_base;
510
511 if (on_off) {
512
513 if (vt->altbuf) return;
514
515 vt->altbuf = 1;
516
517 /* alternate buffer & cursor */
518
519 spiceterm_save_cursor (vt);
520 /* save screen to altcels */
521 for (y = 0; y < vt->height; y++) {
522 int y1 = (vt->y_base + y) % vt->total_height;
523 for (x = 0; x < vt->width; x++) {
524 vt->altcells[y*vt->width + x] = vt->cells[y1*vt->width + x];
525 }
526 }
527
528 /* clear screen */
529 for (y = 0; y <= vt->height; y++) {
530 for (x = 0; x < vt->width; x++) {
531 spiceterm_clear_xy (vt, x, y);
532 }
533 }
534
535 } else {
536
537 if (vt->altbuf == 0) return;
538
539 vt->altbuf = 0;
540
541 /* restore saved data */
542 for (y = 0; y < vt->height; y++) {
543 int y1 = (vt->y_base + y) % vt->total_height;
544 for (x = 0; x < vt->width; x++) {
545 vt->cells[y1*vt->width + x] = vt->altcells[y*vt->width + x];
546 }
547 }
548
549 spiceterm_restore_cursor (vt);
550 }
551
552 spiceterm_refresh (vt);
553 }
554
555 static void
556 spiceterm_set_mode (spiceTerm *vt, int on_off)
557 {
558 int i;
559
560 for (i = 0; i <= vt->esc_count; i++) {
561 if (vt->esc_ques) { /* DEC private modes set/reset */
562 switch(vt->esc_buf[i]) {
563 case 10: /* X11 mouse reporting on/off */
564 case 1000: /* SET_VT200_MOUSE */
565 case 1002: /* xterm SET_BTN_EVENT_MOUSE */
566 vt->report_mouse = on_off;
567 break;
568 case 1049: /* start/end special app mode (smcup/rmcup) */
569 spiceterm_set_alternate_buffer (vt, on_off);
570 break;
571 case 25: /* Cursor on/off */
572 case 9: /* X10 mouse reporting on/off */
573 case 6: /* Origin relative/absolute */
574 case 1: /* Cursor keys in appl mode*/
575 case 5: /* Inverted screen on/off */
576 case 7: /* Autowrap on/off */
577 case 8: /* Autorepeat on/off */
578 break;
579 }
580 } else { /* ANSI modes set/reset */
581 //g_assert_not_reached();
582
583 /* fixme: implement me */
584 }
585 }
586 }
587
588 static void
589 spiceterm_gotoxy (spiceTerm *vt, int x, int y)
590 {
591 /* verify all boundaries */
592
593 if (x < 0) {
594 x = 0;
595 }
596
597 if (x >= vt->width) {
598 x = vt->width - 1;
599 }
600
601 vt->cx = x;
602
603 if (y < 0) {
604 y = 0;
605 }
606
607 if (y >= vt->height) {
608 y = vt->height - 1;
609 }
610
611 vt->cy = y;
612 }
613
614 static void
615 debug_print_escape_buffer(spiceTerm *vt, const char *func, const char *prefix,
616 const char *qes, gunichar2 ch)
617 {
618 if (debug >=1 ) {
619 if (vt->esc_count == 0) {
620 printf("%s:%s ESC[%s%c\n", func, prefix, qes, ch);
621 } else if (vt->esc_count == 1) {
622 printf("%s:%s ESC[%s%d%c\n", func, prefix, qes, vt->esc_buf[0], ch);
623 } else {
624 int i;
625 printf("%s:%s ESC[%s%d", func, prefix, qes, vt->esc_buf[0]);
626 for (i = 1; i < vt->esc_count; i++) {
627 printf(";%d", vt->esc_buf[i]);
628 }
629 printf("%c\n", ch);
630 }
631 }
632 }
633
634 enum { ESnormal, ESesc, ESsquare, ESgetpars, ESgotpars, ESfunckey,
635 EShash, ESsetG0, ESsetG1, ESpercent, ESignore, ESnonstd,
636 ESpalette, ESidquery, ESosc1, ESosc2};
637
638 static void
639 spiceterm_putchar (spiceTerm *vt, gunichar2 ch)
640 {
641 int x, y, i, c;
642
643 if (debug && !vt->tty_state) {
644 DPRINTF(1, "CHAR:%2d: %4x '%c' (cur_enc %d) %d %d",
645 vt->tty_state, ch, ch, vt->cur_enc, vt->cx, vt->cy);
646 }
647
648 switch(vt->tty_state) {
649 case ESesc:
650 vt->tty_state = ESnormal;
651 switch (ch) {
652 case '[':
653 vt->tty_state = ESsquare;
654 break;
655 case ']':
656 vt->tty_state = ESnonstd;
657 break;
658 case '%':
659 vt->tty_state = ESpercent;
660 break;
661 case '7':
662 spiceterm_save_cursor (vt);
663 break;
664 case '8':
665 spiceterm_restore_cursor (vt);
666 break;
667 case '(':
668 vt->tty_state = ESsetG0; // SET G0
669 break;
670 case ')':
671 vt->tty_state = ESsetG1; // SET G1
672 break;
673 case 'M':
674 /* cursor up (ri) */
675 if (vt->cy == vt->region_top)
676 spiceterm_scroll_down (vt, vt->region_top, vt->region_bottom, 1);
677 else if (vt->cy > 0) {
678 vt->cy--;
679 }
680 break;
681 case '>':
682 /* numeric keypad - ignored */
683 break;
684 case '=':
685 /* appl. keypad - ignored */
686 break;
687 default:
688 DPRINTF(1, "got unhandled ESC%c %d", ch, ch);
689 break;
690 }
691 break;
692 case ESnonstd: /* Operating System Controls */
693 vt->tty_state = ESnormal;
694
695 switch (ch) {
696 case 'P': /* palette escape sequence */
697 for(i = 0; i < MAX_ESC_PARAMS; i++) {
698 vt->esc_buf[i] = 0;
699 }
700
701 vt->esc_count = 0;
702 vt->tty_state = ESpalette;
703 break;
704 case 'R': /* reset palette */
705 // fixme: reset_palette(vc);
706 break;
707 case '0':
708 case '1':
709 case '2':
710 case '4':
711 vt->osc_cmd = ch;
712 vt->osc_textbuf[0] = 0;
713 vt->tty_state = ESosc1;
714 break;
715 default:
716 DPRINTF(1, "got unhandled OSC %c", ch);
717 vt->tty_state = ESnormal;
718 break;
719 }
720 break;
721 case ESosc1:
722 vt->tty_state = ESnormal;
723 if (ch == ';') {
724 vt->tty_state = ESosc2;
725 } else {
726 DPRINTF(1, "got illegal OSC sequence");
727 }
728 break;
729 case ESosc2:
730 if (ch != 0x9c && ch != 7) {
731 int i = 0;
732 while (vt->osc_textbuf[i]) i++;
733 vt->osc_textbuf[i++] = ch;
734 vt->osc_textbuf[i] = 0;
735 } else {
736 DPRINTF(1, "OSC:%c:%s", vt->osc_cmd, vt->osc_textbuf);
737 vt->tty_state = ESnormal;
738 }
739 break;
740 case ESpalette:
741 if ((ch >= '0' && ch <= '9') || (ch >= 'A' && ch <= 'F')
742 || (ch >= 'a' && ch <= 'f')) {
743 vt->esc_buf[vt->esc_count++] = (ch > '9' ? (ch & 0xDF) - 'A' + 10 : ch - '0');
744 if (vt->esc_count == 7) {
745 // fixme: this does not work - please test
746 /*
747 rfbColourMap *cmap =&vt->screen->colourMap;
748
749 int i = color_table[vt->esc_buf[0]] * 3, j = 1;
750 cmap->data.bytes[i] = 16 * vt->esc_buf[j++];
751 cmap->data.bytes[i++] += vt->esc_buf[j++];
752 cmap->data.bytes[i] = 16 * vt->esc_buf[j++];
753 cmap->data.bytes[i++] += vt->esc_buf[j++];
754 cmap->data.bytes[i] = 16 * vt->esc_buf[j++];
755 cmap->data.bytes[i] += vt->esc_buf[j];
756 */
757 //set_palette(vc); ?
758
759 vt->tty_state = ESnormal;
760 }
761 } else
762 vt->tty_state = ESnormal;
763 break;
764 case ESsquare:
765 for(i = 0; i < MAX_ESC_PARAMS; i++) {
766 vt->esc_buf[i] = 0;
767 }
768
769 vt->esc_count = 0;
770 vt->esc_has_par = 0;
771 vt->tty_state = ESgetpars;
772
773 if (ch == '>') {
774 vt->tty_state = ESidquery;
775 break;
776 }
777
778 if ((vt->esc_ques = (ch == '?'))) {
779 break;
780 }
781 case ESgetpars:
782 if (ch >= '0' && ch <= '9') {
783 vt->esc_has_par = 1;
784 if (vt->esc_count < MAX_ESC_PARAMS) {
785 vt->esc_buf[vt->esc_count] = vt->esc_buf[vt->esc_count] * 10 + ch - '0';
786 }
787 break;
788 } else if (ch == ';') {
789 vt->esc_count++;
790 break;
791 } else {
792 if (vt->esc_has_par) {
793 vt->esc_count++;
794 }
795 vt->tty_state = ESgotpars;
796 }
797 case ESgotpars:
798
799 vt->tty_state = ESnormal;
800
801 char *qes = vt->esc_ques ? "?" : "";
802
803 if (debug) {
804 debug_print_escape_buffer(vt, __func__, "", qes, ch);
805 }
806
807 switch (ch) {
808 case 'h':
809 spiceterm_set_mode(vt, 1);
810 break;
811 case 'l':
812 spiceterm_set_mode(vt, 0);
813 break;
814 case 'm':
815 if (!vt->esc_count) {
816 vt->esc_count++; // default parameter 0
817 }
818 spiceterm_csi_m (vt);
819 break;
820 case 'n':
821 /* report cursor position */
822 /* TODO: send ESC[row;colR */
823 break;
824 case 'A':
825 /* move cursor up */
826 if (vt->esc_buf[0] == 0) {
827 vt->esc_buf[0] = 1;
828 }
829 vt->cy -= vt->esc_buf[0];
830 if (vt->cy < 0) {
831 vt->cy = 0;
832 }
833 break;
834 case 'B':
835 case 'e':
836 /* move cursor down */
837 if (vt->esc_buf[0] == 0) {
838 vt->esc_buf[0] = 1;
839 }
840 vt->cy += vt->esc_buf[0];
841 if (vt->cy >= vt->height) {
842 vt->cy = vt->height - 1;
843 }
844 break;
845 case 'C':
846 case 'a':
847 /* move cursor right */
848 if (vt->esc_buf[0] == 0) {
849 vt->esc_buf[0] = 1;
850 }
851 vt->cx += vt->esc_buf[0];
852 if (vt->cx >= vt->width) {
853 vt->cx = vt->width - 1;
854 }
855 break;
856 case 'D':
857 /* move cursor left */
858 if (vt->esc_buf[0] == 0) {
859 vt->esc_buf[0] = 1;
860 }
861 vt->cx -= vt->esc_buf[0];
862 if (vt->cx < 0) {
863 vt->cx = 0;
864 }
865 break;
866 case 'G':
867 case '`':
868 /* move cursor to column */
869 spiceterm_gotoxy (vt, vt->esc_buf[0] - 1, vt->cy);
870 break;
871 case 'd':
872 /* move cursor to row */
873 spiceterm_gotoxy (vt, vt->cx , vt->esc_buf[0] - 1);
874 break;
875 case 'f':
876 case 'H':
877 /* move cursor to row, column */
878 spiceterm_gotoxy (vt, vt->esc_buf[1] - 1, vt->esc_buf[0] - 1);
879 break;
880 case 'J':
881 switch (vt->esc_buf[0]) {
882 case 0:
883 /* clear to end of screen */
884 for (y = vt->cy; y < vt->height; y++) {
885 for (x = 0; x < vt->width; x++) {
886 if (y == vt->cy && x < vt->cx) {
887 continue;
888 }
889 spiceterm_clear_xy (vt, x, y);
890 }
891 }
892 break;
893 case 1:
894 /* clear from beginning of screen */
895 for (y = 0; y <= vt->cy; y++) {
896 for (x = 0; x < vt->width; x++) {
897 if (y == vt->cy && x > vt->cx) {
898 break;
899 }
900 spiceterm_clear_xy (vt, x, y);
901 }
902 }
903 break;
904 case 2:
905 /* clear entire screen */
906 for (y = 0; y <= vt->height; y++) {
907 for (x = 0; x < vt->width; x++) {
908 spiceterm_clear_xy (vt, x, y);
909 }
910 }
911 break;
912 }
913 break;
914 case 'K':
915 switch (vt->esc_buf[0]) {
916 case 0:
917 /* clear to eol */
918 for(x = vt->cx; x < vt->width; x++) {
919 spiceterm_clear_xy (vt, x, vt->cy);
920 }
921 break;
922 case 1:
923 /* clear from beginning of line */
924 for (x = 0; x <= vt->cx; x++) {
925 spiceterm_clear_xy (vt, x, vt->cy);
926 }
927 break;
928 case 2:
929 /* clear entire line */
930 for(x = 0; x < vt->width; x++) {
931 spiceterm_clear_xy (vt, x, vt->cy);
932 }
933 break;
934 }
935 break;
936 case 'L':
937 /* insert line */
938 c = vt->esc_buf[0];
939
940 if (c > vt->height - vt->cy)
941 c = vt->height - vt->cy;
942 else if (!c)
943 c = 1;
944
945 spiceterm_scroll_down (vt, vt->cy, vt->region_bottom, c);
946 break;
947 case 'M':
948 /* delete line */
949 c = vt->esc_buf[0];
950
951 if (c > vt->height - vt->cy)
952 c = vt->height - vt->cy;
953 else if (!c)
954 c = 1;
955
956 spiceterm_scroll_up (vt, vt->cy, vt->region_bottom, c, 1);
957 break;
958 case 'T':
959 /* scroll down */
960 c = vt->esc_buf[0];
961 if (!c) c = 1;
962 spiceterm_scroll_down (vt, vt->region_top, vt->region_bottom, c);
963 break;
964 case 'S':
965 /* scroll up */
966 c = vt->esc_buf[0];
967 if (!c) c = 1;
968 spiceterm_scroll_up (vt, vt->region_top, vt->region_bottom, c, 1);
969 break;
970 case 'P':
971 /* delete c character */
972 c = vt->esc_buf[0];
973
974 if (c > vt->width - vt->cx)
975 c = vt->width - vt->cx;
976 else if (!c)
977 c = 1;
978
979 for (x = vt->cx; x < vt->width - c; x++) {
980 int y1 = (vt->y_base + vt->cy) % vt->total_height;
981 TextCell *dst = &vt->cells[y1 * vt->width + x];
982 TextCell *src = dst + c;
983 *dst = *src;
984 spiceterm_update_xy (vt, x + c, vt->cy);
985 src->ch = ' ';
986 src->attrib = vt->default_attrib;
987 spiceterm_update_xy (vt, x, vt->cy);
988 }
989 break;
990 case 's':
991 /* save cursor position */
992 spiceterm_save_cursor (vt);
993 break;
994 case 'u':
995 /* restore cursor position */
996 spiceterm_restore_cursor (vt);
997 break;
998 case 'X':
999 /* erase c characters */
1000 c = vt->esc_buf[0];
1001 if (!c) c = 1;
1002
1003 if (c > (vt->width - vt->cx)) c = vt->width - vt->cx;
1004
1005 for(i = 0; i < c; i++) {
1006 spiceterm_clear_xy (vt, vt->cx + i, vt->cy);
1007 }
1008 break;
1009 case '@':
1010 /* insert c character */
1011 c = vt->esc_buf[0];
1012 if (c > (vt->width - vt->cx)) {
1013 c = vt->width - vt->cx;
1014 }
1015 if (!c) c = 1;
1016
1017 for (x = vt->width - c; x >= vt->cx; x--) {
1018 int y1 = (vt->y_base + vt->cy) % vt->total_height;
1019 TextCell *src = &vt->cells[y1 * vt->width + x];
1020 TextCell *dst = src + c;
1021 *dst = *src;
1022 spiceterm_update_xy (vt, x + c, vt->cy);
1023 src->ch = ' ';
1024 src->attrib = vt->cur_attrib;
1025 spiceterm_update_xy (vt, x, vt->cy);
1026 }
1027
1028 break;
1029 case 'r':
1030 /* set region */
1031 if (!vt->esc_buf[0])
1032 vt->esc_buf[0]++;
1033 if (!vt->esc_buf[1])
1034 vt->esc_buf[1] = vt->height;
1035 /* Minimum allowed region is 2 lines */
1036 if (vt->esc_buf[0] < vt->esc_buf[1] &&
1037 vt->esc_buf[1] <= vt->height) {
1038 vt->region_top = vt->esc_buf[0] - 1;
1039 vt->region_bottom = vt->esc_buf[1];
1040 vt->cx = 0;
1041 vt->cy = vt->region_top;
1042 DPRINTF(1, "set region %d %d", vt->region_top, vt->region_bottom);
1043 }
1044
1045 break;
1046 default:
1047 if (debug) {
1048 debug_print_escape_buffer(vt, __func__, " unhandled escape", qes, ch);
1049 }
1050 break;
1051 }
1052 vt->esc_ques = 0;
1053 break;
1054 case ESsetG0: // Set G0
1055 vt->tty_state = ESnormal;
1056
1057 if (ch == '0')
1058 vt->g0enc = GRAF_MAP;
1059 else if (ch == 'B')
1060 vt->g0enc = LAT1_MAP;
1061 else if (ch == 'U')
1062 vt->g0enc = IBMPC_MAP;
1063 else if (ch == 'K')
1064 vt->g0enc = USER_MAP;
1065
1066 if (vt->charset == 0)
1067 vt->cur_enc = vt->g0enc;
1068
1069 break;
1070 case ESsetG1: // Set G1
1071 vt->tty_state = ESnormal;
1072
1073 if (ch == '0')
1074 vt->g1enc = GRAF_MAP;
1075 else if (ch == 'B')
1076 vt->g1enc = LAT1_MAP;
1077 else if (ch == 'U')
1078 vt->g1enc = IBMPC_MAP;
1079 else if (ch == 'K')
1080 vt->g1enc = USER_MAP;
1081
1082 if (vt->charset == 1)
1083 vt->cur_enc = vt->g1enc;
1084
1085 break;
1086 case ESidquery: // vt100 query id
1087 vt->tty_state = ESnormal;
1088
1089 if (ch == 'c') {
1090 DPRINTF(1, "ESC[>c Query term ID");
1091 spiceterm_respond_esc (vt, TERMIDCODE);
1092 }
1093 break;
1094 case ESpercent:
1095 vt->tty_state = ESnormal;
1096 switch (ch) {
1097 case '@': /* defined in ISO 2022 */
1098 vt->utf8 = 0;
1099 break;
1100 case 'G': /* prelim official escape code */
1101 case '8': /* retained for compatibility */
1102 vt->utf8 = 1;
1103 break;
1104 }
1105 break;
1106 default: // ESnormal
1107 vt->tty_state = ESnormal;
1108
1109 switch(ch) {
1110 case 0:
1111 break;
1112 case 7: /* alert aka. bell */
1113 // fixme:
1114 //rfbSendBell(vt->screen);
1115 break;
1116 case 8: /* backspace */
1117 if (vt->cx > 0)
1118 vt->cx--;
1119 break;
1120 case 9: /* tabspace */
1121 if (vt->cx + (8 - (vt->cx % 8)) > vt->width) {
1122 vt->cx = 0;
1123 spiceterm_put_lf (vt);
1124 } else {
1125 vt->cx = vt->cx + (8 - (vt->cx % 8));
1126 }
1127 break;
1128 case 10: /* LF,*/
1129 case 11: /* VT */
1130 case 12: /* FF */
1131 spiceterm_put_lf (vt);
1132 break;
1133 case 13: /* carriage return */
1134 vt->cx = 0;
1135 break;
1136 case 14:
1137 /* SI (shift in), select character set 1 */
1138 vt->charset = 1;
1139 vt->cur_enc = vt->g1enc;
1140 /* fixme: display controls = 1 */
1141 break;
1142 case 15:
1143 /* SO (shift out), select character set 0 */
1144 vt->charset = 0;
1145 vt->cur_enc = vt->g0enc;
1146 /* fixme: display controls = 0 */
1147 break;
1148 case 27: /* esc */
1149 vt->tty_state = ESesc;
1150 break;
1151 case 127: /* delete */
1152 /* ignore */
1153 break;
1154 case 128+27: /* csi */
1155 vt->tty_state = ESsquare;
1156 break;
1157 default:
1158 if (vt->cx >= vt->width) {
1159 /* line wrap */
1160 vt->cx = 0;
1161 spiceterm_put_lf (vt);
1162 }
1163
1164 int y1 = (vt->y_base + vt->cy) % vt->total_height;
1165 TextCell *c = &vt->cells[y1*vt->width + vt->cx];
1166 c->attrib = vt->cur_attrib;
1167 c->ch = ch;
1168 spiceterm_update_xy (vt, vt->cx, vt->cy);
1169 vt->cx++;
1170 break;
1171 }
1172 break;
1173 }
1174 }
1175
1176 static int
1177 spiceterm_puts (spiceTerm *vt, const char *buf, int len)
1178 {
1179 gunichar2 tc;
1180
1181 spiceterm_show_cursor (vt, 0);
1182
1183 while (len) {
1184 unsigned char c = *buf;
1185 len--;
1186 buf++;
1187
1188 if (vt->tty_state != ESnormal) {
1189 // never translate escape sequence
1190 tc = c;
1191 } else if (vt->utf8 && !vt->cur_enc) {
1192
1193 if(c & 0x80) { // utf8 multi-byte sequence
1194
1195 if (vt->utf_count > 0 && (c & 0xc0) == 0x80) {
1196 // inside UTF8 sequence
1197 vt->utf_char = (vt->utf_char << 6) | (c & 0x3f);
1198 vt->utf_count--;
1199 if (vt->utf_count == 0) {
1200 tc = vt->utf_char;
1201 } else {
1202 continue;
1203 }
1204 } else {
1205 // first char of a UTF8 sequence
1206 if ((c & 0xe0) == 0xc0) {
1207 vt->utf_count = 1;
1208 vt->utf_char = (c & 0x1f);
1209 } else if ((c & 0xf0) == 0xe0) {
1210 vt->utf_count = 2;
1211 vt->utf_char = (c & 0x0f);
1212 } else if ((c & 0xf8) == 0xf0) {
1213 vt->utf_count = 3;
1214 vt->utf_char = (c & 0x07);
1215 } else if ((c & 0xfc) == 0xf8) {
1216 vt->utf_count = 4;
1217 vt->utf_char = (c & 0x03);
1218 } else if ((c & 0xfe) == 0xfc) {
1219 vt->utf_count = 5;
1220 vt->utf_char = (c & 0x01);
1221 } else
1222 vt->utf_count = 0;
1223
1224 continue;
1225 }
1226 } else {
1227 // utf8 single byte
1228 tc = c;
1229 vt->utf_count = 0;
1230 }
1231
1232 } else {
1233 // never translate controls
1234 if (c >= 32 && c != 127 && c != (128+27)) {
1235 tc = translations[vt->cur_enc][c & 0x0ff];
1236 } else {
1237 tc = c;
1238 }
1239 }
1240
1241 spiceterm_putchar (vt, tc);
1242 }
1243
1244 spiceterm_show_cursor (vt, 1);
1245
1246 return len;
1247 }
1248
1249 /* fixme:
1250 void
1251 spiceterm_set_xcut_text (char* str, int len, struct _rfbClientRec* cl)
1252 {
1253 spiceTerm *vt =(spiceTerm *)cl->screen->screenData;
1254
1255 // seems str is Latin-1 encoded
1256 if (vt->selection) free (vt->selection);
1257 vt->selection = (gunichar2 *)malloc (len*sizeof (gunichar2));
1258 int i;
1259 for (i = 0; i < len; i++) {
1260 vt->selection[i] = str[i] & 0xff;
1261 }
1262 vt->selection_len = len;
1263 }
1264 */
1265
1266 static void
1267 mouse_report(spiceTerm *vt, int butt, int mrx, int mry)
1268 {
1269 char buf[8];
1270
1271 sprintf (buf, "[M%c%c%c", (char)(' ' + butt), (char)('!' + mrx),
1272 (char)('!' + mry));
1273
1274 spiceterm_respond_esc(vt, buf);
1275
1276 // fixme
1277 vt->screen->core->watch_update_mask(vt->screen->mwatch,
1278 SPICE_WATCH_EVENT_READ|SPICE_WATCH_EVENT_WRITE);
1279
1280 }
1281
1282 void
1283 spiceterm_toggle_marked_cell (spiceTerm *vt, int pos)
1284 {
1285
1286 /* fixme:
1287 int x= (pos%vt->width)*8;
1288 int y= (pos/vt->width)*16;
1289
1290 int i,j;
1291 rfbScreenInfoPtr s=vt->screen;
1292
1293 char *b = s->frameBuffer+y*s->width+x;
1294
1295 for (j=0; j < 16; j++) {
1296 for(i=0; i < 8; i++) {
1297 b[j*s->width+i] ^= 0x0f;
1298 rfbMarkRectAsModified (s, x, y, x+8, y+16);
1299 }
1300 }
1301 */
1302 }
1303
1304 /* fixme:
1305
1306 void
1307 spiceterm_pointer_event (int buttonMask, int x, int y, rfbClientPtr cl)
1308 {
1309
1310 spiceTerm *vt =(spiceTerm *)cl->screen->screenData;
1311 static int button2_released = 1;
1312 static int last_mask = 0;
1313 static int sel_start_pos = 0;
1314 static int sel_end_pos = 0;
1315 int i;
1316
1317 int cx = x/8;
1318 int cy = y/16;
1319
1320 if (cx < 0) cx = 0;
1321 if (cx >= vt->width) cx = vt->width - 1;
1322 if (cy < 0) cy = 0;
1323 if (cy >= vt->height) cy = vt->height - 1;
1324
1325 if (vt->report_mouse && buttonMask != last_mask) {
1326 last_mask = buttonMask;
1327 if (buttonMask & 1) {
1328 mouse_report (vt, 0, cx, cy);
1329 }
1330 if (buttonMask & 2) {
1331 mouse_report (vt, 1, cx, cy);
1332 }
1333 if (buttonMask & 4) {
1334 mouse_report (vt, 2, cx, cy);
1335 }
1336 if (!buttonMask) {
1337 mouse_report (vt, 3, cx, cy);
1338 }
1339 }
1340
1341 if (buttonMask & 2) {
1342 if(button2_released && vt->selection) {
1343 int i;
1344 for(i = 0; i < vt->selection_len; i++) {
1345 if (vt->ibuf_count < IBUFSIZE - 6) { // uft8 is max 6 characters wide
1346 if (vt->utf8) {
1347 vt->ibuf_count += ucs2_to_utf8 (vt->selection[i], &vt->ibuf[vt->ibuf_count]);
1348 } else {
1349 vt->ibuf[vt->ibuf_count++] = vt->selection[i];
1350 }
1351 }
1352 }
1353 if (vt->y_displ != vt->y_base) {
1354 vt->y_displ = vt->y_base;
1355 spiceterm_refresh (vt);
1356 }
1357 }
1358 button2_released = 0;
1359 } else {
1360 button2_released = 1;
1361 }
1362
1363 if (buttonMask & 1) {
1364 int pos = cy*vt->width + cx;
1365
1366 // code borrowed from libvncserver (VNCconsole.c)
1367
1368 if (!vt->mark_active) {
1369
1370 vt->mark_active = 1;
1371 sel_start_pos = sel_end_pos = pos;
1372 spiceterm_toggle_marked_cell (vt, pos);
1373
1374 } else {
1375
1376 if (pos != sel_end_pos) {
1377
1378 if (pos > sel_end_pos) {
1379 cx = sel_end_pos; cy=pos;
1380 } else {
1381 cx=pos; cy=sel_end_pos;
1382 }
1383
1384 if (cx < sel_start_pos) {
1385 if (cy < sel_start_pos) cy--;
1386 } else {
1387 cx++;
1388 }
1389
1390 while (cx <= cy) {
1391 spiceterm_toggle_marked_cell (vt, cx);
1392 cx++;
1393 }
1394
1395 sel_end_pos = pos;
1396 }
1397 }
1398
1399 } else if (vt->mark_active) {
1400 vt->mark_active = 0;
1401
1402 if (sel_start_pos > sel_end_pos) {
1403 int tmp = sel_start_pos - 1;
1404 sel_start_pos = sel_end_pos;
1405 sel_end_pos = tmp;
1406 }
1407
1408 int len = sel_end_pos - sel_start_pos + 1;
1409
1410 if (vt->selection) free (vt->selection);
1411 vt->selection = (gunichar2 *)malloc (len*sizeof (gunichar2));
1412 vt->selection_len = len;
1413 char *sel_latin1 = (char *)malloc (len + 1);
1414
1415 for (i = 0; i < len; i++) {
1416 int pos = sel_start_pos + i;
1417 int x = pos % vt->width;
1418 int y1 = ((pos / vt->width) + vt->y_displ) % vt->total_height;
1419 TextCell *c = &vt->cells[y1*vt->width + x];
1420 vt->selection[i] = c->ch;
1421 sel_latin1[i] = (char)c->ch;
1422 c++;
1423 }
1424 sel_latin1[len] = 0;
1425 rfbGotXCutText (vt->screen, sel_latin1, len);
1426 free (sel_latin1);
1427
1428 while (sel_start_pos <= sel_end_pos) {
1429 spiceterm_toggle_marked_cell (vt, sel_start_pos++);
1430 }
1431
1432 }
1433
1434 rfbDefaultPtrAddEvent (buttonMask, x, y, cl);
1435
1436 }
1437 */
1438
1439 static void
1440 spiceterm_motion_event(spiceTerm *vt, uint32_t x, uint32_t y, uint32_t buttons)
1441 {
1442 DPRINTF(0, "mask=%08x x=%d y=%d", buttons, x ,y);
1443
1444 static int last_mask = 0;
1445
1446 int cx = x/8;
1447 int cy = y/16;
1448
1449 if (cx < 0) cx = 0;
1450 if (cx >= vt->width) cx = vt->width - 1;
1451 if (cy < 0) cy = 0;
1452 if (cy >= vt->height) cy = vt->height - 1;
1453
1454 if (vt->report_mouse && buttons != last_mask) {
1455 DPRINTF(0, "report=%d", vt->report_mouse);
1456
1457 last_mask = buttons;
1458 if (buttons & 2) {
1459 mouse_report(vt, 0, cx, cy);
1460 }
1461 if (buttons & 4) {
1462 mouse_report (vt, 1, cx, cy);
1463 }
1464 if (buttons & 8) {
1465 mouse_report (vt, 2, cx, cy);
1466 }
1467 if (!buttons) {
1468 mouse_report (vt, 3, cx, cy);
1469 }
1470 }
1471 }
1472
1473 static void
1474 my_kbd_push_key(SpiceKbdInstance *sin, uint8_t frag)
1475 {
1476 // spiceTerm *vt = SPICE_CONTAINEROF(sin, spiceTerm, keyboard_sin);
1477
1478 /* we no not need this */
1479
1480 return;
1481 }
1482
1483 static void
1484 my_kbd_push_keyval(SpiceKbdInstance *sin, uint32_t keySym, int flags)
1485 {
1486 spiceTerm *vt = SPICE_CONTAINEROF(sin, spiceTerm, keyboard_sin);
1487 static int control = 0;
1488 static int shift = 0;
1489 char *esc = NULL;
1490
1491 guint uc = 0;
1492
1493 DPRINTF(1, "flags=%d keySym=%08x", flags, keySym);
1494
1495 if (flags & 1) {
1496 if (keySym == GDK_KEY_Shift_L || keySym == GDK_KEY_Shift_R) {
1497 shift = 1;
1498 } if (keySym == GDK_KEY_Control_L || keySym == GDK_KEY_Control_R) {
1499 control = 1;
1500 } else if (vt->ibuf_count < (IBUFSIZE - 32)) {
1501
1502 if (control) {
1503 if(keySym >= 'a' && keySym <= 'z')
1504 uc = keySym - 'a' + 1;
1505 else if (keySym >= 'A' && keySym <= 'Z')
1506 uc = keySym - 'A' + 1;
1507 else
1508 uc = 0;
1509
1510 } else {
1511 switch (keySym) {
1512 case GDK_KEY_Escape:
1513 uc = 27; break;
1514 case GDK_KEY_Return:
1515 uc = '\r'; break;
1516 case GDK_KEY_BackSpace:
1517 uc = 8; break;
1518 case GDK_KEY_Tab:
1519 uc = '\t'; break;
1520 case GDK_KEY_Delete: /* kdch1 */
1521 case GDK_KEY_KP_Delete:
1522 esc = "[3~";break;
1523 case GDK_KEY_Home: /* khome */
1524 case GDK_KEY_KP_Home:
1525 esc = "OH";break;
1526 case GDK_KEY_End:
1527 case GDK_KEY_KP_End: /* kend */
1528 esc = "OF";break;
1529 case GDK_KEY_Insert: /* kich1 */
1530 case GDK_KEY_KP_Insert:
1531 esc = "[2~";break;
1532 case GDK_KEY_Up:
1533 case GDK_KEY_KP_Up: /* kcuu1 */
1534 esc = "OA";break;
1535 case GDK_KEY_Down: /* kcud1 */
1536 case GDK_KEY_KP_Down:
1537 esc = "OB";break;
1538 case GDK_KEY_Right:
1539 case GDK_KEY_KP_Right: /* kcuf1 */
1540 esc = "OC";break;
1541 case GDK_KEY_Left:
1542 case GDK_KEY_KP_Left: /* kcub1 */
1543 esc = "OD";break;
1544 case GDK_KEY_Page_Up:
1545 if (shift) {
1546 spiceterm_virtual_scroll (vt, -vt->height/2);
1547 goto ret;
1548 }
1549 esc = "[5~";break;
1550 case GDK_KEY_Page_Down:
1551 if (shift) {
1552 spiceterm_virtual_scroll (vt, vt->height/2);
1553 goto ret;
1554 }
1555 esc = "[6~";break;
1556 case GDK_KEY_F1:
1557 esc = "OP";break;
1558 case GDK_KEY_F2:
1559 esc = "OQ";break;
1560 case GDK_KEY_F3:
1561 esc = "OR";break;
1562 case GDK_KEY_F4:
1563 esc = "OS";break;
1564 case GDK_KEY_F5:
1565 esc = "[15~";break;
1566 case GDK_KEY_F6:
1567 esc = "[17~";break;
1568 case GDK_KEY_F7:
1569 esc = "[18~";break;
1570 case GDK_KEY_F8:
1571 esc = "[19~";break;
1572 case GDK_KEY_F9:
1573 esc = "[20~";break;
1574 case GDK_KEY_F10:
1575 esc = "[21~";break;
1576 case GDK_KEY_F11:
1577 esc = "[23~";break;
1578 case GDK_KEY_F12:
1579 esc = "[24~";break;
1580 default:
1581 if (keySym < 0x100) {
1582 uc = keySym;
1583 }
1584 break;
1585 }
1586 }
1587
1588 DPRINTF(1, "escape=%s unicode=%08x\n", esc, uc);
1589
1590 if (vt->y_displ != vt->y_base) {
1591 vt->y_displ = vt->y_base;
1592 spiceterm_refresh (vt);
1593 }
1594
1595 if (esc) {
1596 spiceterm_respond_esc(vt, esc);
1597 } else if (uc > 0) {
1598 if (vt->utf8) {
1599 gchar buf[10];
1600 gint len = g_unichar_to_utf8(uc, buf);
1601
1602 if (len > 0) {
1603 int i;
1604 for (i = 0; i < len; i++) {
1605 vt->ibuf[vt->ibuf_count++] = buf[i];
1606 }
1607 }
1608 } else {
1609 vt->ibuf[vt->ibuf_count++] = (char)uc;
1610 }
1611 }
1612 }
1613 }
1614
1615
1616 ret:
1617
1618 if (flags & 2) { // UP
1619 if (keySym == GDK_KEY_Shift_L || keySym == GDK_KEY_Shift_R) {
1620 shift = 0;
1621 } else if (keySym == GDK_KEY_Control_L || keySym == GDK_KEY_Control_R) {
1622 control = 0;
1623 }
1624 }
1625
1626 vt->screen->core->watch_update_mask(vt->screen->mwatch,
1627 SPICE_WATCH_EVENT_READ|SPICE_WATCH_EVENT_WRITE);
1628 }
1629
1630 static uint8_t
1631 my_kbd_get_leds(SpiceKbdInstance *sin)
1632 {
1633 return 0;
1634 }
1635
1636 static SpiceKbdInterface my_keyboard_sif = {
1637 .base.type = SPICE_INTERFACE_KEYBOARD,
1638 .base.description = "spiceterm keyboard device",
1639 .base.major_version = SPICE_INTERFACE_KEYBOARD_MAJOR,
1640 .base.minor_version = SPICE_INTERFACE_KEYBOARD_MINOR,
1641 .push_keyval = my_kbd_push_keyval,
1642 .push_scan_freg = my_kbd_push_key,
1643 .get_leds = my_kbd_get_leds,
1644 };
1645
1646 /* vdagent interface - to get mouse/clipboarde support */
1647 static int
1648 vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len)
1649 {
1650 spiceTerm *vt = SPICE_CONTAINEROF(sin, spiceTerm, vdagent_sin);
1651
1652 VDIChunkHeader *hdr = (VDIChunkHeader *)buf;
1653 VDAgentMessage *msg = (VDAgentMessage *)&hdr[1];
1654
1655 //g_assert(hdr->port == VDP_SERVER_PORT);
1656 g_assert(msg->protocol == VD_AGENT_PROTOCOL);
1657
1658 DPRINTF(1, "%d %d %d %d", len, hdr->port, msg->protocol, msg->type);
1659
1660 if (msg->type == VD_AGENT_MOUSE_STATE) {
1661 VDAgentMouseState *info = (VDAgentMouseState *)&msg[1];
1662 spiceterm_motion_event(vt, info->x, info->y, info->buttons);
1663 } else if (msg->type == VD_AGENT_ANNOUNCE_CAPABILITIES) {
1664 /* ignore for now */
1665 } else if (msg->type == VD_AGENT_MONITORS_CONFIG) {
1666 /* ignore for now */
1667 } else {
1668 DPRINTF(0, "got uknown vdagent message type %d\n", msg->type);
1669 }
1670
1671 return len;
1672 }
1673
1674 static int
1675 vmc_read(SpiceCharDeviceInstance *sin, uint8_t *buf, int len)
1676 {
1677 DPRINTF(1, "%d", len);
1678
1679 return 0;
1680 }
1681
1682 static void
1683 vmc_state(SpiceCharDeviceInstance *sin, int connected)
1684 {
1685 /* IGNORE */
1686 }
1687
1688 static SpiceCharDeviceInterface my_vdagent_sif = {
1689 .base.type = SPICE_INTERFACE_CHAR_DEVICE,
1690 .base.description = "spice virtual channel char device",
1691 .base.major_version = SPICE_INTERFACE_CHAR_DEVICE_MAJOR,
1692 .base.minor_version = SPICE_INTERFACE_CHAR_DEVICE_MINOR,
1693 .state = vmc_state,
1694 .write = vmc_write,
1695 .read = vmc_read,
1696 };
1697
1698 static spiceTerm *
1699 create_spiceterm(int argc, char** argv, int maxx, int maxy, guint timeout)
1700 {
1701 int i;
1702
1703 SpiceScreen *spice_screen;
1704
1705 SpiceCoreInterface *core = basic_event_loop_init();
1706 spice_screen = spice_screen_new(core, timeout);
1707 //spice_server_set_image_compression(server, SPICE_IMAGE_COMPRESS_OFF);
1708
1709 spiceTerm *vt = (spiceTerm *)calloc (sizeof(spiceTerm), 1);
1710
1711 vt->keyboard_sin.base.sif = &my_keyboard_sif.base;
1712 spice_server_add_interface(spice_screen->server, &vt->keyboard_sin.base);
1713
1714 vt->vdagent_sin.base.sif = &my_vdagent_sif.base;
1715 vt->vdagent_sin.subtype = "vdagent";
1716 spice_server_add_interface(spice_screen->server, &vt->vdagent_sin.base);
1717
1718 // screen->setXCutText = spiceterm_set_xcut_text;
1719 // screen->ptrAddEvent = spiceterm_pointer_event;
1720 // screen->newClientHook = new_client;
1721 // screen->desktopName = "SPICE Command Terminal";
1722
1723 vt->maxx = spice_screen->width;
1724 vt->maxy = spice_screen->height;
1725
1726 vt->width = vt->maxx / 8;
1727 vt->height = vt->maxy / 16;
1728
1729 vt->total_height = vt->height * 20;
1730 vt->scroll_height = 0;
1731 vt->y_base = 0;
1732 vt->y_displ = 0;
1733
1734 vt->region_top = 0;
1735 vt->region_bottom = vt->height;
1736
1737 vt->g0enc = LAT1_MAP;
1738 vt->g1enc = GRAF_MAP;
1739 vt->cur_enc = vt->g0enc;
1740 vt->charset = 0;
1741
1742 /* default text attributes */
1743 vt->default_attrib.bold = 0;
1744 vt->default_attrib.uline = 0;
1745 vt->default_attrib.blink = 0;
1746 vt->default_attrib.invers = 0;
1747 vt->default_attrib.unvisible = 0;
1748 vt->default_attrib.fgcol = 7;
1749 vt->default_attrib.bgcol = 0;
1750
1751 vt->cur_attrib = vt->default_attrib;
1752
1753 vt->cells = (TextCell *)calloc (sizeof (TextCell), vt->width*vt->total_height);
1754
1755 for (i = 0; i < vt->width*vt->total_height; i++) {
1756 vt->cells[i].ch = ' ';
1757 vt->cells[i].attrib = vt->default_attrib;
1758 }
1759
1760 vt->altcells = (TextCell *)calloc (sizeof (TextCell), vt->width*vt->height);
1761
1762 vt->screen = spice_screen;
1763
1764 return vt;
1765 }
1766
1767 static gboolean
1768 master_error_callback(GIOChannel *channel, GIOCondition condition,
1769 gpointer data)
1770 {
1771 //spiceTerm *vt = (spiceTerm *)data;
1772
1773 DPRINTF(1, "condition %d", condition);
1774
1775 exit(0);
1776
1777 return FALSE;
1778 }
1779
1780 static void
1781 master_watch(int master, int event, void *opaque)
1782 {
1783 spiceTerm *vt = (spiceTerm *)opaque;
1784
1785 // fixme: if (!vt->mark_active) {
1786
1787 if (event == SPICE_WATCH_EVENT_READ) {
1788 char buffer[1024];
1789 int c;
1790 while ((c = read(master, buffer, 1024)) == -1) {
1791 if (errno != EAGAIN) break;
1792 }
1793 if (c == -1) {
1794 g_error("got read error"); // fixme
1795 }
1796 spiceterm_puts (vt, buffer, c);
1797 } else {
1798 if (vt->ibuf_count > 0) {
1799 DPRINTF(1, "write input %x %d", vt->ibuf[0], vt->ibuf_count);
1800 write (master, vt->ibuf, vt->ibuf_count);
1801 vt->ibuf_count = 0; // fixme: what if not all data written
1802 }
1803 vt->screen->core->watch_update_mask(vt->screen->mwatch, SPICE_WATCH_EVENT_READ);
1804 }
1805 }
1806
1807 int
1808 main (int argc, char** argv)
1809 {
1810 int i;
1811 char **cmdargv = NULL;
1812 char *command = "/bin/bash"; // execute normal shell as default
1813 int pid;
1814 int master;
1815 char ptyname[1024];
1816 struct winsize dimensions;
1817
1818 g_thread_init(NULL);
1819
1820 for (i = 1; i < argc; i++) {
1821 if (!strcmp (argv[i], "-c")) {
1822 command = argv[i+1];
1823 cmdargv = &argv[i+1];
1824 argc = i;
1825 argv[i] = NULL;
1826 break;
1827 }
1828 }
1829
1830 if (0) print_usage(NULL); // fixme:
1831
1832 spiceTerm *vt = create_spiceterm (argc, argv, 745, 400, 10);
1833
1834 setlocale(LC_ALL, ""); // set from environment
1835
1836 char *ctype = setlocale (LC_CTYPE, NULL); // query LC_CTYPE
1837
1838 // fixme: ist there a standard way to detect utf8 mode ?
1839 if (strcasestr (ctype, ".utf-8")||strcasestr (ctype, ".utf8")) {
1840 vt->utf8 = 1;
1841 }
1842
1843 dimensions.ws_col = vt->width;
1844 dimensions.ws_row = vt->height;
1845
1846 setenv("TERM", TERM, 1);
1847
1848 DPRINTF(1, "execute %s", command);
1849
1850 pid = forkpty (&master, ptyname, NULL, &dimensions);
1851 if(!pid) {
1852
1853 // install default signal handlers
1854 signal (SIGQUIT, SIG_DFL);
1855 signal (SIGTERM, SIG_DFL);
1856 signal (SIGINT, SIG_DFL);
1857
1858 if (cmdargv) {
1859 execvp (command, cmdargv);
1860 } else {
1861 execlp (command, command, NULL);
1862 }
1863 perror ("Error: exec failed\n");
1864 exit (-1); // should not be reached
1865 } else if (pid == -1) {
1866 perror ("Error: fork failed\n");
1867 exit (-1);
1868 }
1869
1870 /* watch for errors - we need to use glib directly because spice
1871 * does not have SPICE_WATCH_EVENT for this */
1872 GIOChannel *channel = g_io_channel_unix_new(master);
1873 g_io_channel_set_flags(channel, G_IO_FLAG_NONBLOCK, NULL);
1874 g_io_channel_set_encoding(channel, NULL, NULL);
1875 g_io_add_watch(channel, G_IO_ERR|G_IO_HUP, master_error_callback, vt);
1876
1877 vt->screen->mwatch = vt->screen->core->watch_add(
1878 master, SPICE_WATCH_EVENT_READ /* |SPICE_WATCH_EVENT_WRITE */,
1879 master_watch, vt);
1880
1881 basic_event_loop_mainloop();
1882
1883 kill (pid, 9);
1884 int status;
1885 waitpid(pid, &status, 0);
1886
1887 exit (0);
1888 }