]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Meta/TypeConstraint/Autocoerce.pm
Remove the user_constraint feature from the autocoercion code
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Meta / TypeConstraint / Autocoerce.pm
1 package LaTeX::TikZ::Meta::TypeConstraint::Autocoerce;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Meta::TypeConstraint::Autocoerce - Type constraint metaclass that autoloads type coercions.
9
10 =head1 VERSION
11
12 Version 0.02
13
14 =cut
15
16 our $VERSION = '0.02';
17
18 =head1 SYNOPSIS
19
20     # The target class of the autocoercion (cannot be changed)
21     {
22      package X;
23      use Any::Moose;
24      has 'id' => (
25       is  => 'ro',
26       isa => 'Int',
27      );
28      use LaTeX::TikZ::Meta::TypeConstraint::Autocoerce;
29      use Any::Moose 'Util::TypeConstraints';
30      register_type_constraint(
31       LaTeX::TikZ::Meta::TypeConstraint::Autocoerce->new(
32        name   => 'X::Autocoerce',
33        target => find_type_constraint(__PACKAGE__),
34        mapper => sub { join '::', __PACKAGE__, 'From', $_[1] },
35       );
36      );
37      __PACKAGE__->meta->make_immutable;
38     }
39
40     # The class that does the coercion (cannot be changed)
41     {
42      package Y;
43      use Any::Moose;
44      has 'x' => (
45       is      => 'ro',
46       isa     => 'X::Autocoerce',
47       coerce  => 1,
48       handles => [ 'id' ],
49      );
50      __PACKAGE__->meta->make_immutable;
51     }
52
53     # Another class the user wants to use instead of X (cannot be changed)
54     {
55      package Z;
56      use Any::Moose;
57      has 'id' => (
58       is  => 'ro',
59       isa => 'Num',
60      );
61      __PACKAGE__->meta->make_immutable;
62     }
63
64     # The autocoercion class, defined by the user in X/From/Z.pm
65     {
66      package X::From::Z;
67      use Any::Moose 'Util::TypeConstraints';
68      coerce 'X::Autocoerce'
69          => from 'Z'
70          => via { X->new(id => int $_->id) };
71     }
72
73     my $z = Z->new(id => 123);
74     my $y = Y->new(x => $z);
75     print $y->id; # 123
76
77 =head1 DESCRIPTION
78
79 When a type coercion is attempted, this type constraint metaclass tries to autoload a specific module which is supposed to contain the actual coercion code.
80 This allows you to declare types that can be replaced (through coercion) at the end user's discretion.
81
82 It works with both L<Moose> and L<Mouse> by using L<Any::Moose>.
83
84 Note that you will need L<Moose::Util::TypeConstraints/register_type_constraint> or L<Mouse::Util::TypeConstraints/register_type_constraint> to install this type constraint, and that the latter is only available starting L<Mouse> C<0.63>.
85
86 =cut
87
88 use Scalar::Util qw<blessed>;
89
90 use Sub::Name ();
91
92 use LaTeX::TikZ::Tools;
93
94 use Any::Moose;
95
96 =head1 RELATIONSHIPS
97
98 This class inherits from L<Moose::Meta::TypeConstraint> or L<Mouse::Meta::TypeConstraint>, depending on which mode L<Any::Moose> runs.
99
100 =cut
101
102 extends any_moose('Meta::TypeConstraint');
103
104 =head1 ATTRIBUTES
105
106 =head2 C<name>
107
108 The name of the type constraint.
109 This must be the target of both the classes that want to use the autocoercion feature and the user defined coercions in the autoloaded classes.
110
111 This attribute is inherited from the L<Moose> or L<Mouse> type constraint metaclass.
112
113 =head2 C<mapper>
114
115 A code reference that maps an object class name to the name of the package in which the coercion can be found, or C<undef> to disable coercion for this class name.
116 It is called with the type constraint object as first argument, followed by the class name.
117
118 =cut
119
120 has 'mapper' => (
121  is       => 'ro',
122  isa      => 'CodeRef',
123  required => 1,
124 );
125
126 =head2 C<target>
127
128 A type constraint that defines into what the objects are going to be coerced.
129 Objects satisfying this type constraint will be automatically considered as valid and will not be coerced.
130 If it is given as a plain string, then a type constraint with the same name is searched for in the global type constraint registry.
131
132 =cut
133
134 has 'target' => (
135  is       => 'ro',
136  isa      => any_moose('Meta::TypeConstraint'),
137  required => 1,
138 );
139
140 my $target_tc = __PACKAGE__->meta->find_attribute_by_name('target')
141                                  ->type_constraint;
142
143 =head1 METHODS
144
145 =head2 C<< new name => $name, mapper => $mapper, target => $target >>
146
147 Constructs a type constraint object that will attempt to autocoerce objects that are not valid according to C<$target> by loading the class returned by C<$mapper>.
148
149 =cut
150
151 around 'new' => sub {
152  my ($orig, $class, %args) = @_;
153
154  unless (exists $args{mapper}) {
155   $args{mapper} = sub { join '::', $_[0]->target->name, $_[1] };
156  }
157
158  my $target = delete $args{target};
159  unless (blessed $target) {
160   my $target_name = defined $target ? "target $target" : 'undefined target';
161   $target = LaTeX::TikZ::Tools::type_constraint($target) if defined $target;
162   Carp::confess("No meta object for $target_name")   unless defined $target;
163  }
164  $target_tc->assert_valid($target);
165  $args{target} = $target;
166
167  if (any_moose() eq 'Moose') {
168   $args{coercion} = Moose::Meta::TypeCoercion->new;
169  }
170
171  $args{constraint} = Sub::Name::subname('_constraint' => sub {
172   my ($thing) = @_;
173
174   # Remember that when ->check is called inside coerce, a return value of 0
175   # means that coercion should take place, while 1 signifies that the value is
176   # already OK. Thus we should return true if and only if $thing passes the
177   # target type constraint.
178
179   return $target->check($thing);
180  });
181
182  return $class->$orig(%args);
183 };
184
185 =head2 C<coerce $thing>
186
187 Tries to coerce C<$thing> by first loading a class that might contain a type coercion for it.
188
189 =cut
190
191 around 'coerce' => sub {
192  my ($orig, $tc, $thing) = @_;
193
194  # The original coerce gets an hold onto the type coercions *before* calling
195  # the constraint. Thus, we have to force the loading before recalling into
196  # $orig.
197
198  # First, check whether $thing is already of the right kind.
199  return $thing if $tc->check($thing);
200
201  # If $thing isn't even an object, don't bother trying to autoload a coercion
202  my $class = blessed($thing);
203  if (defined $class) {
204   $class = $tc->mapper->($tc, $class);
205
206   if (defined $class) {
207    # Find the file to autoload
208    (my $pm = $class) =~ s{::}{/}g;
209    $pm .= '.pm';
210
211    unless ($INC{$pm}) { # Not loaded yet
212     local $@;
213     eval {
214      # We die often here, even though we're not really interested in the error.
215      # However, if a die handler is set (e.g. to \&Carp::confess), this can get
216      # very slow. Resetting the handler shows a 10% total time improvement for
217      # the geodyn app.
218      local $SIG{__DIE__};
219      require $pm;
220     };
221    }
222   }
223  }
224
225  $tc->$orig($thing);
226 };
227
228 __PACKAGE__->meta->make_immutable(
229  inline_constructor => 0,
230 );
231
232 =head1 SEE ALSO
233
234 L<Moose::Meta::TypeConstraint>, L<Mouse::Meta::TypeConstraint>.
235
236 =head1 AUTHOR
237
238 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
239
240 You can contact me by mail or on C<irc.perl.org> (vincent).
241
242 =head1 BUGS
243
244 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
245 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
246
247 =head1 SUPPORT
248
249 You can find documentation for this module with the perldoc command.
250
251     perldoc LaTeX::TikZ
252
253 =head1 COPYRIGHT & LICENSE
254
255 Copyright 2010 Vincent Pit, all rights reserved.
256
257 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
258
259 =cut
260
261 1; # End of LaTeX::TikZ::Meta::TypeConstraint::Autocoerce