File: selmap.tcl

package info (click to toggle)
metakit 2.4.3-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,468 kB
  • ctags: 3,548
  • sloc: xml: 29,455; cpp: 23,339; sh: 9,051; tcl: 1,195; python: 577; makefile: 254; ansic: 14
file content (77 lines) | stat: -rw-r--r-- 1,803 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# How to map a Tcl selection result back to a view
#
# Note: it'd be nice to have a "$view loop var { script ... }" in Mk4tcl

if {[catch {package require Mk4tcl}] &&
    [catch {load ./Mk4tcl.so mk4tcl}] &&
    [catch {load ../builds/Mk4tcl.so mk4tcl}] &&
    [catch {load ./Mk4tcl_d.dll mk4tcl}] &&
    [catch {load ../builds/Mk4tcl_d.dll mk4tcl}]} {
  error "cannot load Mk4tcl"
}

mk::file open db
mk::view layout db.squares {x:I y:I}

set count 50000
mk::view size db.squares $count

set t [clock seconds]

mk::loop c db.squares {
  set i [mk::cursor position c]
  mk::set $c x $i y [expr {$i*$i}]
}

puts "init took [expr {[clock seconds] - $t}] seconds"

puts "select timing: [time {set v [mk::select db.squares -regexp y 11111]}]"

puts "results from select:"
foreach i $v {
  foreach {x y} [mk::get db.squares!$i x y] break
  puts [format {%7i: %10d,%d} $i $x $y]
}

set v1 [mk::view new]
foreach i $v {
  $v1 insert end n:I $i
}

puts "contents of v1:"
for {set i 0} {$i < [$v1 size]} {incr i} {
  puts "  [$v1 get $i n]"
}

set v2 [mk::view open db.squares]
puts "the squares view is called '$v2' and contains [$v2 size] rows"

set v3 [$v2 view map $v1]

puts "mapped view:"
for {set i 0} {$i < [$v3 size]} {incr i} {
  foreach {x y} [$v3 get $i x y] break
  puts [format {%7i: %10d,%d} $i $x $y]
}

$v3 close
$v2 close
$v1 close

# The output on this script should be:
# 
# init took 1 seconds
# select timing: 443096 microseconds per iteration
# results from select:
#   10541:      10541,111112681
#   33334:      33334,1111155556
#   48310:      48310,-1961111196
# contents of v1:
#   10541
#   33334
#   48310
# the squares view is called 'view1' and contains 100000 rows
# mapped view:
#       0:      10541,111112681
#       1:      33334,1111155556
#       2:      48310,-1961111196