Giter VIP home page Giter VIP logo

Comments (5)

ysbaddaden avatar ysbaddaden commented on September 24, 2024 1

I second that. I'm not sure about the names, but having a couple methods to "try to read (nonblock)" and "try to fill (blocking, until EOF)" sounds good. Maybe:

  • IO#fill(buffer : Bytes) : Int32 fills the buffer until EOF is reached; returns the number of bytes read (usually the buffer size, but may be less when EOF is reached). Raises after EOF has been reached.
  • IO#fill?(buffer : Bytes) : Int32? same as #fill but returns nil instead of raising after EOF.

I'm also wondering about the following, but it's mixing two concepts (nonblock + eof) behind the ? suffix (not good):

  • IO#read?(buffer : Bytes) : Int32? same as #read but doesn't block until data is ready, and immediately returns 0 when nothing was read; returns nil on EOF.

from crystal.

straight-shoota avatar straight-shoota commented on September 24, 2024 1

@ysbaddaden These methods are all related to IO#read and IMO their names should be similar. #read_greedy may not be a great name, but at least it establishes that it's a variant of #read. Maybe we can find something better with #read_ prefix though?

Also it would be very helpful for consistency to keep the same general semantics as #read: indicate EOF with a zero return value and only raise if closed.

The proposed behaviour of #read? can be implemented via #peek and #skip. That's even more efficient because it works without copy.

from crystal.

straight-shoota avatar straight-shoota commented on September 24, 2024

I've been thinking about this as well since I recommended using IO.copy for this use case yesterday in #14601 (comment).
So IO.copy can basically do this and even more because it reads into an IO. But of course this is not as convenient if you want to read directly into a slice.

So it might be a good idea to add a method for this.

from crystal.

BlobCodes avatar BlobCodes commented on September 24, 2024

I proposed read_greedy to be consistent with read_fully (which has nearly the same functionality and code).
Also, the term "greedy" should be familiar to most developers already since it's also used in regexes for the same behaviour.

I tried searching for better names for this method by looking at other programming languages, but the only language I could find with a similar method is Java with InputStream#readNBytes.

from crystal.

ysbaddaden avatar ysbaddaden commented on September 24, 2024

@straight-shoota I got confused, I thought we raised on eventual EOF.

from crystal.

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.