Working on an overlay compressed filesystem (using fuse).
Now I have the "non compression" part down and working, but... running into some problems.
I need a compression library that'll allow me to:
A : know the size of the original file (so I can return that when software asks for filesize, if not read's and write's to file will screw up).
B : allow me to read specific parts of a file, not decode the entire thing every time.
Those two things would allow me to override read and write's with ease and make the codesize much more managable.
Got a feeling I wont find it, and I'll end up having to code something to cache the original filesize :/, if so I'll probably end up with zlib.
Really wish zlib's compressBound was accurate :/

