vote up 1 vote down star

Hi,

I'm trying to handle the possibility that that no arguments and no piped data is passed to a Perl script. I'm assuming that if there are no arguments then input is being piped via STDIN. However if the user provides no arguments and does not pipe anything to the script, it will try to get keyboard input. My objective is to provide an error message instead.

Unfortunately, select() is not portable to some non-POSIX systems. Is there another way to do this with maximum portability?

flag
I hope I'm not out of line in retagging this from Python to Perl... – David Feb 6 at 3:59

3 Answers

vote up 7 vote down check

Perl comes with the -t file-test operator, which tells you if a particular filehandle is open to a TTY. So, you should be able to do this:

if ( -t STDIN and not @ARGV ) {
    # We're talking to a terminal, but have no command line arguments.
    # Complain loudly.
}
else {
    # We're either reading from a file or pipe, or we have arguments in
    # @ARGV to process.
}

A quick test reveals this working fine on Windows with Perl 5.10.0, and Linux with Perl 5.8.8, so it should be portable across the most common Perl environments.

As others have mentioned, select would not be a reliable choice as there may be times when you're reading from a process, but that process hasn't started writing yet.

All the best,

Paul

link|flag
Confirmed to work on Mac OS X. +5 if I could, but I can't, so +1. – Chris Lutz Feb 6 at 5:53
vote up 5 vote down
use POSIX 'isatty';
if ( ! @ARGV && isatty(*STDIN) ) {
    die "usage: ...";
}

See: http://www.opengroup.org/onlinepubs/009695399/functions/isatty.html

Note that select wouldn't be much help anyway, since it would produce false results if the piped info wasn't ready yet. Example:

seq 100000|grep 99999|perl -we'$rin="";vec($rin,fileno(STDIN),1)=1;print 0+select($rin,"","",.01)'
link|flag
vote up 0 vote down

Short: No.

Long: Use select and don't support non-POSIX, OR, find the specific matching functionality on the individual non-POSIX systems and use that.

Actually, I just noticed that you mention Perl in your question (and python as a tag, but that's another issue). On what platform that Perl runs is select not working exactly?

link|flag

Your Answer

Get an OpenID
or

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