2018-09-17 21:46:39 +02:00
|
|
|
#include <assert.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2020-11-11 14:16:41 +01:00
|
|
|
#include <stdio.h>
|
2017-12-17 12:56:42 +01:00
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
2018-03-20 23:10:42 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-12-17 12:56:42 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include "backend/headless.h"
|
2020-08-22 17:24:16 +02:00
|
|
|
#include "render/swapchain.h"
|
|
|
|
#include "render/wlr_renderer.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2018-09-17 21:46:39 +02:00
|
|
|
static struct wlr_headless_output *headless_output_from_output(
|
|
|
|
struct wlr_output *wlr_output) {
|
|
|
|
assert(wlr_output_is_headless(wlr_output));
|
|
|
|
return (struct wlr_headless_output *)wlr_output;
|
|
|
|
}
|
|
|
|
|
2017-12-17 18:02:55 +01:00
|
|
|
static bool output_set_custom_mode(struct wlr_output *wlr_output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh) {
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_output_from_output(wlr_output);
|
2017-12-17 18:02:55 +01:00
|
|
|
|
2018-04-06 04:48:00 +02:00
|
|
|
if (refresh <= 0) {
|
2018-04-04 04:54:01 +02:00
|
|
|
refresh = HEADLESS_DEFAULT_REFRESH;
|
|
|
|
}
|
|
|
|
|
2020-08-22 17:24:16 +02:00
|
|
|
wlr_swapchain_destroy(output->swapchain);
|
|
|
|
output->swapchain = wlr_swapchain_create(output->backend->allocator,
|
|
|
|
width, height, output->backend->format);
|
|
|
|
if (!output->swapchain) {
|
2017-12-17 18:02:55 +01:00
|
|
|
wlr_output_destroy(wlr_output);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
output->frame_delay = 1000000 / refresh;
|
|
|
|
|
|
|
|
wlr_output_update_custom_mode(&output->wlr_output, width, height, refresh);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-04-23 18:26:21 +02:00
|
|
|
static bool output_attach_render(struct wlr_output *wlr_output,
|
|
|
|
int *buffer_age) {
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_output_from_output(wlr_output);
|
2020-03-10 17:07:49 +01:00
|
|
|
|
2020-08-22 17:24:16 +02:00
|
|
|
wlr_buffer_unlock(output->back_buffer);
|
|
|
|
output->back_buffer = wlr_swapchain_acquire(output->swapchain, buffer_age);
|
|
|
|
if (!output->back_buffer) {
|
2020-03-10 17:07:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-22 17:24:16 +02:00
|
|
|
if (!wlr_egl_make_current(output->backend->egl, EGL_NO_SURFACE, NULL)) {
|
|
|
|
return false;
|
2020-03-10 17:07:49 +01:00
|
|
|
}
|
2020-08-22 17:24:16 +02:00
|
|
|
if (!wlr_renderer_bind_buffer(output->backend->renderer,
|
|
|
|
output->back_buffer)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-03-10 17:07:49 +01:00
|
|
|
return true;
|
2017-12-17 13:35:07 +01:00
|
|
|
}
|
|
|
|
|
2020-04-02 12:41:19 +02:00
|
|
|
static bool output_test(struct wlr_output *wlr_output) {
|
2019-08-16 18:41:56 +02:00
|
|
|
if (wlr_output->pending.committed & WLR_OUTPUT_STATE_ENABLED) {
|
|
|
|
wlr_log(WLR_DEBUG, "Cannot disable a headless output");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wlr_output->pending.committed & WLR_OUTPUT_STATE_MODE) {
|
|
|
|
assert(wlr_output->pending.mode_type == WLR_OUTPUT_STATE_MODE_CUSTOM);
|
2020-04-02 12:41:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool output_commit(struct wlr_output *wlr_output) {
|
2020-04-06 11:43:58 +02:00
|
|
|
struct wlr_headless_output *output =
|
|
|
|
headless_output_from_output(wlr_output);
|
|
|
|
|
2020-04-02 12:41:19 +02:00
|
|
|
if (!output_test(wlr_output)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wlr_output->pending.committed & WLR_OUTPUT_STATE_MODE) {
|
2019-08-16 18:41:56 +02:00
|
|
|
if (!output_set_custom_mode(wlr_output,
|
|
|
|
wlr_output->pending.custom_mode.width,
|
|
|
|
wlr_output->pending.custom_mode.height,
|
|
|
|
wlr_output->pending.custom_mode.refresh)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wlr_output->pending.committed & WLR_OUTPUT_STATE_BUFFER) {
|
2020-12-08 00:12:52 +01:00
|
|
|
struct wlr_buffer *buffer = NULL;
|
|
|
|
switch (wlr_output->pending.buffer_type) {
|
|
|
|
case WLR_OUTPUT_STATE_BUFFER_RENDER:
|
|
|
|
assert(output->back_buffer != NULL);
|
|
|
|
|
|
|
|
wlr_renderer_bind_buffer(output->backend->renderer, NULL);
|
|
|
|
wlr_egl_unset_current(output->backend->egl);
|
|
|
|
|
|
|
|
buffer = output->back_buffer;
|
|
|
|
output->back_buffer = NULL;
|
|
|
|
break;
|
|
|
|
case WLR_OUTPUT_STATE_BUFFER_SCANOUT:
|
|
|
|
buffer = wlr_buffer_lock(wlr_output->pending.buffer);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert(buffer != NULL);
|
2020-05-19 11:54:59 +02:00
|
|
|
|
2020-08-22 17:24:16 +02:00
|
|
|
wlr_buffer_unlock(output->front_buffer);
|
2020-12-08 00:12:52 +01:00
|
|
|
output->front_buffer = buffer;
|
2020-08-22 17:24:16 +02:00
|
|
|
|
2020-12-08 00:12:52 +01:00
|
|
|
wlr_swapchain_set_buffer_submitted(output->swapchain, buffer);
|
2020-08-22 17:24:16 +02:00
|
|
|
|
2019-08-16 18:41:56 +02:00
|
|
|
wlr_output_send_present(wlr_output, NULL);
|
|
|
|
}
|
|
|
|
|
2018-10-02 12:11:09 +02:00
|
|
|
return true;
|
2017-12-17 13:35:07 +01:00
|
|
|
}
|
|
|
|
|
2020-06-19 15:49:55 +02:00
|
|
|
static void output_rollback_render(struct wlr_output *wlr_output) {
|
2020-04-06 11:53:20 +02:00
|
|
|
struct wlr_headless_output *output =
|
|
|
|
headless_output_from_output(wlr_output);
|
2020-06-19 15:49:55 +02:00
|
|
|
assert(wlr_egl_is_current(output->backend->egl));
|
2020-08-22 17:24:16 +02:00
|
|
|
|
|
|
|
wlr_renderer_bind_buffer(output->backend->renderer, NULL);
|
2020-06-19 15:49:55 +02:00
|
|
|
wlr_egl_unset_current(output->backend->egl);
|
2020-08-22 17:24:16 +02:00
|
|
|
|
|
|
|
wlr_buffer_unlock(output->back_buffer);
|
|
|
|
output->back_buffer = NULL;
|
2020-04-06 11:53:20 +02:00
|
|
|
}
|
|
|
|
|
2020-08-25 12:30:00 +02:00
|
|
|
static bool output_export_dmabuf(struct wlr_output *wlr_output,
|
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
|
|
|
struct wlr_headless_output *output =
|
|
|
|
headless_output_from_output(wlr_output);
|
|
|
|
|
|
|
|
if (!output->front_buffer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_dmabuf_attributes tmp;
|
|
|
|
if (!wlr_buffer_get_dmabuf(output->front_buffer, &tmp)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wlr_dmabuf_attributes_copy(attribs, &tmp);
|
|
|
|
}
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
static void output_destroy(struct wlr_output *wlr_output) {
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_output_from_output(wlr_output);
|
2017-12-17 12:56:42 +01:00
|
|
|
wl_list_remove(&output->link);
|
2018-02-25 04:32:57 +01:00
|
|
|
wl_event_source_remove(output->frame_timer);
|
2020-08-22 17:24:16 +02:00
|
|
|
wlr_swapchain_destroy(output->swapchain);
|
|
|
|
wlr_buffer_unlock(output->back_buffer);
|
|
|
|
wlr_buffer_unlock(output->front_buffer);
|
2017-12-17 12:56:42 +01:00
|
|
|
free(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wlr_output_impl output_impl = {
|
|
|
|
.destroy = output_destroy,
|
2019-04-23 18:26:21 +02:00
|
|
|
.attach_render = output_attach_render,
|
|
|
|
.commit = output_commit,
|
2020-06-19 15:49:55 +02:00
|
|
|
.rollback_render = output_rollback_render,
|
2020-08-25 12:30:00 +02:00
|
|
|
.export_dmabuf = output_export_dmabuf,
|
2017-12-17 12:56:42 +01:00
|
|
|
};
|
|
|
|
|
2017-12-19 20:17:47 +01:00
|
|
|
bool wlr_output_is_headless(struct wlr_output *wlr_output) {
|
|
|
|
return wlr_output->impl == &output_impl;
|
|
|
|
}
|
|
|
|
|
2017-12-17 13:35:07 +01:00
|
|
|
static int signal_frame(void *data) {
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output = data;
|
2018-01-26 22:39:23 +01:00
|
|
|
wlr_output_send_frame(&output->wlr_output);
|
2017-12-17 18:02:55 +01:00
|
|
|
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
|
2017-12-17 13:35:07 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
struct wlr_output *wlr_headless_add_output(struct wlr_backend *wlr_backend,
|
|
|
|
unsigned int width, unsigned int height) {
|
|
|
|
struct wlr_headless_backend *backend =
|
2018-09-17 21:46:39 +02:00
|
|
|
headless_backend_from_backend(wlr_backend);
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2017-12-17 18:49:20 +01:00
|
|
|
struct wlr_headless_output *output =
|
|
|
|
calloc(1, sizeof(struct wlr_headless_output));
|
2017-12-17 12:56:42 +01:00
|
|
|
if (output == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to allocate wlr_headless_output");
|
2017-12-17 12:56:42 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2017-12-17 13:35:07 +01:00
|
|
|
output->backend = backend;
|
2018-01-04 12:46:15 +01:00
|
|
|
wlr_output_init(&output->wlr_output, &backend->backend, &output_impl,
|
|
|
|
backend->display);
|
2017-12-17 12:56:42 +01:00
|
|
|
struct wlr_output *wlr_output = &output->wlr_output;
|
|
|
|
|
2020-08-22 17:24:16 +02:00
|
|
|
output->swapchain = wlr_swapchain_create(backend->allocator,
|
|
|
|
width, height, backend->format);
|
|
|
|
if (!output->swapchain) {
|
2017-12-17 18:02:55 +01:00
|
|
|
goto error;
|
2017-12-17 13:35:07 +01:00
|
|
|
}
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2018-04-04 04:54:01 +02:00
|
|
|
output_set_custom_mode(wlr_output, width, height, 0);
|
2017-12-17 18:02:55 +01:00
|
|
|
strncpy(wlr_output->make, "headless", sizeof(wlr_output->make));
|
|
|
|
strncpy(wlr_output->model, "headless", sizeof(wlr_output->model));
|
2019-04-08 20:49:25 +02:00
|
|
|
snprintf(wlr_output->name, sizeof(wlr_output->name), "HEADLESS-%zd",
|
2019-03-15 16:50:28 +01:00
|
|
|
++backend->last_output_num);
|
2017-12-17 12:56:42 +01:00
|
|
|
|
2019-12-26 16:09:05 +01:00
|
|
|
char description[128];
|
|
|
|
snprintf(description, sizeof(description),
|
|
|
|
"Headless output %zd", backend->last_output_num);
|
|
|
|
wlr_output_set_description(wlr_output, description);
|
|
|
|
|
2017-12-17 13:35:07 +01:00
|
|
|
struct wl_event_loop *ev = wl_display_get_event_loop(backend->display);
|
|
|
|
output->frame_timer = wl_event_loop_add_timer(ev, signal_frame, output);
|
2017-12-17 12:56:42 +01:00
|
|
|
|
|
|
|
wl_list_insert(&backend->outputs, &output->link);
|
2017-12-17 18:02:55 +01:00
|
|
|
|
|
|
|
if (backend->started) {
|
|
|
|
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
|
2018-01-04 12:46:15 +01:00
|
|
|
wlr_output_update_enabled(wlr_output, true);
|
2018-02-12 10:36:43 +01:00
|
|
|
wlr_signal_emit_safe(&backend->backend.events.new_output, wlr_output);
|
2017-12-17 18:02:55 +01:00
|
|
|
}
|
|
|
|
|
2017-12-17 12:56:42 +01:00
|
|
|
return wlr_output;
|
|
|
|
|
|
|
|
error:
|
|
|
|
wlr_output_destroy(&output->wlr_output);
|
|
|
|
return NULL;
|
|
|
|
}
|