472,141 Members | 1,501 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,141 software developers and data experts.

Way to unblock sys.stdin.readline() call

HI,

Is there any possible way to unblock the sys.stdin.readline() call
from a different thread.
Something like sys.stdin.write() but that would actually work ...
something to put characters in the stdin...

Thanks in advance,
João
Jun 27 '08 #1
4 3378
Le Saturday 21 June 2008 15:26:53 joamag, vous avez écrit*:
HI,

Is there any possible way to unblock the sys.stdin.readline() call
from a different thread.
Something like sys.stdin.write() but that would actually work ...
something to put characters in the stdin...
Do you mean setting stdin in non-blocking mode ? On unix you can do it with
the fcntl module (you'll find more infos in the libc docs) :

fcntl.fcntl(sys.stdin, fcntl.F_SETFL, os.O_NONBLOCK)

and catch IOErrors with errno = EAGAIN. But I don't know how to do it in a
portable way, suggestions welcome :)

--
Cédric Lucantis
Jun 27 '08 #2
On Jun 21, 4:46*pm, Cédric Lucantis <o...@no-log.orgwrote:
Le Saturday 21 June 2008 15:26:53 joamag, vous avez écrit*:
HI,
Is there any possible way to unblock the sys.stdin.readline() call
from a different thread.
Something like sys.stdin.write() but that would actually work ...
something to put characters in the stdin...

Do you mean setting stdin in non-blocking mode ? On unix you can do it with
the fcntl module (you'll find more infos in the libc docs) :

fcntl.fcntl(sys.stdin, fcntl.F_SETFL, os.O_NONBLOCK)

and catch IOErrors with errno = EAGAIN. But I don't know how to do it in a
portable way, suggestions welcome :)

--
Cédric Lucantis
Thanks for the advice that's a way of solving my problem, but I really
need a portable way of doing it...

The application I’m build is meant to be run in more platforms than
Unix ... so I really need a portable way of doing that or something
else that unblocks the read call in the stdin
Jun 27 '08 #3


joamag wrote:
Is there any possible way to unblock the sys.stdin.readline() call
from a different thread.
If you want the thread to do something 'else' when no input is
available, would this work? Put readline in a thread that puts lines in
a q=queue.Quese(). Then
try:
l=q.ge_nowait
<process l>
except queue.Empty
<whatever without l>

Jun 27 '08 #4
On Jun 21, 11:34*pm, Terry Reedy <tjre...@udel.eduwrote:
joamag wrote:
Is there any possible way to unblock the sys.stdin.readline() call
from a different thread.

If you want the thread to do something 'else' when no input is
available, would this work? *Put readline in a thread that puts lines in
a q=queue.Quese(). *Then
try:
* * *l=q.ge_nowait
* * *<process l>
except queue.Empty
* * *<whatever without l>
Yes, that would work but still I would have a thread that would block
(the one with the readline call).
The problem with that solution is that if I try to exit the
application, while the thread is waiting in the readline call, that
thread would be blocking the exit of the application.
That behavior occurs even if the thread is configured in daemon mode.
Do you think it’s possible to solve the readline blocking problem in
any other way ?
Jun 27 '08 #5

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

5 posts views Thread by Scott Brady Drummonds | last post: by
12 posts views Thread by Mike Maxwell | last post: by
reply views Thread by Brano Zarnovican | last post: by
6 posts views Thread by Christian Convey | last post: by
1 post views Thread by Benjamin Rutt | last post: by
reply views Thread by Jean-Paul Calderone | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.