~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 <string.h>
212.5.21 by Monty Taylor
Moved my_getopt.h
21
#include <mysys/my_getopt.h>
1 by brian
clean slate
22
481.1.15 by Monty Taylor
Removed time.h and sys/time.h from global.h.
23
#if TIME_WITH_SYS_TIME
24
# include <sys/time.h>
25
# include <time.h>
26
#else
27
# if HAVE_SYS_TIME_H
28
#  include <sys/time.h>
29
# else
30
#  include <time.h>
31
# endif
32
#endif  
33
1 by brian
clean slate
34
#define ARCHIVE_ROW_HEADER_SIZE 4
35
36
#define COMMENT_STRING "Your bases"
37
#define FRM_STRING "My bases"
38
#define TEST_FILENAME "test.az"
39
#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..."
40
#define TEST_LOOP_NUM 100
41
42
#define BUFFER_LEN 1024
43
44
char test_string[BUFFER_LEN];
45
481.1.2 by Monty Taylor
Replaced all unsigned long long with uint64_t.
46
uint64_t row_lengths[]= {536870912LL, 2147483648LL, 4294967296LL, 8589934592LL};
47
uint64_t row_numbers[]= {524288LL, 2097152LL, 4194304LL, 8388608LL};
1 by brian
clean slate
48
49
/* prototypes */
481.1.2 by Monty Taylor
Replaced all unsigned long long with uint64_t.
50
int size_test(uint64_t length, uint64_t rows_to_test_for, az_method method);
1 by brian
clean slate
51
int small_test(az_method method);
52
long int timedif(struct timeval a, struct timeval b);
53
54
55
int main(int argc, char *argv[])
56
{
57
  az_method method;
58
  unsigned int x;
59
60
  if (argc > 2)
61
    return 0;
62
63
  my_init();
64
65
  MY_INIT(argv[0]);
66
67
  for (method= AZ_METHOD_BLOCK; method < AZ_METHOD_MAX; method++)
68
  {
69
    struct timeval start_time, end_time;
70
    long int timing;
71
72
    printf("Testing %d\n", (int)method);
73
    gettimeofday(&start_time, NULL);
74
    small_test(method);
75
    gettimeofday(&end_time, NULL);
76
    timing= timedif(end_time, start_time);
77
    printf("\tTime took %ld.%03ld seconds\n\n", timing / 1000, timing % 1000);
78
  }
79
80
  if (argc > 1)
81
    return 0;
82
83
  /* Start size tests */
84
  printf("About to run .5/2/4/8 gig tests now, you may want to hit CTRL-C\n");
85
  for (x= 0; x < 4; x++) /* 4 is the current size of the array we use */
86
  {
87
    for (method= AZ_METHOD_BLOCK; method < AZ_METHOD_MAX; method++)
88
    {
89
      struct timeval start_time, end_time;
90
      long int timing;
91
481.1.2 by Monty Taylor
Replaced all unsigned long long with uint64_t.
92
      printf("Testing %"PRIu64" bytes with (%d)\n", row_lengths[x], (int)method);
1 by brian
clean slate
93
      gettimeofday(&start_time, NULL);
94
      size_test(row_lengths[x], row_numbers[x], method);
95
      gettimeofday(&end_time, NULL);
96
      timing= timedif(end_time, start_time);
97
      printf("\tTime took %ld.%03ld seconds\n\n", timing / 1000, timing % 1000);
98
    }
99
  }
100
101
  my_end(0);
102
103
  return 0;
104
}
105
106
int small_test(az_method method)
107
{
108
  unsigned int ret;
109
  char comment_str[10];
110
111
  int error;
112
  unsigned int x;
113
  int written_rows= 0;
114
  azio_stream writer_handle, reader_handle;
115
116
  memcpy(test_string, TEST_STRING_INIT, 1024);
117
118
  unlink(TEST_FILENAME);
119
120
  if (!(ret= azopen(&writer_handle, TEST_FILENAME, O_CREAT|O_RDWR|O_BINARY,
121
                    method)))
122
  {
123
    printf("Could not create test file\n");
124
    return 0;
125
  }
126
127
  azwrite_comment(&writer_handle, (char *)COMMENT_STRING, 
128
                  (unsigned int)strlen(COMMENT_STRING));
129
  azread_comment(&writer_handle, comment_str);
130
  assert(!memcmp(COMMENT_STRING, comment_str,
131
                strlen(COMMENT_STRING)));
132
133
  azwrite_frm(&writer_handle, (char *)FRM_STRING, 
134
                  (unsigned int)strlen(FRM_STRING));
135
  azread_frm(&writer_handle, comment_str);
136
  assert(!memcmp(FRM_STRING, comment_str,
137
                strlen(FRM_STRING)));
138
139
140
  if (!(ret= azopen(&reader_handle, TEST_FILENAME, O_RDONLY|O_BINARY,
141
                    method)))
142
  {
143
    printf("Could not open test file\n");
144
    return 0;
145
  }
146
147
  assert(reader_handle.rows == 0);
148
  assert(reader_handle.auto_increment == 0);
149
  assert(reader_handle.check_point == 0);
150
  assert(reader_handle.forced_flushes == 0);
151
  assert(reader_handle.dirty == AZ_STATE_DIRTY);
152
153
  for (x= 0; x < TEST_LOOP_NUM; x++)
154
  {
155
    ret= azwrite_row(&writer_handle, test_string, BUFFER_LEN);
156
    assert(ret == BUFFER_LEN);
157
    written_rows++;
158
  }
159
  azflush(&writer_handle,  Z_SYNC_FLUSH);
160
161
  azread_comment(&writer_handle, comment_str);
162
  assert(!memcmp(COMMENT_STRING, comment_str,
163
                strlen(COMMENT_STRING)));
164
165
  /* Lets test that our internal stats are good */
166
  assert(writer_handle.rows == TEST_LOOP_NUM);
167
168
  /* Reader needs to be flushed to make sure it is up to date */
169
  azflush(&reader_handle,  Z_SYNC_FLUSH);
170
  assert(reader_handle.rows == TEST_LOOP_NUM);
171
  assert(reader_handle.auto_increment == 0);
172
  assert(reader_handle.check_point == 1269);
173
  assert(reader_handle.forced_flushes == 1);
174
  assert(reader_handle.comment_length == 10);
175
  assert(reader_handle.dirty == AZ_STATE_SAVED);
176
177
  writer_handle.auto_increment= 4;
178
  azflush(&writer_handle, Z_SYNC_FLUSH);
179
  assert(writer_handle.rows == TEST_LOOP_NUM);
180
  assert(writer_handle.auto_increment == 4);
181
  assert(writer_handle.check_point == 1269);
182
  assert(writer_handle.forced_flushes == 2);
183
  assert(writer_handle.dirty == AZ_STATE_SAVED);
184
185
  azclose(&reader_handle);
186
187
  if (!(ret= azopen(&reader_handle, TEST_FILENAME, O_RDONLY|O_BINARY,
188
                    method)))
189
  {
190
    printf("Could not open test file\n");
191
    return 0;
192
  }
193
194
195
  /* Read the original data */
196
  azread_init(&reader_handle);
197
  for (x= 0; x < writer_handle.rows; x++)
198
  {
199
    ret= azread_row(&reader_handle, &error);
200
    assert(!error);
201
    assert(ret == BUFFER_LEN);
202
    assert(!memcmp(reader_handle.row_ptr, test_string, ret));
203
  }
204
  assert(writer_handle.rows == TEST_LOOP_NUM);
205
206
207
  /* Test here for falling off the planet */
208
209
  /* Final Write before closing */
210
  ret= azwrite_row(&writer_handle, test_string, BUFFER_LEN);
211
  assert(ret == BUFFER_LEN);
212
213
  /* We don't use FINISH, but I want to have it tested */
214
  azflush(&writer_handle,  Z_FINISH);
215
216
  assert(writer_handle.rows == TEST_LOOP_NUM+1);
217
218
  /* Read final write */
219
  azread_init(&reader_handle);
220
  for (x= 0; x < writer_handle.rows; x++)
221
  {
222
    ret= azread_row(&reader_handle, &error);
223
    assert(ret == BUFFER_LEN);
224
    assert(!error);
225
    assert(!memcmp(reader_handle.row_ptr, test_string, ret));
226
  }
227
228
229
  azclose(&writer_handle);
230
231
232
  /* Rewind and full test */
233
  azread_init(&reader_handle);
234
  for (x= 0; x < writer_handle.rows; x++)
235
  {
236
    ret= azread_row(&reader_handle, &error);
237
    assert(ret == BUFFER_LEN);
238
    assert(!error);
239
    assert(!memcmp(reader_handle.row_ptr, test_string, ret));
240
  }
241
242
  if (!(ret= azopen(&writer_handle, TEST_FILENAME, O_RDWR|O_BINARY, method)))
243
  {
244
    printf("Could not open file (%s) for appending\n", TEST_FILENAME);
245
    return 0;
246
  }
247
  ret= azwrite_row(&writer_handle, test_string, BUFFER_LEN);
248
  assert(ret == BUFFER_LEN);
249
  azflush(&writer_handle,  Z_SYNC_FLUSH);
250
  azflush(&reader_handle,  Z_SYNC_FLUSH);
251
252
  /* Rewind and full test */
253
  azread_init(&reader_handle);
254
  for (x= 0; x < writer_handle.rows; x++)
255
  {
256
    ret= azread_row(&reader_handle, &error);
257
    assert(!error);
258
    assert(ret == BUFFER_LEN);
259
    assert(!memcmp(reader_handle.row_ptr, test_string, ret));
260
  }
261
262
  /* Reader needs to be flushed to make sure it is up to date */
263
  azflush(&reader_handle,  Z_SYNC_FLUSH);
264
  assert(reader_handle.rows == 102);
265
  assert(reader_handle.auto_increment == 4);
266
  assert(reader_handle.check_point == 1829);
267
  assert(reader_handle.forced_flushes == 4);
268
  assert(reader_handle.dirty == AZ_STATE_SAVED);
269
270
  azflush(&writer_handle, Z_SYNC_FLUSH);
271
  assert(writer_handle.rows == reader_handle.rows);
272
  assert(writer_handle.auto_increment == reader_handle.auto_increment);
273
  assert(writer_handle.check_point == reader_handle.check_point);
274
  /* This is +1 because  we do a flush right before we read */
275
  assert(writer_handle.forced_flushes == reader_handle.forced_flushes + 1);
276
  assert(writer_handle.dirty == reader_handle.dirty);
277
278
  azclose(&writer_handle);
279
  azclose(&reader_handle);
280
  unlink(TEST_FILENAME);
281
282
  return 0;
283
}
284
481.1.2 by Monty Taylor
Replaced all unsigned long long with uint64_t.
285
int size_test(uint64_t length, uint64_t rows_to_test_for, 
1 by brian
clean slate
286
              az_method method)
