fork3_test.pl
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/usr/bin/perl -w
  2. #
  3. # This is a test with uses 4 processes to insert, delete , check and select
  4. #
  5. $opt_loop_count=200000; # Change this to make test harder/easier
  6. ##################### Standard benchmark inits ##############################
  7. use DBI;
  8. use Getopt::Long;
  9. use Benchmark;
  10. package main;
  11. $opt_skip_create=$opt_skip_in=$opt_verbose=$opt_fast_insert=
  12.   $opt_lock_tables=$opt_debug=$opt_skip_delete=$opt_fast=$opt_force=0;
  13. $opt_host=""; $opt_db="test";
  14. GetOptions("host=s","db=s","loop-count=i","skip-create","skip-in","skip-delete",
  15. "verbose","fast-insert","lock-tables","debug","fast","force") || die "Aborted";
  16. $opt_verbose=$opt_debug=$opt_lock_tables=$opt_fast_insert=$opt_fast=$opt_skip_in=$opt_force=undef;  # Ignore warnings from these
  17. print "Testing 4 multiple connections to a server with 1 insert, 1 deleten";
  18. print "1 select and one repair/check connection.n";
  19. $firsttable  = "bench_f1";
  20. ####  
  21. ####  Start timeing and start test
  22. ####
  23. $start_time=new Benchmark;
  24. if (!$opt_skip_create)
  25. {
  26.   $dbh = DBI->connect("DBI:mysql:$opt_db:$opt_host",
  27.       $opt_user, $opt_password,
  28.     { PrintError => 0}) || die $DBI::errstr;
  29.   $dbh->do("drop table if exists $firsttable");
  30.   print "Creating table $firsttable in database $opt_dbn";
  31.   $dbh->do("create table $firsttable (id int(6) not null, info varchar(32), marker char(1), primary key(id))") || die $DBI::errstr;
  32.   $dbh->disconnect; $dbh=0; # Close handler
  33. }
  34. $|= 1; # Autoflush
  35. ####
  36. #### Start the tests
  37. ####
  38. test_insert() if (($pid=fork()) == 0); $work{$pid}="insert";
  39. test_delete() if (($pid=fork()) == 0); $work{$pid}="delete";
  40. test_select() if (($pid=fork()) == 0); $work{$pid}="select1";
  41. repair_and_check() if (($pid=fork()) == 0); $work{$pid}="repair/check";
  42. $errors=0;
  43. while (($pid=wait()) != -1)
  44. {
  45.   $ret=$?/256;
  46.   print "thread '" . $work{$pid} . "' finnished with exit code $retn";
  47.   $errors++ if ($ret != 0);
  48. }
  49. if (!$opt_skip_delete && !$errors)
  50. {
  51.   $dbh = DBI->connect("DBI:mysql:$opt_db:$opt_host",
  52.       $opt_user, $opt_password,
  53.     { PrintError => 0}) || die $DBI::errstr;
  54.   $dbh->do("drop table $firsttable");
  55.   $dbh->disconnect; $dbh=0; # Close handler
  56. }
  57. print ($errors ? "Test failedn" :"Test okn");
  58. $end_time=new Benchmark;
  59. print "Total time: " .
  60.   timestr(timediff($end_time, $start_time),"noc") . "n";
  61. exit(0);
  62. #
  63. # Insert records in the table
  64. sub test_insert
  65. {
  66.   my ($dbh,$i,$sth);
  67.   $dbh = DBI->connect("DBI:mysql:$opt_db:$opt_host",
  68.       $opt_user, $opt_password,
  69.     { PrintError => 0}) || die $DBI::errstr;
  70.   for ($i=0 ; $i < $opt_loop_count; $i++)
  71.   {
  72.     $sth=$dbh->do("insert into $firsttable values ($i,'This is entry $i','')") || die "Got error on insert: $Mysql::db_errstrn";
  73.     $sth=0;
  74.   }
  75.   $dbh->disconnect; $dbh=0;
  76.   print "Test_insert: Inserted $i rowsn";
  77.   exit(0);
  78. }
  79. sub test_delete
  80. {
  81.   my ($dbh,$i,$sth,@row);
  82.   $dbh = DBI->connect("DBI:mysql:$opt_db:$opt_host",
  83.       $opt_user, $opt_password,
  84.     { PrintError => 0}) || die $DBI::errstr;
  85.   for ($i=0 ; $i < $opt_loop_count ; $i++)
  86.   {
  87.     sleep(5);
  88.     if ($opt_lock_tables)
  89.     {
  90.       $sth=$dbh->do("lock tables $firsttable WRITE") || die "Got error on lock tables $firsttable: $Mysql::db_errstrn";
  91.     }
  92.     $sth=$dbh->prepare("select count(*) from $firsttable") || die "Got error on select from $firsttable: $dbh->errstrn";
  93.     $sth->execute || die $dbh->errstr;
  94.     if ((@row = $sth->fetchrow_array()))
  95.     {
  96.       last if (!$row[0]); # Insert thread is probably ready
  97.     }
  98.     $sth=$dbh->do("delete from $firsttable") || die "Got error on delete from $firsttable: $dbh->errstr;n";
  99.   }
  100.   $sth=0;
  101.   $dbh->disconnect; $dbh=0;
  102.   print "Test_delete: Deleted all rows $i timesn";
  103.   exit(0);
  104. }
  105. #
  106. # select records
  107. #
  108. sub test_select
  109. {
  110.   my ($dbh,$i,$sth,@row);
  111.   $dbh = DBI->connect("DBI:mysql:$opt_db:$opt_host",
  112.       $opt_user, $opt_password,
  113.     { PrintError => 0}) || die $DBI::errstr;
  114.   for ($i=0 ; $i < $opt_loop_count ; $i++)
  115.   {
  116.     $sth=$dbh->prepare("select count(*) from $firsttable") || die "Got error on select from $firsttable: $dbh->errstr;n";
  117.     $sth->execute || die $dbh->errstr;
  118.     @row = $sth->fetchrow_array();
  119.     $sth=0;
  120.   }
  121.   $dbh->disconnect; $dbh=0;
  122.   print "Test_select: okn";
  123.   exit(0);
  124. }
  125. sub repair_and_check
  126. {
  127.   my ($dbh,$row,$found1,$last_found1,$i,$type, $table);
  128.   $found1=0; $last_found1= -1;
  129.   $dbh = DBI->connect("DBI:mysql:$opt_db:$opt_host",
  130.       $opt_user, $opt_password,
  131.     { PrintError => 0}) || die $DBI::errstr;
  132.   for ($i=0; $found1 != $last_found1 ; $i++)
  133.   {
  134.     $type=($i & 2) ? "repair" : "check";
  135.     $table=$firsttable;
  136.     $last_found1=$found1;
  137.     $sth=$dbh->prepare("$type table $table") || die "Got error on prepare: $dbh->errstrn";
  138.     $sth->execute || die $dbh->errstr;    
  139.     while (($row=$sth->fetchrow_arrayref))
  140.     {
  141.       if ($row->[3] ne "OK")
  142.       {
  143. print "Got error " . $row->[3] . " when doing $type on $tablen";
  144. exit(1);
  145.       }
  146.     }
  147.     $sth=$dbh->prepare("select count(*) from $table") || die "Got error on prepare: $dbh->errstrn";
  148.     $sth->execute || die $dbh->errstr;
  149.     @row = $sth->fetchrow_array();
  150.     $found1= $row[0];
  151.     $sth->finish;
  152.     sleep(3);
  153.   }
  154.   $dbh->disconnect; $dbh=0;
  155.   print "check/repair: Did $i repair/checksn";
  156.   exit(0);
  157. }