Copyright updates
[platform/upstream/libxkbcommon.git] / test / rulescomp.c
1 /*
2  * Copyright © 2009 Dan Nicholson
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 <assert.h>
25 #include <stdio.h>
26 #include <time.h>
27
28 #include "xkbcommon/xkbcommon.h"
29 #include "test.h"
30
31 #define BENCHMARK_ITERATIONS 1000
32
33 static int
34 test_rmlvo(struct xkb_context *context, const char *rules,
35            const char *model, const char *layout,
36            const char *variant, const char *options)
37 {
38     struct xkb_keymap *keymap;
39
40     keymap = test_compile_rules(context, rules, model, layout, variant,
41                                 options);
42     if (keymap) {
43         fprintf(stderr, "Compiled '%s' '%s' '%s' '%s' '%s'\n",
44                 strnull(rules), strnull(model), strnull(layout),
45                 strnull(variant), strnull(options));
46         xkb_map_unref(keymap);
47     }
48
49     return keymap != NULL;
50 }
51
52 static int
53 test_rmlvo_silent(struct xkb_context *context, const char *rules,
54                   const char *model, const char *layout,
55                   const char *variant, const char *options)
56 {
57     struct xkb_keymap *keymap;
58
59     keymap = test_compile_rules(context, rules, model, layout, variant,
60                                 options);
61     if (keymap)
62         xkb_map_unref(keymap);
63
64     return keymap != NULL;
65 }
66
67 static void
68 benchmark(struct xkb_context *context)
69 {
70     struct timespec start, stop, elapsed;
71     enum xkb_log_level old_level = xkb_get_log_level(context);
72     int old_verb = xkb_get_log_verbosity(context);
73     int i;
74
75     xkb_set_log_level(context, XKB_LOG_LEVEL_CRITICAL);
76     xkb_set_log_verbosity(context, 0);
77
78     clock_gettime(CLOCK_MONOTONIC, &start);
79     for (i = 0; i < BENCHMARK_ITERATIONS; i++)
80         assert(test_rmlvo_silent(context, "evdev", "evdev", "us", "", ""));
81     clock_gettime(CLOCK_MONOTONIC, &stop);
82
83     xkb_set_log_level(context, old_level);
84     xkb_set_log_verbosity(context, old_verb);
85
86     elapsed.tv_sec = stop.tv_sec - start.tv_sec;
87     elapsed.tv_nsec = stop.tv_nsec - start.tv_nsec;
88     if (elapsed.tv_nsec < 0) {
89         elapsed.tv_nsec += 1000000000;
90         elapsed.tv_sec--;
91     }
92
93     fprintf(stderr, "compiled %d keymaps in %ld.%09lds\n",
94             BENCHMARK_ITERATIONS, elapsed.tv_sec, elapsed.tv_nsec);
95 }
96
97 int main(int argc, char *argv[])
98 {
99     struct xkb_context *ctx = test_get_context();
100
101     assert(ctx);
102
103     if (argc > 1 && streq(argv[1], "bench")) {
104         benchmark(ctx);
105         return 0;
106     }
107
108     assert(test_rmlvo(ctx, "evdev", "pc105", "us,il,ru,ca", ",,,multix", "grp:alts_toggle,ctrl:nocaps,compose:rwin"));
109     assert(test_rmlvo(ctx, "base",  "pc105", "us,in", "", ""));
110     assert(test_rmlvo(ctx, "evdev", "pc105", "us", "intl", ""));
111     assert(test_rmlvo(ctx, "evdev", "evdev", "us", "intl", "grp:alts_toggle"));
112
113     assert(test_rmlvo(ctx, "", "", "", "", ""));
114     assert(test_rmlvo(ctx, NULL, NULL, NULL, NULL, NULL));
115
116     assert(!test_rmlvo(ctx, "does-not-exist", "", "", "", ""));
117
118     xkb_context_unref(ctx);
119 }