Git Product home page Git Product logo

Comments (9)

armstnp avatar armstnp commented on May 19, 2024

What would be the viability of passing in more focused type, e.g. Iterable<String> or a custom interface such as a LineSupplier?

(And yes, the viability of Iterable for this type of abstraction is debatable, too.)

from commonmark-java.

robinst avatar robinst commented on May 19, 2024

That would make the common case of parsing a file or other stream of characters harder, because the caller would have to adapt a BufferedReader to an Iterable<String>. Also, the contract of an Iterable is that it can be iterated multiple times, which is not the case for a stream.

After some more thinking, I think we should add an overloaded parse with a Reader argument. If it's already a BufferedReader (e.g. from Files.newBufferedReader), we use it as-is, otherwise we wrap it in one. Then read line by line. The caller is responsible for closing it.

I think a Reader is better suited than InputStream, as we don't want to know about the Charset, the caller is responsible for that (also matches spec).

from commonmark-java.

robinst avatar robinst commented on May 19, 2024

There may also be situations where Iterable<String> makes sense, but we can add that later if needed.

from commonmark-java.

robinst avatar robinst commented on May 19, 2024

Thanks for working on this, @sentyaev. It would have been nice if you commented here first though, maybe @armstnp would have liked to implement this.

from commonmark-java.

armstnp avatar armstnp commented on May 19, 2024

All's good. 👍

from commonmark-java.

robinst avatar robinst commented on May 19, 2024

Implemented with a new method parseReader on Parser, thanks @sentyaev

from commonmark-java.

robinst avatar robinst commented on May 19, 2024

Released in 0.2.0.

from commonmark-java.

sentyaev avatar sentyaev commented on May 19, 2024

Great! My first open source project commit.

from commonmark-java.

robinst avatar robinst commented on May 19, 2024

Oh, congratulations! Hopefully there will be many more :).

from commonmark-java.

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.