aboutsummaryrefslogtreecommitdiffstats
path: root/FuseArchive
Commit message (Collapse)AuthorAgeFilesLines
* Trying out md5 to see if it speeds up someSteve Slaven2009-08-071-2/+3
|
* Digest wrapperSteve Slaven2009-08-071-0/+7
|
* Add swapable digest for key generationSteve Slaven2009-08-072-4/+6
|
* Added a method to free blocks before unlink, just doing ftruncate thenSteve Slaven2009-08-072-2/+9
| | | | | unlink left the "empty" file and "empty" block with an extra ref for every unlink since we never freed those blocks
* Don't gzip serialized data anymore since it's basically just a single keySteve Slaven2009-08-071-5/+5
| | | | | | | in the physical file, and the chunked data that has the actual file chunk contents is already compressed. Compressing the single key data in the tree actually makes it bigger (50+ bytes instead of 34) which can be seen by gzipping them manually to test
* Added note about wanting to delete empty directoriesSteve Slaven2009-08-071-1/+4
|
* Store a key in the phyiscal file that pulls the data from a chunk toSteve Slaven2009-08-072-4/+35
| | | | 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-062-1/+14
| | | | | constructor, use ftruncate since truncate doesn't exist, and handle unlocking unused chunks due to ftruncate
* Truncate files on unlink so we free their blocksSteve Slaven2009-08-061-0/+4
|
* 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-064-23/+92
|
* Made header length a variable so we can change it later if neededSteve Slaven2009-08-041-4/+6
|
* Added more logging, fixed error with storage size for block lengthSteve Slaven2009-08-041-3/+18
|
* Don't use a stream class for nowSteve Slaven2009-08-041-3/+5
|
* Fix deserialize nameSteve Slaven2009-08-041-1/+1
|
* Added binary format chunk serializerSteve Slaven2009-08-042-1/+74
|
* Namespace/module fixesSteve Slaven2009-08-041-3/+3
|
* Namespace/module fixesSteve Slaven2009-08-042-2/+8
|
* Added storage switch back inSteve Slaven2009-08-041-3/+8
|
* Fix namespace problemSteve Slaven2009-08-042-3/+3
|
* Fix some missing symbolsSteve Slaven2009-08-041-2/+4
|
* Use the new chunk storageSteve Slaven2009-08-041-1/+4
|
* Chunk storage handlersSteve Slaven2009-08-043-0/+197
|
* Split up main classesSteve Slaven2009-08-044-0/+735