Compare query_format and snprintf performances.
[apps/pfixtools.git] / postlicyd / tst-qf.c
1 /******************************************************************************/
2 /*          pfixtools: a collection of postfix related tools                  */
3 /*          ~~~~~~~~~                                                         */
4 /*  ________________________________________________________________________  */
5 /*                                                                            */
6 /*  Redistribution and use in source and binary forms, with or without        */
7 /*  modification, are permitted provided that the following conditions        */
8 /*  are met:                                                                  */
9 /*                                                                            */
10 /*  1. Redistributions of source code must retain the above copyright         */
11 /*     notice, this list of conditions and the following disclaimer.          */
12 /*  2. Redistributions in binary form must reproduce the above copyright      */
13 /*     notice, this list of conditions and the following disclaimer in the    */
14 /*     documentation and/or other materials provided with the distribution.   */
15 /*  3. The names of its contributors may not be used to endorse or promote    */
16 /*     products derived from this software without specific prior written     */
17 /*     permission.                                                            */
18 /*                                                                            */
19 /*  THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
20 /*  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
21 /*  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR        */
22 /*  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS    */
23 /*  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR    */
24 /*  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF      */
25 /*  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS  */
26 /*  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN   */
27 /*  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)   */
28 /*  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF    */
29 /*  THE POSSIBILITY OF SUCH DAMAGE.                                           */
30 /******************************************************************************/
31
32 /*
33  * Copyright © 2008 Florent Bruneau
34  */
35
36 #include "common.h"
37 #include "file.h"
38 #include "query.h"
39
40 static bool read_query(const char *base, const char *file, query_t *query,
41                        char *buff)
42 {
43     char path[FILENAME_MAX];
44     snprintf(path, FILENAME_MAX, "%s%s", base, file);
45     {
46         file_map_t map;
47         if (!file_map_open(&map, path, false)) {
48             UNIXERR("open");
49             return false;
50         }
51         if (map.end - map.map >= BUFSIZ) {
52             err("File too large for a testcase: %s", path);
53             file_map_close(&map);
54             return false;
55         }
56         memcpy(buff, map.map, map.end - map.map);
57         buff[map.end - map.map] = '\0';
58         file_map_close(&map);
59     }
60
61     char *eoq = strstr(buff, "\n\n");
62     if (eoq == NULL) {
63         return false;
64     }
65     if (!query_parse(query, buff)) {
66         err("Cannot parse query from file %s", path);
67         return false;
68     }
69     return true;
70 }
71
72 int main(int argc, char *argv[])
73 {
74     char basepath[FILENAME_MAX];
75     char buff[BUFSIZ];
76     char *p;
77
78     p = strrchr(argv[0], '/');
79     if (p == NULL) {
80         p = argv[0];
81     } else {
82         ++p;
83     }
84     snprintf(basepath, FILENAME_MAX, "%.*sdata/", p - argv[0], argv[0]);
85
86     query_t q;
87     if (!read_query(basepath, "testcase_1", &q, buff)) {
88         return EXIT_FAILURE;
89     }
90
91     static const int iterations = 50000000;
92     {
93       static const char *format = "${sender} ${recipient} and ${client_name}[${client_address}] at ${protocol_state}";
94       time_t now = time(0);
95       char str[BUFSIZ];
96       for (int i = 0 ; i < iterations ; ++i) {
97           query_format(str, BUFSIZ, format, &q);
98       }
99       time_t ellapsed = time(0) - now;
100       printf("Done %d iterations in %us (%d format per second)\n", iterations,
101              (uint32_t)ellapsed, (int)(iterations / ellapsed));
102     }
103
104     {
105       time_t now = time(0);
106       char str[BUFSIZ];
107       for (int i = 0 ; i < iterations ; ++i) {
108           snprintf(str, BUFSIZ, "%s %s and %s[%s] at %s",
109                    q.sender.str, q.recipient.str, q.client_name.str, q.client_address.str,
110                    smtp_state_names[q.state].str);
111       }
112       time_t ellapsed = time(0) - now;
113       printf("Done %d iterations in %us (%d format per second)\n", iterations,
114              (uint32_t)ellapsed, (int)(iterations / ellapsed));
115     }
116     return 0;
117 }