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
|
/* ========================================================================= */
/**
* @file dblbuf.c
*
* @copyright
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "dblbuf.h"
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <libbase/libbase.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <unistd.h>
#include <wayland-client-protocol.h>
struct wl_buffer;
struct wl_callback;
struct wl_shm_pool;
/* == Declarations ========================================================= */
/** How many buffers to hold for the double buffer: Two. */
#define _WLCL_DBLBUF_NUM 2
/** A single buffer. Two of these are backing the double-buffer. */
typedef struct {
/** The wayland buffer structure. */
struct wl_buffer *wl_buffer_ptr;
/** Pixel buffer we're using for clients. */
bs_gfxbuf_t *gfxbuf_ptr;
/** Back-link to the double-buffer. */
wlcl_dblbuf_t *dblbuf_ptr;
} wlcl_buffer_t;
/** State of double-buffered shared memory. */
struct _wlcl_dblbuf_t {
/** With of the buffer, in pixels. */
unsigned width;
/** Height of the buffer, in pixels. */
unsigned height;
/** Holds the two @ref wlcl_buffer_t backing this double buffer. */
wlcl_buffer_t buffers[_WLCL_DBLBUF_NUM];
/** Holds @ref wlcl_dblbuf_t::buffers items that are released. */
wlcl_buffer_t *released_buffer_ptrs[_WLCL_DBLBUF_NUM];
/** Number of items in @ref wlcl_dblbuf_t::released_buffer_ptrs. */
int released;
/** Indicates that a frame is due to be drawn. */
bool frame_is_due;
/** Blob of memory-mapped buffer data. */
void *data_ptr;
/** Size of @ref wlcl_dblbuf_t::data_ptr. */
size_t data_size;
/** Will be called when the buffer is ready to draw into. */
wlcl_dblbuf_ready_callback_t callback;
/** Argument to @ref wlcl_dblbuf_t::callback. */
void *callback_ud_ptr;
/** Surface that this double buffer is operating on. */
struct wl_surface *wl_surface_ptr;
};
static void _wlcl_dblbuf_callback_if_ready(wlcl_dblbuf_t *dblbuf_ptr);
static void _wlcl_dblbuf_handle_frame_done(
void *data_ptr,
struct wl_callback *callback,
__UNUSED__ uint32_t time);
static bool _wlcl_dblbuf_create_buffer(
wlcl_buffer_t *buffer_ptr,
wlcl_dblbuf_t *dblbuf_ptr,
struct wl_shm_pool *wl_shm_pool_ptr,
unsigned page,
unsigned width,
unsigned height);
static void _wlcl_dblbuf_handle_wl_buffer_release(
void *data_ptr,
struct wl_buffer *wl_buffer_ptr);
static int _wlcl_dblbuf_shm_create(const char *app_id_ptr, size_t size);
/* == Data ================================================================= */
/** How many attempts to try shm_open before giving up. */
static const uint32_t SHM_OPEN_RETRIES = 256;
/** Listener implementation for the `wl_buffer`. */
static const struct wl_buffer_listener _wlcl_dblbuf_wl_buffer_listener = {
.release = _wlcl_dblbuf_handle_wl_buffer_release,
};
/** Listener implementation for the frame. */
static const struct wl_callback_listener _wlcl_dblbuf_frame_listener = {
.done = _wlcl_dblbuf_handle_frame_done
};
/* == Exported methods ===================================================== */
/* ------------------------------------------------------------------------- */
wlcl_dblbuf_t *wlcl_dblbuf_create(
const char *app_id_ptr,
struct wl_surface *wl_surface_ptr,
struct wl_shm *wl_shm_ptr,
unsigned width,
unsigned height)
{
wlcl_dblbuf_t *dblbuf_ptr = logged_calloc(1, sizeof(wlcl_dblbuf_t));
if (NULL == dblbuf_ptr) return NULL;
dblbuf_ptr->width = width;
dblbuf_ptr->height = height;
dblbuf_ptr->wl_surface_ptr = BS_ASSERT_NOTNULL(wl_surface_ptr);
dblbuf_ptr->data_size = 2 * width * height * sizeof(uint32_t);
int fd = _wlcl_dblbuf_shm_create(app_id_ptr, dblbuf_ptr->data_size);
if (0 >= fd) goto error;
dblbuf_ptr->data_ptr = mmap(
NULL, dblbuf_ptr->data_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
if (MAP_FAILED == dblbuf_ptr->data_ptr) {
bs_log(BS_ERROR | BS_ERRNO, "Failed mmap(NULL, %zu, "
"PROT_READ|PROT_WRITE, MAP_SHARED, %d, 0)",
dblbuf_ptr->data_size, fd);
close(fd);
goto error;
}
struct wl_shm_pool *wl_shm_pool_ptr = wl_shm_create_pool(
wl_shm_ptr, fd, dblbuf_ptr->data_size);
close(fd);
if (NULL == wl_shm_pool_ptr) {
bs_log(BS_ERROR, "Failed wl_shm_create_pool(%p, %d, %zu)",
wl_shm_ptr, fd, dblbuf_ptr->data_size);
goto error;
}
for (int i = 0; i < _WLCL_DBLBUF_NUM; ++i) {
if (_wlcl_dblbuf_create_buffer(
&dblbuf_ptr->buffers[i], dblbuf_ptr,
wl_shm_pool_ptr, i, width, height)) {
_wlcl_dblbuf_handle_wl_buffer_release(
&dblbuf_ptr->buffers[i],
dblbuf_ptr->buffers[i].wl_buffer_ptr);
}
}
if (dblbuf_ptr->released != _WLCL_DBLBUF_NUM) goto error;
dblbuf_ptr->frame_is_due = true;
return dblbuf_ptr;
error:
wlcl_dblbuf_destroy(dblbuf_ptr);
return NULL;
}
/* ------------------------------------------------------------------------- */
void wlcl_dblbuf_destroy(wlcl_dblbuf_t *dblbuf_ptr)
{
for (int i = 0; i < _WLCL_DBLBUF_NUM; ++i) {
wlcl_buffer_t *buffer_ptr = &dblbuf_ptr->buffers[i];
if (NULL != buffer_ptr->wl_buffer_ptr) {
wl_buffer_destroy(buffer_ptr->wl_buffer_ptr);
buffer_ptr->wl_buffer_ptr = NULL;
}
if (NULL != buffer_ptr->gfxbuf_ptr) {
bs_gfxbuf_destroy(buffer_ptr->gfxbuf_ptr);
buffer_ptr->gfxbuf_ptr = NULL;
}
}
if (NULL != dblbuf_ptr->data_ptr) {
munmap(dblbuf_ptr->data_ptr, dblbuf_ptr->data_size);
dblbuf_ptr->data_ptr = NULL;
}
free(dblbuf_ptr);
}
/* ------------------------------------------------------------------------- */
void wlcl_dblbuf_register_ready_callback(
wlcl_dblbuf_t *dblbuf_ptr,
wlcl_dblbuf_ready_callback_t callback,
void *callback_ud_ptr)
{
dblbuf_ptr->callback = callback;
dblbuf_ptr->callback_ud_ptr = callback_ud_ptr;
_wlcl_dblbuf_callback_if_ready(dblbuf_ptr);
}
/* == Local (static) methods =============================================== */
/* ------------------------------------------------------------------------- */
/**
* Calls @ref wlcl_dblbuf_t::callback, if it is registered, a frame is due,
* and if there are available buffers. If so, and if the callback returns
* true, the corresponding buffer will be attached to the surface and the
* surface is committed.
*
* @param dblbuf_ptr
*/
void _wlcl_dblbuf_callback_if_ready(wlcl_dblbuf_t *dblbuf_ptr)
{
// Only proceed a frame is due, the client asked, and we have a buffer.
if (!dblbuf_ptr->callback ||
!dblbuf_ptr->frame_is_due ||
0 >= dblbuf_ptr->released) return;
wlcl_buffer_t *buffer_ptr =
dblbuf_ptr->released_buffer_ptrs[--dblbuf_ptr->released];
dblbuf_ptr->frame_is_due = false;
wlcl_dblbuf_ready_callback_t callback = dblbuf_ptr->callback;
dblbuf_ptr->callback = NULL;
if (!callback(
buffer_ptr->gfxbuf_ptr,
dblbuf_ptr->callback_ud_ptr)) {
dblbuf_ptr->released_buffer_ptrs[dblbuf_ptr->released++] = buffer_ptr;
dblbuf_ptr->frame_is_due = true;
return;
}
wl_surface_damage_buffer(
dblbuf_ptr->wl_surface_ptr, 0, 0, INT32_MAX, INT32_MAX);
struct wl_callback *wl_callback = wl_surface_frame(
dblbuf_ptr->wl_surface_ptr);
wl_callback_add_listener(
wl_callback,
&_wlcl_dblbuf_frame_listener,
dblbuf_ptr);
dblbuf_ptr->frame_is_due = false;
wl_surface_attach(
dblbuf_ptr->wl_surface_ptr,
buffer_ptr->wl_buffer_ptr, 0, 0);
wl_surface_commit(dblbuf_ptr->wl_surface_ptr);
}
/* ------------------------------------------------------------------------- */
/** Callback for when the compositor indicates a frame is due. */
void _wlcl_dblbuf_handle_frame_done(
void *data_ptr,
struct wl_callback *callback,
__UNUSED__ uint32_t time)
{
wl_callback_destroy(callback);
wlcl_dblbuf_t *dblbuf_ptr = data_ptr;
dblbuf_ptr->frame_is_due = true;
_wlcl_dblbuf_callback_if_ready(dblbuf_ptr);
}
/* ------------------------------------------------------------------------- */
/**
* Helper: Creates a `struct wl_buffer` from the `wl_shm_pool_ptr` at given
* dimensions and page number, and stores all into `buffer_ptr`.
*
* @param buffer_ptr
* @param dblbuf_ptr
* @param wl_shm_pool_ptr
* @param page
* @param width
* @param height
*
* @return true on success.
*/
bool _wlcl_dblbuf_create_buffer(
wlcl_buffer_t *buffer_ptr,
wlcl_dblbuf_t *dblbuf_ptr,
struct wl_shm_pool *wl_shm_pool_ptr,
unsigned page,
unsigned width,
unsigned height)
{
buffer_ptr->dblbuf_ptr = dblbuf_ptr;
buffer_ptr->wl_buffer_ptr = wl_shm_pool_create_buffer(
wl_shm_pool_ptr,
page * width * height * sizeof(uint32_t),
width,
height,
width * sizeof(uint32_t),
WL_SHM_FORMAT_ARGB8888);
if (NULL == buffer_ptr->wl_buffer_ptr) {
bs_log(BS_ERROR, "Failed wl_shm_pool_create_buffer(%p, %zu, %u, %u, "
"%zu, WL_SHM_FORMAT_ARGB8888)",
wl_shm_pool_ptr,
page * width * height * sizeof(uint32_t),
width,
height,
width * sizeof(uint32_t));
return false;
}
buffer_ptr->gfxbuf_ptr = bs_gfxbuf_create_unmanaged(
width, height, width,
(uint32_t*)dblbuf_ptr->data_ptr + page * width * height);
if (NULL == buffer_ptr->gfxbuf_ptr) return false;
wl_buffer_add_listener(
buffer_ptr->wl_buffer_ptr,
&_wlcl_dblbuf_wl_buffer_listener,
buffer_ptr);
return true;
}
/* ------------------------------------------------------------------------- */
/**
* Handles the `release` notification of the wl_buffer interface.
*
* @param data_ptr
* @param wl_buffer_ptr
*/
static void _wlcl_dblbuf_handle_wl_buffer_release(
void *data_ptr,
struct wl_buffer *wl_buffer_ptr)
{
wlcl_buffer_t *buffer_ptr = data_ptr;
BS_ASSERT(buffer_ptr->wl_buffer_ptr == wl_buffer_ptr);
wlcl_dblbuf_t *dblbuf_ptr = buffer_ptr->dblbuf_ptr;
dblbuf_ptr->released_buffer_ptrs[dblbuf_ptr->released++] = buffer_ptr;
_wlcl_dblbuf_callback_if_ready(dblbuf_ptr);
}
/* ------------------------------------------------------------------------- */
/**
* Creates a POSIX shared memory object and allocates `size` bytes to it.
*
* @param app_id_ptr
* @param size
*
* @return The file descriptor (a non-negative integer) on success, or -1 on
* failure. The file descriptor must be closed with close(2).
*/
int _wlcl_dblbuf_shm_create(const char *app_id_ptr, size_t size)
{
char shm_name[NAME_MAX];
int fd = -1;
shm_name[0] = '\0';
for (uint32_t sequence = 0; sequence < SHM_OPEN_RETRIES; ++sequence) {
snprintf(shm_name, NAME_MAX, "/%s_%"PRIdMAX"_shm_%"PRIx64"_%"PRIu32,
app_id_ptr ? app_id_ptr : "wlclient",
(intmax_t)getpid(), bs_usec(), sequence);
fd = shm_open(shm_name, O_RDWR|O_CREAT|O_EXCL, 0600);
if (0 > fd && errno == EEXIST) continue;
if (0 < fd) break;
bs_log(BS_WARNING | BS_ERRNO,
"Failed shm_open(\"%s\", O_RDWR|O_CREAT|O_EXCL, 0600)",
shm_name);
return -1;
}
if (0 != shm_unlink(shm_name)) {
bs_log(BS_ERROR | BS_ERRNO, "Failed shm_unlink(\"%s\")", shm_name);
close(fd);
return -1;
}
while (0 != ftruncate(fd, size)) {
if (EINTR == errno) continue; // try again...
bs_log(BS_ERROR | BS_ERRNO, "Failed ftruncate(%d, %zu)", fd, size);
close(fd);
return -1;
}
return fd;
}
/* == End of dblbuf.c ====================================================== */
|