aboutsummaryrefslogtreecommitdiffstats
path: root/fusearchive.py
Commit message (Expand)AuthorAgeFilesLines
* Catch when size == truncate size, some more debugging stuffSteve Slaven2009-07-291-2/+4
* Fixed some off-by-one errors in write when extending the blocks with nullsSteve Slaven2009-07-291-3/+6
* Added some more debug info, assert that our calculated size when savingSteve Slaven2009-07-291-6/+20
* More fixes to ftruncate to expand a file which was causing the "fake" mmapSteve Slaven2009-07-281-16/+17
* This is a workaround for a bug with lseek causing a getattr instead ofSteve Slaven2009-07-281-5/+30
* self.offset was never usedSteve Slaven2009-07-281-3/+0
* Only add O_CREAT if it was passed initiallySteve Slaven2009-07-281-1/+5
* Do create new fh if neededSteve Slaven2009-07-281-1/+1
* Fix not incrementing blocks while fillingSteve Slaven2009-07-281-1/+2
* Bug fixes to extend via seek(), properly setting dirty flag and not tryingSteve Slaven2009-07-281-4/+12
* Always open the main fh for serialization in rw modeSteve Slaven2009-07-281-4/+8
* Fixed log message and added log message for serializationSteve Slaven2009-07-281-3/+6
* Added an exception printer on the file setup since it seems to crash thereSteve Slaven2009-07-281-12/+10
* Fix flag detection (rdonly,rdrw,etc), fix some variables shadowingSteve Slaven2009-07-281-39/+50
* Fix checking for debug level to output lots of data to use the logger levelSteve Slaven2009-07-281-7/+7
* Changed to log to stderrSteve Slaven2009-07-281-1/+1
* Use the logging package instead of dmsgSteve Slaven2009-07-281-108/+110
* Modify ftruncate to allow growing or shrinking to a size other than 0Steve Slaven2009-07-281-5/+64
* Modified to open a fh at the init using the mode requested, and justSteve Slaven2009-07-281-26/+45
* A workaround attempt to fix opening a file for writing then changing it toSteve Slaven2009-07-281-3/+22
* Allow switching chunk stylesSteve Slaven2009-07-241-2/+13
* Testing out using zip files for chunk storage to eliminate some of the hugeSteve Slaven2009-07-241-3/+103
* Fixed some pylint/pychecker/pyflakes errorsSteve Slaven2009-07-241-10/+7
* Re-enable gzipfinal-demand-chunking-before-mergeSteve Slaven2009-07-241-2/+2
* Fix read bug on buffer boundry, make psyco a flagSteve Slaven2009-07-241-13/+40
* Fix a bug with writing partial blocksSteve Slaven2009-07-241-2/+10
* Made stats a flag, moved around flags to group related ones togetherSteve Slaven2009-07-241-4/+6
* Added a flag that basically disables all IO to test for "perfect"Steve Slaven2009-07-241-5/+20
* Fix a huge bug with reading data blocks sometimes returning more data thanSteve Slaven2009-07-241-8/+10
* Switched to cpickle and added wrappers for file open/dump/load stuff soSteve Slaven2009-07-241-13/+32
* Added binary flag and gzip compression levelSteve Slaven2009-07-231-7/+8
* Bumped block size a bit, initialize current block to -1 so that we don'tSteve Slaven2009-07-231-3/+3
* Make file ready handle cached dirty pagesSteve Slaven2009-07-231-2/+6
* Added caching some dirty blocksSteve Slaven2009-07-231-10/+40
* 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
* 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