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

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: sdb003.tcl,v 11.17 2000/08/25 14:21:52 sue Exp $
  7. #
  8. # Sub DB Test 3 {access method}
  9. # Use the first 10,000 entries from the dictionary as subdbnames.
  10. # Insert each with entry as name of subdatabase and a partial list as key/data.
  11. # After all are entered, retrieve all; compare output to original.
  12. # Close file, reopen, do retrieve and re-verify.
  13. proc subdb003 { method {nentries 1000} args } {
  14. source ./include.tcl
  15. set args [convert_args $method $args]
  16. set omethod [convert_method $method]
  17. if { [is_queue $method] == 1 } {
  18. puts "Subdb003: skipping for method $method"
  19. return
  20. }
  21. puts "Subdb003: $method ($args) many subdb tests"
  22. # Create the database and open the dictionary
  23. set testfile $testdir/subdb003.db
  24. set t1 $testdir/t1
  25. set t2 $testdir/t2
  26. set t3 $testdir/t3
  27. cleanup $testdir NULL
  28. set pflags ""
  29. set gflags ""
  30. set txn ""
  31. set fcount 0
  32. if { [is_record_based $method] == 1 } {
  33. set checkfunc subdb003_recno.check
  34. append gflags " -recno"
  35. } else {
  36. set checkfunc subdb003.check
  37. }
  38. # Here is the loop where we put and get each key/data pair
  39. set ndataent 10
  40. set fdid [open $dict]
  41. while { [gets $fdid str] != -1 && $fcount < $nentries } {
  42. set subdb $str
  43. set db [eval {berkdb_open -create -mode 0644} 
  44.     $args {$omethod $testfile $subdb}]
  45. error_check_good dbopen [is_valid_db $db] TRUE
  46. set count 0
  47. set did [open $dict]
  48. while { [gets $did str] != -1 && $count < $ndataent } {
  49. if { [is_record_based $method] == 1 } {
  50. global kvals
  51. set key [expr $count + 1]
  52. set kvals($key) [pad_data $method $str]
  53. } else {
  54. set key $str
  55. }
  56. set ret [eval {$db put} 
  57.     $txn $pflags {$key [chop_data $method $str]}]
  58. error_check_good put $ret 0
  59. set ret [eval {$db get} $gflags {$key}]
  60. error_check_good get $ret [list [list $key [pad_data $method $str]]]
  61. incr count
  62. }
  63. close $did
  64. incr fcount
  65. dump_file $db $txn $t1 $checkfunc
  66. error_check_good db_close [$db close] 0
  67. # Now compare the keys to see if they match
  68. if { [is_record_based $method] == 1 } {
  69. set oid [open $t2 w]
  70. for {set i 1} {$i <= $ndataent} {set i [incr i]} {
  71. puts $oid $i
  72. }
  73. close $oid
  74. file rename -force $t1 $t3
  75. } else {
  76. set q q
  77. filehead $ndataent $dict $t3
  78. filesort $t3 $t2
  79. filesort $t1 $t3
  80. }
  81. error_check_good Subdb003:diff($t3,$t2) 
  82.     [filecmp $t3 $t2] 0
  83. # Now, reopen the file and run the last test again.
  84. open_and_dump_subfile $testfile NULL $txn $t1 $checkfunc 
  85. dump_file_direction "-first" "-next" $subdb
  86. if { [is_record_based $method] != 1 } {
  87. filesort $t1 $t3
  88. }
  89. error_check_good Subdb003:diff($t2,$t3) 
  90.     [filecmp $t2 $t3] 0
  91. # Now, reopen the file and run the last test again in the
  92. # reverse direction.
  93. open_and_dump_subfile $testfile NULL $txn $t1 $checkfunc 
  94.     dump_file_direction "-last" "-prev" $subdb
  95. if { [is_record_based $method] != 1 } {
  96. filesort $t1 $t3
  97. }
  98. error_check_good Subdb003:diff($t3,$t2) 
  99.     [filecmp $t3 $t2] 0
  100. if { [expr $fcount % 100] == 0 } {
  101. puts -nonewline "$fcount "
  102. flush stdout
  103. }
  104. }
  105. puts ""
  106. }
  107. # Check function for Subdb003; keys and data are identical
  108. proc subdb003.check { key data } {
  109. error_check_good "key/data mismatch" $data $key
  110. }
  111. proc subdb003_recno.check { key data } {
  112. global dict
  113. global kvals
  114. error_check_good key"$key"_exists [info exists kvals($key)] 1
  115. error_check_good "key/data mismatch, key $key" $data $kvals($key)
  116. }