test: let rmlvo-to-kccgst take long options like rmlvo-to-keymap
[platform/upstream/libxkbcommon.git] / test / rmlvo-to-kccgst.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 #include <getopt.h>
26
27 #include "test.h"
28 #include "xkbcomp/xkbcomp-priv.h"
29 #include "xkbcomp/rules.h"
30
31 int
32 main(int argc, char *argv[])
33 {
34     struct xkb_rule_names rmlvo = { NULL };
35     struct xkb_context *ctx;
36     struct xkb_component_names kccgst;
37
38     static struct option opts[] = {
39         {"help",        no_argument,            0, 'h'},
40         {"rules",       required_argument,      0, 'r'},
41         {"model",       required_argument,      0, 'm'},
42         {"layout",      required_argument,      0, 'l'},
43         {"variant",     required_argument,      0, 'v'},
44         {"options",     required_argument,      0, 'o'},
45         {0, 0, 0, 0},
46     };
47
48     while (1) {
49         int c;
50         int option_index = 0;
51
52         c = getopt_long(argc, argv, "r:m:l:v:o:h", opts, &option_index);
53         if (c == -1)
54             break;
55
56         switch (c) {
57         case 'r':
58             rmlvo.rules = optarg;
59             break;
60         case 'm':
61             rmlvo.model = optarg;
62             break;
63         case 'l':
64             rmlvo.layout = optarg;
65             break;
66         case 'v':
67             rmlvo.variant = optarg;
68             break;
69         case 'o':
70             rmlvo.options = optarg;
71             break;
72         case 'h':
73         case '?':
74             fprintf(stderr, "Usage: %s [-r <rules>] [-m <model>] "
75                     "[-l <layout>] [-v <variant>] [-o <options>]\n",
76                     argv[0]);
77             return 1;
78         }
79     }
80
81     ctx = test_get_context(0);
82     if (!ctx) {
83         fprintf(stderr, "Failed to get xkb context\n");
84         return 1;
85     }
86
87     xkb_context_sanitize_rule_names(ctx, &rmlvo);
88
89     if (!xkb_components_from_rules(ctx, &rmlvo, &kccgst))
90         return 1;
91
92     printf("keycodes: %s\n", kccgst.keycodes);
93     printf("types:    %s\n", kccgst.types);
94     printf("compat:   %s\n", kccgst.compat);
95     printf("symbols:  %s\n", kccgst.symbols);
96
97     free(kccgst.keycodes);
98     free(kccgst.types);
99     free(kccgst.compat);
100     free(kccgst.symbols);
101     xkb_context_unref(ctx);
102     return 0;
103 }