|
|
@ -1,52 +1,45 @@
|
|
|
|
#define _POSIX_C_SOURCE 200809
|
|
|
|
#define _POSIX_C_SOURCE 200809
|
|
|
|
#include <assert.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <pango/pangocairo.h>
|
|
|
|
#include <pango/pangocairo.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <wayland-client.h>
|
|
|
|
#include <wayland-client.h>
|
|
|
|
#include "config.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "pool-buffer.h"
|
|
|
|
#include "pool-buffer.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
|
|
|
|
static int create_pool_file(size_t size, char **name) {
|
|
|
|
static int anonymous_shm_open(void) {
|
|
|
|
static const char template[] = "sway-client-XXXXXX";
|
|
|
|
int retries = 100;
|
|
|
|
const char *path = getenv("XDG_RUNTIME_DIR");
|
|
|
|
|
|
|
|
if (path == NULL) {
|
|
|
|
do {
|
|
|
|
fprintf(stderr, "XDG_RUNTIME_DIR is not set\n");
|
|
|
|
// try a probably-unique name
|
|
|
|
return -1;
|
|
|
|
struct timespec ts;
|
|
|
|
}
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
|
|
|
|
pid_t pid = getpid();
|
|
|
|
size_t name_size = strlen(template) + 1 + strlen(path) + 1;
|
|
|
|
char name[50];
|
|
|
|
*name = malloc(name_size);
|
|
|
|
snprintf(name, sizeof(name), "/sway-%x-%x",
|
|
|
|
if (*name == NULL) {
|
|
|
|
(unsigned int)pid, (unsigned int)ts.tv_nsec);
|
|
|
|
fprintf(stderr, "allocation failed\n");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
// shm_open guarantees that O_CLOEXEC is set
|
|
|
|
}
|
|
|
|
int fd = shm_open(name, O_RDWR | O_CREAT | O_EXCL, 0600);
|
|
|
|
snprintf(*name, name_size, "%s/%s", path, template);
|
|
|
|
if (fd >= 0) {
|
|
|
|
|
|
|
|
shm_unlink(name);
|
|
|
|
int fd = mkstemp(*name);
|
|
|
|
return fd;
|
|
|
|
if (fd < 0) {
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!sway_set_cloexec(fd, true)) {
|
|
|
|
--retries;
|
|
|
|
close(fd);
|
|
|
|
} while (retries > 0 && errno == EEXIST);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ftruncate(fd, size) < 0) {
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void buffer_release(void *data, struct wl_buffer *wl_buffer) {
|
|
|
|
static void buffer_release(void *data, struct wl_buffer *wl_buffer) {
|
|
|
|
struct pool_buffer *buffer = data;
|
|
|
|
struct pool_buffer *buffer = data;
|
|
|
|
buffer->busy = false;
|
|
|
|
buffer->busy = false;
|
|
|
@ -62,17 +55,20 @@ static struct pool_buffer *create_buffer(struct wl_shm *shm,
|
|
|
|
uint32_t stride = width * 4;
|
|
|
|
uint32_t stride = width * 4;
|
|
|
|
size_t size = stride * height;
|
|
|
|
size_t size = stride * height;
|
|
|
|
|
|
|
|
|
|
|
|
char *name;
|
|
|
|
int fd = anonymous_shm_open();
|
|
|
|
int fd = create_pool_file(size, &name);
|
|
|
|
if (fd == -1) {
|
|
|
|
assert(fd != -1);
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ftruncate(fd, size) < 0) {
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
void *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
void *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
struct wl_shm_pool *pool = wl_shm_create_pool(shm, fd, size);
|
|
|
|
struct wl_shm_pool *pool = wl_shm_create_pool(shm, fd, size);
|
|
|
|
buf->buffer = wl_shm_pool_create_buffer(pool, 0,
|
|
|
|
buf->buffer = wl_shm_pool_create_buffer(pool, 0,
|
|
|
|
width, height, stride, format);
|
|
|
|
width, height, stride, format);
|
|
|
|
wl_shm_pool_destroy(pool);
|
|
|
|
wl_shm_pool_destroy(pool);
|
|
|
|
close(fd);
|
|
|
|
close(fd);
|
|
|
|
unlink(name);
|
|
|
|
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
buf->size = size;
|
|
|
|
buf->size = size;
|
|
|
|
buf->width = width;
|
|
|
|
buf->width = width;
|
|
|
|