2 * Copyright © 2012 Ran Benita <ran234@gmail.com>
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:
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
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.
29 main(int argc, char *argv[])
31 int ret = EXIT_FAILURE;
33 struct xkb_context *ctx;
34 struct xkb_keymap *keymap;
35 const char *rules = NULL;
36 const char *model = NULL;
37 const char *layout = NULL;
38 const char *variant = NULL;
39 const char *options = NULL;
40 const char *keymap_path = NULL;
43 while ((opt = getopt(argc, argv, "r:m:l:v:o:k:h")) != -1) {
65 fprintf(stderr, "Usage: %s [-r <rules>] [-m <model>] "
66 "[-l <layout>] [-v <variant>] [-o <options>]\n",
68 fprintf(stderr, " or: %s -k <path to keymap file>\n",
74 ctx = test_get_context(0);
76 fprintf(stderr, "Couldn't create xkb context\n");
81 keymap = test_compile_file(ctx, keymap_path);
83 keymap = test_compile_rules(ctx, rules, model, layout, variant,
86 fprintf(stderr, "Couldn't create xkb keymap\n");
90 dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_FORMAT_TEXT_V1);
92 fprintf(stderr, "Couldn't get the keymap string\n");
101 xkb_keymap_unref(keymap);
103 xkb_context_unref(ctx);