Rashed Abdel-Tawab | 4db47f4 | 2019-09-06 10:38:22 -0700 | [diff] [blame] | 1 | package Carp; |
| 2 | |
| 3 | { use 5.006; } |
| 4 | use strict; |
| 5 | use warnings; |
| 6 | BEGIN { |
| 7 | # Very old versions of warnings.pm load Carp. This can go wrong due |
| 8 | # to the circular dependency. If warnings is invoked before Carp, |
| 9 | # then warnings starts by loading Carp, then Carp (above) tries to |
| 10 | # invoke warnings, and gets nothing because warnings is in the process |
| 11 | # of loading and hasn't defined its import method yet. If we were |
| 12 | # only turning on warnings ("use warnings" above) this wouldn't be too |
| 13 | # bad, because Carp would just gets the state of the -w switch and so |
| 14 | # might not get some warnings that it wanted. The real problem is |
| 15 | # that we then want to turn off Unicode warnings, but "no warnings |
| 16 | # 'utf8'" won't be effective if we're in this circular-dependency |
| 17 | # situation. So, if warnings.pm is an affected version, we turn |
| 18 | # off all warnings ourselves by directly setting ${^WARNING_BITS}. |
| 19 | # On unaffected versions, we turn off just Unicode warnings, via |
| 20 | # the proper API. |
| 21 | if(!defined($warnings::VERSION) || eval($warnings::VERSION) < 1.06) { |
| 22 | ${^WARNING_BITS} = ""; |
| 23 | } else { |
| 24 | "warnings"->unimport("utf8"); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | sub _fetch_sub { # fetch sub without autovivifying |
| 29 | my($pack, $sub) = @_; |
| 30 | $pack .= '::'; |
| 31 | # only works with top-level packages |
| 32 | return unless exists($::{$pack}); |
| 33 | for ($::{$pack}) { |
| 34 | return unless ref \$_ eq 'GLOB' && *$_{HASH} && exists $$_{$sub}; |
| 35 | for ($$_{$sub}) { |
| 36 | return ref \$_ eq 'GLOB' ? *$_{CODE} : undef |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | # UTF8_REGEXP_PROBLEM is a compile-time constant indicating whether Carp |
| 42 | # must avoid applying a regular expression to an upgraded (is_utf8) |
| 43 | # string. There are multiple problems, on different Perl versions, |
| 44 | # that require this to be avoided. All versions prior to 5.13.8 will |
| 45 | # load utf8_heavy.pl for the swash system, even if the regexp doesn't |
| 46 | # use character classes. Perl 5.6 and Perls [5.11.2, 5.13.11) exhibit |
| 47 | # specific problems when Carp is being invoked in the aftermath of a |
| 48 | # syntax error. |
| 49 | BEGIN { |
| 50 | if("$]" < 5.013011) { |
| 51 | *UTF8_REGEXP_PROBLEM = sub () { 1 }; |
| 52 | } else { |
| 53 | *UTF8_REGEXP_PROBLEM = sub () { 0 }; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | # is_utf8() is essentially the utf8::is_utf8() function, which indicates |
| 58 | # whether a string is represented in the upgraded form (using UTF-8 |
| 59 | # internally). As utf8::is_utf8() is only available from Perl 5.8 |
| 60 | # onwards, extra effort is required here to make it work on Perl 5.6. |
| 61 | BEGIN { |
| 62 | if(defined(my $sub = _fetch_sub utf8 => 'is_utf8')) { |
| 63 | *is_utf8 = $sub; |
| 64 | } else { |
| 65 | # black magic for perl 5.6 |
| 66 | *is_utf8 = sub { unpack("C", "\xaa".$_[0]) != 170 }; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | # The downgrade() function defined here is to be used for attempts to |
| 71 | # downgrade where it is acceptable to fail. It must be called with a |
| 72 | # second argument that is a true value. |
| 73 | BEGIN { |
| 74 | if(defined(my $sub = _fetch_sub utf8 => 'downgrade')) { |
| 75 | *downgrade = \&{"utf8::downgrade"}; |
| 76 | } else { |
| 77 | *downgrade = sub { |
| 78 | my $r = ""; |
| 79 | my $l = length($_[0]); |
| 80 | for(my $i = 0; $i != $l; $i++) { |
| 81 | my $o = ord(substr($_[0], $i, 1)); |
| 82 | return if $o > 255; |
| 83 | $r .= chr($o); |
| 84 | } |
| 85 | $_[0] = $r; |
| 86 | }; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | our $VERSION = '1.42'; |
| 91 | $VERSION =~ tr/_//d; |
| 92 | |
| 93 | our $MaxEvalLen = 0; |
| 94 | our $Verbose = 0; |
| 95 | our $CarpLevel = 0; |
| 96 | our $MaxArgLen = 64; # How much of each argument to print. 0 = all. |
| 97 | our $MaxArgNums = 8; # How many arguments to print. 0 = all. |
| 98 | our $RefArgFormatter = undef; # allow caller to format reference arguments |
| 99 | |
| 100 | require Exporter; |
| 101 | our @ISA = ('Exporter'); |
| 102 | our @EXPORT = qw(confess croak carp); |
| 103 | our @EXPORT_OK = qw(cluck verbose longmess shortmess); |
| 104 | our @EXPORT_FAIL = qw(verbose); # hook to enable verbose mode |
| 105 | |
| 106 | # The members of %Internal are packages that are internal to perl. |
| 107 | # Carp will not report errors from within these packages if it |
| 108 | # can. The members of %CarpInternal are internal to Perl's warning |
| 109 | # system. Carp will not report errors from within these packages |
| 110 | # either, and will not report calls *to* these packages for carp and |
| 111 | # croak. They replace $CarpLevel, which is deprecated. The |
| 112 | # $Max(EvalLen|(Arg(Len|Nums)) variables are used to specify how the eval |
| 113 | # text and function arguments should be formatted when printed. |
| 114 | |
| 115 | our %CarpInternal; |
| 116 | our %Internal; |
| 117 | |
| 118 | # disable these by default, so they can live w/o require Carp |
| 119 | $CarpInternal{Carp}++; |
| 120 | $CarpInternal{warnings}++; |
| 121 | $Internal{Exporter}++; |
| 122 | $Internal{'Exporter::Heavy'}++; |
| 123 | |
| 124 | # if the caller specifies verbose usage ("perl -MCarp=verbose script.pl") |
| 125 | # then the following method will be called by the Exporter which knows |
| 126 | # to do this thanks to @EXPORT_FAIL, above. $_[1] will contain the word |
| 127 | # 'verbose'. |
| 128 | |
| 129 | sub export_fail { shift; $Verbose = shift if $_[0] eq 'verbose'; @_ } |
| 130 | |
| 131 | sub _cgc { |
| 132 | no strict 'refs'; |
| 133 | return \&{"CORE::GLOBAL::caller"} if defined &{"CORE::GLOBAL::caller"}; |
| 134 | return; |
| 135 | } |
| 136 | |
| 137 | sub longmess { |
| 138 | local($!, $^E); |
| 139 | # Icky backwards compatibility wrapper. :-( |
| 140 | # |
| 141 | # The story is that the original implementation hard-coded the |
| 142 | # number of call levels to go back, so calls to longmess were off |
| 143 | # by one. Other code began calling longmess and expecting this |
| 144 | # behaviour, so the replacement has to emulate that behaviour. |
| 145 | my $cgc = _cgc(); |
| 146 | my $call_pack = $cgc ? $cgc->() : caller(); |
| 147 | if ( $Internal{$call_pack} or $CarpInternal{$call_pack} ) { |
| 148 | return longmess_heavy(@_); |
| 149 | } |
| 150 | else { |
| 151 | local $CarpLevel = $CarpLevel + 1; |
| 152 | return longmess_heavy(@_); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | our @CARP_NOT; |
| 157 | |
| 158 | sub shortmess { |
| 159 | local($!, $^E); |
| 160 | my $cgc = _cgc(); |
| 161 | |
| 162 | # Icky backwards compatibility wrapper. :-( |
| 163 | local @CARP_NOT = $cgc ? $cgc->() : caller(); |
| 164 | shortmess_heavy(@_); |
| 165 | } |
| 166 | |
| 167 | sub croak { die shortmess @_ } |
| 168 | sub confess { die longmess @_ } |
| 169 | sub carp { warn shortmess @_ } |
| 170 | sub cluck { warn longmess @_ } |
| 171 | |
| 172 | BEGIN { |
| 173 | if("$]" >= 5.015002 || ("$]" >= 5.014002 && "$]" < 5.015) || |
| 174 | ("$]" >= 5.012005 && "$]" < 5.013)) { |
| 175 | *CALLER_OVERRIDE_CHECK_OK = sub () { 1 }; |
| 176 | } else { |
| 177 | *CALLER_OVERRIDE_CHECK_OK = sub () { 0 }; |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | sub caller_info { |
| 182 | my $i = shift(@_) + 1; |
| 183 | my %call_info; |
| 184 | my $cgc = _cgc(); |
| 185 | { |
| 186 | # Some things override caller() but forget to implement the |
| 187 | # @DB::args part of it, which we need. We check for this by |
| 188 | # pre-populating @DB::args with a sentinel which no-one else |
| 189 | # has the address of, so that we can detect whether @DB::args |
| 190 | # has been properly populated. However, on earlier versions |
| 191 | # of perl this check tickles a bug in CORE::caller() which |
| 192 | # leaks memory. So we only check on fixed perls. |
| 193 | @DB::args = \$i if CALLER_OVERRIDE_CHECK_OK; |
| 194 | package DB; |
| 195 | @call_info{ |
| 196 | qw(pack file line sub has_args wantarray evaltext is_require) } |
| 197 | = $cgc ? $cgc->($i) : caller($i); |
| 198 | } |
| 199 | |
| 200 | unless ( defined $call_info{file} ) { |
| 201 | return (); |
| 202 | } |
| 203 | |
| 204 | my $sub_name = Carp::get_subname( \%call_info ); |
| 205 | if ( $call_info{has_args} ) { |
| 206 | my @args; |
| 207 | if (CALLER_OVERRIDE_CHECK_OK && @DB::args == 1 |
| 208 | && ref $DB::args[0] eq ref \$i |
| 209 | && $DB::args[0] == \$i ) { |
| 210 | @DB::args = (); # Don't let anyone see the address of $i |
| 211 | local $@; |
| 212 | my $where = eval { |
| 213 | my $func = $cgc or return ''; |
| 214 | my $gv = |
| 215 | (_fetch_sub B => 'svref_2object' or return '') |
| 216 | ->($func)->GV; |
| 217 | my $package = $gv->STASH->NAME; |
| 218 | my $subname = $gv->NAME; |
| 219 | return unless defined $package && defined $subname; |
| 220 | |
| 221 | # returning CORE::GLOBAL::caller isn't useful for tracing the cause: |
| 222 | return if $package eq 'CORE::GLOBAL' && $subname eq 'caller'; |
| 223 | " in &${package}::$subname"; |
| 224 | } || ''; |
| 225 | @args |
| 226 | = "** Incomplete caller override detected$where; \@DB::args were not set **"; |
| 227 | } |
| 228 | else { |
| 229 | @args = @DB::args; |
| 230 | my $overflow; |
| 231 | if ( $MaxArgNums and @args > $MaxArgNums ) |
| 232 | { # More than we want to show? |
| 233 | $#args = $MaxArgNums - 1; |
| 234 | $overflow = 1; |
| 235 | } |
| 236 | |
| 237 | @args = map { Carp::format_arg($_) } @args; |
| 238 | |
| 239 | if ($overflow) { |
| 240 | push @args, '...'; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | # Push the args onto the subroutine |
| 245 | $sub_name .= '(' . join( ', ', @args ) . ')'; |
| 246 | } |
| 247 | $call_info{sub_name} = $sub_name; |
| 248 | return wantarray() ? %call_info : \%call_info; |
| 249 | } |
| 250 | |
| 251 | # Transform an argument to a function into a string. |
| 252 | our $in_recurse; |
| 253 | sub format_arg { |
| 254 | my $arg = shift; |
| 255 | |
| 256 | if ( ref($arg) ) { |
| 257 | # legitimate, let's not leak it. |
| 258 | if (!$in_recurse && |
| 259 | do { |
| 260 | local $@; |
| 261 | local $in_recurse = 1; |
| 262 | local $SIG{__DIE__} = sub{}; |
| 263 | eval {$arg->can('CARP_TRACE') } |
| 264 | }) |
| 265 | { |
| 266 | return $arg->CARP_TRACE(); |
| 267 | } |
| 268 | elsif (!$in_recurse && |
| 269 | defined($RefArgFormatter) && |
| 270 | do { |
| 271 | local $@; |
| 272 | local $in_recurse = 1; |
| 273 | local $SIG{__DIE__} = sub{}; |
| 274 | eval {$arg = $RefArgFormatter->($arg); 1} |
| 275 | }) |
| 276 | { |
| 277 | return $arg; |
| 278 | } |
| 279 | else |
| 280 | { |
| 281 | my $sub = _fetch_sub(overload => 'StrVal'); |
| 282 | return $sub ? &$sub($arg) : "$arg"; |
| 283 | } |
| 284 | } |
| 285 | return "undef" if !defined($arg); |
| 286 | downgrade($arg, 1); |
| 287 | return $arg if !(UTF8_REGEXP_PROBLEM && is_utf8($arg)) && |
| 288 | $arg =~ /\A-?[0-9]+(?:\.[0-9]*)?(?:[eE][-+]?[0-9]+)?\z/; |
| 289 | my $suffix = ""; |
| 290 | if ( 2 < $MaxArgLen and $MaxArgLen < length($arg) ) { |
| 291 | substr ( $arg, $MaxArgLen - 3 ) = ""; |
| 292 | $suffix = "..."; |
| 293 | } |
| 294 | if(UTF8_REGEXP_PROBLEM && is_utf8($arg)) { |
| 295 | for(my $i = length($arg); $i--; ) { |
| 296 | my $c = substr($arg, $i, 1); |
| 297 | my $x = substr($arg, 0, 0); # work around bug on Perl 5.8.{1,2} |
| 298 | if($c eq "\"" || $c eq "\\" || $c eq "\$" || $c eq "\@") { |
| 299 | substr $arg, $i, 0, "\\"; |
| 300 | next; |
| 301 | } |
| 302 | my $o = ord($c); |
| 303 | |
| 304 | # This code is repeated in Regexp::CARP_TRACE() |
| 305 | if ($] ge 5.007_003) { |
| 306 | substr $arg, $i, 1, sprintf("\\x{%x}", $o) |
| 307 | if utf8::native_to_unicode($o) < utf8::native_to_unicode(0x20) |
| 308 | || utf8::native_to_unicode($o) > utf8::native_to_unicode(0x7e); |
| 309 | } elsif (ord("A") == 65) { |
| 310 | substr $arg, $i, 1, sprintf("\\x{%x}", $o) |
| 311 | if $o < 0x20 || $o > 0x7e; |
| 312 | } else { # Early EBCDIC |
| 313 | |
| 314 | # 3 EBCDIC code pages supported then; all controls but one |
| 315 | # are the code points below SPACE. The other one is 0x5F on |
| 316 | # POSIX-BC; FF on the other two. |
| 317 | substr $arg, $i, 1, sprintf("\\x{%x}", $o) |
| 318 | if $o < ord(" ") || ((ord ("^") == 106) |
| 319 | ? $o == 0x5f |
| 320 | : $o == 0xff); |
| 321 | } |
| 322 | } |
| 323 | } else { |
| 324 | $arg =~ s/([\"\\\$\@])/\\$1/g; |
| 325 | # This is all the ASCII printables spelled-out. It is portable to all |
| 326 | # Perl versions and platforms (such as EBCDIC). There are other more |
| 327 | # compact ways to do this, but may not work everywhere every version. |
| 328 | $arg =~ s/([^ !"\$\%#'()*+,\-.\/0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^_`abcdefghijklmnopqrstuvwxyz\{|}~])/sprintf("\\x{%x}",ord($1))/eg; |
| 329 | } |
| 330 | downgrade($arg, 1); |
| 331 | return "\"".$arg."\"".$suffix; |
| 332 | } |
| 333 | |
| 334 | sub Regexp::CARP_TRACE { |
| 335 | my $arg = "$_[0]"; |
| 336 | downgrade($arg, 1); |
| 337 | if(UTF8_REGEXP_PROBLEM && is_utf8($arg)) { |
| 338 | for(my $i = length($arg); $i--; ) { |
| 339 | my $o = ord(substr($arg, $i, 1)); |
| 340 | my $x = substr($arg, 0, 0); # work around bug on Perl 5.8.{1,2} |
| 341 | |
| 342 | # This code is repeated in format_arg() |
| 343 | if ($] ge 5.007_003) { |
| 344 | substr $arg, $i, 1, sprintf("\\x{%x}", $o) |
| 345 | if utf8::native_to_unicode($o) < utf8::native_to_unicode(0x20) |
| 346 | || utf8::native_to_unicode($o) > utf8::native_to_unicode(0x7e); |
| 347 | } elsif (ord("A") == 65) { |
| 348 | substr $arg, $i, 1, sprintf("\\x{%x}", $o) |
| 349 | if $o < 0x20 || $o > 0x7e; |
| 350 | } else { # Early EBCDIC |
| 351 | substr $arg, $i, 1, sprintf("\\x{%x}", $o) |
| 352 | if $o < ord(" ") || ((ord ("^") == 106) |
| 353 | ? $o == 0x5f |
| 354 | : $o == 0xff); |
| 355 | } |
| 356 | } |
| 357 | } else { |
| 358 | # See comment in format_arg() about this same regex. |
| 359 | $arg =~ s/([^ !"\$\%#'()*+,\-.\/0123456789:;<=>?\@ABCDEFGHIJKLMNOPQRSTUVWXYZ\[\\\]^_`abcdefghijklmnopqrstuvwxyz\{|}~])/sprintf("\\x{%x}",ord($1))/eg; |
| 360 | } |
| 361 | downgrade($arg, 1); |
| 362 | my $suffix = ""; |
| 363 | if($arg =~ /\A\(\?\^?([a-z]*)(?:-[a-z]*)?:(.*)\)\z/s) { |
| 364 | ($suffix, $arg) = ($1, $2); |
| 365 | } |
| 366 | if ( 2 < $MaxArgLen and $MaxArgLen < length($arg) ) { |
| 367 | substr ( $arg, $MaxArgLen - 3 ) = ""; |
| 368 | $suffix = "...".$suffix; |
| 369 | } |
| 370 | return "qr($arg)$suffix"; |
| 371 | } |
| 372 | |
| 373 | # Takes an inheritance cache and a package and returns |
| 374 | # an anon hash of known inheritances and anon array of |
| 375 | # inheritances which consequences have not been figured |
| 376 | # for. |
| 377 | sub get_status { |
| 378 | my $cache = shift; |
| 379 | my $pkg = shift; |
| 380 | $cache->{$pkg} ||= [ { $pkg => $pkg }, [ trusts_directly($pkg) ] ]; |
| 381 | return @{ $cache->{$pkg} }; |
| 382 | } |
| 383 | |
| 384 | # Takes the info from caller() and figures out the name of |
| 385 | # the sub/require/eval |
| 386 | sub get_subname { |
| 387 | my $info = shift; |
| 388 | if ( defined( $info->{evaltext} ) ) { |
| 389 | my $eval = $info->{evaltext}; |
| 390 | if ( $info->{is_require} ) { |
| 391 | return "require $eval"; |
| 392 | } |
| 393 | else { |
| 394 | $eval =~ s/([\\\'])/\\$1/g; |
| 395 | return "eval '" . str_len_trim( $eval, $MaxEvalLen ) . "'"; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | # this can happen on older perls when the sub (or the stash containing it) |
| 400 | # has been deleted |
| 401 | if ( !defined( $info->{sub} ) ) { |
| 402 | return '__ANON__::__ANON__'; |
| 403 | } |
| 404 | |
| 405 | return ( $info->{sub} eq '(eval)' ) ? 'eval {...}' : $info->{sub}; |
| 406 | } |
| 407 | |
| 408 | # Figures out what call (from the point of view of the caller) |
| 409 | # the long error backtrace should start at. |
| 410 | sub long_error_loc { |
| 411 | my $i; |
| 412 | my $lvl = $CarpLevel; |
| 413 | { |
| 414 | ++$i; |
| 415 | my $cgc = _cgc(); |
| 416 | my @caller = $cgc ? $cgc->($i) : caller($i); |
| 417 | my $pkg = $caller[0]; |
| 418 | unless ( defined($pkg) ) { |
| 419 | |
| 420 | # This *shouldn't* happen. |
| 421 | if (%Internal) { |
| 422 | local %Internal; |
| 423 | $i = long_error_loc(); |
| 424 | last; |
| 425 | } |
| 426 | elsif (defined $caller[2]) { |
| 427 | # this can happen when the stash has been deleted |
| 428 | # in that case, just assume that it's a reasonable place to |
| 429 | # stop (the file and line data will still be intact in any |
| 430 | # case) - the only issue is that we can't detect if the |
| 431 | # deleted package was internal (so don't do that then) |
| 432 | # -doy |
| 433 | redo unless 0 > --$lvl; |
| 434 | last; |
| 435 | } |
| 436 | else { |
| 437 | return 2; |
| 438 | } |
| 439 | } |
| 440 | redo if $CarpInternal{$pkg}; |
| 441 | redo unless 0 > --$lvl; |
| 442 | redo if $Internal{$pkg}; |
| 443 | } |
| 444 | return $i - 1; |
| 445 | } |
| 446 | |
| 447 | sub longmess_heavy { |
| 448 | if ( ref( $_[0] ) ) { # don't break references as exceptions |
| 449 | return wantarray ? @_ : $_[0]; |
| 450 | } |
| 451 | my $i = long_error_loc(); |
| 452 | return ret_backtrace( $i, @_ ); |
| 453 | } |
| 454 | |
| 455 | # Returns a full stack backtrace starting from where it is |
| 456 | # told. |
| 457 | sub ret_backtrace { |
| 458 | my ( $i, @error ) = @_; |
| 459 | my $mess; |
| 460 | my $err = join '', @error; |
| 461 | $i++; |
| 462 | |
| 463 | my $tid_msg = ''; |
| 464 | if ( defined &threads::tid ) { |
| 465 | my $tid = threads->tid; |
| 466 | $tid_msg = " thread $tid" if $tid; |
| 467 | } |
| 468 | |
| 469 | my %i = caller_info($i); |
| 470 | $mess = "$err at $i{file} line $i{line}$tid_msg"; |
| 471 | if( defined $. ) { |
| 472 | local $@ = ''; |
| 473 | local $SIG{__DIE__}; |
| 474 | eval { |
| 475 | CORE::die; |
| 476 | }; |
| 477 | if($@ =~ /^Died at .*(, <.*?> (?:line|chunk) \d+).$/ ) { |
| 478 | $mess .= $1; |
| 479 | } |
| 480 | } |
| 481 | $mess .= "\.\n"; |
| 482 | |
| 483 | while ( my %i = caller_info( ++$i ) ) { |
| 484 | $mess .= "\t$i{sub_name} called at $i{file} line $i{line}$tid_msg\n"; |
| 485 | } |
| 486 | |
| 487 | return $mess; |
| 488 | } |
| 489 | |
| 490 | sub ret_summary { |
| 491 | my ( $i, @error ) = @_; |
| 492 | my $err = join '', @error; |
| 493 | $i++; |
| 494 | |
| 495 | my $tid_msg = ''; |
| 496 | if ( defined &threads::tid ) { |
| 497 | my $tid = threads->tid; |
| 498 | $tid_msg = " thread $tid" if $tid; |
| 499 | } |
| 500 | |
| 501 | my %i = caller_info($i); |
| 502 | return "$err at $i{file} line $i{line}$tid_msg\.\n"; |
| 503 | } |
| 504 | |
| 505 | sub short_error_loc { |
| 506 | # You have to create your (hash)ref out here, rather than defaulting it |
| 507 | # inside trusts *on a lexical*, as you want it to persist across calls. |
| 508 | # (You can default it on $_[2], but that gets messy) |
| 509 | my $cache = {}; |
| 510 | my $i = 1; |
| 511 | my $lvl = $CarpLevel; |
| 512 | { |
| 513 | my $cgc = _cgc(); |
| 514 | my $called = $cgc ? $cgc->($i) : caller($i); |
| 515 | $i++; |
| 516 | my $caller = $cgc ? $cgc->($i) : caller($i); |
| 517 | |
| 518 | if (!defined($caller)) { |
| 519 | my @caller = $cgc ? $cgc->($i) : caller($i); |
| 520 | if (@caller) { |
| 521 | # if there's no package but there is other caller info, then |
| 522 | # the package has been deleted - treat this as a valid package |
| 523 | # in this case |
| 524 | redo if defined($called) && $CarpInternal{$called}; |
| 525 | redo unless 0 > --$lvl; |
| 526 | last; |
| 527 | } |
| 528 | else { |
| 529 | return 0; |
| 530 | } |
| 531 | } |
| 532 | redo if $Internal{$caller}; |
| 533 | redo if $CarpInternal{$caller}; |
| 534 | redo if $CarpInternal{$called}; |
| 535 | redo if trusts( $called, $caller, $cache ); |
| 536 | redo if trusts( $caller, $called, $cache ); |
| 537 | redo unless 0 > --$lvl; |
| 538 | } |
| 539 | return $i - 1; |
| 540 | } |
| 541 | |
| 542 | sub shortmess_heavy { |
| 543 | return longmess_heavy(@_) if $Verbose; |
| 544 | return @_ if ref( $_[0] ); # don't break references as exceptions |
| 545 | my $i = short_error_loc(); |
| 546 | if ($i) { |
| 547 | ret_summary( $i, @_ ); |
| 548 | } |
| 549 | else { |
| 550 | longmess_heavy(@_); |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | # If a string is too long, trims it with ... |
| 555 | sub str_len_trim { |
| 556 | my $str = shift; |
| 557 | my $max = shift || 0; |
| 558 | if ( 2 < $max and $max < length($str) ) { |
| 559 | substr( $str, $max - 3 ) = '...'; |
| 560 | } |
| 561 | return $str; |
| 562 | } |
| 563 | |
| 564 | # Takes two packages and an optional cache. Says whether the |
| 565 | # first inherits from the second. |
| 566 | # |
| 567 | # Recursive versions of this have to work to avoid certain |
| 568 | # possible endless loops, and when following long chains of |
| 569 | # inheritance are less efficient. |
| 570 | sub trusts { |
| 571 | my $child = shift; |
| 572 | my $parent = shift; |
| 573 | my $cache = shift; |
| 574 | my ( $known, $partial ) = get_status( $cache, $child ); |
| 575 | |
| 576 | # Figure out consequences until we have an answer |
| 577 | while ( @$partial and not exists $known->{$parent} ) { |
| 578 | my $anc = shift @$partial; |
| 579 | next if exists $known->{$anc}; |
| 580 | $known->{$anc}++; |
| 581 | my ( $anc_knows, $anc_partial ) = get_status( $cache, $anc ); |
| 582 | my @found = keys %$anc_knows; |
| 583 | @$known{@found} = (); |
| 584 | push @$partial, @$anc_partial; |
| 585 | } |
| 586 | return exists $known->{$parent}; |
| 587 | } |
| 588 | |
| 589 | # Takes a package and gives a list of those trusted directly |
| 590 | sub trusts_directly { |
| 591 | my $class = shift; |
| 592 | no strict 'refs'; |
| 593 | my $stash = \%{"$class\::"}; |
| 594 | for my $var (qw/ CARP_NOT ISA /) { |
| 595 | # Don't try using the variable until we know it exists, |
| 596 | # to avoid polluting the caller's namespace. |
| 597 | if ( $stash->{$var} && *{$stash->{$var}}{ARRAY} && @{$stash->{$var}} ) { |
| 598 | return @{$stash->{$var}} |
| 599 | } |
| 600 | } |
| 601 | return; |
| 602 | } |
| 603 | |
| 604 | if(!defined($warnings::VERSION) || |
| 605 | do { no warnings "numeric"; $warnings::VERSION < 1.03 }) { |
| 606 | # Very old versions of warnings.pm import from Carp. This can go |
| 607 | # wrong due to the circular dependency. If Carp is invoked before |
| 608 | # warnings, then Carp starts by loading warnings, then warnings |
| 609 | # tries to import from Carp, and gets nothing because Carp is in |
| 610 | # the process of loading and hasn't defined its import method yet. |
| 611 | # So we work around that by manually exporting to warnings here. |
| 612 | no strict "refs"; |
| 613 | *{"warnings::$_"} = \&$_ foreach @EXPORT; |
| 614 | } |
| 615 | |
| 616 | 1; |
| 617 | |
| 618 | __END__ |
| 619 | |