Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a Perl noob, so please excuse this basic question. I need to modify an existing Perl program. I want to pipe a string (Which can contain multiple lines) through an external program and read the output from this program. So this external program is used to modify the string. Let's simply use cat as a filter program. I tried it like this but it doesn't work. (Output of cat goes to stdout instead of being read by perl.)

#!/usr/bin/perl

open(MESSAGE, "| cat |") or die("cat failed\n");
print MESSAGE "Line 1\nLine 2\n";
my $message = "";
while (<MESSAGE>)
{
    $message .= $_;
}
close(MESSAGE);
print "This is the message: $message\n";

I've read that this isn't supported by Perl because it may end up in a deadlock and I can understand it. But how do I do it then?

share|improve this question
The perlipc manual page has a discussion and plenty of examples of different approaches. – tripleee May 26 '12 at 10:16

3 Answers

up vote 6 down vote accepted

You can use IPC::Open3 to achieve bi-directional communication with child.

use strict;
use IPC::Open3;

my $pid = open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR, 'cat')
    or die "open3() failed $!";

my $r;

for(my $i=1;$i<10;$i++) {
    print CHLD_IN "$i\n";
    $r = <CHLD_OUT>;
    print "Got $r from child\n";
}
share|improve this answer
Works perfectly. Thanks. Used open2 instead of open3 because I don't care about stderr. – kayahr May 26 '12 at 16:53

This involves system programming, so it’s more than a basic question. As written, your main program doesn’t require full-duplex interaction with the external program. Dataflow travels in one direction, namely

string → external program → main program

Creating this pipeline is straightforward. Perl’s open has a useful mode explained in the “Safe pipe opens” section of the perlipc documentation.

Another interesting approach to interprocess communication is making your single program go multiprocess and communicate between—or even amongst—yourselves. The open function will accept a file argument of either "-|" or "|-" to do a very interesting thing: it forks a child connected to the filehandle you’ve opened. The child is running the same program as the parent. This is useful for safely opening a file when running under an assumed UID or GID, for example. If you open a pipe to minus, you can write to the filehandle you opened and your kid will find it in his STDIN. If you open a pipe from minus, you can read from the filehandle you opened whatever your kid writes to his STDOUT.

This is an open that involves a pipe, which gives nuance to the return value. The perlfunc documentation on open explains.

If you open a pipe on the command - (that is, specify either |- or -| with the one- or two-argument forms of open), an implicit fork is done, so open returns twice: in the parent process it returns the pid of the child process, and in the child process it returns (a defined) 0. Use defined($pid) or // to determine whether the open was successful.

To create the scaffolding, we work in right-to-left order using open to fork a new process at each step.

  1. Your main program is already running.
  2. Next, fork a process that will eventually become the external program.
  3. Inside the process from step 2
    1. First fork the string-printing process so as to make its output arrive on our STDIN.
    2. Then exec the external program to perform its transformation.
  4. Have the string-printer do its work and then exit, which kicks up to the next level.
  5. Back in the main program, read the transformed result.

With all of that set up, all you have to do is implant your suggestion at the bottom, Mr. Cobb.

#! /usr/bin/env perl

use 5.10.0;  # for defined-or and given/when
use strict;
use warnings;

my @transform = qw( tr [A-Za-z] [N-ZA-Mn-za-m] );  # rot13
my @inception = (
  "V xabj, Qnq. Lbh jrer qvfnccbvagrq gung V pbhyqa'g or lbh.",
  "V jnf qvfnccbvagrq gung lbh gevrq.",
);

sub snow_fortress { print map "$_\n", @inception }

sub hotel {
  given (open STDIN, "-|" // die "$0: fork: $!") {  # / StackOverflow hiliter
    snow_fortress when 0;
    exec @transform or die "$0: exec: $!";
  }
}

given (open my $fh, "-|" // die "$0: fork: $!") {
  hotel when 0;

  print while <$fh>;
  close $fh or warn "$0: close: $!";
}

Thanks for the opportunity to write such a fun program!

share|improve this answer

By your decription, you could inline the string in the command. Basically, open(h, "echo '$string"' | cat |") although you will likely need to make it somewhat more elaborate. The point is, make your command accept your data as a command-line argument, and put your input data un that argument. (In my example, $string is a Perl variable; the double quotes mean Perl will unterpolate it, in spite of the fact that the string contains single quotes within.)

share|improve this answer
This looks promising but so far I always loose the single-quotes or double-quotes in $string (Depends on which character I use in the command). Is it possible to retain both somehow? – kayahr May 26 '12 at 12:23
@kayahr You can use qq() or q() to double quote and single quote a string respectively. See perldoc perlop for more information. – TLP May 26 '12 at 14:21
Or you could use a here document. – tripleee May 26 '12 at 15:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.