| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
2
|
|
|
2
|
|
171848
|
use strict; |
|
|
2
|
|
|
|
|
10
|
|
|
|
2
|
|
|
|
|
52
|
|
|
2
|
2
|
|
|
2
|
|
8
|
use warnings; |
|
|
2
|
|
|
|
|
4
|
|
|
|
2
|
|
|
|
|
111
|
|
|
3
|
|
|
|
|
|
|
package MooseX::SetOnce 0.203; |
|
4
|
|
|
|
|
|
|
# ABSTRACT: write-once, read-many attributes for Moose |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
#pod =head1 SYNOPSIS |
|
7
|
|
|
|
|
|
|
#pod |
|
8
|
|
|
|
|
|
|
#pod Add the "SetOnce" trait to attributes: |
|
9
|
|
|
|
|
|
|
#pod |
|
10
|
|
|
|
|
|
|
#pod package Class; |
|
11
|
|
|
|
|
|
|
#pod use Moose; |
|
12
|
|
|
|
|
|
|
#pod use MooseX::SetOnce; |
|
13
|
|
|
|
|
|
|
#pod |
|
14
|
|
|
|
|
|
|
#pod has some_attr => ( |
|
15
|
|
|
|
|
|
|
#pod is => 'rw', |
|
16
|
|
|
|
|
|
|
#pod traits => [ qw(SetOnce) ], |
|
17
|
|
|
|
|
|
|
#pod ); |
|
18
|
|
|
|
|
|
|
#pod |
|
19
|
|
|
|
|
|
|
#pod ...and then you can only set them once: |
|
20
|
|
|
|
|
|
|
#pod |
|
21
|
|
|
|
|
|
|
#pod my $object = Class->new; |
|
22
|
|
|
|
|
|
|
#pod |
|
23
|
|
|
|
|
|
|
#pod $object->some_attr(10); # works fine |
|
24
|
|
|
|
|
|
|
#pod $object->some_attr(20); # throws an exception: it's already set! |
|
25
|
|
|
|
|
|
|
#pod |
|
26
|
|
|
|
|
|
|
#pod =head1 DESCRIPTION |
|
27
|
|
|
|
|
|
|
#pod |
|
28
|
|
|
|
|
|
|
#pod The 'SetOnce' attribute lets your class have attributes that are not lazy and |
|
29
|
|
|
|
|
|
|
#pod not set, but that cannot be altered once set. |
|
30
|
|
|
|
|
|
|
#pod |
|
31
|
|
|
|
|
|
|
#pod The logic is very simple: if you try to alter the value of an attribute with |
|
32
|
|
|
|
|
|
|
#pod the SetOnce trait, either by accessor or writer, and the attribute has a value, |
|
33
|
|
|
|
|
|
|
#pod it will throw an exception. |
|
34
|
|
|
|
|
|
|
#pod |
|
35
|
|
|
|
|
|
|
#pod If the attribute has a clearer, you may clear the attribute and set it again. |
|
36
|
|
|
|
|
|
|
#pod |
|
37
|
|
|
|
|
|
|
#pod =cut |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
package MooseX::SetOnce::Attribute 0.203; |
|
40
|
2
|
|
|
2
|
|
734
|
use Moose::Role 0.90; |
|
|
2
|
|
|
|
|
286053
|
|
|
|
2
|
|
|
|
|
10
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
before set_value => sub { $_[0]->_ensure_unset($_[1]) }; |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
around _inline_set_value => sub { |
|
45
|
|
|
|
|
|
|
my $orig = shift; |
|
46
|
|
|
|
|
|
|
my $self = shift; |
|
47
|
|
|
|
|
|
|
my ($instance) = @_; |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
my @source = $self->$orig(@_); |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
return ( |
|
52
|
|
|
|
|
|
|
'Class::MOP::class_of(' . $instance . ')->find_attribute_by_name(', |
|
53
|
|
|
|
|
|
|
'\'' . quotemeta($self->name) . '\'', |
|
54
|
|
|
|
|
|
|
')->_ensure_unset(' . $instance . ');', |
|
55
|
|
|
|
|
|
|
@source, |
|
56
|
|
|
|
|
|
|
); |
|
57
|
|
|
|
|
|
|
} if $Moose::VERSION >= 1.9900; |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
sub _ensure_unset { |
|
60
|
34
|
|
|
34
|
|
47403
|
my ($self, $instance) = @_; |
|
61
|
34
|
100
|
|
|
|
86
|
Carp::confess("cannot change value of SetOnce attribute " . $self->name) |
|
62
|
|
|
|
|
|
|
if $self->has_value($instance); |
|
63
|
|
|
|
|
|
|
} |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
around accessor_metaclass => sub { |
|
66
|
|
|
|
|
|
|
my ($orig, $self, @rest) = @_; |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
return Moose::Meta::Class->create_anon_class( |
|
69
|
|
|
|
|
|
|
superclasses => [ $self->$orig(@_) ], |
|
70
|
|
|
|
|
|
|
roles => [ 'MooseX::SetOnce::Accessor' ], |
|
71
|
|
|
|
|
|
|
cache => 1 |
|
72
|
|
|
|
|
|
|
)->name |
|
73
|
|
|
|
|
|
|
} if $Moose::VERSION < 1.9900; |
|
74
|
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
package MooseX::SetOnce::Accessor 0.203; |
|
76
|
2
|
|
|
2
|
|
10069
|
use Moose::Role 0.90; |
|
|
2
|
|
|
|
|
26
|
|
|
|
2
|
|
|
|
|
10
|
|
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
around _inline_store => sub { |
|
79
|
|
|
|
|
|
|
my ($orig, $self, $instance, $value) = @_; |
|
80
|
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
my $code = $self->$orig($instance, $value); |
|
82
|
|
|
|
|
|
|
$code = sprintf qq[%s->meta->find_attribute_by_name("%s")->_ensure_unset(%s);\n%s], |
|
83
|
|
|
|
|
|
|
$instance, |
|
84
|
|
|
|
|
|
|
quotemeta($self->associated_attribute->name), |
|
85
|
|
|
|
|
|
|
$instance, |
|
86
|
|
|
|
|
|
|
$code; |
|
87
|
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
return $code; |
|
89
|
|
|
|
|
|
|
}; |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
package Moose::Meta::Attribute::Custom::Trait::SetOnce 0.203; |
|
92
|
2
|
|
|
2
|
|
906
|
sub register_implementation { 'MooseX::SetOnce::Attribute' } |
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
1; |
|
95
|
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
__END__ |
|
97
|
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=pod |
|
99
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=encoding UTF-8 |
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=head1 NAME |
|
103
|
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
MooseX::SetOnce - write-once, read-many attributes for Moose |
|
105
|
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head1 VERSION |
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
version 0.203 |
|
109
|
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
111
|
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
Add the "SetOnce" trait to attributes: |
|
113
|
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
package Class; |
|
115
|
|
|
|
|
|
|
use Moose; |
|
116
|
|
|
|
|
|
|
use MooseX::SetOnce; |
|
117
|
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
has some_attr => ( |
|
119
|
|
|
|
|
|
|
is => 'rw', |
|
120
|
|
|
|
|
|
|
traits => [ qw(SetOnce) ], |
|
121
|
|
|
|
|
|
|
); |
|
122
|
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
...and then you can only set them once: |
|
124
|
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
my $object = Class->new; |
|
126
|
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
$object->some_attr(10); # works fine |
|
128
|
|
|
|
|
|
|
$object->some_attr(20); # throws an exception: it's already set! |
|
129
|
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
131
|
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
The 'SetOnce' attribute lets your class have attributes that are not lazy and |
|
133
|
|
|
|
|
|
|
not set, but that cannot be altered once set. |
|
134
|
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
The logic is very simple: if you try to alter the value of an attribute with |
|
136
|
|
|
|
|
|
|
the SetOnce trait, either by accessor or writer, and the attribute has a value, |
|
137
|
|
|
|
|
|
|
it will throw an exception. |
|
138
|
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
If the attribute has a clearer, you may clear the attribute and set it again. |
|
140
|
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head1 PERL VERSION |
|
142
|
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
This library should run on perls released even a long time ago. It should work |
|
144
|
|
|
|
|
|
|
on any version of perl released in the last five years. |
|
145
|
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
Although it may work on older versions of perl, no guarantee is made that the |
|
147
|
|
|
|
|
|
|
minimum required version will not be increased. The version may be increased |
|
148
|
|
|
|
|
|
|
for any reason, and there is no promise that patches will be accepted to lower |
|
149
|
|
|
|
|
|
|
the minimum required perl. |
|
150
|
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
=head1 AUTHOR |
|
152
|
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
Ricardo SIGNES <cpan@semiotic.systems> |
|
154
|
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
|
156
|
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=for stopwords Jesse Luehrs Karen Etheridge Kent Fredric Ricardo Signes |
|
158
|
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
=over 4 |
|
160
|
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
=item * |
|
162
|
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
Jesse Luehrs <doy@tozt.net> |
|
164
|
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
=item * |
|
166
|
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
Karen Etheridge <ether@cpan.org> |
|
168
|
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
=item * |
|
170
|
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
Kent Fredric <kentfredric@gmail.com> |
|
172
|
|
|
|
|
|
|
|
|
173
|
|
|
|
|
|
|
=item * |
|
174
|
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
Ricardo Signes <rjbs@semiotic.systems> |
|
176
|
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
=back |
|
178
|
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
180
|
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
This software is copyright (c) 2022 by Ricardo SIGNES. |
|
182
|
|
|
|
|
|
|
|
|
183
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
|
184
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
|
185
|
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
=cut |