Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Get fossil blobs through a binary channel. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a5da302f06019c03661234df13ba47da |
User & Date: | peter 2014-11-13 21:53:20.037 |
Context
2014-11-13
| ||
22:28 | First experiment for version support in dirdiff. Only for fossil yet. check-in: 371bcf8341 user: peter tags: trunk | |
21:53 | Get fossil blobs through a binary channel. check-in: a5da302f06 user: peter tags: trunk | |
20:46 | Syntax check fix check-in: ba2ce3d1bc user: peter tags: trunk | |
Changes
Changes to src/vcsvfs.tcl.
︙ | ︙ | |||
207 208 209 210 211 212 213 | vfs::filesystem posixerror $::vfs::posix(EACCES) return -code error $::vfs::posix(EACCES) } set oldpwd [pwd] cd [dict get $mpoints $root "origroot"] set rev [dict get $mpoints $root rev] | > > > > | > > > > | 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | vfs::filesystem posixerror $::vfs::posix(EACCES) return -code error $::vfs::posix(EACCES) } set oldpwd [pwd] cd [dict get $mpoints $root "origroot"] set rev [dict get $mpoints $root rev] # Which way of extracting file data is best? # fossil finfo -p -r $rev $relative # set sha [dict get $finfor sha] # fossil artifact $sha # fossil cat $relative -r $rev # Read through a pipe to get a binary channel set ch [open [list |fossil cat $relative -r $rev] rb] set data [read $ch] close $ch cd $oldpwd set chId [vcsvfs::CreateDataRefChan $data] return [list $chId ""] } stat { set res [dict create dev 0 ino 0 "mode" 0 nlink 0 uid 0 gid 0 \ |
︙ | ︙ |