BoxLang: Our new JVM Dynamic Language made by Ortus! Check it out: https://www.boxlang.io

CommandBox always reads STDIN even when in non-interactive mode

Description

When using bash, if a command doesn't require STDIN, it doesn't read stdin. This means I can do things like copy a script and paste it into a terminal, and it'll run the same whether it's run from a .sh file, or the terminal line by line.

Consider

$ echo "echo hello" | bash hello $ echo "echo hello" | bash -c 'ls' box.json coldbox docbox hi java jmimemagic.log modules testbox

Notice in the second command, bash did NOT consume the "echo hello" and did not echo hello after running ls.

commandbox always reads STDIN, and passes STDIN as parameters to the command even when run non-interactively, so I get different results when scripted vs non-scripted. I suppose I'd also get unknown behavior if my script was passed STDIN , and I didn't intend for box to parse that. (The first commandbox invocation would read the entire STDIN)

Consider:

$ /usr/local/bin/box install ✓ | Installing ALL dependencies | ✓ | Installing package [forgebox:coldbox@^5.1.3+737] | | ✓ | Uninstalling package: coldbox | | | ✓ | Uninstalling package: testbox | ✓ | Installing package [forgebox:cbcommons@^1.1.0] | ✓ | Installing package [forgebox:BCrypt@^2.1.0+0000] | ✓ | Installing package [forgebox:docbox@2.1.0+16] | ✓ | Installing package [forgebox:testbox@^2.4.0] $ svc -t ~/service/Lucee5Docker

Now consider that's in a script, and I copy into my clipboard

/usr/local/bin/box install svc -t ~/service/Lucee5Docker

And paste it

$ /usr/local/bin/box install | Installing package [forgebox: svc -t ~/service/Lucee5Docker]

Not expected behavior.

It also means if I run this update script, for instance:

bash upd.sh

And then I start typing my next command... ls, echo,cd, whatever - box steals my STDIN and fails. Unless I explicitly set box STDIN to dev null.

In a bash environment this isn't necessary, stdin is only read if BASH needs it (i.e. command was not specified via -c or -s was specified, or run interactively), or if the COMMAND executed needs it (i.e. cat) . And scripts all run the same way regardless of what I'm typing at the time.

Activity

Show:

Brad WoodNovember 9, 2019 at 7:59 PM
Edited

Good news, JLine 3.13 has a fix for the bug I found last night. After updating JLine, it seems this works ok, at least on Windows. I had to go into several places in CommandBox that specifically read from the standard input and change them to explicitly ensure the terminal is resumed so running something like

 

box pause

doesn’t just hang forever. That caveat may only apply to Windows as I think Posix shells receive terminal signals natively.

 

Can you please give this a test on the 4.9.0-alpha?

Brad WoodNovember 9, 2019 at 5:42 AM

Tried to address this again tonight, but ran into an issue with the suggested workaround in JLine. Will need to wait for this bug to be fixed:

https://github.com/jline/jline3/issues/462

Other than that, the change seemed to work well. The only caveat is that you cannot use Ctrl-C to stop a command (on Windows, at least) as JLine has to be reading the standard input to capture the keystrokes.

Brad WoodApril 23, 2019 at 6:47 PM

I have updated CommandBox to no longer read from the standard input if it's not needed, but JLine is also reading the standard in on startup which will need fixed in the Jline lib to resolve this ticket.

https://github.com/jline/jline3/issues/383

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Affects versions

Fix versions

Priority

Components

Sentry

Created April 22, 2019 at 4:47 PM
Updated November 9, 2019 at 8:01 PM
Resolved November 9, 2019 at 8:01 PM

Flag notifications