Git Product home page Git Product logo

Comments (3)

MiloszKrajewski avatar MiloszKrajewski commented on August 15, 2024

It is not obvious, but this stream uses "interactive" reading.

If you look at documentation for Stream.Read you will find that it may read less than requested: "Returns: The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached."

LZ4InputStream tries to return to you as quickly as possible and not block. In practice, it means that is will return some data on block boundary, and you need another read to read the rest.

If you don't want to handle it yourself, you can use this helper method:

public int FullBlockRead(Stream stream, byte[] buffer, int offset, int length)
{
	var total = 0;
	while (length > 0)
	{
		var read = stream.Read(buffer, offset, length);
		if (read == 0) break;

		offset += read;
		length -= read;
		total += read;
	}

	return total;
}

from k4os.compression.lz4.

andrewsil1 avatar andrewsil1 commented on August 15, 2024

Thank you for the clarification- it wasn’t obvious, you’re right. I’ll give that a try and report back.

Thanks-

from k4os.compression.lz4.

andrewsil1 avatar andrewsil1 commented on August 15, 2024

That does indeed cure it. Thank you so much for the tip, it was driving me crazy. :-)

from k4os.compression.lz4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.