line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package StackTrace::Auto; |
2
|
|
|
|
|
|
|
# ABSTRACT: a role for generating stack traces during instantiation |
3
|
|
|
|
|
|
|
$StackTrace::Auto::VERSION = '1.001'; |
4
|
1
|
|
|
1
|
|
468
|
use Moo::Role; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
5
|
1
|
|
|
1
|
|
270
|
use Sub::Quote (); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
16
|
|
6
|
1
|
|
|
1
|
|
4
|
use Module::Runtime 0.002 (); |
|
1
|
|
|
|
|
26
|
|
|
1
|
|
|
|
|
18
|
|
7
|
1
|
|
|
1
|
|
4
|
use Scalar::Util (); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
323
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
#pod =head1 SYNOPSIS |
10
|
|
|
|
|
|
|
#pod |
11
|
|
|
|
|
|
|
#pod First, include StackTrace::Auto in a Moose or Mooclass... |
12
|
|
|
|
|
|
|
#pod |
13
|
|
|
|
|
|
|
#pod package Some::Class; |
14
|
|
|
|
|
|
|
#pod # NOTE: Moo can also be used here instead of Moose |
15
|
|
|
|
|
|
|
#pod use Moose; |
16
|
|
|
|
|
|
|
#pod with 'StackTrace::Auto'; |
17
|
|
|
|
|
|
|
#pod |
18
|
|
|
|
|
|
|
#pod ...then create an object of that class... |
19
|
|
|
|
|
|
|
#pod |
20
|
|
|
|
|
|
|
#pod my $obj = Some::Class->new; |
21
|
|
|
|
|
|
|
#pod |
22
|
|
|
|
|
|
|
#pod ...and now you have a stack trace for the object's creation. |
23
|
|
|
|
|
|
|
#pod |
24
|
|
|
|
|
|
|
#pod print $obj->stack_trace->as_string; |
25
|
|
|
|
|
|
|
#pod |
26
|
|
|
|
|
|
|
#pod =attr stack_trace |
27
|
|
|
|
|
|
|
#pod |
28
|
|
|
|
|
|
|
#pod This attribute will contain an object representing the stack at the point when |
29
|
|
|
|
|
|
|
#pod the error was generated and thrown. It must be an object performing the |
30
|
|
|
|
|
|
|
#pod C<as_string> method. |
31
|
|
|
|
|
|
|
#pod |
32
|
|
|
|
|
|
|
#pod =attr stack_trace_class |
33
|
|
|
|
|
|
|
#pod |
34
|
|
|
|
|
|
|
#pod This attribute may be provided to use an alternate class for stack traces. The |
35
|
|
|
|
|
|
|
#pod default is L<Devel::StackTrace|Devel::StackTrace>. |
36
|
|
|
|
|
|
|
#pod |
37
|
|
|
|
|
|
|
#pod In general, you will not need to think about this attribute. |
38
|
|
|
|
|
|
|
#pod |
39
|
|
|
|
|
|
|
#pod =cut |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
has stack_trace => ( |
42
|
|
|
|
|
|
|
is => 'ro', |
43
|
|
|
|
|
|
|
isa => Sub::Quote::quote_sub(q{ |
44
|
|
|
|
|
|
|
require Scalar::Util; |
45
|
|
|
|
|
|
|
die "stack_trace must be have an 'as_string' method!" unless |
46
|
|
|
|
|
|
|
Scalar::Util::blessed($_[0]) && $_[0]->can('as_string') |
47
|
|
|
|
|
|
|
}), |
48
|
|
|
|
|
|
|
default => Sub::Quote::quote_sub(q{ |
49
|
|
|
|
|
|
|
$_[0]->stack_trace_class->new( |
50
|
|
|
|
|
|
|
@{ $_[0]->stack_trace_args }, |
51
|
|
|
|
|
|
|
); |
52
|
|
|
|
|
|
|
}), |
53
|
|
|
|
|
|
|
lazy => 1, |
54
|
|
|
|
|
|
|
init_arg => undef, |
55
|
|
|
|
|
|
|
); |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
25
|
0
|
|
sub BUILD {}; |
58
|
|
|
|
|
|
|
before BUILD => sub { $_[0]->stack_trace }; |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
has stack_trace_class => ( |
61
|
|
|
|
|
|
|
is => 'ro', |
62
|
|
|
|
|
|
|
isa => Sub::Quote::quote_sub(q{ |
63
|
|
|
|
|
|
|
die "stack_trace_class must be a class that responds to ->new" |
64
|
|
|
|
|
|
|
unless defined($_[0]) && !ref($_[0]) && $_[0]->can("new"); |
65
|
|
|
|
|
|
|
}), |
66
|
|
|
|
|
|
|
coerce => Sub::Quote::quote_sub(q{ |
67
|
|
|
|
|
|
|
Module::Runtime::use_package_optimistically($_[0]); |
68
|
|
|
|
|
|
|
}), |
69
|
|
|
|
|
|
|
lazy => 1, |
70
|
|
|
|
|
|
|
builder => '_build_stack_trace_class', |
71
|
|
|
|
|
|
|
); |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
#pod =attr stack_trace_args |
74
|
|
|
|
|
|
|
#pod |
75
|
|
|
|
|
|
|
#pod This attribute is an arrayref of arguments to pass when building the stack |
76
|
|
|
|
|
|
|
#pod trace. In general, you will not need to think about it. |
77
|
|
|
|
|
|
|
#pod |
78
|
|
|
|
|
|
|
#pod =cut |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
has stack_trace_args => ( |
81
|
|
|
|
|
|
|
is => 'ro', |
82
|
|
|
|
|
|
|
isa => Sub::Quote::quote_sub(q{ |
83
|
|
|
|
|
|
|
die "stack_trace_args must be an arrayref" |
84
|
|
|
|
|
|
|
unless ref($_[0]) && ref($_[0]) eq "ARRAY"; |
85
|
|
|
|
|
|
|
}), |
86
|
|
|
|
|
|
|
lazy => 1, |
87
|
|
|
|
|
|
|
builder => '_build_stack_trace_args', |
88
|
|
|
|
|
|
|
); |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
sub _build_stack_trace_class { |
91
|
15
|
|
|
15
|
|
640
|
return 'Devel::StackTrace'; |
92
|
|
|
|
|
|
|
} |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
sub _build_stack_trace_args { |
95
|
25
|
|
|
25
|
|
2259
|
my ($self) = @_; |
96
|
|
|
|
|
|
|
|
97
|
25
|
|
|
|
|
72
|
Scalar::Util::weaken($self); # Prevent memory leak |
98
|
|
|
|
|
|
|
|
99
|
25
|
|
|
|
|
34
|
my $found_mark = 0; |
100
|
|
|
|
|
|
|
return [ |
101
|
|
|
|
|
|
|
filter_frames_early => 1, |
102
|
|
|
|
|
|
|
frame_filter => sub { |
103
|
188
|
|
|
188
|
|
7978
|
my ($raw) = @_; |
104
|
188
|
|
|
|
|
249
|
my $sub = $raw->{caller}->[3]; |
105
|
188
|
|
|
|
|
606
|
(my $package = $sub) =~ s/::\w+\z//; |
106
|
188
|
100
|
|
|
|
364
|
if ($found_mark == 2) { |
|
|
100
|
|
|
|
|
|
107
|
35
|
|
|
|
|
67
|
return 1; |
108
|
|
|
|
|
|
|
} |
109
|
|
|
|
|
|
|
elsif ($found_mark == 1) { |
110
|
28
|
100
|
100
|
|
|
86
|
return 0 if $sub =~ /::new$/ && $self->isa($package); |
111
|
25
|
|
|
|
|
28
|
$found_mark++; |
112
|
25
|
|
|
|
|
49
|
return 1; |
113
|
|
|
|
|
|
|
} else { |
114
|
125
|
100
|
100
|
|
|
423
|
$found_mark++ if $sub =~ /::new$/ && $self->isa($package); |
115
|
125
|
|
|
|
|
238
|
return 0; |
116
|
|
|
|
|
|
|
} |
117
|
|
|
|
|
|
|
}, |
118
|
25
|
|
|
|
|
411
|
]; |
119
|
|
|
|
|
|
|
} |
120
|
|
|
|
|
|
|
|
121
|
1
|
|
|
1
|
|
6
|
no Moo::Role; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
11
|
|
122
|
|
|
|
|
|
|
1; |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
__END__ |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
=pod |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
=encoding UTF-8 |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
=head1 NAME |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
StackTrace::Auto - a role for generating stack traces during instantiation |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
=head1 VERSION |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
version 1.001 |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=head1 SYNOPSIS |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
First, include StackTrace::Auto in a Moose or Mooclass... |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
package Some::Class; |
143
|
|
|
|
|
|
|
# NOTE: Moo can also be used here instead of Moose |
144
|
|
|
|
|
|
|
use Moose; |
145
|
|
|
|
|
|
|
with 'StackTrace::Auto'; |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
...then create an object of that class... |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
my $obj = Some::Class->new; |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
...and now you have a stack trace for the object's creation. |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
print $obj->stack_trace->as_string; |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
=head1 PERL VERSION |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
This library should run on perls released even a long time ago. It should work |
158
|
|
|
|
|
|
|
on any version of perl released in the last five years. |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
161
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
162
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
163
|
|
|
|
|
|
|
the minimum required perl. |
164
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
=head2 stack_trace |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
This attribute will contain an object representing the stack at the point when |
170
|
|
|
|
|
|
|
the error was generated and thrown. It must be an object performing the |
171
|
|
|
|
|
|
|
C<as_string> method. |
172
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
=head2 stack_trace_class |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
This attribute may be provided to use an alternate class for stack traces. The |
176
|
|
|
|
|
|
|
default is L<Devel::StackTrace|Devel::StackTrace>. |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
In general, you will not need to think about this attribute. |
179
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
=head2 stack_trace_args |
181
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
This attribute is an arrayref of arguments to pass when building the stack |
183
|
|
|
|
|
|
|
trace. In general, you will not need to think about it. |
184
|
|
|
|
|
|
|
|
185
|
|
|
|
|
|
|
=head1 AUTHORS |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
=over 4 |
188
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
=item * |
190
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
Ricardo SIGNES <cpan@semiotic.systems> |
192
|
|
|
|
|
|
|
|
193
|
|
|
|
|
|
|
=item * |
194
|
|
|
|
|
|
|
|
195
|
|
|
|
|
|
|
Florian Ragwitz <rafl@debian.org> |
196
|
|
|
|
|
|
|
|
197
|
|
|
|
|
|
|
=back |
198
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
200
|
|
|
|
|
|
|
|
201
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
202
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
204
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
205
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
=cut |