-
-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Brotli Decompression issue, when not using compressionlevel.fastest #243
Comments
Your sample seems to have worked on my end. I would like you to confirm the following await fs.ReadAsync(buffer, 0, buffer.Length); Here, is I think you need to check the return value of ReadAsync and read repeatedly if there are not enough bytes to read. For example, as follows. var readBytes = 0;
while (readBytes < length)
{
readBytes += await fs.ReadAsync(buffer, 0, buffer.Length);
} If the problem persists, please let us know the environment in which you ran each serialization and deserialization. Thanks. |
Hi, thanks for the reply. I tried this and sadly it was reading always the full size, but implemented it anyway. I made a small test project with a sample file, what causes issues. Hope that makes it easier to replicate. And I am running this on Windows 10 Pro 64 |
Thanks a lot for the reproduced code. If you pass a very large MemoryStream to CopyToAsync at once, there seems to be a problem with it not being written all the way through. In your code, it would be as follows. static async Task SaveLogfile(TradeLog log, MemoryStream ms, CompressionLevel compressionLevel) {
using (var cp = new BrotliCompressor(compressionLevel)) {
MemoryPackSerializer.Serialize(cp, log);
await cp.CopyToAsync(ms);
}
await ms.FlushAsync(); }
} I will attempt to fix this in #249. NOTE: By the way, I would like to recommend the following points: The above code could use IBufferWriter instead. var buffer = new ArrayBufferWriter<byte>(inputBytes.Length);
compressor.CopyTo(buffer); |
This fix is released in 1.20.1. |
Hi thanks for the fix, usually i write it to a file, I just made it to a memorystream so you dont have to wear off your ssd when testing it. I hope this comment doesnt reopen the issue now. I am not really familiar with github. |
I am having an issue with BrotliCompression and Decompression when not using Fastest. The code works fine with fastest, but I would really love to use smallest size for archieving stuff.
This is how I implemented it.
compression
decompression
The text was updated successfully, but these errors were encountered: