test: add "how to type" demo program
[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 "config.h"
25
26 #include <unistd.h>
27
28 #include "test.h"
29
30 int
31 main(int argc, char *argv[])
32 {
33     int ret = EXIT_FAILURE;
34     int opt;
35     struct xkb_context *ctx;
36     struct xkb_keymap *keymap;
37     const char *keymap_path = NULL;
38     char *dump;
39
40     while ((opt = getopt(argc, argv, "h")) != -1) {
41         switch (opt) {
42         case 'h':
43         case '?':
44             fprintf(stderr, "Usage: %s <path to keymap file>\n", argv[0]);
45             exit(EXIT_FAILURE);
46         }
47     }
48
49     if (optind >= argc) {
50         fprintf(stderr, "Error: missing path to keymap file\n");
51         exit(EXIT_FAILURE);
52     }
53
54     keymap_path = argv[optind];
55
56     ctx = test_get_context(0);
57     if (!ctx) {
58         fprintf(stderr, "Couldn't create xkb context\n");
59         goto err_out;
60     }
61
62     keymap = test_compile_file(ctx, keymap_path);
63     if (!keymap) {
64         fprintf(stderr, "Couldn't create xkb keymap\n");
65         goto err_ctx;
66     }
67
68     dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_FORMAT_TEXT_V1);
69     if (!dump) {
70         fprintf(stderr, "Couldn't get the keymap string\n");
71         goto err_map;
72     }
73
74     fputs(dump, stdout);
75
76     ret = EXIT_SUCCESS;
77     free(dump);
78 err_map:
79     xkb_keymap_unref(keymap);
80 err_ctx:
81     xkb_context_unref(ctx);
82 err_out:
83     return ret;
84 }