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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: sdbtest002.tcl,v 11.19 2000/08/25 14:21:53 sue Exp $
  7. #
  8. # Sub DB All-Method Test 2
  9. # Make several subdb's of different access methods all in one DB.
  10. # Fork of some child procs to each manipulate one subdb and when
  11. # they are finished, verify the contents of the databases.
  12. # Use the first 10,000 entries from the dictionary.
  13. # Insert each with self as key and data; retrieve each.
  14. # After all are entered, retrieve all; compare output to original.
  15. # Close file, reopen, do retrieve and re-verify.
  16. proc subdbtest002 { {nentries 10000} } {
  17. source ./include.tcl
  18. puts "Subdbtest002: many different subdb access methods in one"
  19. # Create the database and open the dictionary
  20. set testfile $testdir/subdbtest002.db
  21. set t1 $testdir/t1
  22. set t2 $testdir/t2
  23. set t3 $testdir/t3
  24. set t4 $testdir/t4
  25. set txn ""
  26. set count 0
  27. # Set up various methods to rotate through
  28. set methods 
  29.     [list "-rbtree" "-recno" "-btree" "-btree" "-recno" "-rbtree"]
  30. cleanup $testdir NULL
  31. puts "tSubdbtest002.a: create subdbs of different access methods:"
  32. puts "tt$methods"
  33. set psize {8192 4096}
  34. set nsubdbs [llength $methods]
  35. set duplist ""
  36. for { set i 0 } { $i < $nsubdbs } { incr i } {
  37. lappend duplist -1
  38. }
  39. set newent [expr $nentries / $nsubdbs]
  40. #
  41. # XXX We need dict sorted to figure out what was deleted
  42. # since things are stored sorted in the btree.
  43. #
  44. filesort $dict $t4
  45. set dictorig $dict
  46. set dict $t4
  47. build_all_subdb $testfile $methods $psize $duplist $newent
  48. # Now we will get each key from the DB and compare the results
  49. # to the original.
  50. set pidlist ""
  51. puts "tSubdbtest002.b: create $nsubdbs procs to delete some keys"
  52. for { set subdb 0 } { $subdb < $nsubdbs } { incr subdb } {
  53. puts "$tclsh_path
  54.     $test_path/sdbscript.tcl $testfile 
  55.     $subdb $nsubdbs >& $testdir/subdb002.log.$subdb"
  56. set p [exec $tclsh_path $test_path/wrap.tcl 
  57.     sdbscript.tcl 
  58.     $testdir/subdb002.log.$subdb $testfile $subdb $nsubdbs &]
  59. lappend pidlist $p
  60. }
  61. watch_procs 5
  62. for { set subdb 0 } { $subdb < $nsubdbs } { incr subdb } {
  63. set method [lindex $methods $subdb]
  64. set method [convert_method $method]
  65. if { [is_record_based $method] == 1 } {
  66. set checkfunc subdbtest002_recno.check
  67. } else {
  68. set checkfunc subdbtest002.check
  69. }
  70. puts "tSubdbtest002.b: dump file sub$subdb.db"
  71. set db [berkdb_open -unknown $testfile sub$subdb.db]
  72. error_check_good db_open [is_valid_db $db] TRUE
  73. dump_file $db $txn $t1 $checkfunc
  74. error_check_good db_close [$db close] 0
  75. #
  76. # This is just so that t2 is there and empty
  77. # since we are only appending below.
  78. #
  79. exec > $t2
  80. # Now compare the keys to see if they match the dictionary (or ints)
  81. if { [is_record_based $method] == 1 } {
  82. set oid [open $t2 w]
  83. for {set i 1} {$i <= $newent} {incr i} {
  84. set x [expr $i - $subdb]
  85. if { [expr $x % $nsubdbs] != 0 } {
  86. puts $oid [expr $subdb * $newent + $i]
  87. }
  88. }
  89. close $oid
  90. file rename -force $t1 $t3
  91. } else {
  92. set oid [open $t4 r]
  93. for {set i 1} {[gets $oid line] >= 0} {incr i} {
  94. set farr($i) $line
  95. }
  96. close $oid
  97. set oid [open $t2 w]
  98. for {set i 1} {$i <= $newent} {incr i} {
  99. # Sed uses 1-based line numbers
  100. set x [expr $i - $subdb]
  101. if { [expr $x % $nsubdbs] != 0 } {
  102. set beg [expr $subdb * $newent]
  103. set beg [expr $beg + $i]
  104. puts $oid $farr($beg)
  105. }
  106. }
  107. close $oid
  108. filesort $t1 $t3
  109. }
  110. error_check_good Subdbtest002:diff($t3,$t2) 
  111.     [filecmp $t3 $t2] 0
  112. puts "tSubdbtest002.c: sub$subdb.db: close, open, and dump file"
  113. # Now, reopen the file and run the last test again.
  114. open_and_dump_subfile $testfile NULL $txn $t1 $checkfunc 
  115.     dump_file_direction "-first" "-next" sub$subdb.db
  116. if { [string compare $method "-recno"] != 0 } {
  117. filesort $t1 $t3
  118. }
  119. error_check_good Subdbtest002:diff($t2,$t3) 
  120.     [filecmp $t2 $t3] 0
  121. # Now, reopen the file and run the last test again in the
  122. # reverse direction.
  123. puts "tSubdbtest002.d: sub$subdb.db: close, open, and dump file in reverse direction"
  124. open_and_dump_subfile $testfile NULL $txn $t1 $checkfunc 
  125.     dump_file_direction "-last" "-prev" sub$subdb.db
  126. if { [string compare $method "-recno"] != 0 } {
  127. filesort $t1 $t3
  128. }
  129. error_check_good Subdbtest002:diff($t3,$t2) 
  130.     [filecmp $t3 $t2] 0
  131. }
  132. set dict $dictorig
  133. return
  134. }
  135. # Check function for Subdbtest002; keys and data are identical
  136. proc subdbtest002.check { key data } {
  137. error_check_good "key/data mismatch" $data $key
  138. }
  139. proc subdbtest002_recno.check { key data } {
  140. global dict
  141. global kvals
  142. error_check_good key"$key"_exists [info exists kvals($key)] 1
  143. error_check_good "key/data mismatch, key $key" $data $kvals($key)
  144. }