1 /* Measure strcoll execution time in different locales.
2 Copyright (C) 2015-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
26 #include "bench-timing.h"
29 /* Many thanks to http://generator.lorem-ipsum.info/ */
30 #define INPUT_PREFIX "strcoll-inputs/"
32 static const char *const input_files
[] = {
34 "filelist#en_US.UTF-8",
35 "lorem_ipsum#vi_VN.UTF-8",
36 "lorem_ipsum#ar_SA.UTF-8",
37 "lorem_ipsum#en_US.UTF-8",
38 "lorem_ipsum#zh_CN.UTF-8",
39 "lorem_ipsum#cs_CZ.UTF-8",
40 "lorem_ipsum#en_GB.UTF-8",
41 "lorem_ipsum#da_DK.UTF-8",
42 "lorem_ipsum#pl_PL.UTF-8",
43 "lorem_ipsum#fr_FR.UTF-8",
44 "lorem_ipsum#pt_PT.UTF-8",
45 "lorem_ipsum#el_GR.UTF-8",
46 "lorem_ipsum#ru_RU.UTF-8",
47 "lorem_ipsum#he_IL.UTF-8",
48 "lorem_ipsum#es_ES.UTF-8",
49 "lorem_ipsum#hi_IN.UTF-8",
50 "lorem_ipsum#sv_SE.UTF-8",
51 "lorem_ipsum#hu_HU.UTF-8",
52 "lorem_ipsum#tr_TR.UTF-8",
53 "lorem_ipsum#is_IS.UTF-8",
54 "lorem_ipsum#it_IT.UTF-8",
55 "lorem_ipsum#sr_RS.UTF-8",
56 "lorem_ipsum#ja_JP.UTF-8"
59 #define TEXTFILE_DELIMITER " \n\r\t.,?!"
62 read_file (const char *filename
)
66 int fd
= open (filename
, O_CLOEXEC
);
70 if (fstat (fd
, &stats
) == 0)
72 buffer
= malloc (stats
.st_size
+ 1);
75 if (read (fd
, buffer
, stats
.st_size
) == stats
.st_size
)
76 buffer
[stats
.st_size
] = '\0';
91 count_words (const char *text
, const char *delim
)
94 char *tmp
= strdup (text
);
96 char *token
= strtok (tmp
, delim
);
101 token
= strtok (NULL
, delim
);
115 new_word_list (size_t size
)
117 word_list
*list
= malloc (sizeof (word_list
));
118 assert (list
!= NULL
);
120 list
->words
= malloc (size
* sizeof (char *));
121 assert (list
->words
!= NULL
);
126 str_word_list (const char *str
, const char *delim
)
129 word_list
*list
= new_word_list (count_words (str
, delim
));
131 char *toks
= strdup (str
);
132 char *word
= strtok (toks
, delim
);
133 while (word
!= NULL
&& n
< list
->size
)
136 list
->words
[n
++] = strdup (word
);
137 word
= strtok (NULL
, delim
);
145 copy_word_list (const word_list
*list
)
148 word_list
*copy
= new_word_list (list
->size
);
150 for (i
= 0; i
< list
->size
; i
++)
151 copy
->words
[i
] = strdup (list
->words
[i
]);
157 free_word_list (word_list
*list
)
160 for (i
= 0; i
< list
->size
; i
++)
161 free (list
->words
[i
]);
168 compare_words (const void *a
, const void *b
)
170 const char *s1
= *(char **) a
;
171 const char *s2
= *(char **) b
;
172 return strcoll (s1
, s2
);
175 #undef INNER_LOOP_ITERS
176 #define INNER_LOOP_ITERS 16
179 bench_list (json_ctx_t
*json_ctx
, word_list
*list
)
182 timing_t start
, stop
, cur
;
184 word_list
**tests
= malloc (INNER_LOOP_ITERS
* sizeof (word_list
*));
185 assert (tests
!= NULL
);
186 for (i
= 0; i
< INNER_LOOP_ITERS
; i
++)
187 tests
[i
] = copy_word_list (list
);
190 for (i
= 0; i
< INNER_LOOP_ITERS
; i
++)
191 qsort (tests
[i
]->words
, tests
[i
]->size
, sizeof (char *), compare_words
);
194 TIMING_DIFF (cur
, start
, stop
);
195 setlocale (LC_ALL
, "en_US.UTF-8");
196 json_attr_double (json_ctx
, "duration", cur
);
197 json_attr_double (json_ctx
, "iterations", i
);
198 json_attr_double (json_ctx
, "mean", (double) cur
/ i
);
200 for (i
= 0; i
< INNER_LOOP_ITERS
; i
++)
201 free_word_list (tests
[i
]);
214 bench_file (json_ctx_t
*json_ctx
, const char *testname
, const char *filename
,
217 if (setlocale (LC_ALL
, locale
) == NULL
)
220 char *text
= read_file (filename
);
224 word_list
*list
= str_word_list (text
, TEXTFILE_DELIMITER
);
226 json_attr_object_begin (json_ctx
, testname
);
227 bench_list (json_ctx
, list
);
228 json_attr_object_end (json_ctx
);
230 free_word_list (list
);
238 json_ctx_t
*json_ctx
= malloc (sizeof (json_ctx_t
));
239 assert (json_ctx
!= NULL
);
240 json_init (json_ctx
, 2, stdout
);
241 json_attr_object_begin (json_ctx
, "strcoll");
244 result_t result
= OK
;
245 for (i
= 0; i
< (sizeof (input_files
) / sizeof (input_files
[0])); i
++)
247 char *locale
= strchr (input_files
[i
], '#');
250 printf ("Failed to get locale from filename %s, aborting!\n",
252 return ERROR_FILENAME
;
256 asprintf (&filename
, INPUT_PREFIX
"%s", input_files
[i
]);
257 result
= bench_file (json_ctx
, input_files
[i
], filename
, locale
+ 1);
261 if (result
== ERROR_LOCALE
)
262 printf ("Failed to set locale %s, aborting!\n", locale
);
263 else if (result
== ERROR_IO
)
264 printf ("Failed to read file %s, aborting!\n", filename
);
272 json_attr_object_end (json_ctx
);