test/rmlvo-to-keymap.c: fix compilation on Darwin (#101)
[platform/upstream/libxkbcommon.git] / test / print-compiled-keymap.c
1 /*
2  * Copyright © 2012 Ran Benita <ran234@gmail.com>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  */
23
24 #include <unistd.h>
25
26 #include "test.h"
27
28 int
29 main(int argc, char *argv[])
30 {
31     int ret = EXIT_FAILURE;
32     int opt;
33     struct xkb_context *ctx;
34     struct xkb_keymap *keymap;
35     const char *keymap_path = NULL;
36     char *dump;
37
38     while ((opt = getopt(argc, argv, "h")) != -1) {
39         switch (opt) {
40         case 'h':
41         case '?':
42             fprintf(stderr, "Usage: %s <path to keymap file>\n", argv[0]);
43             exit(EXIT_FAILURE);
44         }
45     }
46
47     if (optind >= argc) {
48         fprintf(stderr, "Error: missing path to keymap file\n");
49         exit(EXIT_FAILURE);
50     }
51
52     keymap_path = argv[optind];
53
54     ctx = test_get_context(0);
55     if (!ctx) {
56         fprintf(stderr, "Couldn't create xkb context\n");
57         goto err_out;
58     }
59
60     keymap = test_compile_file(ctx, keymap_path);
61     if (!keymap) {
62         fprintf(stderr, "Couldn't create xkb keymap\n");
63         goto err_ctx;
64     }
65
66     dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_FORMAT_TEXT_V1);
67     if (!dump) {
68         fprintf(stderr, "Couldn't get the keymap string\n");
69         goto err_map;
70     }
71
72     fputs(dump, stdout);
73
74     ret = EXIT_SUCCESS;
75     free(dump);
76 err_map:
77     xkb_keymap_unref(keymap);
78 err_ctx:
79     xkb_context_unref(ctx);
80 err_out:
81     return ret;
82 }