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

MySQL数据库

开发平台:

Visual C++

  1. # See the file LICENSE for redistribution information.
  2. #
  3. # Copyright (c) 1996, 1997, 1998, 1999, 2000
  4. # Sleepycat Software.  All rights reserved.
  5. #
  6. # $Id: test006.tcl,v 11.13 2000/08/25 14:21:54 sue Exp $
  7. #
  8. # DB Test 6 {access method}
  9. # Keyed delete test.
  10. # Create database.
  11. # Go through database, deleting all entries by key.
  12. proc test006 { method {nentries 10000} {reopen 0} {tnum 6} args} {
  13. source ./include.tcl
  14. set do_renumber [is_rrecno $method]
  15. set args [convert_args $method $args]
  16. set omethod [convert_method $method]
  17. if { $tnum < 10 } {
  18. set tname Test00$tnum
  19. set dbname test00$tnum
  20. } else {
  21. set tname Test0$tnum
  22. set dbname test0$tnum
  23. }
  24. puts -nonewline "$tname: $method ($args) "
  25. puts -nonewline "$nentries equal small key; medium data pairs"
  26. if {$reopen == 1} {
  27. puts " (with close)"
  28. } else {
  29. puts ""
  30. }
  31. # Create the database and open the dictionary
  32. set eindex [lsearch -exact $args "-env"]
  33. #
  34. # If we are using an env, then testfile should just be the db name.
  35. # Otherwise it is the test directory and the name.
  36. if { $eindex == -1 } {
  37. set testfile $testdir/$dbname.db
  38. set env NULL
  39. } else {
  40. set testfile $dbname.db
  41. incr eindex
  42. set env [lindex $args $eindex]
  43. }
  44. set pflags ""
  45. set gflags ""
  46. set txn ""
  47. set count 0
  48. if { [is_record_based $method] == 1 } {
  49.    append gflags " -recno"
  50. }
  51. # Here is the loop where we put and get each key/data pair
  52. cleanup $testdir $env
  53. set db [eval {berkdb_open 
  54.      -create -truncate -mode 0644} $args {$omethod $testfile}]
  55. error_check_good dbopen [is_valid_db $db] TRUE
  56. set did [open $dict]
  57. while { [gets $did str] != -1 && $count < $nentries } {
  58. if { [is_record_based $method] == 1 } {
  59. set key [expr $count + 1 ]
  60. } else {
  61. set key $str
  62. }
  63. set datastr [make_data_str $str]
  64. set ret [eval {$db put} 
  65.     $txn $pflags {$key [chop_data $method $datastr]}]
  66. error_check_good put $ret 0
  67. set ret [eval {$db get} $gflags {$key}]
  68. error_check_good "$tname: put $datastr got $ret" 
  69.     $ret [list [list $key [pad_data $method $datastr]]]
  70. incr count
  71. }
  72. close $did
  73. if { $reopen == 1 } {
  74. error_check_good db_close [$db close] 0
  75. set db [eval {berkdb_open} $args {$testfile}]
  76. error_check_good dbopen [is_valid_db $db] TRUE
  77. }
  78. # Now we will get each key from the DB and compare the results
  79. # to the original, then delete it.
  80. set count 0
  81. set did [open $dict]
  82. set key 0
  83. while { [gets $did str] != -1 && $count < $nentries } {
  84. if { $do_renumber == 1 } {
  85. set key 1
  86. } elseif { [is_record_based $method] == 1 } {
  87. incr key
  88. } else {
  89. set key $str
  90. }
  91. set datastr [make_data_str $str]
  92. set ret [eval {$db get} $gflags {$key}]
  93. error_check_good "$tname: get $datastr got $ret" 
  94.     $ret [list [list $key [pad_data $method $datastr]]]
  95. set ret [eval {$db del} $txn {$key}]
  96. error_check_good db_del:$key $ret 0
  97. incr count
  98. }
  99. close $did
  100. error_check_good db_close [$db close] 0
  101. }