1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
|
/*
* uterm - Linux User-Space Terminal
*
* Copyright (c) 2011-2012 David Herrmann <dh.herrmann@googlemail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* Video Control
* Core Implementation of the uterm_video, uterm_display and uterm_screen
* objects.
*/
#include <errno.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "eloop.h"
#include "log.h"
#include "static_misc.h"
#include "uterm.h"
#include "uterm_video.h"
#define LOG_SUBSYSTEM "video"
const char *uterm_dpms_to_name(int dpms)
{
switch (dpms) {
case UTERM_DPMS_ON:
return "ON";
case UTERM_DPMS_STANDBY:
return "STANDBY";
case UTERM_DPMS_SUSPEND:
return "SUSPEND";
case UTERM_DPMS_OFF:
return "OFF";
default:
return "UNKNOWN";
}
}
/* Until we allow multiple displays in one screen, we use this constructor which
* is basically just a wrapper around "struct uterm_dispaly".
* The idea behind screens is having one single drawing-target which is spread
* across several displays which can be placed anywhere in the virtual screen.
*/
int uterm_screen_new_single(struct uterm_screen **out,
struct uterm_display *disp)
{
struct uterm_screen *screen;
if (!out || !disp)
return -EINVAL;
screen = malloc(sizeof(*screen));
if (!screen)
return -ENOMEM;
memset(screen, 0, sizeof(*screen));
screen->ref = 1;
screen->disp = disp;
uterm_display_ref(screen->disp);
*out = screen;
return 0;
}
void uterm_screen_ref(struct uterm_screen *screen)
{
if (!screen || !screen->ref)
return;
++screen->ref;
}
void uterm_screen_unref(struct uterm_screen *screen)
{
if (!screen || !screen->ref || --screen->ref)
return;
uterm_display_unref(screen->disp);
free(screen);
}
unsigned int uterm_screen_width(struct uterm_screen *screen)
{
if (!screen)
return 0;
return uterm_mode_get_width(uterm_display_get_current(screen->disp));
}
unsigned int uterm_screen_height(struct uterm_screen *screen)
{
if (!screen)
return 0;
return uterm_mode_get_height(uterm_display_get_current(screen->disp));
}
int uterm_screen_use(struct uterm_screen *screen)
{
if (!screen || !display_is_online(screen->disp))
return -EINVAL;
return VIDEO_CALL(screen->disp->ops->use, -EOPNOTSUPP, screen->disp);
}
int uterm_screen_swap(struct uterm_screen *screen)
{
if (!screen || !display_is_online(screen->disp))
return -EINVAL;
return VIDEO_CALL(screen->disp->ops->swap, 0, screen->disp);
}
int uterm_screen_blit(struct uterm_screen *screen,
const struct uterm_video_buffer *buf,
unsigned int x, unsigned int y)
{
if (!screen)
return -EINVAL;
return VIDEO_CALL(screen->disp->ops->blit, -EOPNOTSUPP, screen->disp,
buf, x, y);
}
int uterm_screen_blend(struct uterm_screen *screen,
const struct uterm_video_buffer *buf,
unsigned int x, unsigned int y,
uint8_t fr, uint8_t fg, uint8_t fb,
uint8_t br, uint8_t bg, uint8_t bb)
{
if (!screen)
return -EINVAL;
return VIDEO_CALL(screen->disp->ops->blend, -EOPNOTSUPP, screen->disp,
buf, x, y, fr, fg, fb, br, bg, bb);
}
int uterm_screen_blendv(struct uterm_screen *screen,
const struct uterm_video_blend_req *req, size_t num)
{
if (!screen)
return -EINVAL;
return VIDEO_CALL(screen->disp->ops->blendv, -EOPNOTSUPP,
screen->disp, req, num);
}
int uterm_screen_fill(struct uterm_screen *screen,
uint8_t r, uint8_t g, uint8_t b,
unsigned int x, unsigned int y,
unsigned int width, unsigned int height)
{
if (!screen)
return -EINVAL;
return VIDEO_CALL(screen->disp->ops->fill, -EOPNOTSUPP, screen->disp,
r, g, b, x, y, width, height);
}
int mode_new(struct uterm_mode **out, const struct mode_ops *ops)
{
struct uterm_mode *mode;
int ret;
if (!out || !ops)
return -EINVAL;
mode = malloc(sizeof(*mode));
if (!mode)
return -ENOMEM;
memset(mode, 0, sizeof(*mode));
mode->ref = 1;
mode->ops = ops;
ret = VIDEO_CALL(mode->ops->init, 0, mode);
if (ret)
goto err_free;
*out = mode;
return 0;
err_free:
free(mode);
return ret;
}
void uterm_mode_ref(struct uterm_mode *mode)
{
if (!mode || !mode->ref)
return;
++mode->ref;
}
void uterm_mode_unref(struct uterm_mode *mode)
{
if (!mode || !mode->ref || --mode->ref)
return;
VIDEO_CALL(mode->ops->destroy, 0, mode);
free(mode);
}
struct uterm_mode *uterm_mode_next(struct uterm_mode *mode)
{
if (!mode)
return NULL;
return mode->next;
}
const char *uterm_mode_get_name(const struct uterm_mode *mode)
{
if (!mode)
return NULL;
return VIDEO_CALL(mode->ops->get_name, NULL, mode);
}
unsigned int uterm_mode_get_width(const struct uterm_mode *mode)
{
if (!mode)
return 0;
return VIDEO_CALL(mode->ops->get_width, 0, mode);
}
unsigned int uterm_mode_get_height(const struct uterm_mode *mode)
{
if (!mode)
return 0;
return VIDEO_CALL(mode->ops->get_height, 0, mode);
}
int display_new(struct uterm_display **out, const struct display_ops *ops)
{
struct uterm_display *disp;
int ret;
if (!out || !ops)
return -EINVAL;
disp = malloc(sizeof(*disp));
if (!disp)
return -ENOMEM;
memset(disp, 0, sizeof(*disp));
disp->ref = 1;
disp->ops = ops;
ret = VIDEO_CALL(disp->ops->init, 0, disp);
if (ret)
goto err_free;
log_info("new display %p", disp);
*out = disp;
return 0;
err_free:
free(disp);
return ret;
}
void uterm_display_ref(struct uterm_display *disp)
{
if (!disp || !disp->ref)
return;
++disp->ref;
}
void uterm_display_unref(struct uterm_display *disp)
{
struct uterm_mode *mode;
if (!disp || !disp->ref || --disp->ref)
return;
log_info("free display %p", disp);
VIDEO_CALL(disp->ops->destroy, 0, disp);
while ((mode = disp->modes)) {
disp->modes = mode->next;
mode->next = NULL;
uterm_mode_unref(mode);
}
free(disp);
}
struct uterm_display *uterm_display_next(struct uterm_display *disp)
{
if (!disp)
return NULL;
return disp->next;
}
struct uterm_mode *uterm_display_get_modes(struct uterm_display *disp)
{
if (!disp)
return NULL;
return disp->modes;
}
struct uterm_mode *uterm_display_get_current(struct uterm_display *disp)
{
if (!disp)
return NULL;
return disp->current_mode;
}
struct uterm_mode *uterm_display_get_default(struct uterm_display *disp)
{
if (!disp)
return NULL;
return disp->default_mode;
}
int uterm_display_get_state(struct uterm_display *disp)
{
if (!disp)
return UTERM_DISPLAY_GONE;
if (disp->video) {
if (disp->flags & DISPLAY_ONLINE) {
if (disp->video->flags & VIDEO_AWAKE)
return UTERM_DISPLAY_ACTIVE;
else
return UTERM_DISPLAY_ASLEEP;
} else {
return UTERM_DISPLAY_INACTIVE;
}
} else {
return UTERM_DISPLAY_GONE;
}
}
int uterm_display_activate(struct uterm_display *disp, struct uterm_mode *mode)
{
if (!disp || !display_is_conn(disp) || display_is_online(disp))
return -EINVAL;
if (!mode)
mode = disp->default_mode;
return VIDEO_CALL(disp->ops->activate, 0, disp, mode);
}
void uterm_display_deactivate(struct uterm_display *disp)
{
if (!disp || !display_is_online(disp))
return;
VIDEO_CALL(disp->ops->deactivate, 0, disp);
}
int uterm_display_set_dpms(struct uterm_display *disp, int state)
{
if (!disp || !display_is_conn(disp))
return -EINVAL;
return VIDEO_CALL(disp->ops->set_dpms, 0, disp, state);
}
int uterm_display_get_dpms(const struct uterm_display *disp)
{
if (!disp || !display_is_conn(disp))
return UTERM_DPMS_OFF;
return disp->dpms;
}
int uterm_display_use(struct uterm_display *disp)
{
if (!disp || !display_is_online(disp))
return -EINVAL;
return VIDEO_CALL(disp->ops->use, -EOPNOTSUPP, disp);
}
int uterm_display_swap(struct uterm_display *disp)
{
if (!disp || !display_is_online(disp))
return -EINVAL;
return VIDEO_CALL(disp->ops->swap, 0, disp);
}
int uterm_display_fake_blend(struct uterm_display *disp,
const struct uterm_video_buffer *buf,
unsigned int x, unsigned int y,
uint8_t fr, uint8_t fg, uint8_t fb,
uint8_t br, uint8_t bg, uint8_t bb)
{
struct uterm_video_blend_req req;
if (!disp)
return -EINVAL;
memset(&req, 0, sizeof(req));
req.buf = buf;
req.x = x;
req.y = y;
req.fr = fr;
req.fg = fg;
req.fb = fb;
req.br = br;
req.bg = bg;
req.bb = bb;
return VIDEO_CALL(disp->ops->fake_blendv, -EOPNOTSUPP, disp, &req, 1);
}
int uterm_display_fake_blendv(struct uterm_display *disp,
const struct uterm_video_blend_req *req,
size_t num)
{
if (!disp)
return -EINVAL;
return VIDEO_CALL(disp->ops->fake_blendv, -EOPNOTSUPP, disp, req, num);
}
int uterm_video_new(struct uterm_video **out,
struct ev_eloop *eloop,
unsigned int type,
const char *node)
{
struct uterm_video *video;
int ret;
const struct video_ops *ops;
if (!out || !eloop)
return -EINVAL;
switch (type) {
case UTERM_VIDEO_DRM:
if (!drm_available) {
log_err("DRM backend is not available");
return -EOPNOTSUPP;
}
ops = &drm_video_ops;
break;
case UTERM_VIDEO_DUMB:
if (!dumb_available) {
log_err("Dumb DRM backend is not available");
return -EOPNOTSUPP;
}
ops = &dumb_video_ops;
break;
case UTERM_VIDEO_FBDEV:
if (!fbdev_available) {
log_err("FBDEV backend is not available");
return -EOPNOTSUPP;
}
ops = &fbdev_video_ops;
break;
default:
log_err("invalid video backend %d", type);
return -EINVAL;
}
video = malloc(sizeof(*video));
if (!video)
return -ENOMEM;
memset(video, 0, sizeof(*video));
video->ref = 1;
video->ops = ops;
video->eloop = eloop;
ret = kmscon_hook_new(&video->hook);
if (ret)
goto err_free;
ret = VIDEO_CALL(video->ops->init, 0, video, node);
if (ret)
goto err_hook;
ev_eloop_ref(video->eloop);
log_info("new device %p", video);
*out = video;
return 0;
err_hook:
kmscon_hook_free(video->hook);
err_free:
free(video);
return ret;
}
void uterm_video_ref(struct uterm_video *video)
{
if (!video || !video->ref)
return;
++video->ref;
}
void uterm_video_unref(struct uterm_video *video)
{
struct uterm_display *disp;
if (!video || !video->ref || --video->ref)
return;
log_info("free device %p", video);
VIDEO_CALL(video->ops->destroy, 0, video);
while ((disp = video->displays)) {
video->displays = disp->next;
disp->next = NULL;
uterm_display_unref(disp);
}
kmscon_hook_free(video->hook);
ev_eloop_unref(video->eloop);
free(video);
}
void uterm_video_segfault(struct uterm_video *video)
{
if (!video)
return;
VIDEO_CALL(video->ops->segfault, 0, video);
}
int uterm_video_use(struct uterm_video *video)
{
if (!video)
return -EINVAL;
return video_do_use(video);
}
struct uterm_display *uterm_video_get_displays(struct uterm_video *video)
{
if (!video)
return NULL;
return video->displays;
}
int uterm_video_register_cb(struct uterm_video *video, uterm_video_cb cb,
void *data)
{
if (!video || !cb)
return -EINVAL;
return kmscon_hook_add_cast(video->hook, cb, data);
}
void uterm_video_unregister_cb(struct uterm_video *video, uterm_video_cb cb,
void *data)
{
if (!video || !cb)
return;
kmscon_hook_rm_cast(video->hook, cb, data);
}
void uterm_video_sleep(struct uterm_video *video)
{
if (!video || !video_is_awake(video))
return;
VIDEO_CB(video, NULL, UTERM_SLEEP);
VIDEO_CALL(video->ops->sleep, 0, video);
}
int uterm_video_wake_up(struct uterm_video *video)
{
int ret;
if (!video)
return -EINVAL;
if (video_is_awake(video))
return 0;
ret = VIDEO_CALL(video->ops->wake_up, 0, video);
if (ret)
return ret;
VIDEO_CB(video, NULL, UTERM_WAKE_UP);
return 0;
}
bool uterm_video_is_awake(struct uterm_video *video)
{
return video && video_is_awake(video);
}
void uterm_video_poll(struct uterm_video *video)
{
if (!video)
return;
VIDEO_CALL(video->ops->poll, 0, video);
}
|