aboutsummaryrefslogtreecommitdiffstats
path: root/FuseArchive/ChunkFile.py
Commit message (Collapse)AuthorAgeFilesLines
* Don't re-read the entire file in case we are extending it when we don'tSteve Slaven2009-08-071-2/+7
| | | | | have enough blocks, just start from the last block. This increases performace significantly for large files
* Added a method to free blocks before unlink, just doing ftruncate thenSteve Slaven2009-08-071-0/+7
| | | | | unlink left the "empty" file and "empty" block with an extra ref for every unlink since we never freed those blocks
* Store a key in the phyiscal file that pulls the data from a chunk toSteve Slaven2009-08-071-2/+26
| | | | minimize 100% file duplicates to be nothing more than a key length
* Pre-init original_chunks because we might need to fflush early in theSteve Slaven2009-08-061-0/+13
| | | | | constructor, use ftruncate since truncate doesn't exist, and handle unlocking unused chunks due to ftruncate
* Update chunk ref counts when we update the on-disk chunk listSteve Slaven2009-08-061-23/+30
|
* Add reference counting so we can delete unused chunksSteve Slaven2009-08-061-1/+28
|
* Added storage switch back inSteve Slaven2009-08-041-3/+8
|
* Fix namespace problemSteve Slaven2009-08-041-1/+1
|
* Use the new chunk storageSteve Slaven2009-08-041-1/+4
|
* Split up main classesSteve Slaven2009-08-041-0/+536