This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Problems with SKIP in makemaker
[perl5.git] / lib / Carp.pm
1 package Carp;
2
3 =head1 NAME
4
5 carp - warn of errors (from perspective of caller)
6
7 croak - die of errors (from perspective of caller)
8
9 confess - die of errors with stack backtrace
10
11 =head1 SYNOPSIS
12
13     use Carp;
14     croak "We're outta here!";
15
16 =head1 DESCRIPTION
17
18 The Carp routines are useful in your own modules because
19 they act like die() or warn(), but report where the error
20 was in the code they were called from.  Thus if you have a 
21 routine Foo() that has a carp() in it, then the carp() 
22 will report the error as occurring where Foo() was called, 
23 not where carp() was called.
24
25 =cut
26
27 # This package implements handy routines for modules that wish to throw
28 # exceptions outside of the current package.
29
30 $CarpLevel = 0;         # How many extra package levels to skip on carp.
31 $MaxEvalLen = 0;        # How much eval '...text...' to show. 0 = all.
32 $MaxArgLen = 64;        # How much of each argument to print. 0 = all.
33 $MaxArgNums = 8;        # How many arguments to print. 0 = all.
34
35 require Exporter;
36 @ISA = Exporter;
37 @EXPORT = qw(confess croak carp);
38
39 sub longmess {
40     my $error = join '', @_;
41     my $mess = "";
42     my $i = 1 + $CarpLevel;
43     my ($pack,$file,$line,$sub,$hargs,$eval,$require);
44     my (@a);
45     while (do { { package DB; @a = caller($i++) } } ) {
46       ($pack,$file,$line,$sub,$hargs,undef,$eval,$require) = @a;
47         if ($error =~ m/\n$/) {
48             $mess .= $error;
49         } else {
50             if (defined $eval) {
51                 if ($require) {
52                     $sub = "require $eval";
53                 } else {
54                     $eval =~ s/([\\\'])/\\$1/g;
55                     if ($MaxEvalLen && length($eval) > $MaxEvalLen) {
56                         substr($eval,$MaxEvalLen) = '...';
57                     }
58                     $sub = "eval '$eval'";
59                 }
60             } elsif ($sub eq '(eval)') {
61                 $sub = 'eval {...}';
62             }
63             if ($hargs) {
64               @a = @DB::args;   # must get local copy of args
65               if ($MaxArgNums and @a > $MaxArgNums) {
66                 $#a = $MaxArgNums;
67                 $a[$#a] = "...";
68               }
69               for (@a) {
70                 $_ = "undef", next unless defined $_;
71                 s/'/\\'/g;
72                 substr($_,$MaxArgLen) = '...' if $MaxArgLen and $MaxArgLen < length;
73                 s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;
74                 s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
75                 s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
76               }
77               $sub .= '(' . join(', ', @a) . ')';
78             }
79             $mess .= "\t$sub " if $error eq "called";
80             $mess .= "$error at $file line $line\n";
81         }
82         $error = "called";
83     }
84     $mess || $error;
85 }
86
87 sub shortmess { # Short-circuit &longmess if called via multiple packages
88     my $error = join '', @_;
89     my ($prevpack) = caller(1);
90     my $extra = $CarpLevel;
91     my $i = 2;
92     my ($pack,$file,$line);
93     my %isa = ($prevpack,1);
94
95     @isa{@{"${prevpack}::ISA"}} = ()
96         if(defined @{"${prevpack}::ISA"});
97
98     while (($pack,$file,$line) = caller($i++)) {
99         if(defined @{$pack . "::ISA"}) {
100             my @i = @{$pack . "::ISA"};
101             my %i;
102             @i{@i} = ();
103             @isa{@i,$pack} = ()
104                 if(exists $i{$prevpack} || exists $isa{$pack});
105         }
106
107         next
108             if(exists $isa{$pack});
109
110         if ($extra-- > 0) {
111             %isa = ($pack,1);
112             @isa{@{$pack . "::ISA"}} = ()
113                 if(defined @{$pack . "::ISA"});
114         }
115         else {
116             return "$error at $file line $line\n";
117         }
118     }
119     continue {
120         $prevpack = $pack;
121     }
122
123     goto &longmess;
124 }
125
126 sub confess { die longmess @_; }
127 sub croak { die shortmess @_; }
128 sub carp { warn shortmess @_; }
129
130 1;