Hallo!
Hier eine Kopfnuss:
Ich rufe mit popen3 einen Shell-Befehl auf. Ich möchte die Standard-Ausgabe und die Standard-Eingabe lesen. Komischerweise funktioniert es ab und zu. Manchmal bleibt der Prozess jedoch stehten (*hier*). Code (Python):
from os import popen3 (stdin, stdout, stderr)=popen3("foo_command2") text_stdout=stdout.read() # *hier* print text_stdout text_stderr=stdout.read() print text_stderr
Habe eine Weile gebraucht bis ich die Lösung gefunden habe. Wer die Lösung weiß, kann sich ja melden. Aber die Antwort bitte nicht gleich verraten. Sonst ist es ja langweilig.
thomas
Am Dienstag, dem 12. März 2002 um 21:23:25, schrieb Thomas Guettler:
Ich rufe mit popen3 einen Shell-Befehl auf. Ich möchte die Standard-Ausgabe und die Standard-Eingabe lesen.
Standard-Eingabe lesen? Sicher?
Code (Python):
Ich kenne die Details von Python nicht, aber ich denke, dass folgende Warnung dort auch gilt:
$ perldoc IPC::Open3 ... If you try to read from the child's stdout writer and their stderr writer, you'll have problems with blocking, which means you'll want to use select() or the IO::Select, which means you'd best use sysread() instead of readline() for normal stuff.
This is very dangerous, as you may block forever. It assumes it's going to talk to something like bc, both writing to it and reading from it. This is presumably safe because you "know" that commands like bc will read a line at a time and output a line at a time. Programs like sort that read their entire input stream first, however, are quite apt to cause deadlock. ...
Torsten
On Tue, Mar 12, 2002 at 11:37:39PM +0100, Torsten Werner wrote:
Am Dienstag, dem 12. März 2002 um 21:23:25, schrieb Thomas Guettler:
Ich rufe mit popen3 einen Shell-Befehl auf. Ich möchte die Standard-Ausgabe und die Standard-Eingabe lesen.
Standard-Eingabe lesen? Sicher?
Code (Python):
Ich kenne die Details von Python nicht, aber ich denke, dass folgende Warnung dort auch gilt:
$ perldoc IPC::Open3 ... If you try to read from the child's stdout writer and their stderr writer, you'll have problems with blocking, which means you'll want to use select() or the IO::Select, which means you'd best use sysread() instead of readline() for normal stuff.
Ja, das ist das Problem. Hat mich ganz schön gedauert bis ich auf diese Lösung gekommen bin. Dead Locks haben wir zwar beim Studium an der HTW kennengelernt, doch das ist nun das erste mal, dass ich darüber gestolpert bin.
thomas
lug-dd@mailman.schlittermann.de