line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package MooseX::Storage::Traits::OnlyWhenBuilt; |
2
|
|
|
|
|
|
|
# ABSTRACT: A custom trait to bypass serialization |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
our $VERSION = '0.50'; |
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
729
|
use Moose::Role; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
7
|
1
|
|
|
1
|
|
4896
|
use namespace::autoclean; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
requires 'pack'; |
10
|
|
|
|
|
|
|
requires 'unpack'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
around 'pack' => sub { |
13
|
|
|
|
|
|
|
my ($orig, $self, %args) = @_; |
14
|
|
|
|
|
|
|
$args{engine_traits} ||= []; |
15
|
|
|
|
|
|
|
push(@{$args{engine_traits}}, 'OnlyWhenBuilt'); |
16
|
|
|
|
|
|
|
$self->$orig(%args); |
17
|
|
|
|
|
|
|
}; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
around 'unpack' => sub { |
20
|
|
|
|
|
|
|
my ($orig, $self, $data, %args) = @_; |
21
|
|
|
|
|
|
|
$args{engine_traits} ||= []; |
22
|
|
|
|
|
|
|
push(@{$args{engine_traits}}, 'OnlyWhenBuilt'); |
23
|
|
|
|
|
|
|
$self->$orig($data, %args); |
24
|
|
|
|
|
|
|
}; |
25
|
|
|
|
|
|
|
|
26
|
1
|
|
|
1
|
|
191
|
no Moose::Role; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
1; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
__END__ |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=pod |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=encoding UTF-8 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 NAME |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
MooseX::Storage::Traits::OnlyWhenBuilt - A custom trait to bypass serialization |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 VERSION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
version 0.50 |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SYNOPSIS |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
{ package Point; |
47
|
|
|
|
|
|
|
use Moose; |
48
|
|
|
|
|
|
|
use MooseX::Storage; |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
with Storage( traits => [qw|OnlyWhenBuilt|] ); |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
has 'x' => (is => 'rw', lazy_build => 1 ); |
53
|
|
|
|
|
|
|
has 'y' => (is => 'rw', lazy_build => 1 ); |
54
|
|
|
|
|
|
|
has 'z' => (is => 'rw', builder => '_build_z' ); |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
sub _build_x { 3 } |
57
|
|
|
|
|
|
|
sub _build_y { expensive_computation() } |
58
|
|
|
|
|
|
|
sub _build_z { 3 } |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
} |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
my $p = Point->new( 'x' => 4 ); |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
# the result of ->pack will contain: |
65
|
|
|
|
|
|
|
# { x => 4, z => 3 } |
66
|
|
|
|
|
|
|
$p->pack; |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head1 DESCRIPTION |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Sometimes you don't want a particular attribute to be part of the |
71
|
|
|
|
|
|
|
serialization if it has not been built yet. If you invoke C<Storage()> |
72
|
|
|
|
|
|
|
as outlined in the C<Synopsis>, only attributes that have been built |
73
|
|
|
|
|
|
|
(i.e., where the predicate returns 'true') will be serialized. |
74
|
|
|
|
|
|
|
This avoids any potentially expensive computations. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=for stopwords culted |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
See the SYNOPSIS for a nice example that can be easily cargo-culted. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 METHODS |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 Introspection |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=over 4 |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=item B<meta> |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
=back |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head1 BUGS |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
All complex software has bugs lurking in it, and this module is no |
93
|
|
|
|
|
|
|
exception. If you find a bug please or add the bug to cpan-RT |
94
|
|
|
|
|
|
|
at L<https://rt.cpan.org/Dist/Display.html?Queue=MooseX-Storage>. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head1 AUTHORS |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=over 4 |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=item * |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
Chris Prather <chris.prather@iinteractive.com> |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=item * |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
Stevan Little <stevan.little@iinteractive.com> |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=item * |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
×××× ×§××'×× (Yuval Kogman) <nothingmuch@woobling.org> |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=back |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
This software is copyright (c) 2007 by Infinity Interactive, Inc.. |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
119
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
=cut |