287
{
288
  azio_stream writer_handle, reader_handle;
481.1.2 by Monty Taylor
Replaced all unsigned long long with uint64_t.
289
  uint64_t write_length;
290
  uint64_t read_length;
291
  uint64_t count;
1 by brian
clean slate
292
  unsigned int ret;
293
  int error;
294
  int x;
295
296
  if (!(ret= azopen(&writer_handle, TEST_FILENAME, 
297
                    O_CREAT|O_RDWR|O_TRUNC|O_BINARY,
298
                    method)))
299
  {
300
    printf("Could not create test file\n");
301
    exit(1);
302
  }
303
304
  for (count= 0, write_length= 0; write_length < length ; 
305
       write_length+= ret)
306
  {
307
    count++;
308
    ret= azwrite_row(&writer_handle, test_string, BUFFER_LEN);
309
    if (ret != BUFFER_LEN)
310
    {
311
      printf("Size %u\n", ret);
312
      assert(ret != BUFFER_LEN);
313
    }
314
    if ((write_length % 14031) == 0)
315
    {
316
      azflush(&writer_handle,  Z_SYNC_FLUSH);
317
    }
318
  }
319
  assert(write_length == count * BUFFER_LEN); /* Number of rows time BUFFER_LEN */
320
  azflush(&writer_handle,  Z_SYNC_FLUSH);
321
322
  if (!(ret= azopen(&reader_handle, TEST_FILENAME, O_RDONLY|O_BINARY,
323
                    method)))
324
  {
325
    printf("Could not open test file\n");
326
    exit(1);
327
  }
328
329
  /* We do a double loop to test speed */
330
  for (x= 0, read_length= 0; x < 2; x++, read_length= 0)
331
  {
481.1.2 by Monty Taylor
Replaced all unsigned long long with uint64_t.
332
    uint64_t count;
1 by brian
clean slate
333
334
    azread_init(&reader_handle);
335
    for (count= 0; count < writer_handle.rows; count++)
336
    {
337
      ret= azread_row(&reader_handle, &error);
338
      read_length+= ret;
339
      assert(!memcmp(reader_handle.row_ptr, test_string, ret));
340
      if (ret != BUFFER_LEN)
341
      {
342
        printf("Size %u\n", ret);
343
        assert(ret != BUFFER_LEN);
344
      }
345
    }
346
    azread_init(&reader_handle);
347
348
    assert(read_length == write_length);
349
    assert(writer_handle.rows == rows_to_test_for);
350
  }
351
  azclose(&writer_handle);
352
  azclose(&reader_handle);
353
354
  unlink(TEST_FILENAME);
355
356
  return 0;
357
}
358
359
long int timedif(struct timeval a, struct timeval b)
360
{
361
    register int us, s;
362
 
363
    us = a.tv_usec - b.tv_usec;
364
    us /= 1000;
365
    s = a.tv_sec - b.tv_sec;
366
    s *= 1000;
367
    return s + us;
368
}