2019-10-13 12:48:12 +00:00
|
|
|
/*
|
2020-01-24 20:08:57 +00:00
|
|
|
* Copyright (c) 2019 - 2020 Andri Yngvason
|
2019-10-13 12:48:12 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
|
|
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
|
|
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
|
|
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
|
|
|
|
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2019-10-13 12:38:47 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2020-01-24 20:18:37 +00:00
|
|
|
#include <string.h>
|
2020-03-05 20:19:13 +00:00
|
|
|
#include <stdbool.h>
|
2022-11-30 09:52:18 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
2020-03-04 21:24:02 +00:00
|
|
|
#include <wayland-client-protocol.h>
|
2019-10-13 12:38:47 +00:00
|
|
|
#include <wayland-client.h>
|
2022-06-25 16:14:18 +00:00
|
|
|
#include <neatvnc.h>
|
2019-10-13 12:38:47 +00:00
|
|
|
|
|
|
|
#include "output.h"
|
|
|
|
#include "strlcpy.h"
|
|
|
|
|
2020-01-24 20:08:57 +00:00
|
|
|
#include "xdg-output-unstable-v1.h"
|
2022-11-29 23:46:43 +00:00
|
|
|
#include "wlr-output-power-management-unstable-v1.h"
|
2020-01-24 20:08:57 +00:00
|
|
|
|
2020-03-07 13:50:53 +00:00
|
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
|
|
|
|
void output_transform_coord(const struct output* self,
|
|
|
|
uint32_t src_x, uint32_t src_y,
|
|
|
|
uint32_t* dst_x, uint32_t* dst_y)
|
|
|
|
{
|
|
|
|
switch (self->transform) {
|
|
|
|
case WL_OUTPUT_TRANSFORM_NORMAL:
|
|
|
|
*dst_x = src_x;
|
|
|
|
*dst_y = src_y;
|
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_90:
|
|
|
|
*dst_x = src_y;
|
2020-04-09 11:43:20 +00:00
|
|
|
*dst_y = self->height - src_x;
|
2020-03-07 13:50:53 +00:00
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_180:
|
|
|
|
*dst_x = self->width - src_x;
|
|
|
|
*dst_y = self->height - src_y;
|
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_270:
|
2020-04-09 11:43:20 +00:00
|
|
|
*dst_x = self->width - src_y;
|
2020-03-07 13:50:53 +00:00
|
|
|
*dst_y = src_x;
|
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_FLIPPED:
|
|
|
|
*dst_x = self->width - src_x;
|
|
|
|
*dst_y = src_y;
|
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_FLIPPED_90:
|
2020-04-09 11:43:20 +00:00
|
|
|
*dst_x = src_y;
|
|
|
|
*dst_y = src_x;
|
2020-03-07 13:50:53 +00:00
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_FLIPPED_180:
|
|
|
|
*dst_x = src_x;
|
|
|
|
*dst_y = self->height - src_y;
|
|
|
|
break;
|
|
|
|
case WL_OUTPUT_TRANSFORM_FLIPPED_270:
|
2020-04-09 11:43:20 +00:00
|
|
|
*dst_x = self->width - src_y;
|
|
|
|
*dst_y = self->height - src_x;
|
2020-03-07 13:50:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_transform_box_coord(const struct output* self,
|
|
|
|
uint32_t src_x0, uint32_t src_y0,
|
|
|
|
uint32_t src_x1, uint32_t src_y1,
|
|
|
|
uint32_t* dst_x0, uint32_t* dst_y0,
|
|
|
|
uint32_t* dst_x1, uint32_t* dst_y1)
|
|
|
|
{
|
|
|
|
uint32_t x0 = 0, y0 = 0, x1 = 0, y1 = 0;
|
|
|
|
|
|
|
|
output_transform_coord(self, src_x0, src_y0, &x0, &y0);
|
|
|
|
output_transform_coord(self, src_x1, src_y1, &x1, &y1);
|
|
|
|
|
|
|
|
*dst_x0 = MIN(x0, x1);
|
|
|
|
*dst_x1 = MAX(x0, x1);
|
|
|
|
*dst_y0 = MIN(y0, y1);
|
|
|
|
*dst_y1 = MAX(y0, y1);
|
|
|
|
}
|
|
|
|
|
2020-03-05 20:19:13 +00:00
|
|
|
static bool is_transform_90_degrees(enum wl_output_transform transform)
|
|
|
|
{
|
|
|
|
switch (transform) {
|
|
|
|
case WL_OUTPUT_TRANSFORM_90:
|
|
|
|
case WL_OUTPUT_TRANSFORM_270:
|
|
|
|
case WL_OUTPUT_TRANSFORM_FLIPPED_90:
|
|
|
|
case WL_OUTPUT_TRANSFORM_FLIPPED_270:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t output_get_transformed_width(const struct output* self)
|
|
|
|
{
|
|
|
|
return is_transform_90_degrees(self->transform)
|
|
|
|
? self->height : self->width;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t output_get_transformed_height(const struct output* self)
|
|
|
|
{
|
|
|
|
return is_transform_90_degrees(self->transform)
|
|
|
|
? self->width : self->height;
|
|
|
|
}
|
|
|
|
|
2019-10-13 12:38:47 +00:00
|
|
|
static void output_handle_geometry(void* data, struct wl_output* wl_output,
|
|
|
|
int32_t x, int32_t y, int32_t phys_width,
|
|
|
|
int32_t phys_height, int32_t subpixel,
|
|
|
|
const char* make, const char* model,
|
|
|
|
int32_t transform)
|
|
|
|
{
|
|
|
|
struct output* output = data;
|
|
|
|
|
2020-07-19 13:53:04 +00:00
|
|
|
if (transform != (int32_t)output->transform)
|
|
|
|
output->is_transform_changed = true;
|
|
|
|
|
2020-03-04 21:24:02 +00:00
|
|
|
output->x = x;
|
|
|
|
output->y = y;
|
2020-03-05 19:15:35 +00:00
|
|
|
output->transform = transform;
|
|
|
|
|
2019-10-13 12:38:47 +00:00
|
|
|
strlcpy(output->make, make, sizeof(output->make));
|
2020-01-24 20:08:57 +00:00
|
|
|
strlcpy(output->model, model, sizeof(output->model));
|
2019-10-13 12:38:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void output_handle_mode(void* data, struct wl_output* wl_output,
|
|
|
|
uint32_t flags, int32_t width, int32_t height,
|
|
|
|
int32_t refresh)
|
|
|
|
{
|
2020-03-04 21:24:02 +00:00
|
|
|
struct output* output = data;
|
|
|
|
|
|
|
|
if (!(flags & WL_OUTPUT_MODE_CURRENT))
|
|
|
|
return;
|
|
|
|
|
2020-07-19 13:53:04 +00:00
|
|
|
if (width != (int32_t)output->width || height != (int32_t)output->height)
|
|
|
|
output->is_dimension_changed = true;
|
|
|
|
|
2020-03-04 21:24:02 +00:00
|
|
|
output->width = width;
|
|
|
|
output->height = height;
|
2019-10-13 12:38:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void output_handle_done(void* data, struct wl_output* wl_output)
|
|
|
|
{
|
2020-07-19 13:53:04 +00:00
|
|
|
struct output* output = data;
|
|
|
|
|
|
|
|
if (output->is_dimension_changed && output->on_dimension_change)
|
|
|
|
output->on_dimension_change(output);
|
|
|
|
|
|
|
|
if (output->is_transform_changed && output->on_transform_change)
|
|
|
|
output->on_transform_change(output);
|
|
|
|
|
|
|
|
output->is_dimension_changed = false;
|
|
|
|
output->is_transform_changed = false;
|
2019-10-13 12:38:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void output_handle_scale(void* data, struct wl_output* wl_output,
|
|
|
|
int32_t factor)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_output_listener output_listener = {
|
|
|
|
.geometry = output_handle_geometry,
|
|
|
|
.mode = output_handle_mode,
|
|
|
|
.done = output_handle_done,
|
|
|
|
.scale = output_handle_scale,
|
|
|
|
};
|
|
|
|
|
|
|
|
void output_destroy(struct output* output)
|
|
|
|
{
|
2020-01-24 20:08:57 +00:00
|
|
|
zxdg_output_v1_destroy(output->xdg_output);
|
2022-11-29 23:46:43 +00:00
|
|
|
if (output->wlr_output_power)
|
|
|
|
zwlr_output_power_v1_destroy(output->wlr_output_power);
|
2019-10-13 12:38:47 +00:00
|
|
|
wl_output_destroy(output->wl_output);
|
|
|
|
free(output);
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_list_destroy(struct wl_list* list)
|
|
|
|
{
|
|
|
|
struct output* output;
|
|
|
|
struct output* tmp;
|
|
|
|
|
|
|
|
wl_list_for_each_safe(output, tmp, list, link) {
|
|
|
|
wl_list_remove(&output->link);
|
|
|
|
output_destroy(output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct output* output_new(struct wl_output* wl_output, uint32_t id)
|
|
|
|
{
|
|
|
|
struct output* output = calloc(1, sizeof(*output));
|
|
|
|
if (!output) {
|
2022-06-25 16:14:18 +00:00
|
|
|
nvnc_log(NVNC_LOG_ERROR, "OOM");
|
2019-10-13 12:38:47 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
output->wl_output = wl_output;
|
|
|
|
output->id = id;
|
2022-11-29 23:46:43 +00:00
|
|
|
output->power = OUTPUT_POWER_UNKNOWN;
|
2019-10-13 12:38:47 +00:00
|
|
|
|
|
|
|
wl_output_add_listener(output->wl_output, &output_listener,
|
|
|
|
output);
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
2019-10-13 12:58:56 +00:00
|
|
|
|
2020-01-24 20:08:57 +00:00
|
|
|
void output_logical_position(void* data, struct zxdg_output_v1* xdg_output,
|
|
|
|
int32_t x, int32_t y)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_logical_size(void* data, struct zxdg_output_v1* xdg_output,
|
|
|
|
int32_t width, int32_t height)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_name(void* data, struct zxdg_output_v1* xdg_output,
|
|
|
|
const char* name)
|
|
|
|
{
|
|
|
|
struct output* self = data;
|
|
|
|
|
|
|
|
strlcpy(self->name, name, sizeof(self->name));
|
|
|
|
}
|
|
|
|
|
|
|
|
void output_description(void* data, struct zxdg_output_v1* xdg_output,
|
|
|
|
const char* description)
|
|
|
|
{
|
|
|
|
struct output* self = data;
|
|
|
|
|
|
|
|
strlcpy(self->description, description, sizeof(self->description));
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct zxdg_output_v1_listener xdg_output_listener = {
|
|
|
|
.logical_position = output_logical_position,
|
|
|
|
.logical_size = output_logical_size,
|
|
|
|
.done = NULL, /* Deprecated */
|
|
|
|
.name = output_name,
|
|
|
|
.description = output_description,
|
|
|
|
};
|
|
|
|
|
|
|
|
void output_set_xdg_output(struct output* self,
|
|
|
|
struct zxdg_output_v1* xdg_output)
|
|
|
|
{
|
|
|
|
self->xdg_output = xdg_output;
|
|
|
|
|
|
|
|
zxdg_output_v1_add_listener(self->xdg_output, &xdg_output_listener,
|
|
|
|
self);
|
|
|
|
}
|
|
|
|
|
2022-11-29 23:46:43 +00:00
|
|
|
const char* output_power_state_name(enum output_power_state state)
|
|
|
|
{
|
|
|
|
switch(state) {
|
|
|
|
case OUTPUT_POWER_ON:
|
|
|
|
return "ON";
|
|
|
|
case OUTPUT_POWER_OFF:
|
|
|
|
return "OFF";
|
|
|
|
case OUTPUT_POWER_UNKNOWN:
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void output_power_mode(void *data,
|
|
|
|
struct zwlr_output_power_v1 *zwlr_output_power_v1,
|
|
|
|
uint32_t mode)
|
|
|
|
{
|
|
|
|
struct output* self = data;
|
|
|
|
nvnc_trace("Output %s power state changed to %s", self->name,
|
|
|
|
(mode == ZWLR_OUTPUT_POWER_V1_MODE_ON) ? "ON" : "OFF");
|
|
|
|
|
|
|
|
enum output_power_state old = self->power;
|
|
|
|
switch (mode) {
|
|
|
|
case ZWLR_OUTPUT_POWER_V1_MODE_OFF:
|
|
|
|
self->power = OUTPUT_POWER_OFF;
|
|
|
|
break;
|
|
|
|
case ZWLR_OUTPUT_POWER_V1_MODE_ON:
|
|
|
|
self->power = OUTPUT_POWER_ON;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (old != self->power && self->on_power_change)
|
|
|
|
self->on_power_change(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void output_power_failed(void *data,
|
|
|
|
struct zwlr_output_power_v1 *zwlr_output_power_v1)
|
|
|
|
{
|
|
|
|
struct output* self = data;
|
|
|
|
nvnc_log(NVNC_LOG_WARNING, "Output %s power state failure", self->name);
|
|
|
|
self->power = OUTPUT_POWER_UNKNOWN;
|
|
|
|
zwlr_output_power_v1_destroy(self->wlr_output_power);
|
|
|
|
self->wlr_output_power = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct zwlr_output_power_v1_listener wlr_output_power_listener = {
|
|
|
|
.mode = output_power_mode,
|
|
|
|
.failed = output_power_failed,
|
|
|
|
};
|
|
|
|
|
|
|
|
void output_set_wlr_output_power(struct output* self,
|
|
|
|
struct zwlr_output_power_v1* wlr_output_power)
|
|
|
|
{
|
|
|
|
self->wlr_output_power = wlr_output_power;
|
|
|
|
|
|
|
|
zwlr_output_power_v1_add_listener(self->wlr_output_power,
|
|
|
|
&wlr_output_power_listener, self);
|
|
|
|
}
|
|
|
|
|
2022-11-30 09:52:18 +00:00
|
|
|
int output_set_power_state(struct output* output, enum output_power_state state)
|
|
|
|
{
|
|
|
|
assert(state != OUTPUT_POWER_UNKNOWN);
|
|
|
|
if (!output->wlr_output_power) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
nvnc_log(NVNC_LOG_TRACE, "Output %s requesting power %s", output->name,
|
|
|
|
output_power_state_name(state));
|
|
|
|
int mode = (state == OUTPUT_POWER_ON) ? ZWLR_OUTPUT_POWER_V1_MODE_ON :
|
|
|
|
ZWLR_OUTPUT_POWER_V1_MODE_OFF;
|
|
|
|
zwlr_output_power_v1_set_mode(output->wlr_output_power, mode);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-10-13 12:58:56 +00:00
|
|
|
struct output* output_find_by_id(struct wl_list* list, uint32_t id)
|
|
|
|
{
|
|
|
|
struct output* output;
|
|
|
|
|
|
|
|
wl_list_for_each(output, list, link)
|
|
|
|
if (output->id == id)
|
|
|
|
return output;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-01-24 20:18:37 +00:00
|
|
|
struct output* output_find_by_name(struct wl_list* list, const char* name)
|
|
|
|
{
|
|
|
|
struct output* output;
|
|
|
|
|
|
|
|
wl_list_for_each(output, list, link)
|
|
|
|
if (strcmp(output->name, name) == 0)
|
|
|
|
return output;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-10-13 12:58:56 +00:00
|
|
|
struct output* output_first(struct wl_list* list)
|
|
|
|
{
|
|
|
|
struct output* output;
|
|
|
|
|
|
|
|
wl_list_for_each(output, list, link)
|
|
|
|
return output;
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
2022-10-08 18:45:14 +00:00
|
|
|
|
|
|
|
struct output* output_cycle(const struct wl_list* list,
|
|
|
|
const struct output* current,
|
|
|
|
enum output_cycle_direction direction)
|
|
|
|
{
|
|
|
|
const struct wl_list* iter = current ? ¤t->link : list;
|
|
|
|
iter = (direction == OUTPUT_CYCLE_FORWARD) ?
|
|
|
|
iter->next : iter->prev;
|
|
|
|
if (iter == list) {
|
|
|
|
if (wl_list_empty(list))
|
|
|
|
return NULL;
|
|
|
|
iter = (direction == OUTPUT_CYCLE_FORWARD) ?
|
|
|
|
iter->next : iter->prev;
|
|
|
|
}
|
|
|
|
struct output* output;
|
|
|
|
return wl_container_of(iter, output, link);
|
|
|
|
}
|