Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

exec and pipe

0 views
Skip to first unread message

ientu

unread,
Oct 13, 2005, 11:25:10 AM10/13/05
to
Hi All,

I have been coding-testing-googling all day long but I couldn't find a
solution for this.
I need to create a pipe between some ruby code and a perl script. The
perl script will be the writer: the script prints on STDOUT lines of
information at a random pace.
These lines are to be processed in ruby in real time, as soon as they
enter the pipe, without waiting for the termination of the perl script.

Another requirement is that the perl script must be invoked from a ruby
class.

I have tried with the following:

readme, writeme = IO.pipe
pid = fork {
$stdout = writeme
readme.close
exec('perl some_script.pl')
}
# Process.waitpid(pid,0)
# do not wait for the process to terminate
# read output in real time

writeme.close
while readme.gets do
puts 'processing: ' + $_
...
end


This doesn't work, apparently when I run 'exec' STDOUT is reopened and
I get the output from the perl script on screen.

What am I doing wrong?
Is this the right approach?


Many thanks
/giulio

Hugh Sasse

unread,
Oct 13, 2005, 11:33:05 AM10/13/05
to
On Fri, 14 Oct 2005, ientu wrote:

> Hi All,
>
> I have been coding-testing-googling all day long but I couldn't find a
> solution for this.
> I need to create a pipe between some ruby code and a perl script. The
> perl script will be the writer: the script prints on STDOUT lines of
> information at a random pace.
> These lines are to be processed in ruby in real time, as soon as they
> enter the pipe, without waiting for the termination of the perl script.
>
> Another requirement is that the perl script must be invoked from a ruby
> class.
>
> I have tried with the following:
>
> readme, writeme = IO.pipe
> pid = fork {
> $stdout = writeme
> readme.close
> exec('perl some_script.pl')

I think you want IO.popen for this. Two examples that worked for
me:
http://www.eng.cse.dmu.ac.uk/~hgs/ruby/html_spell.rb
http://www.eng.cse.dmu.ac.uk/~hgs/ruby/top.rb

Hugh


ientu

unread,
Oct 13, 2005, 11:45:22 AM10/13/05
to
I think IO.popen waits for the process to terminate before putting any
data into the pipe. This doesn't work for me, as I have to process the
output in real time.

thanks
.g

ientu

unread,
Oct 13, 2005, 11:51:21 AM10/13/05
to
By the way the same *?wrong?* code is in the CookBook at
http://pleac.sourceforge.net/pleac_ruby/processmanagementetc.html

....
# so the "clean and secure" version


readme, writeme = IO.pipe
pid = fork {

# child
$stdout = writeme
readme.close
exec('find', '..')
}
# parent
Process.waitpid(pid, 0)
writeme.close
while readme.gets do
# do something with $_
end
....

Ara.T.Howard

unread,
Oct 13, 2005, 12:02:59 PM10/13/05
to
On Fri, 14 Oct 2005, ientu wrote:

that's what popen is for:

harp:~ > cat a.rb
STDOUT.sync = true and loop{ sleep 0.42 and puts Time::now }

harp:~ > cat b.rb
IO::popen('ruby a.rb'){|pipe| loop{ print pipe.gets }}

harp:~ > ruby b.rb
Thu Oct 13 09:58:03 MDT 2005
Thu Oct 13 09:58:03 MDT 2005
Thu Oct 13 09:58:04 MDT 2005
Thu Oct 13 09:58:04 MDT 2005
Thu Oct 13 09:58:04 MDT 2005
Thu Oct 13 09:58:05 MDT 2005
Thu Oct 13 09:58:05 MDT 2005
Thu Oct 13 09:58:06 MDT 2005
Thu Oct 13 09:58:06 MDT 2005
Thu Oct 13 09:58:07 MDT 2005
Thu Oct 13 09:58:07 MDT 2005
Thu Oct 13 09:58:07 MDT 2005
Thu Oct 13 09:58:08 MDT 2005
Thu Oct 13 09:58:08 MDT 2005
Thu Oct 13 09:58:09 MDT 2005
...
...
...

perhaps your perl code is buffering output. make sure the stdout of the perl
process is not fully buffered. programs are, by default, fully buffered when
run into a pipe.


you can 'fix' broken code by creating a wrapper that does

#! /usr/bin/env ruby
STDOUT.sync = true
exec(ARGV.join(' '))

and running all code, including perl code, under this wrapper. so

IO::popen('wrapper a.pl'){|pipe| loop{ print pipe.gets }}


hth.

-a
--
===============================================================================
| email :: ara [dot] t [dot] howard [at] noaa [dot] gov
| phone :: 303.497.6469
| Your life dwells amoung the causes of death
| Like a lamp standing in a strong breeze. --Nagarjuna
===============================================================================

ientu

unread,
Oct 13, 2005, 6:23:21 PM10/13/05
to
thanks Ara!

probably I should have posted this on a perl newsgroup ....
adding
autoflush STDOUT 1
to my perl script solved the problem!


thanks gain
.g

0 new messages