xref: /aosp_15_r20/external/libxkbcommon/bench/compose.c (revision 2b949d0487e80d67f1fda82db69e101e761f8064)
1*2b949d04SAndroid Build Coastguard Worker /*
2*2b949d04SAndroid Build Coastguard Worker  * Copyright © 2014 Ran Benita <[email protected]>
3*2b949d04SAndroid Build Coastguard Worker  *
4*2b949d04SAndroid Build Coastguard Worker  * Permission is hereby granted, free of charge, to any person obtaining a
5*2b949d04SAndroid Build Coastguard Worker  * copy of this software and associated documentation files (the "Software"),
6*2b949d04SAndroid Build Coastguard Worker  * to deal in the Software without restriction, including without limitation
7*2b949d04SAndroid Build Coastguard Worker  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8*2b949d04SAndroid Build Coastguard Worker  * and/or sell copies of the Software, and to permit persons to whom the
9*2b949d04SAndroid Build Coastguard Worker  * Software is furnished to do so, subject to the following conditions:
10*2b949d04SAndroid Build Coastguard Worker  *
11*2b949d04SAndroid Build Coastguard Worker  * The above copyright notice and this permission notice (including the next
12*2b949d04SAndroid Build Coastguard Worker  * paragraph) shall be included in all copies or substantial portions of the
13*2b949d04SAndroid Build Coastguard Worker  * Software.
14*2b949d04SAndroid Build Coastguard Worker  *
15*2b949d04SAndroid Build Coastguard Worker  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16*2b949d04SAndroid Build Coastguard Worker  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17*2b949d04SAndroid Build Coastguard Worker  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18*2b949d04SAndroid Build Coastguard Worker  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19*2b949d04SAndroid Build Coastguard Worker  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20*2b949d04SAndroid Build Coastguard Worker  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21*2b949d04SAndroid Build Coastguard Worker  * DEALINGS IN THE SOFTWARE.
22*2b949d04SAndroid Build Coastguard Worker  */
23*2b949d04SAndroid Build Coastguard Worker 
24*2b949d04SAndroid Build Coastguard Worker #include "config.h"
25*2b949d04SAndroid Build Coastguard Worker 
26*2b949d04SAndroid Build Coastguard Worker #include <time.h>
27*2b949d04SAndroid Build Coastguard Worker 
28*2b949d04SAndroid Build Coastguard Worker #include "xkbcommon/xkbcommon-compose.h"
29*2b949d04SAndroid Build Coastguard Worker 
30*2b949d04SAndroid Build Coastguard Worker #include "../test/test.h"
31*2b949d04SAndroid Build Coastguard Worker #include "bench.h"
32*2b949d04SAndroid Build Coastguard Worker 
33*2b949d04SAndroid Build Coastguard Worker #define BENCHMARK_ITERATIONS 1000
34*2b949d04SAndroid Build Coastguard Worker 
35*2b949d04SAndroid Build Coastguard Worker int
main(void)36*2b949d04SAndroid Build Coastguard Worker main(void)
37*2b949d04SAndroid Build Coastguard Worker {
38*2b949d04SAndroid Build Coastguard Worker     struct xkb_context *ctx;
39*2b949d04SAndroid Build Coastguard Worker     char *path;
40*2b949d04SAndroid Build Coastguard Worker     FILE *file;
41*2b949d04SAndroid Build Coastguard Worker     struct xkb_compose_table *table;
42*2b949d04SAndroid Build Coastguard Worker     struct bench bench;
43*2b949d04SAndroid Build Coastguard Worker     char *elapsed;
44*2b949d04SAndroid Build Coastguard Worker 
45*2b949d04SAndroid Build Coastguard Worker     ctx = test_get_context(CONTEXT_NO_FLAG);
46*2b949d04SAndroid Build Coastguard Worker     assert(ctx);
47*2b949d04SAndroid Build Coastguard Worker 
48*2b949d04SAndroid Build Coastguard Worker     path = test_get_path("locale/en_US.UTF-8/Compose");
49*2b949d04SAndroid Build Coastguard Worker     file = fopen(path, "rb");
50*2b949d04SAndroid Build Coastguard Worker     if (file == NULL) {
51*2b949d04SAndroid Build Coastguard Worker         perror(path);
52*2b949d04SAndroid Build Coastguard Worker         free(path);
53*2b949d04SAndroid Build Coastguard Worker         xkb_context_unref(ctx);
54*2b949d04SAndroid Build Coastguard Worker         return -1;
55*2b949d04SAndroid Build Coastguard Worker     }
56*2b949d04SAndroid Build Coastguard Worker 
57*2b949d04SAndroid Build Coastguard Worker     xkb_context_set_log_level(ctx, XKB_LOG_LEVEL_CRITICAL);
58*2b949d04SAndroid Build Coastguard Worker     xkb_context_set_log_verbosity(ctx, 0);
59*2b949d04SAndroid Build Coastguard Worker 
60*2b949d04SAndroid Build Coastguard Worker     bench_start(&bench);
61*2b949d04SAndroid Build Coastguard Worker     for (int i = 0; i < BENCHMARK_ITERATIONS; i++) {
62*2b949d04SAndroid Build Coastguard Worker         rewind(file);
63*2b949d04SAndroid Build Coastguard Worker         table = xkb_compose_table_new_from_file(ctx, file, "",
64*2b949d04SAndroid Build Coastguard Worker                                                 XKB_COMPOSE_FORMAT_TEXT_V1,
65*2b949d04SAndroid Build Coastguard Worker                                                 XKB_COMPOSE_COMPILE_NO_FLAGS);
66*2b949d04SAndroid Build Coastguard Worker         assert(table);
67*2b949d04SAndroid Build Coastguard Worker         xkb_compose_table_unref(table);
68*2b949d04SAndroid Build Coastguard Worker     }
69*2b949d04SAndroid Build Coastguard Worker     bench_stop(&bench);
70*2b949d04SAndroid Build Coastguard Worker 
71*2b949d04SAndroid Build Coastguard Worker     fclose(file);
72*2b949d04SAndroid Build Coastguard Worker     free(path);
73*2b949d04SAndroid Build Coastguard Worker 
74*2b949d04SAndroid Build Coastguard Worker     elapsed = bench_elapsed_str(&bench);
75*2b949d04SAndroid Build Coastguard Worker     fprintf(stderr, "compiled %d compose tables in %ss\n",
76*2b949d04SAndroid Build Coastguard Worker             BENCHMARK_ITERATIONS, elapsed);
77*2b949d04SAndroid Build Coastguard Worker     free(elapsed);
78*2b949d04SAndroid Build Coastguard Worker 
79*2b949d04SAndroid Build Coastguard Worker     xkb_context_unref(ctx);
80*2b949d04SAndroid Build Coastguard Worker     return 0;
81*2b949d04SAndroid Build Coastguard Worker }
82