73
#define SLAP_VERSION "1.5"
75
#define HUGE_STRING_LENGTH 8196
76
#define RAND_STRING_SIZE 126
77
#define DEFAULT_BLOB_SIZE 1024
75
79
#include "client_priv.h"
77
#include "option_string.h"
79
#include "thread_context.h"
80
#include "conclusions.h"
83
80
#include <signal.h>
84
81
#include <stdarg.h>
85
82
#include <sys/types.h>
86
83
#include <sys/wait.h>
87
#ifdef HAVE_SYS_STAT_H
88
# include <sys/stat.h>
97
#include <drizzled/configmake.h>
100
/* Added this for string translation. */
101
#include <drizzled/gettext.h>
103
#include <boost/thread.hpp>
104
#include <boost/thread/mutex.hpp>
105
#include <boost/thread/condition_variable.hpp>
106
#include <boost/program_options.hpp>
107
#include <boost/scoped_ptr.hpp>
108
#include <drizzled/atomics.h>
110
#define SLAP_NAME "drizzleslap"
111
#define SLAP_VERSION "1.5"
113
#define HUGE_STRING_LENGTH 8196
114
#define RAND_STRING_SIZE 126
115
#define DEFAULT_BLOB_SIZE 1024
117
87
using namespace std;
118
using namespace drizzled;
119
namespace po= boost::program_options;
122
90
static char *shared_memory_base_name=0;
125
client::Wakeup master_wakeup;
93
/* Global Thread counter */
95
pthread_mutex_t counter_mutex;
96
pthread_cond_t count_threshhold;
98
pthread_mutex_t sleeper_mutex;
99
pthread_cond_t sleep_threshhold;
127
101
/* Global Thread timer */
128
102
static bool timer_alarm= false;
129
boost::mutex timer_alarm_mutex;
130
boost::condition_variable_any timer_alarm_threshold;
132
std::vector < std::string > primary_keys;
134
drizzled::atomic<size_t> connection_count;
135
drizzled::atomic<uint64_t> failed_update_for_transaction;
141
user_supplied_pre_statements,
142
user_supplied_post_statements,
147
static vector<string> user_supplied_queries;
148
static string opt_verbose;
149
std::string opt_protocol;
152
string create_schema_string;
154
static bool use_drizzle_protocol= false;
103
pthread_mutex_t timer_alarm_mutex;
104
pthread_cond_t timer_alarm_threshold;
106
static char **defaults_argv;
109
uint64_t primary_keys_number_of;
111
static char *host= NULL, *opt_password= NULL, *user= NULL,
112
*user_supplied_query= NULL,
113
*user_supplied_pre_statements= NULL,
114
*user_supplied_post_statements= NULL,
115
*default_engine= NULL,
118
*opt_drizzle_unix_port= NULL;
120
const char *delimiter= "\n";
122
const char *create_schema_string= "drizzleslap";
155
124
static bool opt_preserve= true;
156
static bool opt_only_print;
157
static bool opt_burnin;
125
static bool debug_info_flag= 0, debug_check_flag= 0;
126
static bool opt_only_print= false;
127
static bool opt_burnin= false;
158
128
static bool opt_ignore_sql_errors= false;
159
static bool opt_silent,
160
auto_generate_sql_autoincrement,
161
auto_generate_sql_guid_primary,
163
std::string opt_auto_generate_sql_type;
165
static int32_t verbose= 0;
166
static uint32_t delimiter_length;
167
static uint32_t commit_rate;
168
static uint32_t detach_rate;
169
static uint32_t opt_timer_length;
170
static uint32_t opt_delayed_start;
171
string num_blob_cols_opt,
175
static uint32_t opt_set_random_seed;
177
string auto_generate_selected_columns_opt;
129
static bool opt_compress= false, tty_password= false,
131
auto_generate_sql_autoincrement= false,
132
auto_generate_sql_guid_primary= false,
133
auto_generate_sql= false;
134
const char *opt_auto_generate_sql_type= "mixed";
136
static unsigned long connect_flags= CLIENT_MULTI_RESULTS |
137
CLIENT_MULTI_STATEMENTS;
139
static int verbose, delimiter_length;
140
static uint commit_rate;
141
static uint detach_rate;
142
static uint opt_timer_length;
143
static uint opt_delayed_start;
144
const char *num_int_cols_opt;
145
const char *num_char_cols_opt;
146
const char *num_blob_cols_opt;
147
const char *opt_label;
148
static unsigned int opt_set_random_seed;
150
const char *auto_generate_selected_columns_opt;
179
152
/* Yes, we do set defaults here */
180
static uint32_t num_int_cols= 1;
181
static uint32_t num_char_cols= 1;
182
static uint32_t num_blob_cols= 0;
183
static uint32_t num_blob_cols_size;
184
static uint32_t num_blob_cols_size_min;
185
static uint32_t num_int_cols_index= 0;
186
static uint32_t num_char_cols_index= 0;
187
static uint32_t iterations;
153
static unsigned int num_int_cols= 1;
154
static unsigned int num_char_cols= 1;
155
static unsigned int num_blob_cols= 0;
156
static unsigned int num_blob_cols_size;
157
static unsigned int num_blob_cols_size_min;
158
static unsigned int num_int_cols_index= 0;
159
static unsigned int num_char_cols_index= 0;
160
static unsigned int iterations;
161
static uint my_end_arg= 0;
188
162
static uint64_t actual_queries= 0;
189
163
static uint64_t auto_actual_queries;
190
164
static uint64_t auto_generate_sql_unique_write_number;
191
165
static uint64_t auto_generate_sql_unique_query_number;
192
static uint32_t auto_generate_sql_secondary_indexes;
166
static unsigned int auto_generate_sql_secondary_indexes;
193
167
static uint64_t num_of_query;
194
168
static uint64_t auto_generate_sql_number;
195
string concurrency_str;
196
string create_string;
197
std::vector <uint32_t> concurrency;
199
std::string opt_csv_str;
202
static int process_options(void);
203
static uint32_t opt_drizzle_port= 0;
205
static OptionString *engine_options= NULL;
206
static OptionString *query_options= NULL;
207
static Statement *pre_statements= NULL;
208
static Statement *post_statements= NULL;
209
static Statement *create_statements= NULL;
211
static std::vector <Statement *> query_statements;
212
static uint32_t query_statements_count;
169
const char *concurrency_str= NULL;
170
static char *create_string;
173
const char *default_dbug_option="d:t:o,/tmp/drizzleslap.trace";
174
const char *opt_csv_str;
177
static int get_options(int *argc,char ***argv);
178
static uint opt_drizzle_port= 0;
180
static const char *load_default_groups[]= { "drizzleslap","client",0 };
187
UPDATE_TYPE_REQUIRES_PREFIX= 3,
188
CREATE_TABLE_TYPE= 4,
189
SELECT_TYPE_REQUIRES_PREFIX= 5,
190
DELETE_TYPE_REQUIRES_PREFIX= 6
193
typedef struct statement statement;
198
slap_query_type type;
200
size_t option_length;
204
typedef struct option_string option_string;
206
struct option_string {
210
size_t option_length;
214
typedef struct stats stats;
221
long int create_timing;
222
uint64_t create_count;
225
typedef struct thread_context thread_context;
227
struct thread_context {
232
typedef struct conclusions conclusions;
242
long int sum_of_time;
244
/* These are just for create time stats */
245
long int create_avg_timing;
246
long int create_max_timing;
247
long int create_min_timing;
248
uint64_t create_count;
249
/* The following are not used yet */
254
static option_string *engine_options= NULL;
255
static option_string *query_options= NULL;
256
static statement *pre_statements= NULL;
257
static statement *post_statements= NULL;
258
static statement *create_statements= NULL;
260
static statement **query_statements= NULL;
261
static unsigned int query_statements_count;
216
void print_conclusions(Conclusions &con);
217
void print_conclusions_csv(Conclusions &con);
218
void generate_stats(Conclusions *con, OptionString *eng, Stats *sptr);
219
uint32_t parse_comma(const char *string, std::vector <uint32_t> &range);
220
uint32_t parse_delimiter(const char *script, Statement **stmt, char delm);
221
uint32_t parse_option(const char *origin, OptionString **stmt, char delm);
222
static void drop_schema(drizzle_con_st &con, const char *db);
223
uint32_t get_random_string(char *buf, size_t size);
224
static Statement *build_table_string(void);
225
static Statement *build_insert_string(void);
226
static Statement *build_update_string(void);
227
static Statement * build_select_string(bool key);
228
static int generate_primary_key_list(drizzle_con_st &con, OptionString *engine_stmt);
229
static void create_schema(drizzle_con_st &con, const char *db, Statement *stmt, OptionString *engine_stmt, Stats *sptr);
230
static void run_scheduler(Stats *sptr, Statement **stmts, uint32_t concur, uint64_t limit);
231
void statement_cleanup(Statement *stmt);
232
void option_cleanup(OptionString *stmt);
233
void concurrency_loop(drizzle_con_st &con, uint32_t current, OptionString *eptr);
234
static void run_statements(drizzle_con_st &con, Statement *stmt);
235
void slap_connect(drizzle_con_st &con, bool connect_to_schema);
236
void slap_close(drizzle_con_st &con);
237
static int run_query(drizzle_con_st &con, drizzle_result_st *result, const char *query, int len);
238
void standard_deviation(Conclusions &con, Stats *sptr);
265
void print_conclusions(conclusions *con);
266
void print_conclusions_csv(conclusions *con);
267
void generate_stats(conclusions *con, option_string *eng, stats *sptr);
268
uint parse_comma(const char *string, uint **range);
269
uint parse_delimiter(const char *script, statement **stmt, char delm);
270
uint parse_option(const char *origin, option_string **stmt, char delm);
271
static int drop_schema(DRIZZLE *drizzle, const char *db);
272
uint get_random_string(char *buf, size_t size);
273
static statement *build_table_string(void);
274
static statement *build_insert_string(void);
275
static statement *build_update_string(void);
276
static statement * build_select_string(bool key);
277
static int generate_primary_key_list(DRIZZLE *drizzle, option_string *engine_stmt);
278
static int drop_primary_key_list(void);
279
static int create_schema(DRIZZLE *drizzle, const char *db, statement *stmt,
280
option_string *engine_stmt, stats *sptr);
281
static int run_scheduler(stats *sptr, statement **stmts, uint concur,
283
pthread_handler_t run_task(void *p);
284
pthread_handler_t timer_thread(void *p);
285
void statement_cleanup(statement *stmt);
286
void option_cleanup(option_string *stmt);
287
void concurrency_loop(DRIZZLE *drizzle, uint current, option_string *eptr);
288
static int run_statements(DRIZZLE *drizzle, statement *stmt);
289
void slap_connect(DRIZZLE *drizzle, bool connect_to_schema);
290
void slap_close(DRIZZLE *drizzle);
291
static int run_query(DRIZZLE *drizzle, const char *query, int len);
292
void standard_deviation (conclusions *con, stats *sptr);
240
294
static const char ALPHANUMERICS[]=
241
295
"0123456789ABCDEFGHIJKLMNOPQRSTWXYZabcdefghijklmnopqrstuvwxyz";
257
static void combine_queries(vector<string> queries)
259
user_supplied_query.erase();
260
for (vector<string>::iterator it= queries.begin();
264
user_supplied_query.append(*it);
265
user_supplied_query.append(delimiter);
270
static void run_task(ThreadContext *ctx)
272
uint64_t counter= 0, queries;
273
uint64_t detach_counter;
274
uint32_t commit_counter;
275
boost::scoped_ptr<drizzle_con_st> con_ap(new drizzle_con_st);
276
drizzle_con_st &con= *con_ap.get();
277
drizzle_result_st result;
281
master_wakeup.wait();
283
slap_connect(con, true);
286
printf("connected!\n");
291
run_query(con, NULL, "SET AUTOCOMMIT=0", strlen("SET AUTOCOMMIT=0"));
294
for (ptr= ctx->getStmt(), detach_counter= 0;
295
ptr && ptr->getLength();
296
ptr= ptr->getNext(), detach_counter++)
298
if (not opt_only_print && detach_rate && !(detach_counter % detach_rate))
301
slap_connect(con, true);
305
We have to execute differently based on query type. This should become a function.
307
bool is_failed_update= false;
308
if ((ptr->getType() == UPDATE_TYPE_REQUIRES_PREFIX) ||
309
(ptr->getType() == SELECT_TYPE_REQUIRES_PREFIX))
313
char buffer[HUGE_STRING_LENGTH];
316
This should only happen if some sort of new engine was
317
implemented that didn't properly handle UPDATEs.
319
Just in case someone runs this under an experimental engine we don't
320
want a crash so the if() is placed here.
322
assert(primary_keys.size());
323
if (primary_keys.size())
325
key_val= (uint32_t)(random() % primary_keys.size());
327
key= primary_keys[key_val].c_str();
331
length= snprintf(buffer, HUGE_STRING_LENGTH, "%.*s '%s'",
332
(int)ptr->getLength(), ptr->getString(), key);
334
if (run_query(con, &result, buffer, length))
336
if ((ptr->getType() == UPDATE_TYPE_REQUIRES_PREFIX) and commit_rate)
338
// Expand to check to see if Innodb, if so we should restart the
341
is_failed_update= true;
342
failed_update_for_transaction.fetch_and_increment();
346
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
347
SLAP_NAME, (uint32_t)length, buffer, drizzle_con_error(&con));
355
if (run_query(con, &result, ptr->getString(), ptr->getLength()))
357
if ((ptr->getType() == UPDATE_TYPE_REQUIRES_PREFIX) and commit_rate)
359
// Expand to check to see if Innodb, if so we should restart the
362
is_failed_update= true;
363
failed_update_for_transaction.fetch_and_increment();
367
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
368
SLAP_NAME, (uint32_t)ptr->getLength(), ptr->getString(), drizzle_con_error(&con));
374
if (not opt_only_print and not is_failed_update)
376
while ((row = drizzle_row_next(&result)))
378
drizzle_result_free(&result);
382
if (commit_rate && (++commit_counter == commit_rate) and not is_failed_update)
385
run_query(con, NULL, "COMMIT", strlen("COMMIT"));
388
/* If the timer is set, and the alarm is not active then end */
389
if (opt_timer_length && timer_alarm == false)
392
/* If limit has been reached, and we are not in a timer_alarm just end */
393
if (ctx->getLimit() && queries == ctx->getLimit() && timer_alarm == false)
397
if (opt_timer_length && timer_alarm == true)
400
if (ctx->getLimit() && queries < ctx->getLimit())
406
run_query(con, NULL, "COMMIT", strlen("COMMIT"));
414
* commandline_options is the set of all options that can only be called via the command line.
416
* client_options is the set of all options that can be defined via both command line and via
417
* the configuration file client.cnf
419
* slap_options is the set of all drizzleslap specific options which behave in a manner
420
* similar to that of client_options. It's configuration file is drizzleslap.cnf
422
* long_options is the union of commandline_options, slap_options and client_options.
424
* There are two configuration files per set of options, one which is defined by the user
425
* which is found at either $XDG_CONFIG_HOME/drizzle or ~/.config/drizzle directory and the other which
426
* is the system configuration file which is found in the SYSCONFDIR/drizzle directory.
428
* The system configuration file is over ridden by the user's configuration file which
429
* in turn is over ridden by the command line.
431
311
int main(int argc, char **argv)
433
char *password= NULL;
436
po::options_description commandline_options("Options used only in command line");
437
commandline_options.add_options()
438
("help,?","Display this help and exit")
439
("info","Gives information and exit")
440
("burnin",po::value<bool>(&opt_burnin)->default_value(false)->zero_tokens(),
441
"Run full test case in infinite loop")
442
("ignore-sql-errors", po::value<bool>(&opt_ignore_sql_errors)->default_value(false)->zero_tokens(),
443
"Ignore SQL errors in query run")
444
("create-schema",po::value<string>(&create_schema_string)->default_value("drizzleslap"),
445
"Schema to run tests in")
446
("create",po::value<string>(&create_string)->default_value(""),
447
"File or string to use to create tables")
448
("detach",po::value<uint32_t>(&detach_rate)->default_value(0),
449
"Detach (close and re open) connections after X number of requests")
450
("iterations,i",po::value<uint32_t>(&iterations)->default_value(1),
451
"Number of times to run the tests")
452
("label",po::value<string>(&opt_label)->default_value(""),
453
"Label to use for print and csv")
454
("number-blob-cols",po::value<string>(&num_blob_cols_opt)->default_value(""),
455
"Number of BLOB columns to create table with if specifying --auto-generate-sql. Example --number-blob-cols=3:1024/2048 would give you 3 blobs with a random size between 1024 and 2048. ")
456
("number-char-cols,x",po::value<string>(&num_char_cols_opt)->default_value(""),
457
"Number of VARCHAR columns to create in table if specifying --auto-generate-sql.")
458
("number-int-cols,y",po::value<string>(&num_int_cols_opt)->default_value(""),
459
"Number of INT columns to create in table if specifying --auto-generate-sql.")
460
("number-of-queries",
461
po::value<uint64_t>(&num_of_query)->default_value(0),
462
"Limit each client to this number of queries(this is not exact)")
463
("only-print",po::value<bool>(&opt_only_print)->default_value(false)->zero_tokens(),
464
"This causes drizzleslap to not connect to the database instead print out what it would have done instead")
465
("post-query", po::value<string>(&user_supplied_post_statements)->default_value(""),
466
"Query to run or file containing query to execute after tests have completed.")
467
("post-system",po::value<string>(&post_system)->default_value(""),
468
"system() string to execute after tests have completed")
470
po::value<string>(&user_supplied_pre_statements)->default_value(""),
471
"Query to run or file containing query to execute before running tests.")
472
("pre-system",po::value<string>(&pre_system)->default_value(""),
473
"system() string to execute before running tests.")
474
("query,q",po::value<vector<string> >(&user_supplied_queries)->composing()->notifier(&combine_queries),
475
"Query to run or file containing query")
476
("verbose,v", po::value<string>(&opt_verbose)->default_value("v"), "Increase verbosity level by one.")
477
("version,V","Output version information and exit")
480
po::options_description slap_options("Options specific to drizzleslap");
481
slap_options.add_options()
482
("auto-generate-sql-select-columns",
483
po::value<string>(&auto_generate_selected_columns_opt)->default_value(""),
484
"Provide a string to use for the select fields used in auto tests")
485
("auto-generate-sql,a",po::value<bool>(&auto_generate_sql)->default_value(false)->zero_tokens(),
486
"Generate SQL where not supplied by file or command line")
487
("auto-generate-sql-add-autoincrement",
488
po::value<bool>(&auto_generate_sql_autoincrement)->default_value(false)->zero_tokens(),
489
"Add an AUTO_INCREMENT column to auto-generated tables")
490
("auto-generate-sql-execute-number",
491
po::value<uint64_t>(&auto_actual_queries)->default_value(0),
492
"See this number and generate a set of queries to run")
493
("auto-generate-sql-guid-primary",
494
po::value<bool>(&auto_generate_sql_guid_primary)->default_value(false)->zero_tokens(),
495
"Add GUID based primary keys to auto-generated tables")
496
("auto-generate-sql-load-type",
497
po::value<string>(&opt_auto_generate_sql_type)->default_value("mixed"),
498
"Specify test load type: mixed, update, write, key or read; default is mixed")
499
("auto-generate-sql-secondary-indexes",
500
po::value<uint32_t>(&auto_generate_sql_secondary_indexes)->default_value(0),
501
"Number of secondary indexes to add to auto-generated tables")
502
("auto-generated-sql-unique-query-number",
503
po::value<uint64_t>(&auto_generate_sql_unique_query_number)->default_value(10),
504
"Number of unique queries to generate for automatic tests")
505
("auto-generate-sql-unique-write-number",
506
po::value<uint64_t>(&auto_generate_sql_unique_write_number)->default_value(10),
507
"Number of unique queries to generate for auto-generate-sql-write-number")
508
("auto-generate-sql-write-number",
509
po::value<uint64_t>(&auto_generate_sql_number)->default_value(100),
510
"Number of row inserts to perform for each thread (default is 100).")
511
("commit",po::value<uint32_t>(&commit_rate)->default_value(0),
512
"Commit records every X number of statements")
513
("concurrency,c",po::value<string>(&concurrency_str)->default_value(""),
514
"Number of clients to simulate for query to run")
515
("csv",po::value<std::string>(&opt_csv_str)->default_value(""),
516
"Generate CSV output to named file or to stdout if no file is name.")
517
("delayed-start",po::value<uint32_t>(&opt_delayed_start)->default_value(0),
518
"Delay the startup of threads by a random number of microsends (the maximum of the delay")
519
("delimiter,F",po::value<string>(&delimiter)->default_value("\n"),
520
"Delimiter to use in SQL statements supplied in file or command line")
521
("engine,e",po::value<string>(&default_engine)->default_value(""),
522
"Storage engine to use for creating the table")
524
po::value<uint32_t>(&opt_set_random_seed)->default_value(0),
525
"Seed for random number generator (srandom(3)) ")
526
("silent,s",po::value<bool>(&opt_silent)->default_value(false)->zero_tokens(),
527
"Run program in silent mode - no output. ")
528
("timer-length",po::value<uint32_t>(&opt_timer_length)->default_value(0),
529
"Require drizzleslap to run each specific test a certain amount of time in seconds")
532
po::options_description client_options("Options specific to the client");
533
client_options.add_options()
534
("host,h",po::value<string>(&host)->default_value("localhost"),"Connect to the host")
535
("password,P",po::value<char *>(&password),
536
"Password to use when connecting to server. If password is not given it's asked from the tty")
537
("port,p",po::value<uint32_t>(), "Port number to use for connection")
538
("protocol",po::value<string>(&opt_protocol)->default_value("mysql"),
539
"The protocol of connection (mysql or drizzle).")
540
("user,u",po::value<string>(&user)->default_value(""),
541
"User for login if not current user")
544
po::options_description long_options("Allowed Options");
545
long_options.add(commandline_options).add(slap_options).add(client_options);
547
std::string system_config_dir_slap(SYSCONFDIR);
548
system_config_dir_slap.append("/drizzle/drizzleslap.cnf");
550
std::string system_config_dir_client(SYSCONFDIR);
551
system_config_dir_client.append("/drizzle/client.cnf");
553
std::string user_config_dir((getenv("XDG_CONFIG_HOME")? getenv("XDG_CONFIG_HOME"):"~/.config"));
555
if (user_config_dir.compare(0, 2, "~/") == 0)
558
homedir= getenv("HOME");
560
user_config_dir.replace(0, 1, homedir);
563
uint64_t temp_drizzle_port= 0;
564
boost::scoped_ptr<drizzle_con_st> con_ap(new drizzle_con_st);
565
drizzle_con_st &con= *con_ap.get();
568
// Disable allow_guessing
569
int style = po::command_line_style::default_style & ~po::command_line_style::allow_guessing;
571
po::variables_map vm;
572
po::store(po::command_line_parser(argc, argv).options(long_options).
573
style(style).extra_parser(parse_password_arg).run(), vm);
575
std::string user_config_dir_slap(user_config_dir);
576
user_config_dir_slap.append("/drizzle/drizzleslap.cnf");
578
std::string user_config_dir_client(user_config_dir);
579
user_config_dir_client.append("/drizzle/client.cnf");
581
ifstream user_slap_ifs(user_config_dir_slap.c_str());
582
po::store(parse_config_file(user_slap_ifs, slap_options), vm);
584
ifstream user_client_ifs(user_config_dir_client.c_str());
585
po::store(parse_config_file(user_client_ifs, client_options), vm);
587
ifstream system_slap_ifs(system_config_dir_slap.c_str());
588
store(parse_config_file(system_slap_ifs, slap_options), vm);
590
ifstream system_client_ifs(system_config_dir_client.c_str());
591
store(parse_config_file(system_client_ifs, client_options), vm);
595
if (process_options())
598
if ( vm.count("help") || vm.count("info"))
600
printf("%s Ver %s Distrib %s, for %s-%s (%s)\n",SLAP_NAME, SLAP_VERSION,
601
drizzle_version(),HOST_VENDOR,HOST_OS,HOST_CPU);
602
puts("Copyright (C) 2008 Sun Microsystems");
603
puts("This software comes with ABSOLUTELY NO WARRANTY. "
604
"This is free software,\n"
605
"and you are welcome to modify and redistribute it under the GPL "
607
puts("Run a query multiple times against the server\n");
608
cout << long_options << endl;
612
if (vm.count("protocol"))
614
std::transform(opt_protocol.begin(), opt_protocol.end(),
615
opt_protocol.begin(), ::tolower);
617
if (not opt_protocol.compare("mysql"))
618
use_drizzle_protocol=false;
619
else if (not opt_protocol.compare("drizzle"))
620
use_drizzle_protocol=true;
623
cout << _("Error: Unknown protocol") << " '" << opt_protocol << "'" << endl;
627
if (vm.count("port"))
629
temp_drizzle_port= vm["port"].as<uint32_t>();
631
if ((temp_drizzle_port == 0) || (temp_drizzle_port > 65535))
633
fprintf(stderr, _("Value supplied for port is not valid.\n"));
638
opt_drizzle_port= (uint32_t) temp_drizzle_port;
642
if ( vm.count("password") )
644
if (not opt_password.empty())
645
opt_password.erase();
646
if (password == PASSWORD_SENTINEL)
652
opt_password= password;
663
if ( vm.count("version") )
665
printf("%s Ver %s Distrib %s, for %s-%s (%s)\n",SLAP_NAME, SLAP_VERSION,
666
drizzle_version(),HOST_VENDOR,HOST_OS,HOST_CPU);
670
/* Seed the random number generator if we will be using it. */
671
if (auto_generate_sql)
673
if (opt_set_random_seed == 0)
674
opt_set_random_seed= (uint32_t)time(NULL);
675
srandom(opt_set_random_seed);
678
/* globals? Yes, so we only have to run strlen once */
679
delimiter_length= delimiter.length();
681
slap_connect(con, false);
683
/* Main iterations loop */
321
load_defaults("my",load_default_groups,&argc,&argv);
323
if (get_options(&argc,&argv))
325
free_defaults(defaults_argv);
330
/* Seed the random number generator if we will be using it. */
331
if (auto_generate_sql)
333
if (opt_set_random_seed == 0)
334
opt_set_random_seed= (unsigned int)time(NULL);
335
srandom(opt_set_random_seed);
338
/* globals? Yes, so we only have to run strlen once */
339
delimiter_length= strlen(delimiter);
343
fprintf(stderr,"%s: Too many arguments\n",my_progname);
344
free_defaults(defaults_argv);
349
slap_connect(&drizzle, false);
351
pthread_mutex_init(&counter_mutex, NULL);
352
pthread_cond_init(&count_threshhold, NULL);
353
pthread_mutex_init(&sleeper_mutex, NULL);
354
pthread_cond_init(&sleep_threshhold, NULL);
355
pthread_mutex_init(&timer_alarm_mutex, NULL);
356
pthread_cond_init(&timer_alarm_threshold, NULL);
359
/* Main iterations loop */
685
eptr= engine_options;
688
/* For the final stage we run whatever queries we were asked to run */
692
printf("Starting Concurrency Test\n");
694
if (concurrency.size())
696
for (current= &concurrency[0]; current && *current; current++)
697
concurrency_loop(con, *current, eptr);
701
uint32_t infinite= 1;
703
concurrency_loop(con, infinite, eptr);
708
if (not opt_preserve)
709
drop_schema(con, create_schema_string.c_str());
711
} while (eptr ? (eptr= eptr->getNext()) : 0);
718
/* now free all the strings we created */
719
if (not opt_password.empty())
720
opt_password.erase();
724
statement_cleanup(create_statements);
725
for (uint32_t x= 0; x < query_statements_count; x++)
726
statement_cleanup(query_statements[x]);
727
query_statements.clear();
728
statement_cleanup(pre_statements);
729
statement_cleanup(post_statements);
730
option_cleanup(engine_options);
731
option_cleanup(query_options);
361
eptr= engine_options;
364
/* For the final stage we run whatever queries we were asked to run */
368
printf("Starting Concurrency Test\n");
372
for (current= concurrency; current && *current; current++)
373
concurrency_loop(&drizzle, *current, eptr);
379
concurrency_loop(&drizzle, infinite, eptr);
385
drop_schema(&drizzle, create_schema_string);
387
} while (eptr ? (eptr= eptr->next) : 0);
392
pthread_mutex_destroy(&counter_mutex);
393
pthread_cond_destroy(&count_threshhold);
394
pthread_mutex_destroy(&sleeper_mutex);
395
pthread_cond_destroy(&sleep_threshhold);
396
pthread_mutex_destroy(&timer_alarm_mutex);
397
pthread_cond_destroy(&timer_alarm_threshold);
399
slap_close(&drizzle);
401
/* now free all the strings we created */
407
statement_cleanup(create_statements);
408
for (x= 0; x < query_statements_count; x++)
409
statement_cleanup(query_statements[x]);
410
free(query_statements);
411
statement_cleanup(pre_statements);
412
statement_cleanup(post_statements);
413
option_cleanup(engine_options);
414
option_cleanup(query_options);
734
if (shared_memory_base_name)
735
free(shared_memory_base_name);
417
if (shared_memory_base_name)
418
free(shared_memory_base_name);
740
catch(std::exception &err)
742
cerr<<"Error:"<<err.what()<<endl;
745
if (csv_file != fileno(stdout))
420
free_defaults(defaults_argv);
751
void concurrency_loop(drizzle_con_st &con, uint32_t current, OptionString *eptr)
426
void concurrency_loop(DRIZZLE *drizzle, uint current, option_string *eptr)
755
Conclusions conclusion;
431
conclusions conclusion;
756
432
uint64_t client_limit;
758
head_sptr= new Stats[iterations];
759
if (head_sptr == NULL)
761
fprintf(stderr,"Error allocating memory in concurrency_loop\n");
434
head_sptr= (stats *)my_malloc(sizeof(stats) * iterations,
435
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
437
memset(&conclusion, 0, sizeof(conclusions));
765
439
if (auto_actual_queries)
766
440
client_limit= auto_actual_queries;
828
498
generate_stats(&conclusion, eptr, head_sptr);
831
print_conclusions(conclusion);
832
if (not opt_csv_str.empty())
833
print_conclusions_csv(conclusion);
839
uint32_t get_random_string(char *buf, size_t size)
501
print_conclusions(&conclusion);
503
print_conclusions_csv(&conclusion);
510
static struct my_option my_long_options[] =
512
{"help", '?', "Display this help and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
514
{"auto-generate-sql-select-columns", OPT_SLAP_AUTO_GENERATE_SELECT_COLUMNS,
515
"Provide a string to use for the select fields used in auto tests.",
516
(char**) &auto_generate_selected_columns_opt,
517
(char**) &auto_generate_selected_columns_opt,
518
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
519
{"auto-generate-sql", 'a',
520
"Generate SQL where not supplied by file or command line.",
521
(char**) &auto_generate_sql, (char**) &auto_generate_sql,
522
0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
523
{"auto-generate-sql-add-autoincrement", OPT_SLAP_AUTO_GENERATE_ADD_AUTO,
524
"Add an AUTO_INCREMENT column to auto-generated tables.",
525
(char**) &auto_generate_sql_autoincrement,
526
(char**) &auto_generate_sql_autoincrement,
527
0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
528
{"auto-generate-sql-execute-number", OPT_SLAP_AUTO_GENERATE_EXECUTE_QUERIES,
529
"Set this number to generate a set number of queries to run.",
530
(char**) &auto_actual_queries, (char**) &auto_actual_queries,
531
0, GET_ULL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
532
{"auto-generate-sql-guid-primary", OPT_SLAP_AUTO_GENERATE_GUID_PRIMARY,
533
"Add GUID based primary keys to auto-generated tables.",
534
(char**) &auto_generate_sql_guid_primary,
535
(char**) &auto_generate_sql_guid_primary,
536
0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
537
{"auto-generate-sql-load-type", OPT_SLAP_AUTO_GENERATE_SQL_LOAD_TYPE,
538
"Specify test load type: mixed, update, write, key, or read; default is mixed.",
539
(char**) &opt_auto_generate_sql_type, (char**) &opt_auto_generate_sql_type,
540
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
541
{"auto-generate-sql-secondary-indexes",
542
OPT_SLAP_AUTO_GENERATE_SECONDARY_INDEXES,
543
"Number of secondary indexes to add to auto-generated tables.",
544
(char**) &auto_generate_sql_secondary_indexes,
545
(char**) &auto_generate_sql_secondary_indexes, 0,
546
GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
547
{"auto-generate-sql-unique-query-number",
548
OPT_SLAP_AUTO_GENERATE_UNIQUE_QUERY_NUM,
549
"Number of unique queries to generate for automatic tests.",
550
(char**) &auto_generate_sql_unique_query_number,
551
(char**) &auto_generate_sql_unique_query_number,
552
0, GET_ULL, REQUIRED_ARG, 10, 0, 0, 0, 0, 0},
553
{"auto-generate-sql-unique-write-number",
554
OPT_SLAP_AUTO_GENERATE_UNIQUE_WRITE_NUM,
555
"Number of unique queries to generate for auto-generate-sql-write-number.",
556
(char**) &auto_generate_sql_unique_write_number,
557
(char**) &auto_generate_sql_unique_write_number,
558
0, GET_ULL, REQUIRED_ARG, 10, 0, 0, 0, 0, 0},
559
{"auto-generate-sql-write-number", OPT_SLAP_AUTO_GENERATE_WRITE_NUM,
560
"Number of row inserts to perform for each thread (default is 100).",
561
(char**) &auto_generate_sql_number, (char**) &auto_generate_sql_number,
562
0, GET_ULL, REQUIRED_ARG, 100, 0, 0, 0, 0, 0},
563
{"burnin", OPT_SLAP_BURNIN, "Run full test case in infinite loop.",
564
(char**) &opt_burnin, (char**) &opt_burnin, 0, GET_BOOL, NO_ARG, 0, 0, 0,
566
{"ignore-sql-errors", OPT_SLAP_IGNORE_SQL_ERRORS,
567
"Ignore SQL erros in query run.",
568
(char**) &opt_ignore_sql_errors,
569
(char**) &opt_ignore_sql_errors,
570
0, GET_BOOL, NO_ARG, 0, 0, 0,
572
{"commit", OPT_SLAP_COMMIT, "Commit records every X number of statements.",
573
(char**) &commit_rate, (char**) &commit_rate, 0, GET_UINT, REQUIRED_ARG,
575
{"compress", 'C', "Use compression in server/client protocol.",
576
(char**) &opt_compress, (char**) &opt_compress, 0, GET_BOOL, NO_ARG, 0, 0, 0,
578
{"concurrency", 'c', "Number of clients to simulate for query to run.",
579
(char**) &concurrency_str, (char**) &concurrency_str, 0, GET_STR,
580
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
581
{"create", OPT_SLAP_CREATE_STRING, "File or string to use create tables.",
582
(char**) &create_string, (char**) &create_string, 0, GET_STR, REQUIRED_ARG,
584
{"create-schema", OPT_CREATE_SLAP_SCHEMA, "Schema to run tests in.",
585
(char**) &create_schema_string, (char**) &create_schema_string, 0, GET_STR,
586
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
587
{"csv", OPT_SLAP_CSV,
588
"Generate CSV output to named file or to stdout if no file is named.",
589
(char**) &opt_csv_str, (char**) &opt_csv_str, 0, GET_STR,
590
OPT_ARG, 0, 0, 0, 0, 0, 0},
591
{"debug-check", OPT_DEBUG_CHECK, "Check memory and open file usage at exit.",
592
(char**) &debug_check_flag, (char**) &debug_check_flag, 0,
593
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
594
{"debug-info", 'T', "Print some debug info at exit.", (char**) &debug_info_flag,
595
(char**) &debug_info_flag, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
596
{"delayed-start", OPT_SLAP_DELAYED_START,
597
"Delay the startup of threads by a random number of microsends (the maximum of the delay)",
598
(char**) &opt_delayed_start, (char**) &opt_delayed_start, 0, GET_UINT,
599
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
601
"Delimiter to use in SQL statements supplied in file or command line.",
602
(char**) &delimiter, (char**) &delimiter, 0, GET_STR, REQUIRED_ARG,
604
{"detach", OPT_SLAP_DETACH,
605
"Detach (close and reopen) connections after X number of requests.",
606
(char**) &detach_rate, (char**) &detach_rate, 0, GET_UINT, REQUIRED_ARG,
608
{"engine", 'e', "Storage engine to use for creating the table.",
609
(char**) &default_engine, (char**) &default_engine, 0,
610
GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
611
{"host", 'h', "Connect to host.", (char**) &host, (char**) &host, 0, GET_STR,
612
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
613
{"iterations", 'i', "Number of times to run the tests.", (char**) &iterations,
614
(char**) &iterations, 0, GET_UINT, REQUIRED_ARG, 1, 0, 0, 0, 0, 0},
615
{"label", OPT_SLAP_LABEL, "Label to use for print and csv output.",
616
(char**) &opt_label, (char**) &opt_label, 0,
617
GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
618
{"number-blob-cols", OPT_SLAP_BLOB_COL,
619
"Number of BLOB columns to create table with if specifying --auto-generate-sql. Example --number-blob-cols=3:1024/2048 would give you 3 blobs with a random size between 1024 and 2048. ",
620
(char**) &num_blob_cols_opt, (char**) &num_blob_cols_opt, 0, GET_STR, REQUIRED_ARG,
622
{"number-char-cols", 'x',
623
"Number of VARCHAR columns to create in table if specifying --auto-generate-sql.",
624
(char**) &num_char_cols_opt, (char**) &num_char_cols_opt, 0, GET_STR, REQUIRED_ARG,
626
{"number-int-cols", 'y',
627
"Number of INT columns to create in table if specifying --auto-generate-sql.",
628
(char**) &num_int_cols_opt, (char**) &num_int_cols_opt, 0, GET_STR, REQUIRED_ARG,
630
{"number-of-queries", OPT_DRIZZLE_NUMBER_OF_QUERY,
631
"Limit each client to this number of queries (this is not exact).",
632
(char**) &num_of_query, (char**) &num_of_query, 0,
633
GET_ULL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
634
{"only-print", OPT_DRIZZLE_ONLY_PRINT,
635
"This causes drizzleslap to not connect to the databases, but instead print "
636
"out what it would have done instead.",
637
(char**) &opt_only_print, (char**) &opt_only_print, 0, GET_BOOL, NO_ARG,
640
"Password to use when connecting to server. If password is not given it's "
641
"asked from the tty.", 0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
642
{"port", 'P', "Port number to use for connection.", (char**) &opt_drizzle_port,
643
(char**) &opt_drizzle_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
645
{"post-query", OPT_SLAP_POST_QUERY,
646
"Query to run or file containing query to execute after tests have completed.",
647
(char**) &user_supplied_post_statements,
648
(char**) &user_supplied_post_statements,
649
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
650
{"post-system", OPT_SLAP_POST_SYSTEM,
651
"system() string to execute after tests have completed.",
652
(char**) &post_system,
653
(char**) &post_system,
654
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
655
{"pre-query", OPT_SLAP_PRE_QUERY,
656
"Query to run or file containing query to execute before running tests.",
657
(char**) &user_supplied_pre_statements,
658
(char**) &user_supplied_pre_statements,
659
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
660
{"pre-system", OPT_SLAP_PRE_SYSTEM,
661
"system() string to execute before running tests.",
662
(char**) &pre_system,
663
(char**) &pre_system,
664
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
665
{"protocol", OPT_DRIZZLE_PROTOCOL,
666
"The protocol of connection (tcp,socket,pipe,memory).",
667
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
668
{"query", 'q', "Query to run or file containing query to run.",
669
(char**) &user_supplied_query, (char**) &user_supplied_query,
670
0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
671
{"set-random-seed", OPT_SLAP_SET_RANDOM_SEED,
672
"Seed for random number generator (srandom(3))",
673
(char**)&opt_set_random_seed,
674
(char**)&opt_set_random_seed,0,
675
GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
676
{"silent", 's', "Run program in silent mode - no output.",
677
(char**) &opt_silent, (char**) &opt_silent, 0, GET_BOOL, NO_ARG,
679
{"socket", 'S', "Socket file to use for connection.",
680
(char**) &opt_drizzle_unix_port, (char**) &opt_drizzle_unix_port, 0, GET_STR,
681
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
682
{"timer-length", OPT_SLAP_TIMER_LENGTH,
683
"Require drizzleslap to run each specific test a certain amount of time in seconds.",
684
(char**) &opt_timer_length, (char**) &opt_timer_length, 0, GET_UINT,
685
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
686
#ifndef DONT_ALLOW_USER_CHANGE
687
{"user", 'u', "User for login if not current user.", (char**) &user,
688
(char**) &user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
691
"More verbose output; you can use this multiple times to get even more "
692
"verbose output.", (char**) &verbose, (char**) &verbose, 0,
693
GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
694
{"version", 'V', "Output version information and exit.", 0, 0, 0, GET_NO_ARG,
695
NO_ARG, 0, 0, 0, 0, 0, 0},
696
{0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
700
static void print_version(void)
702
printf("%s Ver %s Distrib %s, for %s (%s)\n",my_progname, SLAP_VERSION,
703
drizzle_get_client_info(),SYSTEM_TYPE,MACHINE_TYPE);
707
static void usage(void)
710
puts("Copyright (C) 2005 DRIZZLE AB");
711
puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\
712
\nand you are welcome to modify and redistribute it under the GPL \
714
puts("Run a query multiple times against the server\n");
715
printf("Usage: %s [OPTIONS]\n",my_progname);
716
print_defaults("my",load_default_groups);
717
my_print_help(my_long_options);
721
get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
732
char *start= argument;
734
opt_password= my_strdup(argument,MYF(MY_FAE));
735
while (*argument) *argument++= 'x'; /* Destroy argument */
737
start[1]= 0; /* Cut length of argument */
757
get_random_string(char *buf, size_t size)
841
759
char *buf_ptr= buf;
843
for (size_t x= size; x > 0; x--)
762
for (x= size; x > 0; x--)
844
763
*buf_ptr++= ALPHANUMERICS[random() % ALPHANUMERICS_SIZE];
845
764
return(buf_ptr - buf);
1493
1436
for (ptr_statement= query_statements[sql_type_count], x= 0;
1494
1437
x < auto_generate_sql_unique_query_number;
1495
x++, ptr_statement= ptr_statement->getNext())
1438
x++, ptr_statement= ptr_statement->next)
1499
ptr_statement->setNext(build_insert_string());
1442
ptr_statement->next= build_insert_string();
1504
ptr_statement->setNext(build_select_string(true));
1447
ptr_statement->next= build_select_string(true);
1509
1452
sql_type_count++;
1510
} while (sql_type ? (sql_type= sql_type->getNext()) : 0);
1453
} while (sql_type ? (sql_type= sql_type->next) : 0);
1514
if (not create_string.empty() && !stat(create_string.c_str(), &sbuf))
1457
if (create_string && !stat(create_string, &sbuf))
1517
std::vector<char> tmp_string;
1518
if (not S_ISREG(sbuf.st_mode))
1460
if (!S_ISREG(sbuf.st_mode))
1520
1462
fprintf(stderr,"%s: Create file was not a regular file\n",
1524
if ((data_file= open(create_string.c_str(), O_RDWR)) == -1)
1526
fprintf(stderr,"%s: Could not open create file\n", SLAP_NAME);
1529
if ((uint64_t)(sbuf.st_size + 1) > SIZE_MAX)
1531
fprintf(stderr, "Request for more memory than architecture supports\n");
1534
tmp_string.resize(sbuf.st_size + 1);
1535
bytes_read= read(data_file, (unsigned char*) &tmp_string[0],
1536
(size_t)sbuf.st_size);
1538
if (bytes_read != sbuf.st_size)
1540
fprintf(stderr, "Problem reading file: read less bytes than requested\n");
1542
parse_delimiter(&tmp_string[0], &create_statements, delimiter[0]);
1466
if ((data_file= my_open(create_string, O_RDWR, MYF(0))) == -1)
1468
fprintf(stderr,"%s: Could not open create file\n", my_progname);
1471
tmp_string= (char *)my_malloc(sbuf.st_size + 1,
1472
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
1473
my_read(data_file, (unsigned char*) tmp_string, sbuf.st_size, MYF(0));
1474
tmp_string[sbuf.st_size]= '\0';
1475
my_close(data_file,MYF(0));
1476
parse_delimiter(tmp_string, &create_statements, delimiter[0]);
1544
else if (not create_string.empty())
1479
else if (create_string)
1546
parse_delimiter(create_string.c_str(), &create_statements, delimiter[0]);
1481
parse_delimiter(create_string, &create_statements, delimiter[0]);
1549
1484
/* Set this up till we fully support options on user generated queries */
1550
if (not user_supplied_query.empty())
1485
if (user_supplied_query)
1552
1487
query_statements_count=
1553
1488
parse_option("default", &query_options, ',');
1555
query_statements.resize(query_statements_count);
1490
query_statements= (statement **)my_malloc(sizeof(statement *),
1491
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
1558
if (not user_supplied_query.empty() && !stat(user_supplied_query.c_str(), &sbuf))
1494
if (user_supplied_query && !stat(user_supplied_query, &sbuf))
1561
std::vector<char> tmp_string;
1563
if (not S_ISREG(sbuf.st_mode))
1497
if (!S_ISREG(sbuf.st_mode))
1565
1499
fprintf(stderr,"%s: User query supplied file was not a regular file\n",
1569
if ((data_file= open(user_supplied_query.c_str(), O_RDWR)) == -1)
1571
fprintf(stderr,"%s: Could not open query supplied file\n", SLAP_NAME);
1574
if ((uint64_t)(sbuf.st_size + 1) > SIZE_MAX)
1576
fprintf(stderr, "Request for more memory than architecture supports\n");
1579
tmp_string.resize((size_t)(sbuf.st_size + 1));
1580
bytes_read= read(data_file, (unsigned char*) &tmp_string[0],
1581
(size_t)sbuf.st_size);
1583
if (bytes_read != sbuf.st_size)
1585
fprintf(stderr, "Problem reading file: read less bytes than requested\n");
1587
if (not user_supplied_query.empty())
1588
actual_queries= parse_delimiter(&tmp_string[0], &query_statements[0],
1503
if ((data_file= my_open(user_supplied_query, O_RDWR, MYF(0))) == -1)
1505
fprintf(stderr,"%s: Could not open query supplied file\n", my_progname);
1508
tmp_string= (char *)my_malloc(sbuf.st_size + 1,
1509
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
1510
my_read(data_file, (unsigned char*) tmp_string, sbuf.st_size, MYF(0));
1511
tmp_string[sbuf.st_size]= '\0';
1512
my_close(data_file,MYF(0));
1513
if (user_supplied_query)
1514
actual_queries= parse_delimiter(tmp_string, &query_statements[0],
1591
else if (not user_supplied_query.empty())
1518
else if (user_supplied_query)
1593
actual_queries= parse_delimiter(user_supplied_query.c_str(), &query_statements[0],
1520
actual_queries= parse_delimiter(user_supplied_query, &query_statements[0],
1598
if (not user_supplied_pre_statements.empty()
1599
&& !stat(user_supplied_pre_statements.c_str(), &sbuf))
1525
if (user_supplied_pre_statements
1526
&& !stat(user_supplied_pre_statements, &sbuf))
1602
std::vector<char> tmp_string;
1604
if (not S_ISREG(sbuf.st_mode))
1529
if (!S_ISREG(sbuf.st_mode))
1606
1531
fprintf(stderr,"%s: User query supplied file was not a regular file\n",
1610
if ((data_file= open(user_supplied_pre_statements.c_str(), O_RDWR)) == -1)
1612
fprintf(stderr,"%s: Could not open query supplied file\n", SLAP_NAME);
1615
if ((uint64_t)(sbuf.st_size + 1) > SIZE_MAX)
1617
fprintf(stderr, "Request for more memory than architecture supports\n");
1620
tmp_string.resize((size_t)(sbuf.st_size + 1));
1621
bytes_read= read(data_file, (unsigned char*) &tmp_string[0],
1622
(size_t)sbuf.st_size);
1624
if (bytes_read != sbuf.st_size)
1626
fprintf(stderr, "Problem reading file: read less bytes than requested\n");
1628
if (not user_supplied_pre_statements.empty())
1629
(void)parse_delimiter(&tmp_string[0], &pre_statements,
1535
if ((data_file= my_open(user_supplied_pre_statements, O_RDWR, MYF(0))) == -1)
1537
fprintf(stderr,"%s: Could not open query supplied file\n", my_progname);
1540
tmp_string= (char *)my_malloc(sbuf.st_size + 1,
1541
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
1542
my_read(data_file, (unsigned char*) tmp_string, sbuf.st_size, MYF(0));
1543
tmp_string[sbuf.st_size]= '\0';
1544
my_close(data_file,MYF(0));
1545
if (user_supplied_pre_statements)
1546
(void)parse_delimiter(tmp_string, &pre_statements,
1632
else if (not user_supplied_pre_statements.empty())
1550
else if (user_supplied_pre_statements)
1634
(void)parse_delimiter(user_supplied_pre_statements.c_str(),
1552
(void)parse_delimiter(user_supplied_pre_statements,
1635
1553
&pre_statements,
1639
if (not user_supplied_post_statements.empty()
1640
&& !stat(user_supplied_post_statements.c_str(), &sbuf))
1557
if (user_supplied_post_statements
1558
&& !stat(user_supplied_post_statements, &sbuf))
1643
std::vector<char> tmp_string;
1645
if (not S_ISREG(sbuf.st_mode))
1561
if (!S_ISREG(sbuf.st_mode))
1647
1563
fprintf(stderr,"%s: User query supplied file was not a regular file\n",
1651
if ((data_file= open(user_supplied_post_statements.c_str(), O_RDWR)) == -1)
1653
fprintf(stderr,"%s: Could not open query supplied file\n", SLAP_NAME);
1657
if ((uint64_t)(sbuf.st_size + 1) > SIZE_MAX)
1659
fprintf(stderr, "Request for more memory than architecture supports\n");
1662
tmp_string.resize((size_t)(sbuf.st_size + 1));
1664
bytes_read= read(data_file, (unsigned char*) &tmp_string[0],
1665
(size_t)(sbuf.st_size));
1667
if (bytes_read != sbuf.st_size)
1669
fprintf(stderr, "Problem reading file: read less bytes than requested\n");
1671
if (not user_supplied_post_statements.empty())
1672
(void)parse_delimiter(&tmp_string[0], &post_statements,
1567
if ((data_file= my_open(user_supplied_post_statements, O_RDWR, MYF(0))) == -1)
1569
fprintf(stderr,"%s: Could not open query supplied file\n", my_progname);
1572
tmp_string= (char *)my_malloc(sbuf.st_size + 1,
1573
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
1574
my_read(data_file, (unsigned char*) tmp_string, sbuf.st_size, MYF(0));
1575
tmp_string[sbuf.st_size]= '\0';
1576
my_close(data_file,MYF(0));
1577
if (user_supplied_post_statements)
1578
(void)parse_delimiter(tmp_string, &post_statements,
1675
else if (not user_supplied_post_statements.empty())
1582
else if (user_supplied_post_statements)
1677
(void)parse_delimiter(user_supplied_post_statements.c_str(), &post_statements,
1584
(void)parse_delimiter(user_supplied_post_statements, &post_statements,
1681
1588
if (verbose >= 2)
1682
1589
printf("Parsing engines to use.\n");
1684
if (not default_engine.empty())
1685
parse_option(default_engine.c_str(), &engine_options, ',');
1592
parse_option(default_engine, &engine_options, ',');
1687
1594
if (tty_password)
1688
opt_password= client_get_tty_password(NULL);
1595
opt_password= get_tty_password(NULL);
1693
static int run_query(drizzle_con_st &con, drizzle_result_st *result,
1694
const char *query, int len)
1600
static int run_query(DRIZZLE *drizzle, const char *query, int len)
1696
drizzle_return_t ret;
1697
drizzle_result_st result_buffer;
1699
1602
if (opt_only_print)
1701
printf("/* CON: %" PRIu64 " */ %.*s;\n",
1702
(uint64_t)drizzle_context(drizzle_con_drizzle(&con)),
1604
printf("%.*s;\n", len, query);
1707
1608
if (verbose >= 3)
1708
1609
printf("%.*s;\n", len, query);
1711
result= &result_buffer;
1713
result= drizzle_query(&con, result, query, len, &ret);
1715
if (ret == DRIZZLE_RETURN_OK)
1716
ret= drizzle_result_buffer(result);
1718
if (result == &result_buffer)
1719
drizzle_result_free(result);
1610
return drizzle_real_query(drizzle, query, len);
1726
generate_primary_key_list(drizzle_con_st &con, OptionString *engine_stmt)
1615
generate_primary_key_list(DRIZZLE *drizzle, option_string *engine_stmt)
1728
drizzle_result_st result;
1617
DRIZZLE_RES *result;
1730
1619
uint64_t counter;
1794
1701
if (verbose >= 2)
1795
1702
printf("Loading Pre-data\n");
1797
if (run_query(con, NULL, query, len))
1704
if (run_query(drizzle, query, len))
1799
fprintf(stderr,"%s: Cannot create schema %s : %s\n", SLAP_NAME, db,
1800
drizzle_con_error(&con));
1706
fprintf(stderr,"%s: Cannot create schema %s : %s\n", my_progname, db,
1707
drizzle_error(drizzle));
1805
sptr->setCreateCount(sptr->getCreateCount()+1);
1712
sptr->create_count++;
1808
1715
if (opt_only_print)
1810
printf("/* CON: %" PRIu64 " */ use %s;\n",
1811
(uint64_t)drizzle_context(drizzle_con_drizzle(&con)),
1717
printf("use %s;\n", db);
1816
drizzle_result_st result;
1817
drizzle_return_t ret;
1819
1721
if (verbose >= 3)
1820
1722
printf("%s;\n", query);
1822
if (drizzle_select_db(&con, &result, db, &ret) == NULL ||
1823
ret != DRIZZLE_RETURN_OK)
1724
if (drizzle_select_db(drizzle, db))
1825
fprintf(stderr,"%s: Cannot select schema '%s': %s\n",SLAP_NAME, db,
1826
ret == DRIZZLE_RETURN_ERROR_CODE ?
1827
drizzle_result_error(&result) : drizzle_con_error(&con));
1726
fprintf(stderr,"%s: Cannot select schema '%s': %s\n",my_progname, db,
1727
drizzle_error(drizzle));
1830
drizzle_result_free(&result);
1831
sptr->setCreateCount(sptr->getCreateCount()+1);
1730
sptr->create_count++;
1834
1733
if (engine_stmt)
1836
1735
len= snprintf(query, HUGE_STRING_LENGTH, "set storage_engine=`%s`",
1837
engine_stmt->getString());
1838
if (run_query(con, NULL, query, len))
1736
engine_stmt->string);
1737
if (run_query(drizzle, query, len))
1840
fprintf(stderr,"%s: Cannot set default engine: %s\n", SLAP_NAME,
1841
drizzle_con_error(&con));
1739
fprintf(stderr,"%s: Cannot set default engine: %s\n", my_progname,
1740
drizzle_error(drizzle));
1844
sptr->setCreateCount(sptr->getCreateCount()+1);
1743
sptr->create_count++;
1848
1747
after_create= stmt;
1851
for (ptr= after_create; ptr && ptr->getLength(); ptr= ptr->getNext(), count++)
1750
for (ptr= after_create; ptr && ptr->length; ptr= ptr->next, count++)
1853
1752
if (auto_generate_sql && ( auto_generate_sql_number == count))
1856
if (engine_stmt && engine_stmt->getOption() && ptr->getType() == CREATE_TABLE_TYPE)
1755
if (engine_stmt && engine_stmt->option && ptr->type == CREATE_TABLE_TYPE)
1858
1757
char buffer[HUGE_STRING_LENGTH];
1860
snprintf(buffer, HUGE_STRING_LENGTH, "%s %s", ptr->getString(),
1861
engine_stmt->getOption());
1862
if (run_query(con, NULL, buffer, strlen(buffer)))
1759
snprintf(buffer, HUGE_STRING_LENGTH, "%s %s", ptr->string,
1760
engine_stmt->option);
1761
if (run_query(drizzle, buffer, strlen(buffer)))
1864
1763
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
1865
SLAP_NAME, (uint32_t)ptr->getLength(), ptr->getString(), drizzle_con_error(&con));
1866
if (not opt_ignore_sql_errors)
1764
my_progname, (uint)ptr->length, ptr->string, drizzle_error(drizzle));
1765
if (!opt_ignore_sql_errors)
1869
sptr->setCreateCount(sptr->getCreateCount()+1);
1768
sptr->create_count++;
1873
if (run_query(con, NULL, ptr->getString(), ptr->getLength()))
1772
if (run_query(drizzle, ptr->string, ptr->length))
1875
1774
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
1876
SLAP_NAME, (uint32_t)ptr->getLength(), ptr->getString(), drizzle_con_error(&con));
1877
if (not opt_ignore_sql_errors)
1775
my_progname, (uint)ptr->length, ptr->string, drizzle_error(drizzle));
1776
if (!opt_ignore_sql_errors)
1880
sptr->setCreateCount(sptr->getCreateCount()+1);
1779
sptr->create_count++;
1884
1783
if (auto_generate_sql && (auto_generate_sql_number > count ))
1886
1785
/* Special case for auto create, we don't want to create tables twice */
1887
after_create= stmt->getNext();
1786
after_create= stmt->next;
1888
1787
goto limit_not_met;
1891
1790
gettimeofday(&end_time, NULL);
1893
sptr->setCreateTiming(timedif(end_time, start_time));
1792
sptr->create_timing= timedif(end_time, start_time);
1896
static void drop_schema(drizzle_con_st &con, const char *db)
1798
drop_schema(DRIZZLE *drizzle, const char *db)
1898
1800
char query[HUGE_STRING_LENGTH];
1901
1803
len= snprintf(query, HUGE_STRING_LENGTH, "DROP SCHEMA IF EXISTS `%s`", db);
1903
if (run_query(con, NULL, query, len))
1805
if (run_query(drizzle, query, len))
1905
1807
fprintf(stderr,"%s: Cannot drop database '%s' ERROR : %s\n",
1906
SLAP_NAME, db, drizzle_con_error(&con));
1808
my_progname, db, drizzle_error(drizzle));
1911
static void run_statements(drizzle_con_st &con, Statement *stmt)
1818
run_statements(DRIZZLE *drizzle, statement *stmt)
1913
for (Statement *ptr= stmt; ptr && ptr->getLength(); ptr= ptr->getNext())
1821
DRIZZLE_RES *result;
1824
for (ptr= stmt; ptr && ptr->length; ptr= ptr->next)
1915
if (run_query(con, NULL, ptr->getString(), ptr->getLength()))
1826
if (run_query(drizzle, ptr->string, ptr->length))
1917
1828
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
1918
SLAP_NAME, (uint32_t)ptr->getLength(), ptr->getString(), drizzle_con_error(&con));
1925
static void timer_thread()
1829
my_progname, (uint)ptr->length, ptr->string, drizzle_error(drizzle));
1832
if (!opt_only_print)
1834
if (drizzle_field_count(drizzle))
1836
result= drizzle_store_result(drizzle);
1837
drizzle_free_result(result);
1846
run_scheduler(stats *sptr, statement **stmts, uint concur, uint64_t limit)
1850
unsigned int real_concurrency;
1851
struct timeval start_time, end_time;
1852
option_string *sql_type;
1853
thread_context *con;
1854
pthread_t mainthread; /* Thread descriptor */
1855
pthread_attr_t attr; /* Thread attributes */
1858
pthread_attr_init(&attr);
1859
pthread_attr_setdetachstate(&attr,
1860
PTHREAD_CREATE_DETACHED);
1862
pthread_mutex_lock(&counter_mutex);
1865
pthread_mutex_lock(&sleeper_mutex);
1867
pthread_mutex_unlock(&sleeper_mutex);
1869
real_concurrency= 0;
1871
for (y= 0, sql_type= query_options;
1872
y < query_statements_count;
1873
y++, sql_type= sql_type->next)
1875
unsigned int options_loop= 1;
1877
if (sql_type->option)
1879
options_loop= strtol(sql_type->option,
1881
options_loop= options_loop ? options_loop : 1;
1884
while (options_loop--)
1885
for (x= 0; x < concur; x++)
1887
con= (thread_context *)my_malloc(sizeof(thread_context), MYF(0));
1888
con->stmt= stmts[y];
1892
/* now you create the thread */
1893
if (pthread_create(&mainthread, &attr, run_task,
1896
fprintf(stderr,"%s: Could not create thread\n", my_progname);
1904
The timer_thread belongs to all threads so it too obeys the wakeup
1905
call that run tasks obey.
1907
if (opt_timer_length)
1909
pthread_mutex_lock(&timer_alarm_mutex);
1911
pthread_mutex_unlock(&timer_alarm_mutex);
1913
if (pthread_create(&mainthread, &attr, timer_thread,
1914
(void *)&opt_timer_length) != 0)
1916
fprintf(stderr,"%s: Could not create timer thread\n", my_progname);
1921
pthread_mutex_unlock(&counter_mutex);
1922
pthread_attr_destroy(&attr);
1924
pthread_mutex_lock(&sleeper_mutex);
1926
pthread_mutex_unlock(&sleeper_mutex);
1927
pthread_cond_broadcast(&sleep_threshhold);
1929
gettimeofday(&start_time, NULL);
1932
We loop until we know that all children have cleaned up.
1934
pthread_mutex_lock(&counter_mutex);
1935
while (thread_counter)
1937
struct timespec abstime;
1939
set_timespec(abstime, 3);
1940
pthread_cond_timedwait(&count_threshhold, &counter_mutex, &abstime);
1942
pthread_mutex_unlock(&counter_mutex);
1944
gettimeofday(&end_time, NULL);
1947
sptr->timing= timedif(end_time, start_time);
1948
sptr->users= concur;
1949
sptr->real_users= real_concurrency;
1956
pthread_handler_t timer_thread(void *p)
1958
uint *timer_length= (uint *)p;
1959
struct timespec abstime;
1928
1963
We lock around the initial call in case were we in a loop. This
1929
1964
also keeps the value properly syncronized across call threads.
1931
master_wakeup.wait();
1934
boost::mutex::scoped_lock scopedLock(timer_alarm_mutex);
1937
xtime_get(&xt, boost::TIME_UTC);
1938
xt.sec += opt_timer_length;
1940
(void)timer_alarm_threshold.timed_wait(scopedLock, xt);
1944
boost::mutex::scoped_lock scopedLock(timer_alarm_mutex);
1966
pthread_mutex_lock(&sleeper_mutex);
1967
while (master_wakeup)
1969
pthread_cond_wait(&sleep_threshhold, &sleeper_mutex);
1971
pthread_mutex_unlock(&sleeper_mutex);
1973
set_timespec(abstime, *timer_length);
1975
pthread_mutex_lock(&timer_alarm_mutex);
1976
pthread_cond_timedwait(&timer_alarm_threshold, &timer_alarm_mutex, &abstime);
1977
pthread_mutex_unlock(&timer_alarm_mutex);
1979
pthread_mutex_lock(&timer_alarm_mutex);
1981
pthread_mutex_unlock(&timer_alarm_mutex);
1949
typedef boost::shared_ptr<boost::thread> Thread;
1950
typedef std::vector <Thread> Threads;
1951
static void run_scheduler(Stats *sptr, Statement **stmts, uint32_t concur, uint64_t limit)
1986
pthread_handler_t run_task(void *p)
1953
uint32_t real_concurrency;
1954
struct timeval start_time, end_time;
1959
OptionString *sql_type;
1961
master_wakeup.reset();
1963
real_concurrency= 0;
1966
for (y= 0, sql_type= query_options;
1967
y < query_statements_count;
1968
y++, sql_type= sql_type->getNext())
1988
uint64_t counter= 0, queries;
1989
uint64_t detach_counter;
1990
unsigned int commit_counter;
1992
DRIZZLE_RES *result;
1995
thread_context *con= (thread_context *)p;
1997
pthread_mutex_lock(&sleeper_mutex);
1998
while (master_wakeup)
2000
pthread_cond_wait(&sleep_threshhold, &sleeper_mutex);
2002
pthread_mutex_unlock(&sleeper_mutex);
2004
slap_connect(&drizzle, true);
2007
printf("connected!\n");
2012
run_query(&drizzle, "SET AUTOCOMMIT=0", strlen("SET AUTOCOMMIT=0"));
2015
for (ptr= con->stmt, detach_counter= 0;
2017
ptr= ptr->next, detach_counter++)
2019
if (!opt_only_print && detach_rate && !(detach_counter % detach_rate))
1970
uint32_t options_loop= 1;
1972
if (sql_type->getOption())
1974
options_loop= strtol(sql_type->getOption(),
1976
options_loop= options_loop ? options_loop : 1;
1979
while (options_loop--)
1981
for (uint32_t x= 0; x < concur; x++)
1984
con= new ThreadContext;
1987
fprintf(stderr, "Memory Allocation error in scheduler\n");
1990
con->setStmt(stmts[y]);
1991
con->setLimit(limit);
1995
/* now you create the thread */
1997
thread= Thread(new boost::thread(boost::bind(&run_task, con)));
1998
threads.push_back(thread);
2021
slap_close(&drizzle);
2022
slap_connect(&drizzle, true);
2005
The timer_thread belongs to all threads so it too obeys the wakeup
2006
call that run tasks obey.
2026
We have to execute differently based on query type. This should become a function.
2008
if (opt_timer_length)
2011
boost::mutex::scoped_lock alarmLock(timer_alarm_mutex);
2016
thread= Thread(new boost::thread(&timer_thread));
2017
threads.push_back(thread);
2021
master_wakeup.start();
2023
gettimeofday(&start_time, NULL);
2026
We loop until we know that all children have cleaned up.
2028
for (Threads::iterator iter= threads.begin(); iter != threads.end(); iter++)
2033
gettimeofday(&end_time, NULL);
2035
sptr->setTiming(timedif(end_time, start_time));
2036
sptr->setUsers(concur);
2037
sptr->setRealUsers(real_concurrency);
2038
sptr->setRows(limit);
2028
if ((ptr->type == UPDATE_TYPE_REQUIRES_PREFIX) ||
2029
(ptr->type == SELECT_TYPE_REQUIRES_PREFIX))
2032
unsigned int key_val;
2034
char buffer[HUGE_STRING_LENGTH];
2037
This should only happen if some sort of new engine was
2038
implemented that didn't properly handle UPDATEs.
2040
Just in case someone runs this under an experimental engine we don't
2041
want a crash so the if() is placed here.
2043
assert(primary_keys_number_of);
2044
if (primary_keys_number_of)
2046
key_val= (unsigned int)(random() % primary_keys_number_of);
2047
key= primary_keys[key_val];
2051
length= snprintf(buffer, HUGE_STRING_LENGTH, "%.*s '%s'",
2052
(int)ptr->length, ptr->string, key);
2054
if (run_query(&drizzle, buffer, length))
2056
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
2057
my_progname, (uint)length, buffer, drizzle_error(&drizzle));
2064
if (run_query(&drizzle, ptr->string, ptr->length))
2066
fprintf(stderr,"%s: Cannot run query %.*s ERROR : %s\n",
2067
my_progname, (uint)ptr->length, ptr->string, drizzle_error(&drizzle));
2072
if (!opt_only_print)
2076
if (drizzle_field_count(&drizzle))
2078
result= drizzle_store_result(&drizzle);
2079
while ((row = drizzle_fetch_row(result)))
2081
drizzle_free_result(result);
2083
} while(drizzle_next_result(&drizzle) == 0);
2087
if (commit_rate && (++commit_counter == commit_rate))
2090
run_query(&drizzle, "COMMIT", strlen("COMMIT"));
2093
/* If the timer is set, and the alarm is not active then end */
2094
if (opt_timer_length && timer_alarm == false)
2097
/* If limit has been reached, and we are not in a timer_alarm just end */
2098
if (con->limit && queries == con->limit && timer_alarm == false)
2102
if (opt_timer_length && timer_alarm == true)
2105
if (con->limit && queries < con->limit)
2111
run_query(&drizzle, "COMMIT", strlen("COMMIT"));
2113
slap_close(&drizzle);
2115
pthread_mutex_lock(&counter_mutex);
2117
pthread_cond_signal(&count_threshhold);
2118
pthread_mutex_unlock(&counter_mutex);
2042
2126
Parse records from comma seperated string. : is a reserved character and is used for options
2045
uint32_t parse_option(const char *origin, OptionString **stmt, char delm)
2130
parse_option(const char *origin, option_string **stmt, char delm)
2048
2133
char *begin_ptr;
2050
uint32_t length= strlen(origin);
2051
uint32_t count= 0; /* We know that there is always one */
2135
option_string **sptr= stmt;
2137
uint length= strlen(origin);
2138
uint count= 0; /* We know that there is always one */
2053
2140
end_ptr= (char *)origin + length;
2056
*stmt= tmp= new OptionString;
2142
tmp= *sptr= (option_string *)my_malloc(sizeof(option_string),
2143
MYF(MY_ZEROFILL|MY_FAE|MY_WME));
2058
2145
for (begin_ptr= (char *)origin;
2059
2146
begin_ptr != end_ptr;
2060
tmp= tmp->getNext())
2062
2149
char buffer[HUGE_STRING_LENGTH];
2063
2150
char *buffer_ptr;
2270
2335
snprintf(label_buffer, HUGE_STRING_LENGTH, "query");
2273
2337
snprintf(buffer, HUGE_STRING_LENGTH,
2274
2338
"%s,%s,%ld.%03ld,%ld.%03ld,%ld.%03ld,%ld.%03ld,%ld.%03ld,"
2275
2339
"%u,%u,%u,%"PRIu64"\n",
2276
con.getEngine() ? con.getEngine() : "", /* Storage engine we ran against */
2340
con->engine ? con->engine : "", /* Storage engine we ran against */
2277
2341
label_buffer, /* Load type */
2278
con.getAvgTiming() / 1000, con.getAvgTiming() % 1000, /* Time to load */
2279
con.getMinTiming() / 1000, con.getMinTiming() % 1000, /* Min time */
2280
con.getMaxTiming() / 1000, con.getMaxTiming() % 1000, /* Max time */
2281
con.getSumOfTime() / 1000, con.getSumOfTime() % 1000, /* Total time */
2282
con.getStdDev() / 1000, con.getStdDev() % 1000, /* Standard Deviation */
2342
con->avg_timing / 1000, con->avg_timing % 1000, /* Time to load */
2343
con->min_timing / 1000, con->min_timing % 1000, /* Min time */
2344
con->max_timing / 1000, con->max_timing % 1000, /* Max time */
2345
con->sum_of_time / 1000, con->sum_of_time % 1000, /* Total time */
2346
con->std_dev / 1000, con->std_dev % 1000, /* Standard Deviation */
2283
2347
iterations, /* Iterations */
2284
con.getUsers(), /* Children used max_timing */
2285
con.getRealUsers(), /* Children used max_timing */
2286
con.getAvgRows() /* Queries run */
2348
con->users, /* Children used max_timing */
2349
con->real_users, /* Children used max_timing */
2350
con->avg_rows /* Queries run */
2288
size_t buff_len= strlen(buffer);
2289
ssize_t write_ret= write(csv_file, (unsigned char*) buffer, buff_len);
2290
if (write_ret != (ssize_t)buff_len)
2292
fprintf(stderr, _("Unable to fully write %"PRIu64" bytes. "
2293
"Could only write %"PRId64"."), (uint64_t)write_ret,
2352
my_write(csv_file, (unsigned char*) buffer, (uint)strlen(buffer), MYF(0));
2299
void generate_stats(Conclusions *con, OptionString *eng, Stats *sptr)
2356
generate_stats(conclusions *con, option_string *eng, stats *sptr)
2304
con->setMinTiming(sptr->getTiming());
2305
con->setMaxTiming(sptr->getTiming());
2306
con->setMinRows(sptr->getRows());
2307
con->setMaxRows(sptr->getRows());
2361
con->min_timing= sptr->timing;
2362
con->max_timing= sptr->timing;
2363
con->min_rows= sptr->rows;
2364
con->max_rows= sptr->rows;
2309
2366
/* At the moment we assume uniform */
2310
con->setUsers(sptr->getUsers());
2311
con->setRealUsers(sptr->getRealUsers());
2312
con->setAvgRows(sptr->getRows());
2367
con->users= sptr->users;
2368
con->real_users= sptr->real_users;
2369
con->avg_rows= sptr->rows;
2314
2371
/* With no next, we know it is the last element that was malloced */
2315
2372
for (ptr= sptr, x= 0; x < iterations; ptr++, x++)
2317
con->setAvgTiming(ptr->getTiming()+con->getAvgTiming());
2374
con->avg_timing+= ptr->timing;
2319
if (ptr->getTiming() > con->getMaxTiming())
2320
con->setMaxTiming(ptr->getTiming());
2321
if (ptr->getTiming() < con->getMinTiming())
2322
con->setMinTiming(ptr->getTiming());
2376
if (ptr->timing > con->max_timing)
2377
con->max_timing= ptr->timing;
2378
if (ptr->timing < con->min_timing)
2379
con->min_timing= ptr->timing;
2324
con->setSumOfTime(con->getAvgTiming());
2325
con->setAvgTiming(con->getAvgTiming()/iterations);
2381
con->sum_of_time= con->avg_timing;
2382
con->avg_timing= con->avg_timing/iterations;
2327
if (eng && eng->getString())
2328
con->setEngine(eng->getString());
2384
if (eng && eng->string)
2385
con->engine= eng->string;
2330
con->setEngine(NULL);
2332
standard_deviation(*con, sptr);
2389
standard_deviation(con, sptr);
2334
2391
/* Now we do the create time operations */
2335
con->setCreateMinTiming(sptr->getCreateTiming());
2336
con->setCreateMaxTiming(sptr->getCreateTiming());
2392
con->create_min_timing= sptr->create_timing;
2393
con->create_max_timing= sptr->create_timing;
2338
2395
/* At the moment we assume uniform */
2339
con->setCreateCount(sptr->getCreateCount());
2396
con->create_count= sptr->create_count;
2341
2398
/* With no next, we know it is the last element that was malloced */
2342
2399
for (ptr= sptr, x= 0; x < iterations; ptr++, x++)
2344
con->setCreateAvgTiming(ptr->getCreateTiming()+con->getCreateAvgTiming());
2346
if (ptr->getCreateTiming() > con->getCreateMaxTiming())
2347
con->setCreateMaxTiming(ptr->getCreateTiming());
2348
if (ptr->getCreateTiming() < con->getCreateMinTiming())
2349
con->setCreateMinTiming(ptr->getCreateTiming());
2351
con->setCreateAvgTiming(con->getCreateAvgTiming()/iterations);
2355
option_cleanup(OptionString *stmt)
2357
OptionString *ptr, *nptr;
2361
for (ptr= stmt; ptr; ptr= nptr)
2363
nptr= ptr->getNext();
2368
void statement_cleanup(Statement *stmt)
2370
Statement *ptr, *nptr;
2374
for (ptr= stmt; ptr; ptr= nptr)
2376
nptr= ptr->getNext();
2381
void slap_close(drizzle_con_st &con)
2383
drizzle_free(drizzle_con_drizzle(&con));
2386
void slap_connect(drizzle_con_st &con, bool connect_to_schema)
2401
con->create_avg_timing+= ptr->create_timing;
2403
if (ptr->create_timing > con->create_max_timing)
2404
con->create_max_timing= ptr->create_timing;
2405
if (ptr->create_timing < con->create_min_timing)
2406
con->create_min_timing= ptr->create_timing;
2408
con->create_avg_timing= con->create_avg_timing/iterations;
2412
option_cleanup(option_string *stmt)
2414
option_string *ptr, *nptr;
2418
for (ptr= stmt; ptr; ptr= nptr)
2430
statement_cleanup(statement *stmt)
2432
statement *ptr, *nptr;
2436
for (ptr= stmt; ptr; ptr= nptr)
2446
slap_close(DRIZZLE *drizzle)
2451
drizzle_close(drizzle);
2455
slap_connect(DRIZZLE *drizzle, bool connect_to_schema)
2388
2457
/* Connect to server */
2389
2458
static uint32_t connection_retry_sleep= 100000; /* Microseconds */
2390
int connect_error= 1;
2391
drizzle_return_t ret;
2392
drizzle_st *drizzle;
2459
int x, connect_error= 1;
2394
2464
if (opt_delayed_start)
2395
usleep(random()%opt_delayed_start);
2397
if ((drizzle= drizzle_create(NULL)) == NULL ||
2398
drizzle_con_add_tcp(drizzle, &con, host.c_str(), opt_drizzle_port,
2400
opt_password.c_str(),
2401
connect_to_schema ? create_schema_string.c_str() : NULL,
2402
use_drizzle_protocol ? DRIZZLE_CON_EXPERIMENTAL : DRIZZLE_CON_MYSQL) == NULL)
2404
fprintf(stderr,"%s: Error creating drizzle object\n", SLAP_NAME);
2408
drizzle_set_context(drizzle, (void*)(connection_count.fetch_and_increment()));
2413
for (uint32_t x= 0; x < 10; x++)
2415
if ((ret= drizzle_con_connect(&con)) == DRIZZLE_RETURN_OK)
2465
my_sleep(random()%opt_delayed_start);
2467
drizzle_create(drizzle);
2470
drizzle_options(drizzle,DRIZZLE_OPT_COMPRESS,NULL);
2472
for (x= 0; x < 10; x++)
2476
if (drizzle_connect(drizzle, host, user, opt_password,
2477
connect_to_schema ? create_schema_string : NULL,
2479
opt_drizzle_unix_port,
2417
2482
/* Connect suceeded */
2418
2483
connect_error= 0;
2421
usleep(connection_retry_sleep);
2486
my_sleep(connection_retry_sleep);
2423
2488
if (connect_error)
2425
fprintf(stderr,"%s: Error when connecting to server: %d %s\n", SLAP_NAME,
2426
ret, drizzle_con_error(&con));
2490
fprintf(stderr,"%s: Error when connecting to server: %d %s\n",
2491
my_progname, drizzle_errno(drizzle), drizzle_error(drizzle));
2431
void standard_deviation(Conclusions &con, Stats *sptr)
2499
standard_deviation (conclusions *con, stats *sptr)
2433
2502
long int sum_of_squares;
2434
2503
double the_catch;
2437
2506
if (iterations == 1 || iterations == 0)
2444
2512
for (ptr= sptr, x= 0, sum_of_squares= 0; x < iterations; ptr++, x++)
2446
2514
long int deviation;
2448
deviation= ptr->getTiming() - con.getAvgTiming();
2516
deviation= ptr->timing - con->avg_timing;
2449
2517
sum_of_squares+= deviation*deviation;
2452
2520
the_catch= sqrt((double)(sum_of_squares/(iterations -1)));
2453
con.setStdDev((long int)the_catch);
2521
con->std_dev= (long int)the_catch;