Tagged Questions
12
votes
3answers
2k views
How can I get around a 'die' call in a Perl library I can't modify?
Yes, the problem is with a library I'm using, and no, I cannot modify it. I need a workaround.
Basically, I'm dealing with a badly written Perl library, that exits with 'die' when a certain error ...
8
votes
5answers
395 views
Perl built in exit and print in one command
I know I can die but that prints out the script name and line number.
I like to do things like die 'error' if $problem;
Is there a way to do that without printing line number stuff?
It would be ...
8
votes
2answers
914 views
Forking subprocesses in Perl unit tests stops prove; Test::Harness exiting
I have been trying to use the Perl utility/module "prove" as a test harness for some unit tests. The unit tests are a little more "system" than "unit" as I need to fork off some background processes ...
7
votes
4answers
320 views
Is there a C equivalent for Perl's Carp module?
In some projects I've done in C, I've liked using the following macros which work similar to Perl's warn and die subroutines:
#include <stdio.h>
#include <stdlib.h>
#define warn(...) \
...
6
votes
2answers
341 views
How can I make Perl die if a warning is generated?
I would like my script perl to die whenever a warning is generated, including warnings which are generated by used packages.
For example, this should die:
use strict;
use warnings;
use ...
5
votes
2answers
208 views
How do I handle both caught and uncaught errors in a Perl subroutine?
This is a followup to "How can I get around a ‘die’ call in a Perl library I can’t modify?".
I have a subroutine that calls a Library-Which-Crashes-Sometimes many times. Rather than couch each call ...
4
votes
1answer
182 views
What is the correct way to die with an error but without a stack trace in perl?
I am writing a perl script, and in the part where I am checking the options that the user supplied on the command line, I want to exit with an error explaining what was wrong with the options. In this ...
3
votes
4answers
163 views
Can the Perl compiler tell me if I have an unchecked exception in my code?
Is there a way in Perl to declare that a method can throw an error (or die)?
EDIT: What interests me the most is a way to get the compiler or IDE to tell me I have an unchecked exception somewhere in ...
3
votes
5answers
2k views
Perl: catch error without die
I'm playing around with error handling and got a little problem.
I connect with a database using the DBI module.
I do my own error handling by using a subroutine that I call upon an error.
I can ...
2
votes
3answers
115 views
How can I prevent my perl script from terminating if an exception is thrown in a module it uses?
I have a perl script, using standard-as-dirt Net::HTTP code, and perl 5.8.8.
I have come across an error condition in which the server returns 0 bytes of data when I call:
...
2
votes
3answers
647 views
How can I redirect output of die function to a file in Perl?
I want to redirect the die messages to a separate file so that I can compare that file later to determine what went wrong.
But this code gives me errors:
$ cat test.pl
use strict;
use warnings;
my ...
2
votes
1answer
217 views
How do I test for an exception type in perl?
How can I check what kind of exception caused the script or eval block to terminate?
I need to know the type of error, and where the exception occurred.
1
vote
5answers
104 views
Perl: How to “die” with no error message?
I run a simple file test in perl with the code below:
my $f1 = "$pre_file";
unless (-e $1) {
print "\n Pre_check file does not exists! \n";
die;
}
It prints the following output:
...
1
vote
3answers
275 views
How can I run a system command and die if anything is written to STDERR?
I'm writing a Perl script which uses an external script. The external script must run from a specific directory so I found the following useful:
use IPC::System::Simple qw(capture);
my @args = ...
1
vote
4answers
457 views
How to execute a perl script within php and capture error messages?
I am trying to execute a Perl script like so:
/usr/bin/ec2-consistent-snapshot 'vol-dr3131c2'
When the Perl script fails it exits using 'die' and prints out an error message. I can see that error ...
0
votes
2answers
158 views
WWW::Mechanize::GZip triggering __DIE__ signal…why?
It's taken me a while to track down a sudden problem with my code, but it appears that WWW::Mechanize::GZip is somehow triggering my $SIG{DIE} handler. Consider this code:
use strict;
use ...
-2
votes
1answer
66 views
Perl better way to exit in a required file [closed]
I am writing a loader program to decrypt source files and run them. Each source file holds a Curses::UI based program which contain subroutines that the user may use to exit the user interface. I need ...