From 8b8a464576789b13e2d48d4ede662acac3141263 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 24 Jun 2020 09:00:08 +1000 Subject: tools: allow stdin for compiling keymaps This connects two tools to be useful together: xkbcommon-rmlvo-to-kccgst | xkbcommon-print-compiled-keymap - which will result in the full keymap generated by the former tool. Signed-off-by: Peter Hutterer --- tools/print-compiled-keymap.c | 41 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 37 insertions(+), 4 deletions(-) (limited to 'tools') diff --git a/tools/print-compiled-keymap.c b/tools/print-compiled-keymap.c index e595ab1..04d98ba 100644 --- a/tools/print-compiled-keymap.c +++ b/tools/print-compiled-keymap.c @@ -27,6 +27,7 @@ #include #include +#include "utils.h" #include "xkbcommon/xkbcommon.h" int @@ -62,10 +63,42 @@ main(int argc, char *argv[]) goto out; } - file = fopen(keymap_path, "rb"); - if (!file) { - fprintf(stderr, "Failed to open path: %s\n", keymap_path); - goto out; + if (streq(keymap_path, "-")) { + FILE *tmp; + + tmp = tmpfile(); + if (!tmp) { + fprintf(stderr, "Failed to create tmpfile\n"); + goto out; + } + + while (true) { + char buf[4096]; + size_t len; + + len = fread(buf, 1, sizeof(buf), stdin); + if (ferror(stdin)) { + fprintf(stderr, "Failed to read from stdin\n"); + goto out; + } + if (len > 0) { + size_t wlen = fwrite(buf, 1, len, tmp); + if (wlen != len) { + fprintf(stderr, "Failed to write to tmpfile\n"); + goto out; + } + } + if (feof(stdin)) + break; + } + fseek(tmp, 0, SEEK_SET); + file = tmp; + } else { + file = fopen(keymap_path, "rb"); + if (!file) { + fprintf(stderr, "Failed to open path: %s\n", keymap_path); + goto out; + } } keymap = xkb_keymap_new_from_file(ctx, file, -- cgit v1.2.1