/usr/share/tcltk/vfs1.3/testvfs.tcl is in tcl-vfs 1.3-20080503-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package provide vfs::test 1.0
package require vfs 1.0
namespace eval vfs::test {}
proc vfs::test::Mount {what local} {
vfs::filesystem mount $local [list ::vfs::test::handler $what]
vfs::RegisterMount $local [list ::vfs::test::Unmount]
}
proc vfs::test::Unmount {local} {
vfs::filesystem unmount $local
}
proc vfs::test::handler {what cmd root relative actualpath args} {
eval [list $cmd $what $relative] $args
}
# If we implement the commands below, we will have a perfect
# virtual file system.
proc vfs::test::stat {what name} {
puts "stat $name"
}
proc vfs::test::access {what name mode} {
puts "access $name $mode"
}
proc vfs::test::open {what name mode permissions} {
puts "open $name $mode $permissions"
# return a list of two elements:
# 1. first element is the Tcl channel name which has been opened
# 2. second element (optional) is a command to evaluate when
# the channel is closed.
return [list]
}
proc vfs::test::matchindirectory {what path pattern type} {
puts "matchindirectory $path $pattern $type"
set res [list]
if {[::vfs::matchDirectories $type]} {
# add matching directories to $res
}
if {[::vfs::matchFiles $type]} {
# add matching files to $res
}
return $res
}
proc vfs::test::createdirectory {what name} {
puts "createdirectory $name"
}
proc vfs::test::removedirectory {what name recursive} {
puts "removedirectory $name"
}
proc vfs::test::deletefile {what name} {
puts "deletefile $name"
}
proc vfs::test::fileattributes {what args} {
puts "fileattributes $args"
switch -- [llength $args] {
0 {
# list strings
}
1 {
# get value
set index [lindex $args 0]
}
2 {
# set value
set index [lindex $args 0]
set val [lindex $args 1]
}
}
}
proc vfs::test::utime {what name actime mtime} {
puts "utime $name"
}
|