Giter VIP home page Giter VIP logo

Comments (10)

ajalt avatar ajalt commented on May 26, 2024 2

Thanks for the reports! This is fixed in 4425fe2, which is part of the 2.0.0 release.

from clikt.

grote avatar grote commented on May 26, 2024 1

Here's a minimal sample to try:

import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.clikt.output.TermUi.prompt

class Cli : CliktCommand() {

    override fun run() {
        prompt("test1")
        prompt("test2")
    }

}

fun main(args: Array<String>) = Cli().main(args)

How to pipe two lines here without getting a EOF exception?

from clikt.

ajalt avatar ajalt commented on May 26, 2024 1

I'll take a look. Given that our travis builds run on linux, I'm surprised that the behavior is different. I'd love suggestions on how to improve the test suite so that it can reproduce this problem.

from clikt.

grote avatar grote commented on May 26, 2024 1

Yeah I just ran the tests myself in the hope of finding the issue, but they passed for me, even when using stdin.provideText("test\ntest\n") instead of the line joining.

When modifying one of the samples to use the code above, I could reproduce the problem though by running:

echo "test
test
" | ./runsample prompt

or

echo "test\ntest\n" | ./runsample prompt

Before thinking about how to add a test here, maybe let's see if you can reproduce the problem.

from clikt.

ajalt avatar ajalt commented on May 26, 2024

Thanks!

from clikt.

JLLeitschuh avatar JLLeitschuh commented on May 26, 2024

I actually think that NonInteractiveCliktConsole needs to be a singleton, or at least the bufferedReader field needs to be a singleton. Otherwise the first NonInteractiveCliktConsole that is created will consume the entire buffer. Thoughts?

from clikt.

ajalt avatar ajalt commented on May 26, 2024

Yes, I think you're right. I could add a reader to the command context that could be shared between parameters.

from clikt.

grote avatar grote commented on May 26, 2024

I am still seeing this issue on Linux with version 1.7.0. Neither a multiline bash pipe or sending data with Python works. I am always getting this exception:

Exception in thread "main" java.lang.RuntimeException: EOF
        at com.github.ajalt.clikt.output.NonInteractiveCliktConsole.promptForLine(CliktConsole.kt:63)
        at com.github.ajalt.clikt.output.TermUi.prompt(TermUi.kt:94)
        at com.github.ajalt.clikt.output.TermUi.prompt$default(TermUi.kt:86)

More information: https://code.briarproject.org/briar/briar/issues/1512

Any ideas/hints are welcome!

from clikt.

ajalt avatar ajalt commented on May 26, 2024

Yes, I'm able to reproduce it from the command line.

from clikt.

ajalt avatar ajalt commented on May 26, 2024

So I'm finding that redirecting stdin at all fails to work. For example:

fun main() {
    println(System.`in`.bufferedReader().readLines())
}

prints [] when called with data piped to stdin, regardless of how many lines you give it. I'll have to do some more investigating.

from clikt.

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.