File: one_small_row_libmysqlclient.cpp

package info (click to toggle)
boost1.90 1.90.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 593,156 kB
  • sloc: cpp: 4,190,642; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,776; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (211 lines) | stat: -rw-r--r-- 5,717 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
//
// Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//

#include <cassert>
#include <chrono>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <mysql/field_types.h>
#include <mysql/mysql.h>
#include <mysql/mysql_com.h>

int main()
{
    // Initialize
    if (mysql_library_init(0, NULL, NULL))
    {
        fprintf(stderr, "could not initialize MySQL client library\n");
        exit(1);
    }
    MYSQL* con = mysql_init(NULL);
    if (con == NULL)
    {
        fprintf(stderr, "Error initializing connection: %s\n", mysql_error(con));
        exit(1);
    }

    // Connect
    unsigned mode = SSL_MODE_DISABLED;
    if (mysql_options(con, MYSQL_OPT_SSL_MODE, &mode))
    {
        fprintf(stderr, "Error in mysql_options: %s\n", mysql_error(con));
        exit(1);
    }

    if (mysql_real_connect(con, NULL, "root", "", "boost_mysql_bench", 0, "/var/run/mysqld/mysqld.sock", 0) ==
        NULL)
    {
        fprintf(stderr, "%s\n", mysql_error(con));
        mysql_close(con);
        exit(1);
    }

    // Prepare the statement. Exclude the big TEXT/BLOB fields
    MYSQL_STMT* stmt;
    stmt = mysql_stmt_init(con);
    if (!stmt)
    {
        printf("Could not initialize statement\n");
        exit(1);
    }
    constexpr const char* stmt_str =
        "SELECT s8, u8, s16, u16, s32, u32, s64, u64, s1, b1, flt, dbl, dt, dtime, t "
        "FROM test_data WHERE id = 1";
    if (mysql_stmt_prepare(stmt, stmt_str, strlen(stmt_str)))
    {
        fprintf(stderr, "Error preparing statement: %s\n", mysql_stmt_error(stmt));
        exit(1);
    }

    // Prepare the bind objects
    MYSQL_BIND binds[15]{};

    signed char s8{};
    binds[0].buffer_type = MYSQL_TYPE_TINY;
    binds[0].buffer = &s8;
    binds[0].buffer_length = 1;
    binds[0].is_unsigned = 0;

    unsigned char u8{};
    binds[1].buffer_type = MYSQL_TYPE_TINY;
    binds[1].buffer = &u8;
    binds[1].buffer_length = 1;
    binds[1].is_unsigned = 1;

    short s16{};
    binds[2].buffer_type = MYSQL_TYPE_SHORT;
    binds[2].buffer = &s16;
    binds[2].buffer_length = 2;
    binds[2].is_unsigned = 0;

    unsigned short u16{};
    binds[3].buffer_type = MYSQL_TYPE_SHORT;
    binds[3].buffer = &u16;
    binds[3].buffer_length = 2;
    binds[3].is_unsigned = 1;

    int s32{};
    binds[4].buffer_type = MYSQL_TYPE_LONG;
    binds[4].buffer = &s32;
    binds[4].buffer_length = 4;
    binds[4].is_unsigned = 0;

    unsigned u32{};
    binds[5].buffer_type = MYSQL_TYPE_LONG;
    binds[5].buffer = &u32;
    binds[5].buffer_length = 4;
    binds[5].is_unsigned = 1;

    long long s64{};
    binds[6].buffer_type = MYSQL_TYPE_LONGLONG;
    binds[6].buffer = &s64;
    binds[6].buffer_length = 8;
    binds[6].is_unsigned = 0;

    unsigned long long u64{};
    binds[7].buffer_type = MYSQL_TYPE_LONGLONG;
    binds[7].buffer = &u64;
    binds[7].buffer_length = 8;
    binds[7].is_unsigned = 1;

    char s1[255]{};
    binds[8].buffer_type = MYSQL_TYPE_STRING;
    binds[8].buffer = s1;
    binds[8].buffer_length = sizeof(s1);

    char b1[255]{};
    binds[9].buffer_type = MYSQL_TYPE_BLOB;
    binds[9].buffer = b1;
    binds[9].buffer_length = sizeof(b1);

    float flt{};
    binds[10].buffer_type = MYSQL_TYPE_FLOAT;
    binds[10].buffer = &flt;
    binds[10].buffer_length = 4;

    double dbl{};
    binds[11].buffer_type = MYSQL_TYPE_DOUBLE;
    binds[11].buffer = &dbl;
    binds[11].buffer_length = 8;

    MYSQL_TIME dt{};
    binds[12].buffer_type = MYSQL_TYPE_DATE;
    binds[12].buffer = &dt;
    binds[12].buffer_length = sizeof(dt);

    MYSQL_TIME dtime{};
    binds[13].buffer_type = MYSQL_TYPE_DATETIME;
    binds[13].buffer = &dtime;
    binds[13].buffer_length = sizeof(dtime);

    MYSQL_TIME t{};
    binds[14].buffer_type = MYSQL_TYPE_TIME;
    binds[14].buffer = &t;
    binds[14].buffer_length = sizeof(t);

    // Ensure that nothing gets optimized away
    unsigned num_rows = 0;

    // Benchmark starts here
    auto tbegin = std::chrono::steady_clock::now();

    for (int i = 0; i < 10000; ++i)
    {
        // Execute the statement
        if (mysql_stmt_execute(stmt))
        {
            fprintf(stderr, "Error executing statement: %s\n", mysql_stmt_error(stmt));
            exit(1);
        }

        // Bind output
        if (mysql_stmt_bind_result(stmt, binds))
        {
            fprintf(stderr, "Error binding result: %s\n", mysql_stmt_error(stmt));
            exit(1);
        }

        // Read the rows
        while (true)
        {
            auto status = mysql_stmt_fetch(stmt);

            if (status == MYSQL_DATA_TRUNCATED)
            {
                // No truncation is expected here, since we don't have big strings/blobs
                fprintf(stderr, "Data truncation error\n");
                exit(1);
            }
            else if (status == MYSQL_NO_DATA)
            {
                break;
            }
            else if (status == 1)
            {
                fprintf(stderr, "Error fetching result: %s\n", mysql_stmt_error(stmt));
                exit(1);
            }
            else
            {
                ++num_rows;
            }
        }
    }

    // Benchmark ends here
    auto tend = std::chrono::steady_clock::now();
    std::cout << std::chrono::duration_cast<std::chrono::milliseconds>(tend - tbegin).count() << std::endl;

    // Cleanup
    mysql_stmt_close(stmt);
    mysql_close(con);

    // We expect one row per iteration
    return num_rows == 10000 ? EXIT_SUCCESS : EXIT_FAILURE;
}