473,386 Members | 1,828 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

subprocess -popen - reading stdout from child - hangs

Let's say I have this Python file called loop.py:

import sys
print 'hi'
sys.stdout.flush()
while 1:
pass

And I want to call it from another Python process and read the value
'hi'. How would I do it?

So far I have tried this:
>>proc = subprocess.Popen('python /home/chiefinnovator/loop.py',shell=True,stdin=subprocess.PIPE,stdout=s ubprocess.PIPE)
proc.stdout.read()
But it just hangs at read()

proc.communicate() also just hangs. What am I doing wrong? Please
advise.

Thanks,

Greg

Sep 23 '07 #1
6 17511
On Sep 22, 11:28 pm, "gregpin...@gmail.com" <gregpin...@gmail.com>
wrote:
Let's say I have this Python file called loop.py:

import sys
print 'hi'
sys.stdout.flush()
while 1:
pass

And I want to call it from another Python process and read the value
'hi'. How would I do it?

So far I have tried this:
>proc = subprocess.Popen('python /home/chiefinnovator/loop.py',shell=True,stdin=subprocess.PIPE,stdout=s ubprocess.PIPE)
proc.stdout.read()

But it just hangs at read()

proc.communicate() also just hangs. What am I doing wrong? Please
advise.
Well, using this subclass of subprocess.Popen fixes the problem
(http://aspn.activestate.com/ASPN/Coo.../Recipe/440554)

I don't understand how it works though. Would anyone mind
explaining? I'm thinking there's something fundamental about Unix
processes I'm not understanding.

-Greg

Sep 23 '07 #2
On Sep 22, 8:28 pm, "gregpin...@gmail.com" <gregpin...@gmail.com>
wrote:
Let's say I have this Python file called loop.py:

import sys
print 'hi'
sys.stdout.flush()
Add sys.stdout.close()
while 1:
pass

And I want to call it from another Python process and read the value
'hi'. How would I do it?

So far I have tried this:
>proc = subprocess.Popen('python /home/chiefinnovator/loop.py',shell=True,stdin=subprocess.PIPE,stdout=s ubprocess.PIPE)
proc.stdout.read()

But it just hangs at read()

proc.communicate() also just hangs. What am I doing wrong? Please
advise.
Since your loop.py is still alive and hasn't closed its stdout, the
caller continues to wait for EOF (it doesn't know if loop.py is done
generating all its output)

Karthik
>
Thanks,

Greg

Sep 23 '07 #3
In message <11**********************@19g2000hsx.googlegroups. com>,
gr********@gmail.com wrote:
Let's say I have this Python file called loop.py:

import sys
print 'hi'
sys.stdout.flush()
while 1:
pass

And I want to call it from another Python process and read the value
'hi'. How would I do it?

So far I have tried this:
>>>proc = subprocess.Popen('python
/home/chiefinnovator/loop.py',shell=True,stdin=subprocess.PIPE,stdout=s ubprocess.PIPE)
proc.stdout.read()

But it just hangs at read()
That's because you didn't tell it how much to read, so by default it tries
to read until EOF <http://docs.python.org/lib/bltin-file-objects.html>. But
since the subprocess is still running and hasn't closed its stdout, the
pipe has not reached EOF.
Sep 24 '07 #4
In message <11*********************@d55g2000hsg.googlegroups. com>,
gr********@gmail.com wrote:
Well, using this subclass of subprocess.Popen fixes the problem
(http://aspn.activestate.com/ASPN/Coo.../Recipe/440554)

I don't understand how it works though. Would anyone mind
explaining? I'm thinking there's something fundamental about Unix
processes I'm not understanding.
The "select" calls are checking that the subprocess is ready to read before
writing to its stdin, or that it has something to write before reading from
its stdout.

The O_NONBLOCK fcntl simply says not to wait if there is nothing more to be
read, just return what was already read.
Sep 24 '07 #5
On Sep 23, 2:58 am, Karthik Gurusamy <kar1...@gmail.comwrote:
On Sep 22, 8:28 pm, "gregpin...@gmail.com" <gregpin...@gmail.com>
wrote:
Let's say I have this Python file called loop.py:
import sys
print 'hi'
sys.stdout.flush()

Add sys.stdout.close()
Adding sys.stdout.close() and removing sys.stdout.flush() seems to
make it work. But can the while loop still use sys.stdout later on?
Do I have to reopen it?

Thanks,

Greg
Sep 24 '07 #6
On Sep 24, 2:22 pm, "gregpin...@gmail.com" <gregpin...@gmail.com>
wrote:
On Sep 23, 2:58 am, Karthik Gurusamy <kar1...@gmail.comwrote:
On Sep 22, 8:28 pm, "gregpin...@gmail.com" <gregpin...@gmail.com>
wrote:
Let's say I have this Python file called loop.py:
import sys
print 'hi'
sys.stdout.flush()
Add sys.stdout.close()

Adding sys.stdout.close() and removing sys.stdout.flush() seems to
make it work. But can the while loop still use sys.stdout later on?
Do I have to reopen it?
Once you close a file-object, you cannot use it. You'll get exception
if you try.
I quickly tried the fdopen on id 1 (stdout in unix like OS) and it
seems to work
>>import sys
sys.stdout.close()
import os
print 'hi'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: I/O operation on closed file
>>sys.stdout=os.fdopen(1, 'w')
print 'hi'
hi
>>>
BUT you may want to re-think your design. Note that your caller
process will anyway stop reading further from your loop.py process
the moment it sees the "first" EOF. So even if you enable loop.py to
generate more output (thru' the above fdopen), the caller process is
not going to see the newly generated data.

If your requirement is to collect all output from loop.py then you
can't do it if loop.py has an infinite loop across its data generation
points (ie it can generate data after the infinite loop -- which
anyway doesn't sense).

If all you want is not to get blocked, try one of the select solutions
or read a small amount at a time (which you can guarantee to be
available). Yet another solution would be you could set up an alarm
and get out of the blocking read if the alarm fires.

Karthik
>
Thanks,

Greg

Sep 25 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: calmar | last post by:
Hi all, first of all, I have to say I have hardly no knowledge about that issue. on the program there, I have it like that: ,------------------------------------------------------- | obj...
0
by: Christoph Haas | last post by:
Evening, I'm having trouble with running a process through Python 2.4's subprocess module. Example code: ======================================================== def run(command): run =...
13
by: bayer.justin | last post by:
Hi, I am trying to communicate with a subprocess via the subprocess module. Consider the following example: <subprocess.Popen object at 0x729f0> Here hey is immediately print to stdout of...
12
by: Eric_Dexter | last post by:
I am trying to modify a programming example and I am coming up with two problems... first is that I can't seem to pass along the arguments to the external command (I have been able to do that with...
1
by: Mrown | last post by:
Hi, I'm currently writing a python program that relies on a CLI program. What I'm currently doing is using subprocess.Popen on Python 2.5.1. Here's the line that I'm currently running: child...
1
by: Marko Rauhamaa | last post by:
This tiny program hangs: ======================================================================== #!/usr/bin/env python import subprocess a = subprocess.Popen('cat',shell = True,stdin =...
7
by: skunkwerk | last post by:
Hi, i'm trying to call subprocess.popen on the 'rename' function in linux. When I run the command from the shell, like so: rename -vn 's/\.htm$/\.html/' *.htm it works fine... however when I...
0
by: Christian Heimes | last post by:
Kenneth McDonald wrote: The subprocess module has already an API method for your use case. The communicate() method of a subprocess.Popen instance takes an optional stdin string and returns the...
5
by: thedsadude | last post by:
Hello, I'm launching a script as follows: <code> p = subprocess.Popen() p.wait() </code> If p.py writes to sys.stdout, then it is shown on the console.
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

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.