diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2024-08-02 15:36:38 +0200 |
---|---|---|
committer | Daniel Eklöf <daniel@ekloef.se> | 2024-08-02 15:36:38 +0200 |
commit | 65e94ffae271dc9ef75f5227d8ec647b1dd428bd (patch) | |
tree | 5ef0dc58dcac9f4c8709186b8c5ce0d5c0d7a82e | |
parent | 0ed574cdf5bd31999145dd025ac110c0880c012f (diff) | |
download | wbg-65e94ffae271dc9ef75f5227d8ec647b1dd428bd.tar.gz |
wbg: use getopt() for option parsing, add help and version options
-rw-r--r-- | main.c | 91 | ||||
-rw-r--r-- | meson.build | 1 | ||||
-rw-r--r-- | wbg-features.h | 47 |
3 files changed, 126 insertions, 13 deletions
@@ -1,13 +1,14 @@ -#include <stdlib.h> -#include <stdio.h> -#include <stdbool.h> -#include <string.h> -#include <poll.h> +#include <assert.h> #include <errno.h> +#include <getopt.h> +#include <locale.h> +#include <poll.h> #include <signal.h> +#include <stdbool.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <unistd.h> -#include <locale.h> -#include <assert.h> #include <sys/signalfd.h> @@ -23,6 +24,7 @@ #include "log.h" #include "shm.h" #include "version.h" +#include "wbg-features.h" #if defined(WBG_HAVE_PNG) #include "png-wbg.h" @@ -83,8 +85,9 @@ render(struct output *output) struct buffer *buf = shm_get_buffer( shm, width * scale, height * scale, (uintptr_t)output); - - if (!buf) return; + + if (!buf) + return; pixman_image_t *src = image; bool is_svg = false; @@ -111,7 +114,7 @@ render(struct output *output) pixman_image_set_filter(src, PIXMAN_FILTER_BEST, NULL, 0); } - pixman_image_composite32(PIXMAN_OP_SRC, src, NULL, buf->pix, + pixman_image_composite32(PIXMAN_OP_SRC, src, NULL, buf->pix, 0, 0, 0, 0, 0, 0, width * scale, height * scale); if (is_svg) { @@ -378,11 +381,73 @@ handle_global_remove(void *data, struct wl_registry *registry, uint32_t name) static const struct wl_registry_listener registry_listener = { .global = &handle_global, .global_remove = &handle_global_remove, -}; + }; + +static void +usage(const char *progname) +{ + printf("Usage: %s [OPTIONS] IMAGE_FILE\n" + "\n" + "Options:\n" + " -s,--stretch stretch the image to fill the screen\n" + " -v,--version show the version number and quit\n" + , progname); +} + +static const char * +version_and_features(void) +{ + static char buf[256]; + snprintf(buf, sizeof(buf), + "version: %s %cpng %csvg %cjpg %cjxl %cwebp", + WBG_VERSION, + feature_png() ? '+' : '-', + feature_svg() ? '+' : '-', + feature_jpg() ? '+' : '-', + feature_jxl() ? '+' : '-', + feature_webp() ? '+' : '-'); + return buf; +} int -main(int argc, const char *const *argv) +main(int argc, char *const *argv) { + const char *progname = argv[0]; + + const struct option longopts[] = { + {"stretch", no_argument, 0, 's'}, + {"version", no_argument, 0, 'v'}, + {"help", no_argument, 0, 'h'}, + {NULL, no_argument, 0, 0}, + }; + + while (true) { + int c = getopt_long(argc, argv, ":svh", longopts, NULL); + if (c < 0) + break; + + switch (c) { + case 's': + break; + + case 'v': + printf("wbg version: %s\n", version_and_features()); + return EXIT_SUCCESS; + + case 'h': + usage(progname); + return EXIT_SUCCESS; + + case ':': + fprintf(stderr, "error: -%c: missing required argument\n", optopt); + return EXIT_FAILURE; + + case '?': + fprintf(stderr, "error: -%c: invalid option\n", optopt); + return EXIT_FAILURE; + } + } + if (argc != 2 && (argc != 3 || (strcmp(argv[1], "-s") != 0 && strcmp(argv[1], "--stretch") != 0))) { fprintf(stderr, "Usage: %s [-s|--stretch] <image_path>\n", argv[0]); return EXIT_FAILURE; @@ -564,4 +629,4 @@ out: log_deinit(); fclose(fp); return exit_code; -}
\ No newline at end of file +} diff --git a/meson.build b/meson.build index 677421b..7b7e795 100644 --- a/meson.build +++ b/meson.build @@ -158,6 +158,7 @@ executable( 'log.c', 'log.h', 'shm.c', 'shm.h', 'stride.h', + 'wbg-features.h', image_format_sources, wl_proto_src + wl_proto_headers, version, dependencies: [pixman, png, jpg, jxl, jxl_threads, webp, svg, wayland_client, tllist], diff --git a/wbg-features.h b/wbg-features.h new file mode 100644 index 0000000..b11da92 --- /dev/null +++ b/wbg-features.h @@ -0,0 +1,47 @@ +#pragma once +#include <stdbool.h> + +static inline bool feature_png(void) +{ +#if defined(WBG_HAVE_PNG) && WBG_HAVE_PNG + return true; +#else + return false; +#endif +} + +static inline bool feature_jpg(void) +{ +#if defined(WBG_HAVE_JPG) && WBG_HAVE_JPG + return true; +#else + return false; +#endif +} + +static inline bool feature_webp(void) +{ +#if defined(WBG_HAVE_WEBP) && WBG_HAVE_WEBP + return true; +#else + return false; +#endif +} + +static inline bool feature_svg(void) +{ +#if defined(WBG_HAVE_SVG) && WBG_HAVE_SVG + return true; +#else + return false; +#endif +} + +static inline bool feature_jxl(void) +{ +#if defined(WBG_HAVE_JXL) && WBG_HAVE_JXL + return true; +#else + return false; +#endif +} |