Cache Array Routing Protocol is used in load-balancing HTTP requests.
0
votes
2answers
140 views
CARP: Bizarre copy of ARRAY in sassign. Any fixes?
I'm suffering an annoying problem when trying to die form within an eval;
The code is as follows;
$status = eval { $self->$func( @{$y->{args}} ); };
in this case $self->$func points to a ...
1
vote
3answers
301 views
Can't install Carp-1.25
I have installed Strawberry Perl for Windows, "DWIM Perl" from: http://dwimperl.com/.
I would like to use Carp. So I have downloaded Carp-1.25 from CPAN, un-TAR-ed it, and ran nmake.
I get:
...
1
vote
2answers
164 views
CARP hash in Python
I am attempting to implement a CARP hash in Python as described in the following IETF draft:
http://tools.ietf.org/html/draft-vinod-carp-v1-03#section-3.1
Specifically:
3.1. Hash Function
...
1
vote
1answer
151 views
Calling 'confess' under Plack/Starman
I have a Plack/Starman application running with TryCatch statements that call 'confess' from the Carp module. However I notice that the confess output is not printing to STDOUT. I've tried routing ...
4
votes
2answers
288 views
Infinite loop in perl Carp module
We have some code which catches an exception, logs the message and then calls Carp::longmess to get the stacktrace.
So a simplified view of what we are doing is:
eval { <some SOAP::Lite stuff> ...
4
votes
1answer
243 views
croaking from a Moose BUILD method
I want my class to blow up if the BUILD method fails. However, if I use croak to handle the error, the error gets reported from Class/MOP/Method.pm, rather than the caller's code. (That is to say, the ...
15
votes
2answers
5k views
What's the difference between Carp/Croak, Cluck/Confess, and verbose options?
I haven't used Carp all that much because I've generally rolled my own. However, in the spirit of keeping with Core modules, I'm using it now. However, it seems like it's barely better than ...
1
vote
3answers
194 views
Why won't prove accept -MCarp=verbose?
I ran this test script:
use strict;
use warnings;
use Test::More tests => 3;
use Carp;
ok(1<2);
pass();
fail();
croak "example";
using the command line prove -MCarp=verbose -v foo.pl, and ...
1
vote
2answers
339 views
How can I change some specific carps into croaks in Perl?
I tried to catch a carp-warning:
carp "$start is > $end" if (warnings::enabled()); )
with eval {} but it didn't work, so I looked in the eval documentation and I discovered, that eval catches ...
0
votes
2answers
457 views
What does Carp::carp do in Perl?
Can anyone please explain me about carp subroutine with sample Perl code?
0
votes
1answer
32 views
Find/Replace using Carp
I use carp free 3.6.4 to display content from some wordpress rss feeds onto a web page but there are always encoding errors (I get the diamond question (U+DDDF) whenever a blog user uses curly quotes ...
15
votes
4answers
2k views
How can I replace all 'die's with 'confess' in a Perl application?
I'm working in a large Perl application and would like to get stack traces every time 'die' is called. I'm aware of the Carp module, but I would prefer not to search/replace every instance of 'die' ...
7
votes
4answers
382 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(...) \
...
16
votes
4answers
5k views
Why should I use Carp instead of warn in Perl?
People keep giving me examples with carp instead of warn. Why? What makes carp better than warn?