mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-16 06:25:59 +01:00
414 lines
15 KiB
C++
414 lines
15 KiB
C++
#include "Screencopy.hpp"
|
|
#include "../Compositor.hpp"
|
|
#include <drm_fourcc.h>
|
|
|
|
#include <algorithm>
|
|
|
|
#include "ToplevelExportWlrFuncs.hpp"
|
|
|
|
#define SCREENCOPY_VERSION 3
|
|
|
|
static void bindManagerInt(wl_client* client, void* data, uint32_t version, uint32_t id) {
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->bindManager(client, data, version, id);
|
|
}
|
|
|
|
static void handleDisplayDestroy(struct wl_listener* listener, void* data) {
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->displayDestroy();
|
|
}
|
|
|
|
void CScreencopyProtocolManager::displayDestroy() {
|
|
wl_global_destroy(m_pGlobal);
|
|
}
|
|
|
|
static SScreencopyFrame* frameFromResource(wl_resource*);
|
|
|
|
CScreencopyProtocolManager::CScreencopyProtocolManager() {
|
|
|
|
m_pGlobal = wl_global_create(g_pCompositor->m_sWLDisplay, &zwlr_screencopy_manager_v1_interface, SCREENCOPY_VERSION, this, bindManagerInt);
|
|
|
|
if (!m_pGlobal) {
|
|
Debug::log(ERR, "ScreencopyProtocolManager could not start! Screensharing will not work!");
|
|
return;
|
|
}
|
|
|
|
m_liDisplayDestroy.notify = handleDisplayDestroy;
|
|
wl_display_add_destroy_listener(g_pCompositor->m_sWLDisplay, &m_liDisplayDestroy);
|
|
|
|
Debug::log(LOG, "ScreencopyProtocolManager started successfully!");
|
|
}
|
|
|
|
static void handleCaptureOutput(wl_client* client, wl_resource* resource, uint32_t frame, int32_t overlay_cursor, wl_resource* output) {
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->captureOutput(client, resource, frame, overlay_cursor, output);
|
|
}
|
|
|
|
static void handleCaptureRegion(wl_client* client, wl_resource* resource, uint32_t frame, int32_t overlay_cursor, wl_resource* output, int32_t x, int32_t y, int32_t width,
|
|
int32_t height) {
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->captureOutput(client, resource, frame, overlay_cursor, output, {x, y, width, height});
|
|
}
|
|
|
|
static void handleDestroy(wl_client* client, wl_resource* resource) {
|
|
wl_resource_destroy(resource);
|
|
}
|
|
|
|
static void handleCopyFrame(wl_client* client, wl_resource* resource, wl_resource* buffer) {
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->copyFrame(client, resource, buffer);
|
|
}
|
|
|
|
static void handleCopyWithDamage(wl_client* client, wl_resource* resource, wl_resource* buffer) {
|
|
const auto PFRAME = frameFromResource(resource);
|
|
PFRAME->withDamage = true;
|
|
handleCopyFrame(client, resource, buffer);
|
|
}
|
|
|
|
static void handleDestroyFrame(wl_client* client, wl_resource* resource) {
|
|
wl_resource_destroy(resource);
|
|
}
|
|
|
|
static const struct zwlr_screencopy_manager_v1_interface screencopyMgrImpl = {
|
|
.capture_output = handleCaptureOutput,
|
|
.capture_output_region = handleCaptureRegion,
|
|
.destroy = handleDestroy,
|
|
};
|
|
|
|
static const struct zwlr_screencopy_frame_v1_interface screencopyFrameImpl = {
|
|
.copy = handleCopyFrame,
|
|
.destroy = handleDestroyFrame,
|
|
.copy_with_damage = handleCopyWithDamage,
|
|
};
|
|
|
|
static SScreencopyClient* clientFromResource(wl_resource* resource) {
|
|
ASSERT(wl_resource_instance_of(resource, &zwlr_screencopy_manager_v1_interface, &screencopyMgrImpl));
|
|
return (SScreencopyClient*)wl_resource_get_user_data(resource);
|
|
}
|
|
|
|
static SScreencopyFrame* frameFromResource(wl_resource* resource) {
|
|
ASSERT(wl_resource_instance_of(resource, &zwlr_screencopy_frame_v1_interface, &screencopyFrameImpl));
|
|
return (SScreencopyFrame*)wl_resource_get_user_data(resource);
|
|
}
|
|
|
|
void CScreencopyProtocolManager::removeClient(SScreencopyClient* client, bool force) {
|
|
if (!force) {
|
|
if (!client || client->ref <= 0)
|
|
return;
|
|
|
|
if (--client->ref != 0)
|
|
return;
|
|
}
|
|
|
|
m_lClients.remove(*client); // TODO: this doesn't get cleaned up after sharing app exits???
|
|
}
|
|
|
|
static void handleManagerResourceDestroy(wl_resource* resource) {
|
|
const auto PCLIENT = clientFromResource(resource);
|
|
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->removeClient(PCLIENT, true);
|
|
}
|
|
|
|
void CScreencopyProtocolManager::bindManager(wl_client* client, void* data, uint32_t version, uint32_t id) {
|
|
const auto PCLIENT = &m_lClients.emplace_back();
|
|
|
|
PCLIENT->resource = wl_resource_create(client, &zwlr_screencopy_manager_v1_interface, version, id);
|
|
|
|
if (!PCLIENT->resource) {
|
|
Debug::log(ERR, "ScreencopyProtocolManager could not bind! (out of memory?)");
|
|
m_lClients.remove(*PCLIENT);
|
|
wl_client_post_no_memory(client);
|
|
return;
|
|
}
|
|
|
|
PCLIENT->ref = 1;
|
|
|
|
wl_resource_set_implementation(PCLIENT->resource, &screencopyMgrImpl, PCLIENT, handleManagerResourceDestroy);
|
|
|
|
Debug::log(LOG, "ScreencopyProtocolManager bound successfully!");
|
|
}
|
|
|
|
static void handleFrameResourceDestroy(wl_resource* resource) {
|
|
const auto PFRAME = frameFromResource(resource);
|
|
|
|
g_pProtocolManager->m_pScreencopyProtocolManager->removeFrame(PFRAME);
|
|
}
|
|
|
|
void CScreencopyProtocolManager::removeFrame(SScreencopyFrame* frame, bool force) {
|
|
if (!frame)
|
|
return;
|
|
|
|
std::erase_if(m_vFramesAwaitingWrite, [&](const auto& other) { return other == frame; });
|
|
|
|
wl_resource_set_user_data(frame->resource, nullptr);
|
|
if (frame->buffer && frame->buffer->n_locks > 0)
|
|
wlr_buffer_unlock(frame->buffer);
|
|
removeClient(frame->client, force);
|
|
m_lFrames.remove(*frame);
|
|
}
|
|
|
|
void CScreencopyProtocolManager::captureOutput(wl_client* client, wl_resource* resource, uint32_t frame, int32_t overlay_cursor, wl_resource* output, wlr_box box) {
|
|
const auto PCLIENT = clientFromResource(resource);
|
|
|
|
const auto PFRAME = &m_lFrames.emplace_back();
|
|
PFRAME->overlayCursor = !!overlay_cursor;
|
|
PFRAME->resource = wl_resource_create(client, &zwlr_screencopy_frame_v1_interface, wl_resource_get_version(resource), frame);
|
|
PFRAME->pMonitor = g_pCompositor->getMonitorFromOutput(wlr_output_from_resource(output));
|
|
|
|
if (!PFRAME->pMonitor) {
|
|
Debug::log(ERR, "client requested sharing of a monitor that doesnt exist");
|
|
zwlr_screencopy_frame_v1_send_failed(PFRAME->resource);
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
if (!PFRAME->resource) {
|
|
Debug::log(ERR, "Couldn't alloc frame for sharing! (no memory)");
|
|
removeFrame(PFRAME);
|
|
wl_client_post_no_memory(client);
|
|
return;
|
|
}
|
|
|
|
wl_resource_set_implementation(PFRAME->resource, &screencopyFrameImpl, PFRAME, handleFrameResourceDestroy);
|
|
|
|
PFRAME->client = PCLIENT;
|
|
PCLIENT->ref++;
|
|
|
|
PFRAME->shmFormat = wlr_output_preferred_read_format(PFRAME->pMonitor->output);
|
|
if (PFRAME->shmFormat == DRM_FORMAT_INVALID) {
|
|
Debug::log(ERR, "No format supported by renderer in capture output");
|
|
zwlr_screencopy_frame_v1_send_failed(PFRAME->resource);
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
const auto PSHMINFO = drm_get_pixel_format_info(PFRAME->shmFormat);
|
|
if (!PSHMINFO) {
|
|
Debug::log(ERR, "No pixel format supported by renderer in capture output");
|
|
zwlr_screencopy_frame_v1_send_failed(PFRAME->resource);
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
if (PFRAME->pMonitor->output->allocator && (PFRAME->pMonitor->output->allocator->buffer_caps & WLR_BUFFER_CAP_DMABUF)) {
|
|
PFRAME->dmabufFormat = PFRAME->pMonitor->output->render_format;
|
|
} else {
|
|
PFRAME->dmabufFormat = DRM_FORMAT_INVALID;
|
|
}
|
|
|
|
if (box.width == 0 && box.height == 0)
|
|
PFRAME->box = {0, 0, (int)(PFRAME->pMonitor->vecSize.x * PFRAME->pMonitor->scale), (int)(PFRAME->pMonitor->vecSize.y * PFRAME->pMonitor->scale)};
|
|
else {
|
|
PFRAME->box = box;
|
|
scaleBox(&PFRAME->box, PFRAME->pMonitor->scale);
|
|
}
|
|
int ow, oh;
|
|
wlr_output_effective_resolution(PFRAME->pMonitor->output, &ow, &oh);
|
|
wlr_box_transform(&PFRAME->box, &PFRAME->box, PFRAME->pMonitor->transform, ow, oh);
|
|
|
|
PFRAME->shmStride = (PSHMINFO->bpp / 8) * PFRAME->box.width;
|
|
|
|
zwlr_screencopy_frame_v1_send_buffer(PFRAME->resource, convert_drm_format_to_wl_shm(PFRAME->shmFormat), PFRAME->box.width, PFRAME->box.height, PFRAME->shmStride);
|
|
|
|
if (wl_resource_get_version(resource) >= 3) {
|
|
// todo
|
|
// if (PFRAME->dmabufFormat != DRM_FORMAT_INVALID) {
|
|
// zwlr_screencopy_frame_v1_send_linux_dmabuf(PFRAME->resource, PFRAME->dmabufFormat, PFRAME->box.width, PFRAME->box.height);
|
|
// }
|
|
|
|
zwlr_screencopy_frame_v1_send_buffer_done(PFRAME->resource);
|
|
}
|
|
}
|
|
|
|
void CScreencopyProtocolManager::copyFrame(wl_client* client, wl_resource* resource, wl_resource* buffer) {
|
|
const auto PFRAME = frameFromResource(resource);
|
|
|
|
if (!PFRAME) {
|
|
Debug::log(ERR, "No frame in copyFrame??");
|
|
return;
|
|
}
|
|
|
|
const auto PBUFFER = wlr_buffer_from_resource(buffer);
|
|
if (!PBUFFER) {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_INVALID_BUFFER, "invalid buffer");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
if (PBUFFER->width != PFRAME->box.width || PBUFFER->height != PFRAME->box.height) {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_INVALID_BUFFER, "invalid buffer dimensions");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
if (PFRAME->buffer) {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_ALREADY_USED, "frame already used");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
wlr_dmabuf_attributes dmabufAttrs;
|
|
void* wlrBufferAccessData;
|
|
uint32_t wlrBufferAccessFormat;
|
|
size_t wlrBufferAccessStride;
|
|
if (wlr_buffer_get_dmabuf(PBUFFER, &dmabufAttrs)) {
|
|
PFRAME->bufferCap = WLR_BUFFER_CAP_DMABUF;
|
|
|
|
if (dmabufAttrs.format != PFRAME->dmabufFormat) {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_INVALID_BUFFER, "invalid buffer format");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
} else if (wlr_buffer_begin_data_ptr_access(PBUFFER, WLR_BUFFER_DATA_PTR_ACCESS_WRITE, &wlrBufferAccessData, &wlrBufferAccessFormat, &wlrBufferAccessStride)) {
|
|
wlr_buffer_end_data_ptr_access(PBUFFER);
|
|
|
|
if (wlrBufferAccessFormat != PFRAME->shmFormat) {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_INVALID_BUFFER, "invalid buffer format");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
} else if ((int)wlrBufferAccessStride != PFRAME->shmStride) {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_INVALID_BUFFER, "invalid buffer stride");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
} else {
|
|
wl_resource_post_error(PFRAME->resource, ZWLR_SCREENCOPY_FRAME_V1_ERROR_INVALID_BUFFER, "invalid buffer type");
|
|
removeFrame(PFRAME);
|
|
return;
|
|
}
|
|
|
|
PFRAME->buffer = PBUFFER;
|
|
|
|
m_vFramesAwaitingWrite.emplace_back(PFRAME);
|
|
|
|
g_pHyprRenderer->m_bDirectScanoutBlocked = true;
|
|
if (PFRAME->overlayCursor)
|
|
g_pHyprRenderer->m_bSoftwareCursorsLocked = true;
|
|
|
|
if (!PFRAME->withDamage)
|
|
g_pCompositor->scheduleFrameForMonitor(PFRAME->pMonitor);
|
|
}
|
|
|
|
void CScreencopyProtocolManager::onRenderEnd(CMonitor* pMonitor) {
|
|
if (m_vFramesAwaitingWrite.empty())
|
|
return; // nothing to share
|
|
|
|
std::vector<SScreencopyFrame*> framesToRemove;
|
|
|
|
// share frame if correct output
|
|
for (auto& f : m_vFramesAwaitingWrite) {
|
|
if (!f->pMonitor) {
|
|
framesToRemove.push_back(f);
|
|
continue;
|
|
}
|
|
|
|
if (f->pMonitor != pMonitor)
|
|
continue;
|
|
|
|
shareFrame(f);
|
|
|
|
framesToRemove.push_back(f);
|
|
}
|
|
|
|
for (auto& f : framesToRemove) {
|
|
removeFrame(f);
|
|
}
|
|
|
|
g_pHyprRenderer->m_bSoftwareCursorsLocked = false;
|
|
|
|
if (m_vFramesAwaitingWrite.empty()) {
|
|
g_pHyprRenderer->m_bDirectScanoutBlocked = false;
|
|
} else {
|
|
for (auto& f : m_vFramesAwaitingWrite) {
|
|
if (f->overlayCursor) {
|
|
g_pHyprRenderer->m_bSoftwareCursorsLocked = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void CScreencopyProtocolManager::shareFrame(SScreencopyFrame* frame) {
|
|
if (!frame->buffer)
|
|
return;
|
|
|
|
timespec now;
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
uint32_t flags = 0;
|
|
if (frame->bufferCap == WLR_BUFFER_CAP_DMABUF) {
|
|
if (!copyFrameDmabuf(frame)) {
|
|
zwlr_screencopy_frame_v1_send_failed(frame->resource);
|
|
return;
|
|
}
|
|
} else {
|
|
if (!copyFrameShm(frame, &now)) {
|
|
zwlr_screencopy_frame_v1_send_failed(frame->resource);
|
|
return;
|
|
}
|
|
}
|
|
|
|
zwlr_screencopy_frame_v1_send_flags(frame->resource, flags);
|
|
sendFrameDamage(frame);
|
|
uint32_t tvSecHi = (sizeof(now.tv_sec) > 4) ? now.tv_sec >> 32 : 0;
|
|
uint32_t tvSecLo = now.tv_sec & 0xFFFFFFFF;
|
|
zwlr_screencopy_frame_v1_send_ready(frame->resource, tvSecHi, tvSecLo, now.tv_nsec);
|
|
}
|
|
void CScreencopyProtocolManager::sendFrameDamage(SScreencopyFrame* frame) {
|
|
if (!frame->withDamage)
|
|
return;
|
|
|
|
const auto RECT = pixman_region32_extents(g_pHyprOpenGL->m_RenderData.pDamage);
|
|
zwlr_screencopy_frame_v1_send_damage(frame->resource, RECT->x1, RECT->y1, RECT->x2 - RECT->x1, RECT->y2 - RECT->y1);
|
|
}
|
|
|
|
bool CScreencopyProtocolManager::copyFrameShm(SScreencopyFrame* frame, timespec* now) {
|
|
void* data;
|
|
uint32_t format;
|
|
size_t stride;
|
|
if (!wlr_buffer_begin_data_ptr_access(frame->buffer, WLR_BUFFER_DATA_PTR_ACCESS_WRITE, &data, &format, &stride))
|
|
return false;
|
|
|
|
// render the client
|
|
const auto PMONITOR = frame->pMonitor;
|
|
pixman_region32_t fakeDamage;
|
|
pixman_region32_init_rect(&fakeDamage, 0, 0, PMONITOR->vecPixelSize.x * 10, PMONITOR->vecPixelSize.y * 10);
|
|
|
|
if (!wlr_output_attach_render(PMONITOR->output, nullptr)) {
|
|
Debug::log(ERR, "[screencopy] Couldn't attach render");
|
|
pixman_region32_fini(&fakeDamage);
|
|
wlr_buffer_end_data_ptr_access(frame->buffer);
|
|
return false;
|
|
}
|
|
|
|
const auto PFORMAT = get_gles2_format_from_drm(format);
|
|
if (!PFORMAT) {
|
|
Debug::log(ERR, "[screencopy] Cannot read pixels, unsupported format %x", PFORMAT);
|
|
wlr_output_rollback(PMONITOR->output);
|
|
pixman_region32_fini(&fakeDamage);
|
|
wlr_buffer_end_data_ptr_access(frame->buffer);
|
|
return false;
|
|
}
|
|
|
|
g_pHyprOpenGL->begin(PMONITOR, &fakeDamage, true);
|
|
|
|
// we should still have the last frame by this point in the original fb
|
|
glBindFramebuffer(GL_FRAMEBUFFER, g_pHyprOpenGL->m_RenderData.pCurrentMonData->primaryFB.m_iFb);
|
|
|
|
glFinish(); // flush
|
|
|
|
glReadPixels(frame->box.x, frame->box.y, frame->box.width, frame->box.height, PFORMAT->gl_format, PFORMAT->gl_type, data);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, g_pHyprOpenGL->m_iWLROutputFb);
|
|
|
|
g_pHyprOpenGL->end();
|
|
|
|
wlr_output_rollback(PMONITOR->output);
|
|
|
|
pixman_region32_fini(&fakeDamage);
|
|
|
|
wlr_buffer_end_data_ptr_access(frame->buffer);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CScreencopyProtocolManager::copyFrameDmabuf(SScreencopyFrame* frame) {
|
|
// todo
|
|
Debug::log(ERR, "DMABUF copying not impl'd!");
|
|
return false;
|
|
}
|