aboutsummaryrefslogtreecommitdiffstats
path: root/fusearchive.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Added some un-commentables for profilingSteve Slaven2009-07-231-2/+15
|
* Don't reload a chunk if it's the same chunk we're looking atSteve Slaven2009-07-231-1/+7
|
* Set modified to true for initial file creation flushSteve Slaven2009-07-231-0/+1
|
* Fixed getattr to use fgetattr so we don't have to maintain 2 functionsSteve Slaven2009-07-231-15/+19
|
* Get rid of some unused functionsSteve Slaven2009-07-231-66/+0
|
* Added the modified flag again so that we don't _fflush on releaseSteve Slaven2009-07-231-1/+4
|
* Data reading seems to workSteve Slaven2009-07-231-8/+20
|
* File saving works nowSteve Slaven2009-07-231-13/+53
|
* Fixed bool crash (had method and attribute with same name for fuse, write)Steve Slaven2009-07-231-14/+20
| | | | but it jumps in to an infinite loop on write now
* Added some warnings and removed some ;Steve Slaven2009-07-231-10/+13
|
* Modified to do chunking on demand, runs but file writing not workingSteve Slaven2009-07-231-56/+145
|
* Make key a non-string, since the digest is binary it could contain a _inflate-deflate-proof-of-conceptSteve Slaven2009-07-231-2/+2
|
* Moved block/chunk code to separate subs so that it can happen on demandSteve Slaven2009-07-231-76/+92
|
* More debugging tweaksSteve Slaven2009-07-231-2/+2
|
* More debug message tweaksSteve Slaven2009-07-231-6/+6
|
* Changed around some debug levelsSteve Slaven2009-07-231-5/+5
|
* Added note about some kind of race condition bugSteve Slaven2009-07-231-0/+2
|
* Only save if file was modifiedSteve Slaven2009-07-231-4/+9
|
* Converted debugging messages to print based on levels, fix truncate to useSteve Slaven2009-07-231-35/+49
| | | | the archive file ftruncate to make sure we don't hose up the file format
* Fix block compare to use decompress the storage so we don't make a hugeSteve Slaven2009-07-231-1/+1
| | | | number of dupe blocks
* Added gzip supportSteve Slaven2009-07-231-6/+7
|
* Fix up block count so du is happierSteve Slaven2009-07-231-1/+2
|
* Fix stat() to return proper sizeSteve Slaven2009-07-231-2/+38
|
* Initial attempt at inflating filesSteve Slaven2009-07-221-0/+39
|
* Some better list handling to extract sub pathsSteve Slaven2009-07-221-3/+5
|
* This actually stores file chunks nowSteve Slaven2009-07-221-3/+90
|
* Basic file ops work, permissions still not preservedSteve Slaven2009-07-221-12/+20
|
* Modified xmp example to inflate/deflate a file when needed, currently justSteve Slaven2009-07-221-0/+301
copies it out of a working dir to temp, then back to the file. This will make it easy to test out some different encoding/compression attempts