2013-04-17 00:00:59 -04:00
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
# ident "$Id$"
# ident "Copyright (c) 2007-2012 Tokutek Inc. All rights reserved."
# ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11 / 760379 and to the patents and / or patent applications resulting from it."
2013-04-17 00:00:47 -04:00
# include <stdio.h>
# include <fcntl.h>
# include <errno.h>
# include <string.h>
# include <stdlib.h>
2013-04-17 00:01:22 -04:00
# include "test.h"
2013-04-17 00:00:47 -04:00
# include "toku_time.h"
int verbose = 0 ;
static void
2013-04-17 00:00:58 -04:00
create_files ( int N , int fds [ /*N*/ ] ) {
2013-04-17 00:00:47 -04:00
int r ;
int i ;
char name [ 30 ] ;
for ( i = 0 ; i < N ; i + + ) {
snprintf ( name , sizeof ( name ) , " %d " , i ) ;
fds [ i ] = open ( name , O_CREAT | O_WRONLY , 0644 ) ;
if ( fds [ i ] < 0 ) {
2013-04-17 00:00:58 -04:00
r = get_error_errno ( ) ;
2013-04-17 00:00:47 -04:00
CKERR ( r ) ;
}
}
}
static void
2013-04-17 00:00:58 -04:00
write_to_files ( int N , int bytes , int fds [ /*N*/ ] ) {
2013-04-17 00:00:47 -04:00
char junk [ bytes ] ;
int i ;
for ( i = 0 ; i < bytes ; i + + ) {
junk [ i ] = random ( ) & 0xFF ;
}
int r ;
for ( i = 0 ; i < N ; i + + ) {
r = toku_os_write ( fds [ i ] , junk , bytes ) ;
CKERR ( r ) ;
}
}
static void
2013-04-17 00:00:58 -04:00
time_many_fsyncs_one_file ( int N , int bytes , int fds [ /*N*/ ] ) {
2013-04-17 00:00:47 -04:00
if ( verbose > 1 ) {
printf ( " Starting %s \n " , __FUNCTION__ ) ;
fflush ( stdout ) ;
}
struct timeval begin ;
struct timeval after_first ;
struct timeval end ;
write_to_files ( 1 , bytes , fds ) ;
if ( verbose > 1 ) {
printf ( " Done writing to os buffers \n " ) ;
fflush ( stdout ) ;
}
int i ;
int r ;
r = gettimeofday ( & begin , NULL ) ;
CKERR ( r ) ;
r = fsync ( fds [ 0 ] ) ;
CKERR ( r ) ;
r = gettimeofday ( & after_first , NULL ) ;
CKERR ( r ) ;
for ( i = 0 ; i < N ; i + + ) {
r = fsync ( fds [ 0 ] ) ;
CKERR ( r ) ;
}
r = gettimeofday ( & end , NULL ) ;
CKERR ( r ) ;
if ( verbose ) {
printf ( " Fsyncing one file %d times: \n "
" \t First fsync took: [%f] seconds \n "
" \t Remaining %d fsyncs took additional: [%f] seconds \n "
" \t Total time [%f] seconds \n " ,
N + 1 ,
toku_tdiff ( & after_first , & begin ) ,
N ,
toku_tdiff ( & end , & after_first ) ,
toku_tdiff ( & end , & begin ) ) ;
fflush ( stdout ) ;
}
}
static void
2013-04-17 00:00:58 -04:00
time_fsyncs_many_files ( int N , int bytes , int fds [ /*N*/ ] ) {
2013-04-17 00:00:47 -04:00
if ( verbose > 1 ) {
printf ( " Starting %s \n " , __FUNCTION__ ) ;
fflush ( stdout ) ;
}
write_to_files ( N , bytes , fds ) ;
if ( verbose > 1 ) {
printf ( " Done writing to os buffers \n " ) ;
fflush ( stdout ) ;
}
struct timeval begin ;
struct timeval after_first ;
struct timeval end ;
int i ;
int r ;
r = gettimeofday ( & begin , NULL ) ;
CKERR ( r ) ;
for ( i = 0 ; i < N ; i + + ) {
r = fsync ( fds [ i ] ) ;
CKERR ( r ) ;
if ( i = = 0 ) {
r = gettimeofday ( & after_first , NULL ) ;
CKERR ( r ) ;
}
if ( verbose > 2 ) {
printf ( " Done fsyncing %d \n " , i ) ;
fflush ( stdout ) ;
}
}
r = gettimeofday ( & end , NULL ) ;
CKERR ( r ) ;
if ( verbose ) {
printf ( " Fsyncing %d files: \n "
" \t First fsync took: [%f] seconds \n "
" \t Remaining %d fsyncs took additional: [%f] seconds \n "
" \t Total time [%f] seconds \n " ,
N ,
toku_tdiff ( & after_first , & begin ) ,
N - 1 ,
toku_tdiff ( & end , & after_first ) ,
toku_tdiff ( & end , & begin ) ) ;
fflush ( stdout ) ;
}
}
# if !TOKU_WINDOWS
//sync() does not appear to have an analogue on windows.
static void
2013-04-17 00:00:58 -04:00
time_sync_fsyncs_many_files ( int N , int bytes , int fds [ /*N*/ ] ) {
2013-04-17 00:00:47 -04:00
if ( verbose > 1 ) {
printf ( " Starting %s \n " , __FUNCTION__ ) ;
fflush ( stdout ) ;
}
//TODO: timing
write_to_files ( N , bytes , fds ) ;
if ( verbose > 1 ) {
printf ( " Done writing to os buffers \n " ) ;
fflush ( stdout ) ;
}
int i ;
int r ;
struct timeval begin ;
struct timeval after_sync ;
struct timeval end ;
r = gettimeofday ( & begin , NULL ) ;
CKERR ( r ) ;
sync ( ) ;
r = gettimeofday ( & after_sync , NULL ) ;
CKERR ( r ) ;
if ( verbose > 1 ) {
printf ( " Done with sync() \n " ) ;
fflush ( stdout ) ;
}
for ( i = 0 ; i < N ; i + + ) {
r = fsync ( fds [ i ] ) ;
CKERR ( r ) ;
if ( verbose > 2 ) {
printf ( " Done fsyncing %d \n " , i ) ;
fflush ( stdout ) ;
}
}
r = gettimeofday ( & end , NULL ) ;
CKERR ( r ) ;
if ( verbose ) {
printf ( " sync() then fsyncing %d files: \n "
" \t sync() took: [%f] seconds \n "
" \t Remaining %d fsyncs took additional: [%f] seconds \n "
" \t Total time [%f] seconds \n " ,
N ,
toku_tdiff ( & after_sync , & begin ) ,
N ,
toku_tdiff ( & end , & after_sync ) ,
toku_tdiff ( & end , & begin ) ) ;
fflush ( stdout ) ;
}
}
# endif
int test_main ( int argc , char * const argv [ ] ) {
int i ;
int r ;
int N = 1000 ;
int bytes = 4096 ;
for ( i = 1 ; i < argc ; i + + ) {
if ( strcmp ( argv [ i ] , " -v " ) = = 0 ) {
if ( verbose < 0 ) verbose = 0 ;
verbose + + ;
continue ;
}
if ( strcmp ( argv [ i ] , " -q " ) = = 0 ) {
verbose = 0 ;
continue ;
}
if ( strcmp ( argv [ i ] , " -b " ) = = 0 ) {
i + + ;
if ( i > = argc ) exit ( 1 ) ;
bytes = atoi ( argv [ i ] ) ;
if ( bytes < = 0 ) exit ( 1 ) ;
continue ;
}
if ( strcmp ( argv [ i ] , " -n " ) = = 0 ) {
i + + ;
if ( i > = argc ) exit ( 1 ) ;
N = atoi ( argv [ i ] ) ;
if ( N < = 0 ) exit ( 1 ) ;
continue ;
}
}
r = system ( " rm -rf " ENVDIR ) ;
CKERR ( r ) ;
r = toku_os_mkdir ( ENVDIR , S_IRWXU + S_IRWXG + S_IRWXO ) ;
CKERR ( r ) ;
r = chdir ( ENVDIR ) ;
CKERR ( r ) ;
int fds [ N ] ;
create_files ( N , fds ) ;
time_many_fsyncs_one_file ( N , bytes , fds ) ;
time_fsyncs_many_files ( N , bytes , fds ) ;
# if !TOKU_WINDOWS
time_sync_fsyncs_many_files ( N , bytes , fds ) ;
# endif
return 0 ;
}