using pipe, but subprocess didn't flush.

K

kim jun young

hi, all,

I wanna to execute subprocess and catch subprocess' output from a pipe
in a parent process.

but, unfortunately, a subprocess didn't flush it's output in stdout.
As a result, the parent process cannot recognize what the subprocess
did.

this is a sample code for my case.

clue 1) when I executed "isql -Usybase -P -SHOME_SERVER"

the first prompt of it is

1>

clue 2) in my program, I executed this.
read = IO.popen("isql -Usybase -P -SHOME_SERVER", "r")

puts read.sysread(2)

read.close

also it printout "1>"

clue 3) different case of clue 2
read = IO.popen("isql -Usybase -P -SHOME_SERVER", "r+") # read-write
mode

puts read.sysread(2)

read.close

it doesn't print out anything.

clue 4) different case of clue 2
require "open3"
include Open3

stdin, stdout, stderr = popen3("isql -Usybase -P -SHOME_SERVER")

puts stdout.sysread(1) <-- wait forever.

could you suggest me solution?
 
R

Robert Klemme

hi, all,

I wanna to execute subprocess and catch subprocess' output from a pipe
in a parent process.

but, unfortunately, a subprocess didn't flush it's output in stdout.
As a result, the parent process cannot recognize what the subprocess
did.

this is a sample code for my case.

clue 1) when I executed "isql -Usybase -P -SHOME_SERVER"

the first prompt of it is

1>

clue 2) in my program, I executed this.
read = IO.popen("isql -Usybase -P -SHOME_SERVER", "r")

puts read.sysread(2)

Why are you using #sysread?
read.close

also it printout "1>"

This is most likely because stdin of the child is closed which makes
"isql" terminate and hence flush its IO buffers.
clue 3) different case of clue 2
read = IO.popen("isql -Usybase -P -SHOME_SERVER", "r+") # read-write
mode

puts read.sysread(2)

read.close

it doesn't print out anything.

clue 4) different case of clue 2
require "open3"
include Open3

stdin, stdout, stderr = popen3("isql -Usybase -P -SHOME_SERVER")

puts stdout.sysread(1) <-- wait forever.

could you suggest me solution?

You have no control over how the child process does its IO. If it
chooses to do IO buffering you cannot switch if off externally unless
the program provides a mechanism to do so.

I believe there is a library for setting up pseudo terminals in Ruby
programs which might work if "isql" uses that information to decide
whether to sync IO or not. If that does not work, you're probably out
of luck.

IMHO you better try to access MS SQL Server or Sybase (whichever you
use) via DBD / DBI if possible at all.

Kind regards

robert
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,165
Latest member
JavierBrak
Top