]> git.proxmox.com Git - spiceterm.git/blame - screen.c
use correct raster on resize
[spiceterm.git] / screen.c
CommitLineData
4ef70811
DM
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: qlx drawing code is copied from spice-server test code.
24
25*/
26
cc04455b
DM
27#include <stdlib.h>
28#include <math.h>
29#include <string.h>
30#include <stdio.h>
31#include <unistd.h>
32#include <signal.h>
33#include <wait.h>
34#include <sys/select.h>
35#include <sys/types.h>
36#include <getopt.h>
37
38#include <spice.h>
474762d8 39#include <spice/enums.h>
cc04455b
DM
40#include <spice/macros.h>
41#include <spice/qxl_dev.h>
60b9ef63 42#include <spice/vd_agent.h>
cc04455b 43
e3759a34
DM
44#include "glyphs.h"
45
46#include "spiceterm.h"
cc04455b 47
a0579497
DM
48static int debug = 0;
49
50#define DPRINTF(x, format, ...) { \
51 if (x <= debug) { \
52 printf("%s: " format "\n" , __FUNCTION__, ## __VA_ARGS__); \
53 } \
54}
55
cc04455b
DM
56#define MEM_SLOT_GROUP_ID 0
57
58#define NOTIFY_DISPLAY_BATCH (SINGLE_PART/2)
59#define NOTIFY_CURSOR_BATCH 10
60
65007123
DM
61/* these colours are from linux kernel drivers/char/vt.c */
62/* the default colour table, for VGA+ colour systems */
63int default_red[] = {0x00,0xaa,0x00,0xaa,0x00,0xaa,0x00,0xaa,
64 0x55,0xff,0x55,0xff,0x55,0xff,0x55,0xff};
65int default_grn[] = {0x00,0x00,0xaa,0x55,0x00,0x00,0xaa,0xaa,
66 0x55,0x55,0xff,0xff,0x55,0x55,0xff,0xff};
67int default_blu[] = {0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,
68 0x55,0x55,0x55,0x55,0xff,0xff,0xff,0xff};
69
cc04455b
DM
70/* Parts cribbed from spice-display.h/.c/qxl.c */
71
72typedef struct SimpleSpiceUpdate {
e70e45a9 73 QXLCommandExt ext; // needs to be first member
cc04455b
DM
74 QXLDrawable drawable;
75 QXLImage image;
76 uint8_t *bitmap;
e70e45a9 77 int cache_id; // do not free bitmap if cache_id != 0
cc04455b
DM
78} SimpleSpiceUpdate;
79
64bc7a2f
DM
80static void
81spice_screen_destroy_update(SimpleSpiceUpdate *update)
cc04455b
DM
82{
83 if (!update) {
84 return;
85 }
86 if (update->drawable.clip.type != SPICE_CLIP_TYPE_NONE) {
87 uint8_t *ptr = (uint8_t*)update->drawable.clip.data;
88 free(ptr);
89 }
e70e45a9
DM
90 if (update->bitmap && !update->cache_id) {
91 g_free(update->bitmap);
92 }
93
9f9c8d83 94 g_free(update);
cc04455b
DM
95}
96
e9a6b86c 97static int unique = 0x0ffff + 1;
cc04455b 98
64bc7a2f
DM
99static void
100set_cmd(QXLCommandExt *ext, uint32_t type, QXLPHYSICAL data)
cc04455b
DM
101{
102 ext->cmd.type = type;
103 ext->cmd.data = data;
104 ext->cmd.padding = 0;
105 ext->group_id = MEM_SLOT_GROUP_ID;
106 ext->flags = 0;
107}
108
64bc7a2f
DM
109static void
110simple_set_release_info(QXLReleaseInfo *info, intptr_t ptr)
cc04455b
DM
111{
112 info->id = ptr;
113 //info->group_id = MEM_SLOT_GROUP_ID;
114}
115
64bc7a2f 116/* Note: push_command/get_command are called from different threads */
7b4a7650 117
64bc7a2f
DM
118static void
119push_command(SpiceScreen *spice_screen, QXLCommandExt *ext)
7b4a7650 120{
30930d41
DM
121 int need_wakeup = 1;
122
64bc7a2f 123 g_mutex_lock(spice_screen->command_mutex);
7b4a7650 124
64bc7a2f
DM
125 while (spice_screen->commands_end - spice_screen->commands_start >= COMMANDS_SIZE) {
126 g_cond_wait(spice_screen->command_cond, spice_screen->command_mutex);
7b4a7650 127 }
7b4a7650 128
64bc7a2f
DM
129 g_assert(spice_screen->commands_end - spice_screen->commands_start < COMMANDS_SIZE);
130
30930d41
DM
131 if ((spice_screen->commands_end - spice_screen->commands_start) > 0) {
132 need_wakeup = 0;
133 }
134
64bc7a2f
DM
135 spice_screen->commands[spice_screen->commands_end % COMMANDS_SIZE] = ext;
136 spice_screen->commands_end++;
137
30930d41
DM
138 if (need_wakeup) {
139 spice_screen->qxl_worker->wakeup(spice_screen->qxl_worker);
140 }
141
64bc7a2f
DM
142 g_mutex_unlock(spice_screen->command_mutex);
143
7b4a7650
DM
144}
145
9f9c8d83 146/* bitmap are freed, so they must be allocated with g_malloc */
64bc7a2f 147static SimpleSpiceUpdate *
e9a6b86c 148spice_screen_update_from_bitmap_cmd(uint32_t surface_id, QXLRect bbox, uint8_t *bitmap, int cache_id)
cc04455b
DM
149{
150 SimpleSpiceUpdate *update;
151 QXLDrawable *drawable;
152 QXLImage *image;
153 uint32_t bw, bh;
154
155 bh = bbox.bottom - bbox.top;
156 bw = bbox.right - bbox.left;
157
9f9c8d83 158 update = g_new0(SimpleSpiceUpdate, 1);
cc04455b
DM
159 update->bitmap = bitmap;
160 drawable = &update->drawable;
161 image = &update->image;
162
163 drawable->surface_id = surface_id;
164
165 drawable->bbox = bbox;
4219b121 166 drawable->clip.type = SPICE_CLIP_TYPE_NONE;
cc04455b
DM
167 drawable->effect = QXL_EFFECT_OPAQUE;
168 simple_set_release_info(&drawable->release_info, (intptr_t)update);
169 drawable->type = QXL_DRAW_COPY;
170 drawable->surfaces_dest[0] = -1;
171 drawable->surfaces_dest[1] = -1;
172 drawable->surfaces_dest[2] = -1;
173
174 drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT;
175 drawable->u.copy.src_bitmap = (intptr_t)image;
176 drawable->u.copy.src_area.right = bw;
177 drawable->u.copy.src_area.bottom = bh;
178
e9a6b86c
DM
179 if (cache_id) {
180 QXL_SET_IMAGE_ID(image, QXL_IMAGE_GROUP_DEVICE, cache_id);
62e6a86b 181 image->descriptor.flags = SPICE_IMAGE_FLAGS_CACHE_ME;
e70e45a9 182 update->cache_id = cache_id;
e9a6b86c
DM
183 } else {
184 QXL_SET_IMAGE_ID(image, QXL_IMAGE_GROUP_DEVICE, ++unique);
185 }
cc04455b
DM
186 image->descriptor.type = SPICE_IMAGE_TYPE_BITMAP;
187 image->bitmap.flags = QXL_BITMAP_DIRECT | QXL_BITMAP_TOP_DOWN;
188 image->bitmap.stride = bw * 4;
189 image->descriptor.width = image->bitmap.x = bw;
190 image->descriptor.height = image->bitmap.y = bh;
191 image->bitmap.data = (intptr_t)bitmap;
192 image->bitmap.palette = 0;
193 image->bitmap.format = SPICE_BITMAP_FMT_32BIT;
194
195 set_cmd(&update->ext, QXL_CMD_DRAW, (intptr_t)drawable);
196
197 return update;
198}
199
64bc7a2f
DM
200static SimpleSpiceUpdate *
201spice_screen_draw_char_cmd(SpiceScreen *spice_screen, int x, int y, int c,
b1f67c20 202 int fg, int bg, gboolean uline)
cc04455b
DM
203{
204 int top, left;
205 uint8_t *dst;
e70e45a9 206 uint8_t *bitmap = NULL;
cc04455b 207 int bw, bh;
9462ba15 208 int i, j;
cc04455b 209 QXLRect bbox;
e9a6b86c 210 int cache_id = 0;
e70e45a9 211 CachedImage *ce;
e9a6b86c 212
b1f67c20 213 if (!uline && c < 256) {
e9a6b86c 214 cache_id = ((fg << 12) | (bg << 8) | (c & 255)) & 0x0ffff;
e70e45a9
DM
215 if ((ce = (CachedImage *)g_hash_table_lookup(spice_screen->image_cache, &cache_id))) {
216 bitmap = ce->bitmap;
217 }
e9a6b86c 218 }
cc04455b 219
8a22eb4f
DM
220 left = x*8;
221 top = y*16;
8a22eb4f 222
26c64941
DM
223 bw = 8;
224 bh = 16;
cc04455b 225
e70e45a9
DM
226 if (!bitmap) {
227 bitmap = dst = g_malloc(bw * bh * 4);
228
229 unsigned char *data = vt_font_data + c*16;
230 unsigned char d = *data;
231
232 g_assert(fg >= 0 && fg < 16);
233 g_assert(bg >= 0 && bg < 16);
234
235 unsigned char fgc_red = default_red[fg];
236 unsigned char fgc_blue = default_blu[fg];
237 unsigned char fgc_green = default_grn[fg];
238 unsigned char bgc_red = default_red[bg];
239 unsigned char bgc_blue = default_blu[bg];
240 unsigned char bgc_green = default_grn[bg];
241
242 for (j = 0; j < 16; j++) {
243 gboolean ul = (j == 14) && uline;
244 for (i = 0; i < 8; i++) {
245 if (i == 0) {
246 d=*data;
247 data++;
248 }
249 if (ul || d&0x80) {
250 *(dst) = fgc_blue;
251 *(dst+1) = fgc_green;
252 *(dst+2) = fgc_red;
253 *(dst+3) = 0;
254 } else {
255 *(dst) = bgc_blue;
256 *(dst+1) = bgc_green;
257 *(dst+2) = bgc_red;
258 *(dst+3) = 0;
259 }
260 d<<=1;
261 dst += 4;
9462ba15 262 }
9462ba15 263 }
e70e45a9
DM
264 ce = g_new(CachedImage, 1);
265 ce->cache_id = cache_id;
266 ce->bitmap = bitmap;
267 g_hash_table_insert(spice_screen->image_cache, &ce->cache_id, ce);
cc04455b
DM
268 }
269
270 bbox.left = left; bbox.top = top;
271 bbox.right = left + bw; bbox.bottom = top + bh;
9462ba15 272
e9a6b86c 273 return spice_screen_update_from_bitmap_cmd(0, bbox, bitmap, cache_id);
cc04455b
DM
274}
275
64bc7a2f
DM
276void
277spice_screen_scroll(SpiceScreen *spice_screen, int x1, int y1,
278 int x2, int y2, int src_x, int src_y)
7b4a7650
DM
279{
280 SimpleSpiceUpdate *update;
281 QXLDrawable *drawable;
282 QXLRect bbox;
283
64bc7a2f 284 int surface_id = 0;
7b4a7650
DM
285
286 update = g_new0(SimpleSpiceUpdate, 1);
287 drawable = &update->drawable;
288
289 bbox.left = x1;
290 bbox.top = y1;
291 bbox.right = x2;
292 bbox.bottom = y2;
293
294 drawable->surface_id = surface_id;
295
296 drawable->bbox = bbox;
297 drawable->clip.type = SPICE_CLIP_TYPE_NONE;
298 drawable->effect = QXL_EFFECT_OPAQUE;
299 simple_set_release_info(&drawable->release_info, (intptr_t)update);
300 drawable->type = QXL_COPY_BITS;
301 drawable->surfaces_dest[0] = -1;
302 drawable->surfaces_dest[1] = -1;
303 drawable->surfaces_dest[2] = -1;
304
305 drawable->u.copy_bits.src_pos.x = src_x;
306 drawable->u.copy_bits.src_pos.y = src_y;
307
308 set_cmd(&update->ext, QXL_CMD_DRAW, (intptr_t)drawable);
309
64bc7a2f 310 push_command(spice_screen, &update->ext);
7b4a7650
DM
311}
312
64bc7a2f
DM
313void
314spice_screen_clear(SpiceScreen *spice_screen, int x1, int y1, int x2, int y2)
7b4a7650
DM
315{
316 SimpleSpiceUpdate *update;
317 QXLDrawable *drawable;
318 QXLRect bbox;
319
64bc7a2f 320 int surface_id = 0;
7b4a7650
DM
321
322 update = g_new0(SimpleSpiceUpdate, 1);
323 drawable = &update->drawable;
324
325 bbox.left = x1;
326 bbox.top = y1;
327 bbox.right = x2;
328 bbox.bottom = y2;
329
330 drawable->surface_id = surface_id;
331
332 drawable->bbox = bbox;
333 drawable->clip.type = SPICE_CLIP_TYPE_NONE;
334 drawable->effect = QXL_EFFECT_OPAQUE;
335 simple_set_release_info(&drawable->release_info, (intptr_t)update);
336 drawable->type = QXL_DRAW_BLACKNESS;
337 drawable->surfaces_dest[0] = -1;
338 drawable->surfaces_dest[1] = -1;
339 drawable->surfaces_dest[2] = -1;
340
341 set_cmd(&update->ext, QXL_CMD_DRAW, (intptr_t)drawable);
342
64bc7a2f 343 push_command(spice_screen, &update->ext);
7b4a7650
DM
344}
345
64bc7a2f
DM
346static void
347create_primary_surface(SpiceScreen *spice_screen, uint32_t width,
348 uint32_t height)
cc04455b 349{
64bc7a2f 350 QXLWorker *qxl_worker = spice_screen->qxl_worker;
cc04455b
DM
351 QXLDevSurfaceCreate surface = { 0, };
352
cc04455b
DM
353 g_assert(height > 0);
354 g_assert(width > 0);
355
ead260d7
DM
356 if (height > MAX_HEIGHT)
357 height = MAX_HEIGHT;
358
359 if (width > MAX_WIDTH)
360 width = MAX_WIDTH;
361
cc04455b 362 surface.format = SPICE_SURFACE_FMT_32_xRGB;
64bc7a2f
DM
363 surface.width = spice_screen->primary_width = width;
364 surface.height = spice_screen->primary_height = height;
cc04455b
DM
365 surface.stride = -width * 4; /* negative? */
366 surface.mouse_mode = TRUE; /* unused by red_worker */
367 surface.flags = 0;
368 surface.type = 0; /* unused by red_worker */
369 surface.position = 0; /* unused by red_worker */
64bc7a2f 370 surface.mem = (uint64_t)&spice_screen->primary_surface;
cc04455b
DM
371 surface.group_id = MEM_SLOT_GROUP_ID;
372
64bc7a2f
DM
373 spice_screen->width = width;
374 spice_screen->height = height;
cc04455b
DM
375
376 qxl_worker->create_primary_surface(qxl_worker, 0, &surface);
377}
378
8f53ae81
DM
379void
380spice_screen_resize(SpiceScreen *spice_screen, uint32_t width,
381 uint32_t height)
382{
383 QXLWorker *qxl_worker = spice_screen->qxl_worker;
384
385 if (spice_screen->width == width && spice_screen->height == height) {
386 return;
387 }
388
389 qxl_worker->destroy_primary_surface(qxl_worker, 0);
390
391 create_primary_surface(spice_screen, width, height);
27441de6
DM
392
393 spice_screen_clear(spice_screen, 0, 0, width, height);
8f53ae81
DM
394}
395
396
cc04455b 397QXLDevMemSlot slot = {
64bc7a2f
DM
398 .slot_group_id = MEM_SLOT_GROUP_ID,
399 .slot_id = 0,
400 .generation = 0,
401 .virt_start = 0,
402 .virt_end = ~0,
403 .addr_delta = 0,
404 .qxl_ram_size = ~0,
cc04455b
DM
405};
406
64bc7a2f
DM
407static void
408attache_worker(QXLInstance *qin, QXLWorker *_qxl_worker)
cc04455b 409{
64bc7a2f 410 SpiceScreen *spice_screen = SPICE_CONTAINEROF(qin, SpiceScreen, qxl_instance);
cc04455b 411
64bc7a2f
DM
412 if (spice_screen->qxl_worker) {
413 g_assert_not_reached();
cc04455b 414 }
64bc7a2f
DM
415
416 spice_screen->qxl_worker = _qxl_worker;
417 spice_screen->qxl_worker->add_memslot(spice_screen->qxl_worker, &slot);
8f53ae81 418 create_primary_surface(spice_screen, spice_screen->width, spice_screen->height);
64bc7a2f 419 spice_screen->qxl_worker->start(spice_screen->qxl_worker);
cc04455b
DM
420}
421
64bc7a2f
DM
422static void
423set_compression_level(QXLInstance *qin, int level)
cc04455b 424{
64bc7a2f 425 /* not used */
cc04455b
DM
426}
427
64bc7a2f
DM
428static void
429set_mm_time(QXLInstance *qin, uint32_t mm_time)
cc04455b 430{
64bc7a2f 431 /* not used */
cc04455b 432}
64bc7a2f
DM
433
434static void
435get_init_info(QXLInstance *qin, QXLDevInitInfo *info)
cc04455b
DM
436{
437 memset(info, 0, sizeof(*info));
438 info->num_memslots = 1;
439 info->num_memslots_groups = 1;
440 info->memslot_id_bits = 1;
441 info->memslot_gen_bits = 1;
aae93060 442 info->n_surfaces = 1;
cc04455b
DM
443}
444
64bc7a2f
DM
445/* called from spice_server thread (i.e. red_worker thread) */
446static int
447get_command(QXLInstance *qin, struct QXLCommandExt *ext)
cc04455b 448{
64bc7a2f 449 SpiceScreen *spice_screen = SPICE_CONTAINEROF(qin, SpiceScreen, qxl_instance);
63a34f43
DM
450 int res = FALSE;
451
64bc7a2f 452 g_mutex_lock(spice_screen->command_mutex);
63a34f43 453
64bc7a2f 454 if ((spice_screen->commands_end - spice_screen->commands_start) == 0) {
63a34f43
DM
455 res = FALSE;
456 goto ret;
cc04455b 457 }
63a34f43 458
64bc7a2f
DM
459 *ext = *spice_screen->commands[spice_screen->commands_start % COMMANDS_SIZE];
460 g_assert(spice_screen->commands_start < spice_screen->commands_end);
461 spice_screen->commands_start++;
462 g_cond_signal(spice_screen->command_cond);
63a34f43
DM
463
464 res = TRUE;
465
466ret:
64bc7a2f 467 g_mutex_unlock(spice_screen->command_mutex);
63a34f43 468 return res;
cc04455b
DM
469}
470
64bc7a2f
DM
471static int
472req_cmd_notification(QXLInstance *qin)
cc04455b 473{
64bc7a2f
DM
474 //SpiceScreen *spice_screen = SPICE_CONTAINEROF(qin, SpiceScreen, qxl_instance);
475 //spice_screen->core->timer_start(spice_screen->wakeup_timer, spice_screen->wakeup_ms);
abc13312 476
cc04455b
DM
477 return TRUE;
478}
f6cb554c 479
64bc7a2f
DM
480static void
481release_resource(QXLInstance *qin, struct QXLReleaseInfoExt release_info)
cc04455b
DM
482{
483 QXLCommandExt *ext = (QXLCommandExt*)(unsigned long)release_info.info->id;
64bc7a2f 484
cc04455b
DM
485 g_assert(release_info.group_id == MEM_SLOT_GROUP_ID);
486 switch (ext->cmd.type) {
487 case QXL_CMD_DRAW:
64bc7a2f 488 spice_screen_destroy_update((void*)ext);
cc04455b
DM
489 break;
490 case QXL_CMD_SURFACE:
491 free(ext);
492 break;
493 case QXL_CMD_CURSOR: {
494 QXLCursorCmd *cmd = (QXLCursorCmd *)(unsigned long)ext->cmd.data;
495 if (cmd->type == QXL_CURSOR_SET) {
496 free(cmd);
497 }
498 free(ext);
499 break;
500 }
501 default:
502 abort();
503 }
504}
505
64bc7a2f
DM
506#define CURSOR_WIDTH 8
507#define CURSOR_HEIGHT 16
cc04455b
DM
508
509static struct {
510 QXLCursor cursor;
511 uint8_t data[CURSOR_WIDTH * CURSOR_HEIGHT * 4]; // 32bit per pixel
512} cursor;
513
64bc7a2f
DM
514static void
515cursor_init()
cc04455b
DM
516{
517 cursor.cursor.header.unique = 0;
518 cursor.cursor.header.type = SPICE_CURSOR_TYPE_COLOR32;
519 cursor.cursor.header.width = CURSOR_WIDTH;
520 cursor.cursor.header.height = CURSOR_HEIGHT;
521 cursor.cursor.header.hot_spot_x = 0;
522 cursor.cursor.header.hot_spot_y = 0;
523 cursor.cursor.data_size = CURSOR_WIDTH * CURSOR_HEIGHT * 4;
524
525 // X drivers addes it to the cursor size because it could be
526 // cursor data information or another cursor related stuffs.
527 // Otherwise, the code will break in client/cursor.cpp side,
528 // that expect the data_size plus cursor information.
529 // Blame cursor protocol for this. :-)
530 cursor.cursor.data_size += 128;
531 cursor.cursor.chunk.data_size = cursor.cursor.data_size;
532 cursor.cursor.chunk.prev_chunk = cursor.cursor.chunk.next_chunk = 0;
533}
534
64bc7a2f
DM
535static int
536get_cursor_command(QXLInstance *qin, struct QXLCommandExt *ext)
cc04455b 537{
64bc7a2f 538 SpiceScreen *spice_screen = SPICE_CONTAINEROF(qin, SpiceScreen, qxl_instance);
cc04455b
DM
539 static int set = 1;
540 static int x = 0, y = 0;
541 QXLCursorCmd *cursor_cmd;
542 QXLCommandExt *cmd;
543
64bc7a2f 544 if (!spice_screen->cursor_notify) {
cc04455b
DM
545 return FALSE;
546 }
547
64bc7a2f 548 spice_screen->cursor_notify--;
cc04455b
DM
549 cmd = calloc(sizeof(QXLCommandExt), 1);
550 cursor_cmd = calloc(sizeof(QXLCursorCmd), 1);
551
552 cursor_cmd->release_info.id = (unsigned long)cmd;
553
554 if (set) {
555 cursor_cmd->type = QXL_CURSOR_SET;
556 cursor_cmd->u.set.position.x = 0;
557 cursor_cmd->u.set.position.y = 0;
558 cursor_cmd->u.set.visible = TRUE;
559 cursor_cmd->u.set.shape = (unsigned long)&cursor;
64bc7a2f 560 // white rect as cursor
cc04455b
DM
561 memset(cursor.data, 255, sizeof(cursor.data));
562 set = 0;
563 } else {
564 cursor_cmd->type = QXL_CURSOR_MOVE;
64bc7a2f
DM
565 cursor_cmd->u.position.x = x++ % spice_screen->primary_width;
566 cursor_cmd->u.position.y = y++ % spice_screen->primary_height;
cc04455b
DM
567 }
568
569 cmd->cmd.data = (unsigned long)cursor_cmd;
570 cmd->cmd.type = QXL_CMD_CURSOR;
571 cmd->group_id = MEM_SLOT_GROUP_ID;
572 cmd->flags = 0;
573 *ext = *cmd;
64bc7a2f 574
cc04455b
DM
575 return TRUE;
576}
577
64bc7a2f
DM
578static int
579req_cursor_notification(QXLInstance *qin)
cc04455b 580{
64bc7a2f
DM
581 /* not used */
582
cc04455b
DM
583 return TRUE;
584}
585
64bc7a2f
DM
586static void
587notify_update(QXLInstance *qin, uint32_t update_id)
cc04455b 588{
64bc7a2f 589 /* not used */
cc04455b
DM
590}
591
64bc7a2f
DM
592static int
593flush_resources(QXLInstance *qin)
cc04455b 594{
64bc7a2f
DM
595 /* not used */
596
cc04455b
DM
597 return TRUE;
598}
599
64bc7a2f
DM
600static int
601client_monitors_config(QXLInstance *qin, VDAgentMonitorsConfig *monitors_config)
cc04455b 602{
64bc7a2f
DM
603 /* not used */
604
cc04455b
DM
605 return 0;
606}
607
64bc7a2f
DM
608static void
609set_client_capabilities(QXLInstance *qin, uint8_t client_present,
610 uint8_t caps[58])
cc04455b 611{
64bc7a2f 612 SpiceScreen *spice_screen = SPICE_CONTAINEROF(qin, SpiceScreen, qxl_instance);
cc04455b 613
a3fd8291 614 DPRINTF(1, "present %d caps %d", client_present, caps[0]);
64bc7a2f
DM
615
616 if (spice_screen->on_client_connected && client_present) {
617 spice_screen->on_client_connected(spice_screen);
cc04455b 618 }
64bc7a2f
DM
619 if (spice_screen->on_client_disconnected && !client_present) {
620 spice_screen->on_client_disconnected(spice_screen);
cc04455b
DM
621 }
622}
623
6faab5d5
DM
624static int client_count = 0;
625
64bc7a2f
DM
626static void
627client_connected(SpiceScreen *spice_screen)
6faab5d5 628{
6faab5d5 629 client_count++;
a0579497 630
a3fd8291 631 DPRINTF(1, "client_count = %d", client_count);
6faab5d5
DM
632}
633
64bc7a2f
DM
634static void
635client_disconnected(SpiceScreen *spice_screen)
6faab5d5 636{
6faab5d5
DM
637 if (client_count > 0) {
638 client_count--;
a3fd8291 639 DPRINTF(1, "client_count = %d", client_count);
6faab5d5
DM
640 exit(0); // fixme: cleanup?
641 }
642}
643
64bc7a2f
DM
644static void
645do_conn_timeout(void *opaque)
f6cb554c 646{
64bc7a2f 647 // SpiceScreen *spice_screen = opaque;
f6cb554c
DM
648
649 if (client_count <= 0) {
a0579497 650 printf("connection timeout - stopping server\n");
f6cb554c
DM
651 exit (0); // fixme: cleanup?
652 }
653}
654
cc04455b
DM
655QXLInterface display_sif = {
656 .base = {
657 .type = SPICE_INTERFACE_QXL,
64bc7a2f 658 .description = "spiceterm display server",
cc04455b
DM
659 .major_version = SPICE_INTERFACE_QXL_MAJOR,
660 .minor_version = SPICE_INTERFACE_QXL_MINOR
661 },
662 .attache_worker = attache_worker,
663 .set_compression_level = set_compression_level,
664 .set_mm_time = set_mm_time,
665 .get_init_info = get_init_info,
666
667 /* the callbacks below are called from spice server thread context */
668 .get_command = get_command,
669 .req_cmd_notification = req_cmd_notification,
670 .release_resource = release_resource,
671 .get_cursor_command = get_cursor_command,
672 .req_cursor_notification = req_cursor_notification,
673 .notify_update = notify_update,
674 .flush_resources = flush_resources,
675 .client_monitors_config = client_monitors_config,
676 .set_client_capabilities = set_client_capabilities,
677};
678
cc04455b 679
64bc7a2f 680void
1d11aa12
DM
681spice_screen_draw_char(SpiceScreen *spice_screen, int x, int y, gunichar2 ch,
682 TextAttributes attrib)
22e5ba02
DM
683{
684 int fg, bg;
685
1d11aa12 686 int invers;
22e5ba02 687 if (attrib.invers) {
1d11aa12
DM
688 invers = attrib.selected ? 0 : 1;
689 } else {
690 invers = attrib.selected ? 1 : 0;
691 }
692
693 if (invers) {
22e5ba02
DM
694 bg = attrib.fgcol;
695 fg = attrib.bgcol;
696 } else {
697 bg = attrib.bgcol;
698 fg = attrib.fgcol;
699 }
700
701 if (attrib.bold) {
702 fg += 8;
703 }
704
705 // unsuported attributes = (attrib.blink || attrib.unvisible)
706
abc13312
DM
707 int c = vt_fontmap[ch];
708
22e5ba02 709 SimpleSpiceUpdate *update;
b1f67c20 710 update = spice_screen_draw_char_cmd(spice_screen, x, y, c, fg, bg, attrib.uline);
64bc7a2f 711 push_command(spice_screen, &update->ext);
22e5ba02
DM
712}
713
64bc7a2f 714SpiceScreen *
8f53ae81 715spice_screen_new(SpiceCoreInterface *core, uint32_t width, uint32_t height, guint timeout)
cc04455b
DM
716{
717 int port = 5912;
64bc7a2f 718 SpiceScreen *spice_screen = g_new0(SpiceScreen, 1);
cc04455b
DM
719 SpiceServer* server = spice_server_new();
720
8f53ae81
DM
721 spice_screen->width = width;
722 spice_screen->height = height;
723
64bc7a2f
DM
724 spice_screen->command_cond = g_cond_new();
725 spice_screen->command_mutex = g_mutex_new();
63a34f43 726
64bc7a2f
DM
727 spice_screen->on_client_connected = client_connected,
728 spice_screen->on_client_disconnected = client_disconnected,
6faab5d5 729
64bc7a2f
DM
730 spice_screen->qxl_instance.base.sif = &display_sif.base;
731 spice_screen->qxl_instance.id = 0;
cc04455b 732
64bc7a2f
DM
733 spice_screen->core = core;
734 spice_screen->server = server;
735
736 spice_screen->cursor_notify = NOTIFY_CURSOR_BATCH;
737
738 printf("listening on port %d (unsecure)\n", port);
8a22eb4f 739
cc04455b
DM
740 spice_server_set_port(server, port);
741 spice_server_set_noauth(server);
64bc7a2f 742
1d7f2da4
DM
743 int res = spice_server_init(server, core);
744 if (res != 0) {
745 g_error("spice_server_init failed, res = %d\n", res);
746 }
cc04455b
DM
747
748 cursor_init();
f6cb554c 749
64bc7a2f
DM
750 spice_screen->conn_timeout_timer = core->timer_add(do_conn_timeout, spice_screen);
751 spice_screen->core->timer_start(spice_screen->conn_timeout_timer, timeout*1000);
f6cb554c 752
38e3e912
DM
753 spice_server_add_interface(spice_screen->server, &spice_screen->qxl_instance.base);
754
64bc7a2f 755 return spice_screen;
cc04455b 756}