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

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: sdbtest001.tcl,v 11.13 2000/08/25 14:21:53 sue Exp $
  7. #
  8. # Sub DB All-Method Test 1
  9. # Make several subdb's of different access methods all in one DB.
  10. # Rotate methods and repeat [#762].
  11. # Use the first 10,000 entries from the dictionary.
  12. # Insert each with self as key and data; retrieve each.
  13. # After all are entered, retrieve all; compare output to original.
  14. # Close file, reopen, do retrieve and re-verify.
  15. proc subdbtest001 { {nentries 10000} } {
  16. source ./include.tcl
  17. puts "Subdbtest001: many different subdb access methods in one"
  18. # Create the database and open the dictionary
  19. set testfile $testdir/subdbtest001.db
  20. set t1 $testdir/t1
  21. set t2 $testdir/t2
  22. set t3 $testdir/t3
  23. set t4 $testdir/t4
  24. set txn ""
  25. set count 0
  26. # Set up various methods to rotate through
  27. lappend method_list [list "-rrecno" "-rbtree" "-hash" "-recno" "-btree"]
  28. lappend method_list [list "-recno" "-hash" "-btree" "-rbtree" "-rrecno"]
  29. lappend method_list [list "-btree" "-recno" "-rbtree" "-rrecno" "-hash"]
  30. lappend method_list [list "-hash" "-recno" "-rbtree" "-rrecno" "-btree"]
  31. lappend method_list [list "-rbtree" "-hash" "-btree" "-rrecno" "-recno"]
  32. lappend method_list [list "-rrecno" "-recno"]
  33. lappend method_list [list "-recno" "-rrecno"]
  34. lappend method_list [list "-hash" "-dhash"]
  35. lappend method_list [list "-dhash" "-hash"]
  36. lappend method_list [list "-rbtree" "-btree" "-dbtree" "-ddbtree"]
  37. lappend method_list [list "-btree" "-rbtree" "-ddbtree" "-dbtree"]
  38. lappend method_list [list "-dbtree" "-ddbtree" "-btree" "-rbtree"]
  39. lappend method_list [list "-ddbtree" "-dbtree" "-rbtree" "-btree"]
  40. foreach methods $method_list {
  41. cleanup $testdir NULL
  42. puts "tSubdbtest001.a: create subdbs of different access methods:"
  43. puts "tSubdbtest001.a: $methods"
  44. set psize {8192 4096}
  45. set nsubdbs [llength $methods]
  46. set duplist ""
  47. for { set i 0 } { $i < $nsubdbs } { incr i } {
  48. lappend duplist -1
  49. }
  50. set newent [expr $nentries / $nsubdbs]
  51. build_all_subdb $testfile $methods $psize $duplist $newent
  52. # Now we will get each key from the DB and compare the results
  53. # to the original.
  54. for { set subdb 0 } { $subdb < $nsubdbs } { incr subdb } {
  55. set method [lindex $methods $subdb]
  56. set method [convert_method $method]
  57. if { [is_record_based $method] == 1 } {
  58. set checkfunc subdbtest001_recno.check
  59. } else {
  60. set checkfunc subdbtest001.check
  61. }
  62. puts "tSubdbtest001.b: dump file sub$subdb.db"
  63. set db [berkdb_open -unknown $testfile sub$subdb.db]
  64. dump_file $db $txn $t1 $checkfunc
  65. error_check_good db_close [$db close] 0
  66. # Now compare the keys to see if they match the
  67. # dictionary (or ints)
  68. if { [is_record_based $method] == 1 } {
  69. set oid [open $t2 w]
  70. for {set i 1} {$i <= $newent} {incr i} {
  71. puts $oid [expr $subdb * $newent + $i]
  72. }
  73. close $oid
  74. file rename -force $t1 $t3
  75. } else {
  76. # filehead uses 1-based line numbers
  77. set beg [expr $subdb * $newent]
  78. incr beg
  79. set end [expr $beg + $newent - 1]
  80. filehead $end $dict $t3 $beg
  81. filesort $t3 $t2
  82. filesort $t1 $t3
  83. }
  84. error_check_good Subdbtest001:diff($t3,$t2) 
  85.     [filecmp $t3 $t2] 0
  86. puts "tSubdbtest001.c: sub$subdb.db: close, open, and dump file"
  87. # Now, reopen the file and run the last test again.
  88. open_and_dump_subfile $testfile NULL $txn $t1 $checkfunc 
  89.     dump_file_direction "-first" "-next" sub$subdb.db
  90. if { [string compare $method "-recno"] != 0 } {
  91. filesort $t1 $t3
  92. }
  93. error_check_good Subdbtest001:diff($t2,$t3) 
  94.     [filecmp $t2 $t3] 0
  95. # Now, reopen the file and run the last test again in the
  96. # reverse direction.
  97. puts "tSubdbtest001.d: sub$subdb.db: close, open, and dump file in reverse direction"
  98. open_and_dump_subfile $testfile NULL $txn $t1 $checkfunc 
  99.     dump_file_direction "-last" "-prev" sub$subdb.db
  100. if { [string compare $method "-recno"] != 0 } {
  101. filesort $t1 $t3
  102. }
  103. error_check_good Subdbtest001:diff($t3,$t2) 
  104.     [filecmp $t3 $t2] 0
  105. }
  106. }
  107. }
  108. # Check function for Subdbtest001; keys and data are identical
  109. proc subdbtest001.check { key data } {
  110. error_check_good "key/data mismatch" $data $key
  111. }
  112. proc subdbtest001_recno.check { key data } {
  113. global dict
  114. global kvals
  115. error_check_good key"$key"_exists [info exists kvals($key)] 1
  116. error_check_good "key/data mismatch, key $key" $data $kvals($key)
  117. }