/usr/share/perl5/Devel/StackTrace.pm is in libdevel-stacktrace-perl 1.3000-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 | package Devel::StackTrace;
{
$Devel::StackTrace::VERSION = '1.30';
}
use 5.006;
use strict;
use warnings;
use Devel::StackTrace::Frame;
use File::Spec;
use Scalar::Util qw( blessed );
use overload
'""' => \&as_string,
fallback => 1;
sub new {
my $class = shift;
my %p = @_;
# Backwards compatibility - this parameter was renamed to no_refs
# ages ago.
$p{no_refs} = delete $p{no_object_refs}
if exists $p{no_object_refs};
my $self = bless {
index => undef,
frames => [],
raw => [],
%p,
}, $class;
$self->_record_caller_data();
return $self;
}
sub _record_caller_data {
my $self = shift;
# We exclude this method by starting one frame back.
my $x = 1;
while (
my @c
= $self->{no_args}
? caller( $x++ )
: do {
package # the newline keeps dzil from adding a version here
DB;
@DB::args = ();
caller( $x++ );
}
) {
my @args;
unless ( $self->{no_args} ) {
@args = @DB::args;
if ( $self->{no_refs} ) {
@args = map { ref $_ ? $self->_ref_to_string($_) : $_ } @args;
}
}
push @{ $self->{raw} },
{
caller => \@c,
args => \@args,
};
}
}
sub _ref_to_string {
my $self = shift;
my $ref = shift;
return overload::AddrRef($ref)
if blessed $ref && $ref->isa('Exception::Class::Base');
return overload::AddrRef($ref) unless $self->{respect_overload};
local $@;
local $SIG{__DIE__};
my $str = eval { $ref . '' };
return $@ ? overload::AddrRef($ref) : $str;
}
sub _make_frames {
my $self = shift;
my $filter = $self->_make_frame_filter;
my $raw = delete $self->{raw};
for my $r ( @{$raw} ) {
next unless $filter->($r);
$self->_add_frame( $r->{caller}, $r->{args} );
}
}
my $default_filter = sub { 1 };
sub _make_frame_filter {
my $self = shift;
my ( @i_pack_re, %i_class );
if ( $self->{ignore_package} ) {
local $@;
local $SIG{__DIE__};
$self->{ignore_package} = [ $self->{ignore_package} ]
unless eval { @{ $self->{ignore_package} } };
@i_pack_re
= map { ref $_ ? $_ : qr/^\Q$_\E$/ } @{ $self->{ignore_package} };
}
my $p = __PACKAGE__;
push @i_pack_re, qr/^\Q$p\E$/;
if ( $self->{ignore_class} ) {
$self->{ignore_class} = [ $self->{ignore_class} ]
unless ref $self->{ignore_class};
%i_class = map { $_ => 1 } @{ $self->{ignore_class} };
}
my $user_filter = $self->{frame_filter};
return sub {
return 0 if grep { $_[0]{caller}[0] =~ /$_/ } @i_pack_re;
return 0 if grep { $_[0]{caller}[0]->isa($_) } keys %i_class;
if ($user_filter) {
return $user_filter->( $_[0] );
}
return 1;
};
}
sub _add_frame {
my $self = shift;
my $c = shift;
my $p = shift;
# eval and is_require are only returned when applicable under 5.00503.
push @$c, ( undef, undef ) if scalar @$c == 6;
push @{ $self->{frames} },
Devel::StackTrace::Frame->new(
$c,
$p,
$self->{respect_overload},
$self->{max_arg_length},
$self->{message},
$self->{indent}
);
}
sub next_frame {
my $self = shift;
# reset to top if necessary.
$self->{index} = -1 unless defined $self->{index};
my @f = $self->frames();
if ( defined $f[ $self->{index} + 1 ] ) {
return $f[ ++$self->{index} ];
}
else {
$self->{index} = undef;
return undef;
}
}
sub prev_frame {
my $self = shift;
my @f = $self->frames();
# reset to top if necessary.
$self->{index} = scalar @f unless defined $self->{index};
if ( defined $f[ $self->{index} - 1 ] && $self->{index} >= 1 ) {
return $f[ --$self->{index} ];
}
else {
$self->{index} = undef;
return undef;
}
}
sub reset_pointer {
my $self = shift;
$self->{index} = undef;
}
sub frames {
my $self = shift;
if (@_) {
die
"Devel::StackTrace->frames() can only take Devel::StackTrace::Frame args\n"
if grep { !$_->isa('Devel::StackTrace::Frame') } @_;
$self->{frames} = \@_;
}
else {
$self->_make_frames() if $self->{raw};
}
return @{ $self->{frames} };
}
sub frame {
my $self = shift;
my $i = shift;
return unless defined $i;
return ( $self->frames() )[$i];
}
sub frame_count {
my $self = shift;
return scalar( $self->frames() );
}
sub as_string {
my $self = shift;
my $p = shift;
my $st = '';
my $first = 1;
foreach my $f ( $self->frames() ) {
$st .= $f->as_string( $first, $p ) . "\n";
$first = 0;
}
return $st;
}
{
package
Devel::StackTraceFrame;
our @ISA = 'Devel::StackTrace::Frame';
}
1;
# ABSTRACT: An object representing a stack trace
__END__
=pod
=head1 NAME
Devel::StackTrace - An object representing a stack trace
=head1 VERSION
version 1.30
=head1 SYNOPSIS
use Devel::StackTrace;
my $trace = Devel::StackTrace->new;
print $trace->as_string; # like carp
# from top (most recent) of stack to bottom.
while (my $frame = $trace->next_frame) {
print "Has args\n" if $frame->hasargs;
}
# from bottom (least recent) of stack to top.
while (my $frame = $trace->prev_frame) {
print "Sub: ", $frame->subroutine, "\n";
}
=head1 DESCRIPTION
The Devel::StackTrace module contains two classes, Devel::StackTrace
and Devel::StackTrace::Frame. The goal of this object is to encapsulate
the information that can found through using the caller() function, as
well as providing a simple interface to this data.
The Devel::StackTrace object contains a set of Devel::StackTrace::Frame
objects, one for each level of the stack. The frames contain all the
data available from C<caller()>.
This code was created to support my L<Exception::Class::Base> class
(part of Exception::Class) but may be useful in other contexts.
=head1 'TOP' AND 'BOTTOM' OF THE STACK
When describing the methods of the trace object, I use the words 'top'
and 'bottom'. In this context, the 'top' frame on the stack is the
most recent frame and the 'bottom' is the least recent.
Here's an example:
foo(); # bottom frame is here
sub foo {
bar();
}
sub bar {
Devel::StackTrace->new; # top frame is here.
}
=head1 Devel::StackTrace METHODS
=over 4
=item * Devel::StackTrace->new(%named_params)
Returns a new Devel::StackTrace object.
Takes the following parameters:
=over 8
=item * frame_filter => $sub
By default, Devel::StackTrace will include all stack frames before the
call to its its constructor.
However, you may want to filter out some frames with more granularity
than 'ignore_package' or 'ignore_class' allow.
You can provide a subroutine which is called with the raw frame data
for each frame. This is a hash reference with two keys, "caller", and
"args", both of which are array references. The "caller" key is the
raw data as returned by Perl's C<caller()> function, and the "args"
key are the subroutine arguments found in C<@DB::args>.
The filter should return true if the frame should be included, or
false if it should be skipped.
=item * ignore_package => $package_name OR \@package_names
Any frames where the package is one of these packages will not be on
the stack.
=item * ignore_class => $package_name OR \@package_names
Any frames where the package is a subclass of one of these packages
(or is the same package) will not be on the stack.
Devel::StackTrace internally adds itself to the 'ignore_package'
parameter, meaning that the Devel::StackTrace package is B<ALWAYS>
ignored. However, if you create a subclass of Devel::StackTrace it
will not be ignored.
=item * no_refs => $boolean
If this parameter is true, then Devel::StackTrace will not store
references internally when generating stacktrace frames. This lets
your objects go out of scope.
Devel::StackTrace replaces any references with their stringified
representation.
=item * no_args => $boolean
If this parameter is true, then Devel::StackTrace will not store caller
arguments in stack trace frames at all.
=item * respect_overload => $boolean
By default, Devel::StackTrace will call C<overload::AddrRef()> to get
the underlying string representation of an object, instead of
respecting the object's stringification overloading. If you would
prefer to see the overloaded representation of objects in stack
traces, then set this parameter to true.
=item * max_arg_length => $integer
By default, Devel::StackTrace will display the entire argument for each
subroutine call. Setting this parameter causes truncates each subroutine
argument's string representation if it is longer than this number of
characters.
=item * message => $string
By default, Devel::StackTrace will use 'Trace begun' as the message for the
first stack frame when you call C<as_string>. You can supply an alternative
message using this option.
=item * indent => $boolean
If this parameter is true, each stack frame after the first will start with a
tab character, just like C<Carp::confess()>.
=back
=item * $trace->next_frame
Returns the next Devel::StackTrace::Frame object down on the stack. If
it hasn't been called before it returns the first frame. It returns
undef when it reaches the bottom of the stack and then resets its
pointer so the next call to C<next_frame> or C<prev_frame> will work
properly.
=item * $trace->prev_frame
Returns the next Devel::StackTrace::Frame object up on the stack. If it
hasn't been called before it returns the last frame. It returns undef
when it reaches the top of the stack and then resets its pointer so
pointer so the next call to C<next_frame> or C<prev_frame> will work
properly.
=item * $trace->reset_pointer
Resets the pointer so that the next call C<next_frame> or
C<prev_frame> will start at the top or bottom of the stack, as
appropriate.
=item * $trace->frames
When this method is called with no arguments, it returns a list of
L<Devel::StackTrace::Frame> objects. They are returned in order from top (most
recent) to bottom.
This method can also be used to set the object's frames if you pass it a list
of L<Devel::StackTrace::Frame> objects objects.
This is useful if you want to filter the list of frames in ways that are more
complex than can be handled by C<filter_frames>:
$stacktrace->frames( my_filter( $stacktrace->frames() ) );
=item * $trace->frame ($index)
Given an index, returns the relevant frame or undef if there is not
frame at that index. The index is exactly like a Perl array. The
first frame is 0 and negative indexes are allowed.
=item * $trace->frame_count
Returns the number of frames in the trace object.
=item * $trace->as_string(\%p)
Calls as_string on each frame from top to bottom, producing output
quite similar to the Carp module's cluck/confess methods.
The optional C<\%p> parameter only has one useful option. The
C<max_arg_length> parameter truncates each subroutine argument's string
representation if it is longer than this number of characters.
=back
=head1 SUPPORT
Please submit bugs to the CPAN RT system at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Devel%3A%3AStackTrace
or via email at bug-devel-stacktrace@rt.cpan.org.
=head1 AUTHOR
Dave Rolsky <autarch@urth.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2012 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut
|