Overview
Comment: | Added first draft of kitdll |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
029b69f827f562ce8f9e45ac081faba8 |
User & Date: | rkeene on 2010-09-26 04:50:40 |
Other Links: | manifest | tags |
Context
2010-09-26
| ||
04:50 | Fixed issue with glob of top dir check-in: cc20ec9009 user: rkeene tags: trunk | |
04:50 | Added first draft of kitdll check-in: 029b69f827 user: rkeene tags: trunk | |
04:50 |
Updated to use "/proc/self/exe" rather than "/proc/<pid>/exe"
Updated to check for "/proc/curproc/file" (FreeBSD) check-in: 013d6b36f4 user: rkeene tags: trunk | |
Changes
Added kitdll/buildsrc/kitdll-0.0/cvfs.tcl version [0556808912].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | #! /usr/bin/env tcl package require vfs #package require kitdll namespace eval ::vfs::kitdll {} # Convience functions proc ::vfs::kitdll::Mount {hashkey local} { vfs::filesystem mount $local [list ::vfs::kitdll::vfshandler $hashkey] vfs::RegisterMount $local [list ::vfs::kitdll::Unmount] } proc ::vfs::kitdll::Unmount {local} { vfs::filesystem unmount $local } # Implementation ## Filesystem Data namespace eval ::vfs::kitdll::data {} set ::vfs::kitdll::data(joe) "Test\n" set {::vfs::kitdll::metadata()} [list type directory ino 0 mode 0555 nlink 2 uid 0 gid 0 size 0 atime 0 mtime 0 ctime 0] set ::vfs::kitdll::metadata(joe) [list type file ino 1 mode 0444 nlink 1 uid 0 gid 0 size 5 atime 0 mtime 0 ctime 0] set ::vfs::kitdll::metadata(sub) [list type directory ino 2 mode 0555 nlink 1 uid 0 gid 0 size 0 atime 0 mtime 0 ctime 0] set ::vfs::kitdll::metadata(sub/sub2) [list type directory ino 3 mode 0555 nlink 1 uid 0 gid 0 size 0 atime 0 mtime 0 ctime 0] proc ::vfs::kitdll::data::getData {hashkey file {start 0} {end "end"}} { if {![info exists ::vfs::kitdll::data($file)]} { return -code error "Invalid operation" } return [string range $::vfs::kitdll::data($file) $start $end] } proc ::vfs::kitdll::data::getMetadata {hashkey file} { if {![info exists ::vfs::kitdll::metadata($file)]} { return -code error "No such file" } return $::vfs::kitdll::metadata($file) } proc ::vfs::kitdll::data::getChildren {hashkey directory} { set pattern [file join $directory {[^/]*}] set children [array names ::vfs::kitdll::metadata -regexp "^${pattern}\$"] set newchildren [list] foreach child $children { if {$child == ""} { continue } set tail [lindex [split $child /] end] lappend newchildren $tail } return $newchildren } ## VFS ### Helpers namespace eval ::vfs::kitdll::vfsdata {} set ::vfs::kitdll::vfsdata::fileidx -1 ### Implemented #### Single Handler proc ::vfs::kitdll::vfshandler {hashkey subcmd args} { set cmd $args set cmd [linsert $cmd 0 "::vfs::kitdll::vfsop_${subcmd}" $hashkey] return [eval $cmd] } proc ::vfs::kitdll::chanhandler {hashkey subcmd args} { set cmd $args set cmd [linsert $cmd 0 "::vfs::kitdll::chanop_${subcmd}" $hashkey] return [eval $cmd] } #### Actual handlers ##### Finished proc ::vfs::kitdll::vfsop_stat {hashkey root relative actualpath} { catch { set ret [::vfs::kitdll::data::getMetadata $hashkey $relative] } if {![info exists ret]} { vfs::filesystem posixerror $::vfs::posix(ENOENT) } return $ret } proc ::vfs::kitdll::vfsop_access {hashkey root relative actualpath mode} { set ret [::vfs::kitdll::data::getMetadata $hashkey $relative] if {$mode & 0x2} { vfs::filesystem posixerror $::vfs::posix(EROFS) } return 1 } proc ::vfs::kitdll::vfsop_matchindirectory {hashkey root relative actualpath pattern types} { set ret [list] if {$pattern == ""} { catch { set test [::vfs::kitdll::data::getMetadata $hashkey $relative] } if {![info exists test]} { set children [list] } set children [list $root] } else { set children [::vfs::kitdll::data::getChildren $hashkey $relative] } foreach child $children { if {![string match $pattern $child]} { continue } unset -nocomplain metadata catch { array set metadata [::vfs::kitdll::data::getMetadata $hashkey $child] } if {[string index $actualpath end] == "/"} { set child "${actualpath}${child}" } else { set child "${actualpath}/${child}" } if {![info exists metadata(type)]} { continue } set filetype 0 switch -- $metadata(type) { "directory" { set filetype [expr {$filetype | 0x04}] } "file" { set filetype [expr {$filetype | 0x10}] } default { continue } } if {($filetype & $types) != $types} { continue } lappend ret $child } return $ret } proc ::vfs::kitdll::vfsop_fileattributes {hashkey root relative actualpath {index -1} {value ""}} { set attrs [list -owner -group -permissions] if {$value != ""} { vfs::filesystem posixerror $::vfs::posix(EROFS) } if {$index == -1} { return $attrs } array set metadata [::vfs::kitdll::data::getMetadata $hashkey $relative] set attr [lindex $attrs $index] switch -- $attr { "-owner" { return $metadata(uid) } "-group" { return $metadata(gid) } "-permissions" { if {$metadata(type) == "directory"} { set metadata(mode) [expr {$metadata(mode) | 040000}] } return [format {0%o} $metadata(mode)] } } return -code error "Invalid index" } proc ::vfs::kitdll::chanop_initialize {hashkey chanId mode} { return [list initialize finalize watch read seek] } proc ::vfs::kitdll::chanop_finalize {hashkey chanId} { unset -nocomplain ::vfs::kitdll::chandata([list $hashkey $chanId]) return } proc ::vfs::kitdll::chanop_watch {hashkey chanId eventSpec} { array set chaninfo $::vfs::kitdll::chandata([list $hashkey $chanId]) set chaninfo(watching) $eventSpec set ::vfs::kitdll::chandata([list $hashkey $chanId]) [array get chaninfo] if {[lsearch -exact $chaninfo(watching) "read"] != -1} { after 0 [list catch "chan postevent $chanId [list {read}]"] } return } proc ::vfs::kitdll::chanop_read {hashkey chanId bytes} { array set chaninfo $::vfs::kitdll::chandata([list $hashkey $chanId]) set pos $chaninfo(pos) set len $chaninfo(len) if {[lsearch -exact $chaninfo(watching) "read"] != -1} { after 0 [list catch "chan postevent $chanId [list {read}]"] } if {$pos == $len} { return "" } set end [expr {$pos + $bytes}] if {$end > $len} { set end $len } set data [::vfs::kitdll::data::getData $hashkey $chaninfo(file) $pos $end] set dataLen [string length $data] incr pos $dataLen set chaninfo(pos) $pos set ::vfs::kitdll::chandata([list $hashkey $chanId]) [array get chaninfo] return $data } proc ::vfs::kitdll::vfsop_open {hashkey root relative actualpath mode permissions} { if {$mode != "" && $mode != "r"} { vfs::filesystem posixerror $::vfs::posix(EROFS) } catch { array set metadata [::vfs::kitdll::data::getMetadata $hashkey $relative] } if {![info exists metadata]} { vfs::filesystem posixerror $::vfs::posix(ENOENT) } if {$metadata(type) == "directory"} { vfs::filesystem posixerror $::vfs::posix(EISDIR) } if {[info command chan] != ""} { set chan [chan create [list "read"] [list ::vfs::kitdll::chanhandler $hashkey]] set ::vfs::kitdll::chandata([list $hashkey $chan]) [list file $relative pos 0 len $metadata(size) watching ""] return [list $chan] } if {[info command rechan] == ""} { catch { package require rechan } } if {[info command rechan] != ""} { set chan [rechan [list ::vfs::kitdll::chanhandler $hashkey] 2] set ::vfs::kitdll::chandata([list $hashkey $chan]) [list file $relative pos 0 len $metadata(size) watching ""] return [list $chan] } return -code error "No way to generate a channel, need either Tcl 8.5+, \"rechan\"" } ### No-Ops since we are a readonly filesystem proc ::vfs::kitdll::vfsop_createdirectory {args} { vfs::filesystem posixerror $::vfs::posix(EROFS) } proc ::vfs::kitdll::vfsop_deletefile {args} { vfs::filesystem posixerror $::vfs::posix(EROFS) } proc ::vfs::kitdll::vfsop_removedirectory {args} { vfs::filesystem posixerror $::vfs::posix(EROFS) } proc ::vfs::kitdll::vfsop_utime {} { vfs::filesystem posixerror $::vfs::posix(EROFS) } package provide vfs::kitdll 1.0 |