2 * Copyright © 2020 Collabora, Ltd.
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 #include <sys/param.h>
39 #include <wayland-client.h>
40 #include "shared/helpers.h"
41 #include "shared/xalloc.h"
42 #include "shared/file-util.h"
43 #include "shared/string-helpers.h"
44 #include "shared/os-compatibility.h"
45 #include "agl-screenshooter-client-protocol.h"
46 #include "xdg-output-unstable-v1-client-protocol.h"
48 struct screenshooter_data;
50 struct screenshooter_output {
51 struct wl_output *output;
52 struct wl_buffer *buffer;
54 int width, height, offset_x, offset_y, scale;
56 struct screenshooter_data *sh_data;
58 struct wl_list link; /** screenshooter_data::output_list */
61 struct xdg_output_v1_info {
62 struct zxdg_output_v1 *xdg_output;
63 struct screenshooter_output *output;
65 char *name, *description;
66 struct wl_list link; /** screenshooter_data::xdg_output_list */
77 struct screenshooter_data {
78 struct wl_display *display;
80 struct wl_list output_list; /** screenshooter_output::link */
81 struct wl_list xdg_output_list; /** xdg_output_v1_info::link */
83 struct zxdg_output_manager_v1 *xdg_output_manager;
84 struct agl_screenshooter *screenshooter;
88 static int opts = 0x0;
90 #define OPT_SCREENSHOT_OUTPUT 1
91 #define OPT_SHOW_ALL_OUTPUTS 2
92 #define OPT_SCREENSHOT_ALL_OUTPUTS 3
95 display_handle_geometry(void *data,
96 struct wl_output *wl_output,
106 struct screenshooter_output *output;
108 output = wl_output_get_user_data(wl_output);
110 if (wl_output == output->output) {
111 output->offset_x = x;
112 output->offset_y = y;
117 display_handle_mode(void *data,
118 struct wl_output *wl_output,
124 struct screenshooter_output *output;
126 output = wl_output_get_user_data(wl_output);
128 if (wl_output == output->output && (flags & WL_OUTPUT_MODE_CURRENT)) {
129 output->width = width;
130 output->height = height;
135 display_handle_done(void *data, struct wl_output *wl_output)
141 display_handle_scale(void *data, struct wl_output *wl_output,
144 struct screenshooter_output *output = data;
145 output->scale = scale;
149 static const struct wl_output_listener output_listener = {
150 display_handle_geometry,
153 display_handle_scale,
159 handle_xdg_output_v1_logical_position(void *data, struct zxdg_output_v1 *output,
160 int32_t x, int32_t y)
165 handle_xdg_output_v1_logical_size(void *data, struct zxdg_output_v1 *output,
166 int32_t width, int32_t height)
171 handle_xdg_output_v1_done(void *data, struct zxdg_output_v1 *output)
173 /* Don't bother waiting for this; there's no good reason a
174 * compositor will wait more than one roundtrip before sending
175 * these initial events. */
179 handle_xdg_output_v1_name(void *data, struct zxdg_output_v1 *output,
182 struct xdg_output_v1_info *xdg_output = data;
183 xdg_output->name = strdup(name);
187 handle_xdg_output_v1_description(void *data, struct zxdg_output_v1 *output,
188 const char *description)
190 struct xdg_output_v1_info *xdg_output = data;
191 xdg_output->description = strdup(description);
194 static const struct zxdg_output_v1_listener xdg_output_v1_listener = {
195 .logical_position = handle_xdg_output_v1_logical_position,
196 .logical_size = handle_xdg_output_v1_logical_size,
197 .done = handle_xdg_output_v1_done,
198 .name = handle_xdg_output_v1_name,
199 .description = handle_xdg_output_v1_description,
203 add_xdg_output_v1_info(struct screenshooter_data *shooter_data,
204 struct screenshooter_output *output)
206 struct xdg_output_v1_info *xdg_output = zalloc(sizeof(*xdg_output));
210 wl_list_insert(&shooter_data->xdg_output_list, &xdg_output->link);
212 xdg_output->xdg_output =
213 zxdg_output_manager_v1_get_xdg_output(shooter_data->xdg_output_manager,
216 zxdg_output_v1_add_listener(xdg_output->xdg_output,
217 &xdg_output_v1_listener, xdg_output);
218 xdg_output->output = output;
222 screenshot_done(void *data, struct agl_screenshooter *screenshooter, uint32_t status)
224 struct screenshooter_data *sh_data = data;
225 sh_data->buffer_copy_done = 1;
228 static const struct agl_screenshooter_listener screenshooter_listener = {
233 handle_global(void *data, struct wl_registry *registry,
234 uint32_t name, const char *interface, uint32_t version)
236 struct screenshooter_output *output;
237 struct screenshooter_data *sh_data = data;
239 if (strcmp(interface, "wl_output") == 0) {
240 output = zalloc(sizeof(*output));
244 output->output = wl_registry_bind(registry, name,
245 &wl_output_interface, 1);
246 output->sh_data = sh_data;
247 wl_list_insert(&sh_data->output_list, &output->link);
248 wl_output_add_listener(output->output, &output_listener, output);
249 } else if (strcmp(interface, "wl_shm") == 0) {
250 sh_data->shm = wl_registry_bind(registry, name, &wl_shm_interface, 1);
251 } else if (strcmp(interface, "agl_screenshooter") == 0) {
252 sh_data->screenshooter = wl_registry_bind(registry, name,
253 &agl_screenshooter_interface, 1);
255 agl_screenshooter_add_listener(sh_data->screenshooter,
256 &screenshooter_listener, sh_data);
257 } else if (strcmp(interface, "zxdg_output_manager_v1") == 0) {
258 sh_data->xdg_output_manager = wl_registry_bind(registry, name,
259 &zxdg_output_manager_v1_interface, version);
264 handle_global_remove(void *data, struct wl_registry *registry, uint32_t name)
266 /* XXX: unimplemented */
269 static const struct wl_registry_listener registry_listener = {
274 static struct wl_buffer *
275 screenshot_create_shm_buffer(int width, int height, void **data_out,
278 struct wl_shm_pool *pool;
279 struct wl_buffer *buffer;
280 int fd, size, stride;
284 size = stride * height;
286 fd = os_create_anonymous_file(size);
288 fprintf(stderr, "creating a buffer file for %d B failed: %s\n",
289 size, strerror(errno));
293 data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
294 if (data == MAP_FAILED) {
295 fprintf(stderr, "mmap failed: %s\n", strerror(errno));
300 pool = wl_shm_create_pool(shm, fd, size);
302 buffer = wl_shm_pool_create_buffer(pool, 0, width, height, stride,
303 WL_SHM_FORMAT_XRGB8888);
304 wl_shm_pool_destroy(pool);
312 screenshot_write_png_per_output(const struct buffer_size *buff_size,
313 struct screenshooter_output *sh_output,
316 int output_stride, buffer_stride, i;
317 cairo_surface_t *surface;
320 char filepath[PATH_MAX];
321 char *filename_to_write;
323 buffer_stride = buff_size->width * 4;
324 data = xmalloc(buffer_stride * buff_size->height);
328 output_stride = sh_output->width * 4;
330 d = data + (sh_output->offset_y - buff_size->min_y) * buffer_stride +
331 (sh_output->offset_x - buff_size->min_x) * 4;
333 for (i = 0; i < sh_output->height; i++) {
334 memcpy(d, s, output_stride);
339 surface = cairo_image_surface_create_for_data(data,
346 str_printf(&filename_to_write, "agl-screenshot-%s-", fn);
348 str_printf(&filename_to_write, "agl-screenshot-");
350 fp = file_create_dated(getenv("XDG_PICTURES_DIR"), filename_to_write,
351 ".png", filepath, sizeof(filepath));
354 cairo_surface_write_to_png(surface, filepath);
357 cairo_surface_destroy(surface);
358 free(filename_to_write);
363 screenshot_set_buffer_size_per_output(struct buffer_size *buff_size,
364 struct screenshooter_output *output)
366 buff_size->min_x = MIN(buff_size->min_x, output->offset_x);
367 buff_size->min_y = MIN(buff_size->min_y, output->offset_y);
368 buff_size->max_x = MAX(buff_size->max_x, output->offset_x + output->width);
369 buff_size->max_y = MAX(buff_size->max_y, output->offset_y + output->height);
371 buff_size->width = buff_size->max_x - buff_size->min_x;
372 buff_size->height = buff_size->max_y - buff_size->min_y;
376 screenshot_compute_output_offset(int *pos, struct screenshooter_output *sh_output)
378 sh_output->offset_x = *pos;
379 *pos += sh_output->width;
382 static struct screenshooter_output *
383 agl_shooter_search_for_output(const char *output_name,
384 struct screenshooter_data *sh_data)
386 struct screenshooter_output *found_output = NULL;
387 struct xdg_output_v1_info *output;
392 wl_list_for_each(output, &sh_data->xdg_output_list, link) {
393 if (output->name && strcmp(output->name, output_name) == 0) {
394 found_output = output->output;
403 agl_shooter_search_get_output_name(struct screenshooter_output *sh_output)
405 struct xdg_output_v1_info *output;
406 struct screenshooter_data *sh_data;
411 sh_data = sh_output->sh_data;
413 wl_list_for_each(output, &sh_data->xdg_output_list, link) {
414 if (output->output == sh_output) {
423 agl_shooter_display_all_outputs(struct screenshooter_data *sh_data)
425 struct xdg_output_v1_info *xdg_output;
426 wl_list_for_each(xdg_output, &sh_data->xdg_output_list, link) {
427 fprintf(stdout, "Output '%s', desc: '%s'\n", xdg_output->name,
428 xdg_output->description);
434 agl_shooter_screenshot_all_outputs(struct screenshooter_data *sh_data)
436 struct xdg_output_v1_info *xdg_output;
438 wl_list_for_each(xdg_output, &sh_data->xdg_output_list, link) {
439 struct buffer_size buff_size = {};
441 struct screenshooter_output *output = xdg_output->output;
443 screenshot_compute_output_offset(&pos, output);
444 screenshot_set_buffer_size_per_output(&buff_size, output);
447 screenshot_create_shm_buffer(output->width,
452 agl_screenshooter_take_shot(sh_data->screenshooter,
456 sh_data->buffer_copy_done = 0;
457 while (!sh_data->buffer_copy_done)
458 wl_display_roundtrip(sh_data->display);
460 screenshot_write_png_per_output(&buff_size, output, xdg_output->name);
465 agl_shooter_screenshot_output(struct screenshooter_output *sh_output)
468 struct buffer_size buff_size = {};
469 struct screenshooter_data *sh_data = sh_output->sh_data;
472 screenshot_compute_output_offset(&pos, sh_output);
473 screenshot_set_buffer_size_per_output(&buff_size, sh_output);
476 screenshot_create_shm_buffer(sh_output->width,
478 &sh_output->data, sh_data->shm);
480 agl_screenshooter_take_shot(sh_data->screenshooter,
484 sh_data->buffer_copy_done = 0;
485 while (!sh_data->buffer_copy_done)
486 wl_display_roundtrip(sh_data->display);
488 output_name = agl_shooter_search_get_output_name(sh_output);
490 screenshot_write_png_per_output(&buff_size, sh_output, output_name);
494 agl_shooter_destroy_xdg_output_manager(struct screenshooter_data *sh_data)
496 struct xdg_output_v1_info *xdg_output;
498 wl_list_for_each(xdg_output, &sh_data->xdg_output_list, link) {
499 free(xdg_output->name);
500 free(xdg_output->description);
501 zxdg_output_v1_destroy(xdg_output->xdg_output);
504 zxdg_output_manager_v1_destroy(sh_data->xdg_output_manager);
508 print_usage_and_exit(void)
510 fprintf(stderr, "./agl-screenshooter [-o OUTPUT_NAME] [-l] [-a]\n");
512 fprintf(stderr, "\t-o OUTPUT_NAME -- take a screenshot of the output "
513 "specified by OUTPUT_NAME\n");
514 fprintf(stderr, "\t-a -- take a screenshot of all the outputs found\n");
515 fprintf(stderr, "\t-l -- list all the outputs found\n");
519 int main(int argc, char *argv[])
521 struct wl_display *display;
522 struct wl_registry *registry;
524 struct screenshooter_data sh_data = {};
525 struct screenshooter_output *sh_output = NULL;
528 char *output_name = NULL;
530 static struct option long_options[] = {
531 {"output", required_argument, 0, 'o' },
532 {"list", required_argument, 0, 'l' },
533 {"all", required_argument, 0, 'a' },
534 {"help", no_argument , 0, 'h' },
538 while ((c = getopt_long(argc, argv, "o:lah",
539 long_options, &option_index)) != -1) {
542 output_name = optarg;
543 opts |= (1 << OPT_SCREENSHOT_OUTPUT);
546 opts |= (1 << OPT_SHOW_ALL_OUTPUTS);
549 opts |= (1 << OPT_SCREENSHOT_ALL_OUTPUTS);
552 print_usage_and_exit();
556 display = wl_display_connect(NULL);
557 if (display == NULL) {
558 fprintf(stderr, "failed to create display: %s\n",
563 wl_list_init(&sh_data.output_list);
564 wl_list_init(&sh_data.xdg_output_list);
565 sh_data.display = display;
567 registry = wl_display_get_registry(display);
568 wl_registry_add_listener(registry, ®istry_listener, &sh_data);
570 wl_display_dispatch(display);
571 wl_display_roundtrip(display);
574 if (sh_data.screenshooter == NULL) {
575 fprintf(stderr, "Compositor doesn't support screenshooter\n");
579 wl_list_for_each(sh_output, &sh_data.output_list, link)
580 add_xdg_output_v1_info(&sh_data, sh_output);
582 /* do another round-trip for xdg_output */
583 wl_display_roundtrip(sh_data.display);
585 if (opts & (1 << OPT_SHOW_ALL_OUTPUTS)) {
586 agl_shooter_display_all_outputs(&sh_data);
587 agl_shooter_destroy_xdg_output_manager(&sh_data);
591 if (opts & (1 << OPT_SCREENSHOT_ALL_OUTPUTS)) {
592 agl_shooter_screenshot_all_outputs(&sh_data);
593 agl_shooter_destroy_xdg_output_manager(&sh_data);
599 sh_output = agl_shooter_search_for_output(output_name, &sh_data);
601 if (!sh_output && (opts & (1 << OPT_SCREENSHOT_OUTPUT))) {
602 fprintf(stderr, "Could not find an output matching '%s'\n",
604 agl_shooter_destroy_xdg_output_manager(&sh_data);
608 /* if we're still here just pick the first one available
609 * and use that. Still useful in case we are run without
610 * any args whatsoever */
612 sh_output = container_of(sh_data.output_list.next,
613 struct screenshooter_output, link);
615 /* take a screenshot only of that specific output */
616 agl_shooter_screenshot_output(sh_output);
617 agl_shooter_destroy_xdg_output_manager(&sh_data);