~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2006 MySQL AB
2
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.
6
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.
11
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 */
15
16
#include "azio.h"
17
#include <string.h>
18
#include <assert.h>
19
#include <stdio.h>
20
#include <stdlib.h>
21
#include <string.h>
212.5.21 by Monty Taylor
Moved my_getopt.h
22
#include <mysys/my_getopt.h>
1 by brian
clean slate
23
24
#define ARCHIVE_ROW_HEADER_SIZE 4
25
26
#define COMMENT_STRING "Your bases"
27
#define FRM_STRING "My bases"
28
#define TEST_FILENAME "performance_test.az"
29
#define TEST_STRING_INIT "YOU don't know about me without you have read a book by the name of The Adventures of Tom Sawyer; but that ain't no matter.  That book was made by Mr. Mark Twain, and he told the truth, mainly.  There was things which he stretched, but mainly he told the truth.  That is nothing.  I never seen anybody but lied one time or another, without it was Aunt Polly, or the widow, or maybe Mary.  Aunt Polly--Tom's Aunt Polly, she is--and Mary, and the Widow Douglas is all told about in that book, which is mostly a true book, with some stretchers, as I said before.  Now the way that the book winds up is this:  Tom and me found the money that the robbers hid in the cave, and it made us rich.  We got six thousand dollars apiece--all gold.  It was an awful sight of money when it was piled up.  Well, Judge Thatcher he took it and put it out at interest, and it fetched us a dollar a day apiece all the year round --more than a body could tell what to do with.  The Widow Douglas she took me for her son, and allowed she would..."
30
#define TEST_LOOP_NUM 100
31
32
33
#define ARCHIVE_ROW_HEADER_SIZE 4
34
35
#define BUFFER_LEN 1024
36
37
char test_string[BUFFER_LEN];
38
80.1.1 by Brian Aker
LL() cleanup
39
#define ROWS_TO_TEST 2000000LL
1 by brian
clean slate
40
41
/* prototypes */
42
long int timedif(struct timeval a, struct timeval b);
43
int generate_data(unsigned long long length);
44
int read_test(azio_stream *reader_handle, unsigned long long rows_to_test_for);
45
46
int main(int argc, char *argv[])
47
{
48
  unsigned int method;
49
  struct timeval start_time, end_time;
50
  long int timing;
51
52
  my_init();
53
  MY_INIT(argv[0]);
54
55
  if (argc != 1)
56
    return 1;
57
58
  printf("Performing write() test\n");
59
  generate_data(ROWS_TO_TEST);
60
61
  for (method= AZ_METHOD_BLOCK; method < AZ_METHOD_MAX; method++)
62
  {
63
    unsigned int ret;
64
    azio_stream reader_handle;
65
66
    if (method)
67
      printf("Performing aio_read() test\n");
68
    else
69
      printf("Performing read() test\n");
70
71
    if (!(ret= azopen(&reader_handle, TEST_FILENAME, O_RDONLY|O_BINARY,
72
                    method)))
73
    {
74
      printf("Could not open test file\n");
75
      return 0;
76
    }
77
78
    gettimeofday(&start_time, NULL);
79
    read_test(&reader_handle, 1044496L);
80
    gettimeofday(&end_time, NULL);
81
    timing= timedif(end_time, start_time);
82
    printf("Time took to read was %ld.%03ld seconds\n", timing / 1000, timing % 1000);
83
84
    azclose(&reader_handle);
85
  }
86
87
  my_end(0);
88
89
  return 0;
90
}
91
92
int generate_data(unsigned long long rows_to_test)
93
{
94
  azio_stream writer_handle;
95
  unsigned long long x;
96
  unsigned int ret;
97
  struct timeval start_time, end_time;
98
  long int timing;
99
  struct stat buf;
100
101
  if ((stat(TEST_FILENAME, &buf)) == 0)
102
  {
103
    printf("Writer file already available\n");
104
    return 0;
105
  }
106
107
  if (!(ret= azopen(&writer_handle, TEST_FILENAME, O_CREAT|O_RDWR|O_TRUNC|O_BINARY,
108
                    AZ_METHOD_BLOCK)))
109
  {
110
    printf("Could not create test file\n");
111
    exit(1);
112
  }
113
114
  gettimeofday(&start_time, NULL);
115
  for (x= 0; x < rows_to_test; x++)
116
  {
117
    ret= azwrite_row(&writer_handle, test_string, BUFFER_LEN);
118
    if (ret != BUFFER_LEN)
119
    {
120
      printf("Size %u\n", ret);
121
      assert(ret != BUFFER_LEN);
122
    }
123
    if ((x % 14031) == 0)
124
    {
125
      azflush(&writer_handle,  Z_SYNC_FLUSH);
126
    }
127
  }
128
  /* 
129
    We put the flush in just to be honest with write speed, normally azclose 
130
    would be fine.
131
  */
132
  azflush(&writer_handle,  Z_SYNC_FLUSH);
133
  gettimeofday(&end_time, NULL);
134
  timing= timedif(end_time, start_time);
135
136
  azclose(&writer_handle);
137
138
  printf("Time took to write was %ld.%03ld seconds\n", timing / 1000, timing % 1000);
139
140
  return 0;
141
}
142
143
int read_test(azio_stream *reader_handle, unsigned long long rows_to_test_for)
144
{
145
  unsigned long long read_length= 0;
146
  unsigned long long count= 0;
147
  unsigned int ret;
148
  int error;
149
150
  azread_init(reader_handle);
151
  while ((ret= azread_row(reader_handle, &error)))
152
  {
153
    if (error)
154
    {
155
      fprintf(stderr, "Got an error while reading at row %llu\n", count);
156
      exit(1);
157
    }
158
159
    read_length+= ret;
160
    assert(!memcmp(reader_handle->row_ptr, test_string, ret));
161
    if (ret != BUFFER_LEN)
162
    {
163
      printf("Size %u\n", ret);
164
      assert(ret != BUFFER_LEN);
165
    }
166
    count++;
167
  }
168
  assert(rows_to_test_for == rows_to_test_for);
169
170
  return 0;
171
}
172
173
long int timedif(struct timeval a, struct timeval b)
174
{
175
    register int us, s;
176
 
177
    us = a.tv_usec - b.tv_usec;
178
    us /= 1000;
179
    s = a.tv_sec - b.tv_sec;
180
    s *= 1000;
181
    return s + us;
182
}