in reply to Re: Testing for a background process waiting for input (use a thread)
in thread Testing for a background process waiting for input
Thanks. This looks like exactly what I'm looking for, though I've got to do some man page reading to fully understand this. I've never used any of the thread modules before. So this is a good opportunity to explore them.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Testing for a background process waiting for input (use a thread)
by BrowserUk (Patriarch) on Apr 14, 2012 at 16:39 UTC | |
though I've got to do some man page reading to fully understand this. I've never used any of the thread modules A little explanation might help. The core of the mechanism is here:
The rest is just mechanics. With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] |
|
Re^3: Testing for a background process waiting for input (use a thread)
by Eliya (Vicar) on Apr 14, 2012 at 22:02 UTC | |
Just for the record, a "unixish" implementation of BrowserUk's idea could look something like this:
The main difference revolves around the SIGPIPE signal which on Unix would be delivered to a process if it attempts to write to a broken pipe (this is the case when the child terminates before having read anything). By default, this signal would terminate the writing process, so it would have to be handled one way or another, anyway (e.g. $SIG{PIPE} = 'IGNORE'). OTOH, we can take advantage of this error notification, in which case we don't need an extra thread (or process) doing the blocking write. The logic is kind of reversed now: we assume things went ok, unless we know otherwise, which is when
in those cases, $inInputState is set to zero in the respective signal handler. A couple of more notes:
| [reply] [d/l] [select] |
by BrowserUk (Patriarch) on Apr 15, 2012 at 01:33 UTC | |
a "unixish" implementation of BrowserUk's idea Nice!++ the backspace cancellation trick would only work under rare circumstances (AFAICT) — simply reading from stdin would, for example, not treat the backspaces in any special way. I added a little extra diagnostics. a) When the parent detects that the child entered an input state, it sends it a string "hello\n"; b) when the child enters an input state, it prints out what it receives: <Reveal this spoiler or all in this thread>
The upshot shows that on Windows at least, even though the child (perl in this case) only uses a standard read from stdin scalar <STDIN>, the CRT provides line-editing that allows the backspace cancellation to work:
But I guess what you are saying is that under *nix, the standard CRT input routines don't provided line editing facilities, unless the program in question uses a readline(3) library or similar. Would nulls be an workable alternative? Or DC1/DC3 (XON/XOFF)? With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] [select] |
by Eliya (Vicar) on Apr 15, 2012 at 04:22 UTC | |
But I guess what you are saying is that under *nix, the standard CRT input routines don't provided line editing facilities, unless the program in question uses a readline(3) library or similar. Essentially yes. stdin is just a file handle like any other, which by itself is unfiltered / binary-clean. Any other behavior you may observe (typically with interactive sessions) is the result of other layers that sit in between stdin and the user/keyboard, most prominently a tty and (optionally) some readline library. When stdin is connected to a regular pipe for non-interactive communication, those layers are not involved, unless things have explicitly been programmed that way (as with tools like Expect or similar) — this of course can be done, but usually isn't. | [reply] |