File: sftp2.tcl

package info (click to toggle)
blt 3.0~1%2B08570046%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 45,556 kB
  • sloc: ansic: 278,852; tcl: 96,434; sh: 3,410; makefile: 2,026; cpp: 374
file content (220 lines) | stat: -rw-r--r-- 5,525 bytes parent folder | download
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package require BLT
package require blt_sftp

set status ""

proc Cancel {} {
    global credentials 
    set credentials ""
}
	     
proc CollectCredentials {} {
    global credentials 
    set user [.login.user get]
    set pass [.login.pass get]
    set credentials [list $user $pass]
}

proc SetChars {} {
    set varName [.login.hidechars cget -variable]
    global $varName
    set bool [set $varName]
    if { $bool } {
	.login.pass configure -show ""
    } else {
	.login.pass configure 	-show \u25CF 
    }
}

proc GetPassword { user } {
    global status credentials 
    set w [blt::tk::toplevel .login]
    blt::tk::label $w.user_l -text "User:" 
    blt::comboentry $w.user \
	-textwidth 20 \
	-hidearrow yes
    $w.user insert 0 $user
    blt::tk::label $w.pass_l -text "Password:" 
    blt::comboentry $w.pass \
	-textwidth 20 \
	-textvariable ::password \
	-show \u25CF \
	-hidearrow yes
    blt::tk::checkbutton $w.hidechars -text "Show Characters" \
	-variable hidechars -command SetChars
    blt::tk::button $w.cancel -text "Cancel" -command Cancel
    blt::tk::button $w.ok -text "Ok" -command CollectCredentials
    blt::tk::label $w.status -text $status

    set credentials ""
    blt::table $w \
	0,0 $w.user_l -anchor e  \
	0,1 $w.user -fill x  \
	1,0 $w.pass_l -anchor e  \
	1,1 $w.pass -fill x  \
	2,1 $w.hidechars -anchor w \
	3,0 $w.status -fill x -cspan 2 \
	4,0 $w.cancel \
	4,1 $w.ok
    blt::table configure $w c0 -resize none
    blt::table configure $w c1 -resize both
    update
    tkwait variable credentials
    destroy $w
    return $credentials
}

set sftp [blt::sftp create -host nees.org -prompt GetPassword -numtries 10]


set tree [blt::tree create]
puts stderr "before tree"
puts stderr time=[time {$sftp dirtree ~/indeed $tree }]
puts stderr "after tree"

puts stderr numentries=[$tree size 0]
$tree sort 0 -recurse -reorder
set view .ss.view

blt::scrollset .ss \
    -window $view \
    -xscrollbar .ss.x \
    -yscrollbar .ss.y 
blt::tk::scrollbar .ss.x
blt::tk::scrollbar .ss.y

blt::treeview $view -tree $tree \
	-height 3i

blt::table . \
    0,0 .ss -fill both

lappend iconpath ~/hubs/neeshub/indeed/src/icons/filetype/22x22

proc GetFileStyle { w file type } {
    set name [file extension $file]
    set name [string range $name 1 end]
    if { $name == "" || $type == "directory" } {
	set name "folder"
    } 
    if { [string match ~* $name] } {
	set name unknown
    }
    global styles
    if {[info exists styles($name)]} {
	return $styles($name)
    }
    global iconpath
    foreach dir $iconpath {
	set path [file join $dir ${name}.*]
	set files [glob -nocomplain $path]
	set file [lindex $files 0]
	if {"" != $file} {
	    break
	}
    }
    if { $file == "" } {
	set file ~/hubs/neeshub/indeed/src/icons/filetype/22x22/unknown.png
    }
    if { ![file exists $file] } { 
	return ""
    }
    if { [file isdirectory $file] } { 
	return ""
    }
    set img [image create picture -file $file]
    $w style create textbox $name -icon $img -side left
    set styles($name) $name
    return $name
}

proc FixExtIcons { w } {
    set tree [$w cget -tree]
    foreach {row value} [$table column get name] {
	set type [$table get $row "type"]
	set style [GetFileStyle $w $value $type]
	if { $style != "" } {
	    $w style apply $style [list $row name]
	}
    }
}

proc FormatSize { node value } {
    if { $value < 1000 } {
	return $value
    } elseif { $value < 1e6 } {
	return [format "%.3g kB" [expr $value / 1.0e3]]
    } elseif { $value < 1e9 } {
	return [format "%.3g MB" [expr $value / 1.0e6]]
    } else {
	return [format "%.3g GB" [expr $value / 1.0e9]]
    }
}

proc FormatDate { node  value } {
    set format "year %Y month %b wknum %U day %j min %M"
    set time [clock seconds]
    array set now [clock format $time -format $format]
    array set then [clock format $value -format $format]
    set now(day) [string trimleft $now(day) 0]
    set then(day) [string trimleft $then(day) 0]
    if { $now(year) != $then(year) } {
	return [clock format $value -format "%h %e, %Y"]
    } elseif { $now(day) >= ($then(day) + 7) } {
	return [clock format $value -format "%h %e %l:%M %p"]
    } elseif { $now(day) != $then(day) } {
	return [clock format $value -format "%a %h %d %l:%M %p"]
    } elseif { $now(day) == ($then(day) + 1) } {
	return [clock format $value -format "Yesterday %l:%M %p"]
    } elseif { $now(min) != $then(min) } {
	return [clock format $value -format "Today %l:%M %p"]
    } else {
	return [clock format $value -format "Today %l:%M:%S %p"]
    }
}

array set modes {
   0	---
   1    --x
   2    -w-
   3    -wx
   4    r-- 
   5    r-x
   6    rw-
   7    rwx
}
    
proc FormatMode { node mode } {
    global modes
    set mode [format %o [expr $mode & 07777]]
    set owner $modes([string index $mode 0])
    set group $modes([string index $mode 1])
    set world $modes([string index $mode 2])
    return "${owner}${group}${world}"
}

foreach name { type mtime mode size } {
    $view column insert end $name
}

$view style create textbox date \
    -justify right 
$view column configure treeView \
    -title "Name" 
$view column configure mtime \
    -style date \
    -title "Modification Time" \
    -formatcommand FormatDate 
$view style create textbox mode \
    -justify right 
$view column configure mode \
    -style mode \
    -title "Mode" \
    -formatcommand FormatMode 
$view style create textbox size \
    -justify right
$view column configure size \
    -style size \
    -formatcommand FormatSize 

focus $view