1
/* Copyright (C) 2006 MySQL AB
3
This program is free software; you can redistribute it and/or modify
4
it under the terms of the GNU General Public License as published by
5
the Free Software Foundation; version 2 of the License.
7
This program is distributed in the hope that it will be useful,
8
but WITHOUT ANY WARRANTY; without even the implied warranty of
9
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
26
#include "drizzled/option.h"
28
#if TIME_WITH_SYS_TIME
29
# include <sys/time.h>
33
# include <sys/time.h>
40
#define TEST_FILENAME "performance_test.az"
42
#define BUFFER_LEN 1024
44
char test_string[BUFFER_LEN];
46
#define ROWS_TO_TEST 2000000LL
49
static long int timedif(struct timeval a, struct timeval b);
50
static int generate_data(uint64_t length);
51
static int read_test(azio_stream *reader_handle, uint64_t rows_to_test_for);
53
int main(int argc, char *argv[])
56
struct timeval start_time, end_time;
59
drizzled::internal::my_init();
65
printf("Performing write() test\n");
66
generate_data(ROWS_TO_TEST);
68
for (method= AZ_METHOD_BLOCK; method < AZ_METHOD_MAX; method++)
71
azio_stream reader_handle;
74
printf("Performing azio_read() test\n");
76
printf("Performing read() test\n");
78
if (!(ret= azopen(&reader_handle, TEST_FILENAME, O_RDONLY,
81
printf("Could not open test file\n");
85
gettimeofday(&start_time, NULL);
86
read_test(&reader_handle, 1044496L);
87
gettimeofday(&end_time, NULL);
88
timing= timedif(end_time, start_time);
89
printf("Time took to read was %ld.%03ld seconds\n", timing / 1000, timing % 1000);
91
azclose(&reader_handle);
94
drizzled::internal::my_end();
99
static int generate_data(uint64_t rows_to_test)
101
azio_stream writer_handle;
104
struct timeval start_time, end_time;
108
if ((stat(TEST_FILENAME, &buf)) == 0)
110
printf("Writer file already available\n");
114
if (!(ret= azopen(&writer_handle, TEST_FILENAME, O_CREAT|O_RDWR|O_TRUNC,
117
printf("Could not create test file\n");
121
gettimeofday(&start_time, NULL);
122
for (x= 0; x < rows_to_test; x++)
124
ret= azwrite_row(&writer_handle, test_string, BUFFER_LEN);
125
if (ret != BUFFER_LEN)
127
printf("Size %u\n", ret);
128
assert(ret != BUFFER_LEN);
130
if ((x % 14031) == 0)
132
azflush(&writer_handle, Z_SYNC_FLUSH);
136
We put the flush in just to be honest with write speed, normally azclose
139
azflush(&writer_handle, Z_SYNC_FLUSH);
140
gettimeofday(&end_time, NULL);
141
timing= timedif(end_time, start_time);
143
azclose(&writer_handle);
145
printf("Time took to write was %ld.%03ld seconds\n", timing / 1000, timing % 1000);
150
static int read_test(azio_stream *reader_handle, uint64_t rows_to_test_for)
152
uint64_t read_length= 0;
157
azread_init(reader_handle);
158
while ((ret= azread_row(reader_handle, &error)))
162
fprintf(stderr, "Got an error while reading at row %"PRIu64"\n", count);
167
assert(!memcmp(reader_handle->row_ptr, test_string, ret));
168
if (ret != BUFFER_LEN)
170
printf("Size %u\n", ret);
171
assert(ret != BUFFER_LEN);
175
assert(rows_to_test_for == rows_to_test_for);
180
static long int timedif(struct timeval a, struct timeval b)
184
us = a.tv_usec - b.tv_usec;
186
s = a.tv_sec - b.tv_sec;