bump version to 0.63
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
1
2 package Moose::Meta::Class;
3
4 use strict;
5 use warnings;
6
7 use Class::MOP;
8
9 use Carp ();
10 use List::Util qw( first );
11 use List::MoreUtils qw( any all uniq );
12 use Scalar::Util 'weaken', 'blessed';
13
14 our $VERSION   = '0.63';
15 $VERSION = eval $VERSION;
16 our $AUTHORITY = 'cpan:STEVAN';
17
18 use Moose::Meta::Method::Overriden;
19 use Moose::Meta::Method::Augmented;
20 use Moose::Error::Default;
21
22 use base 'Class::MOP::Class';
23
24 __PACKAGE__->meta->add_attribute('roles' => (
25     reader  => 'roles',
26     default => sub { [] }
27 ));
28
29 __PACKAGE__->meta->add_attribute('constructor_class' => (
30     accessor => 'constructor_class',
31     default  => 'Moose::Meta::Method::Constructor',
32 ));
33
34 __PACKAGE__->meta->add_attribute('destructor_class' => (
35     accessor => 'destructor_class',
36     default  => 'Moose::Meta::Method::Destructor',
37 ));
38
39 __PACKAGE__->meta->add_attribute('error_class' => (
40     accessor => 'error_class',
41     default  => 'Moose::Error::Default',
42 ));
43
44
45 sub initialize {
46     my $class = shift;
47     my $pkg   = shift;
48     return Class::MOP::get_metaclass_by_name($pkg) 
49         || $class->SUPER::initialize($pkg,
50                 'attribute_metaclass' => 'Moose::Meta::Attribute',
51                 'method_metaclass'    => 'Moose::Meta::Method',
52                 'instance_metaclass'  => 'Moose::Meta::Instance',
53                 @_
54             );    
55 }
56
57 sub create {
58     my ($self, $package_name, %options) = @_;
59     
60     (ref $options{roles} eq 'ARRAY')
61         || $self->throw_error("You must pass an ARRAY ref of roles", data => $options{roles})
62             if exists $options{roles};
63     my $roles = delete $options{roles};
64
65     my $class = $self->SUPER::create($package_name, %options);
66
67     if ($roles) {
68         Moose::Util::apply_all_roles( $class, @$roles );
69     }
70     
71     return $class;
72 }
73
74 sub check_metaclass_compatibility {
75     my $self = shift;
76
77     if ( my @supers = $self->superclasses ) {
78         $self->_fix_metaclass_incompatibility(@supers);
79     }
80
81     $self->SUPER::check_metaclass_compatibility(@_);
82 }
83
84 my %ANON_CLASSES;
85
86 sub create_anon_class {
87     my ($self, %options) = @_;
88
89     my $cache_ok = delete $options{cache};
90     
91     # something like Super::Class|Super::Class::2=Role|Role::1
92     my $cache_key = join '=' => (
93         join('|', sort @{$options{superclasses} || []}),
94         join('|', sort @{$options{roles}        || []}),
95     );
96     
97     if ($cache_ok && defined $ANON_CLASSES{$cache_key}) {
98         return $ANON_CLASSES{$cache_key};
99     }
100     
101     my $new_class = $self->SUPER::create_anon_class(%options);
102
103     $ANON_CLASSES{$cache_key} = $new_class
104         if $cache_ok;
105
106     return $new_class;
107 }
108
109 sub add_role {
110     my ($self, $role) = @_;
111     (blessed($role) && $role->isa('Moose::Meta::Role'))
112         || $self->throw_error("Roles must be instances of Moose::Meta::Role", data => $role);
113     push @{$self->roles} => $role;
114 }
115
116 sub calculate_all_roles {
117     my $self = shift;
118     my %seen;
119     grep { !$seen{$_->name}++ } map { $_->calculate_all_roles } @{ $self->roles };
120 }
121
122 sub does_role {
123     my ($self, $role_name) = @_;
124     (defined $role_name)
125         || $self->throw_error("You must supply a role name to look for");
126     foreach my $class ($self->class_precedence_list) {
127         next unless $class->can('meta') && $class->meta->can('roles');
128         foreach my $role (@{$class->meta->roles}) {
129             return 1 if $role->does_role($role_name);
130         }
131     }
132     return 0;
133 }
134
135 sub excludes_role {
136     my ($self, $role_name) = @_;
137     (defined $role_name)
138         || $self->throw_error("You must supply a role name to look for");
139     foreach my $class ($self->class_precedence_list) {
140         next unless $class->can('meta');
141         # NOTE:
142         # in the pretty rare instance when a Moose metaclass
143         # is itself extended with a role, this check needs to
144         # be done since some items in the class_precedence_list
145         # might in fact be Class::MOP based still.
146         next unless $class->meta->can('roles');
147         foreach my $role (@{$class->meta->roles}) {
148             return 1 if $role->excludes_role($role_name);
149         }
150     }
151     return 0;
152 }
153
154 sub new_object {
155     my $class  = shift;
156     my $params = @_ == 1 ? $_[0] : {@_};
157     my $self   = $class->SUPER::new_object($params);
158
159     foreach my $attr ( $class->compute_all_applicable_attributes() ) {
160
161         next unless $attr->can('has_trigger') && $attr->has_trigger;
162
163         my $init_arg = $attr->init_arg;
164
165         next unless defined $init_arg;
166
167         next unless exists $params->{$init_arg};
168
169         $attr->trigger->(
170             $self,
171             (
172                   $attr->should_coerce
173                 ? $attr->get_read_method_ref->($self)
174                 : $params->{$init_arg}
175             ),
176             $attr
177         );
178     }
179
180     return $self;
181 }
182
183 sub construct_instance {
184     my $class = shift;
185     my $params = @_ == 1 ? $_[0] : {@_};
186     my $meta_instance = $class->get_meta_instance;
187     # FIXME:
188     # the code below is almost certainly incorrect
189     # but this is foreign inheritence, so we might
190     # have to kludge it in the end.
191     my $instance = $params->{'__INSTANCE__'} || $meta_instance->create_instance();
192     foreach my $attr ($class->compute_all_applicable_attributes()) {
193         $attr->initialize_instance_slot($meta_instance, $instance, $params);
194     }
195     return $instance;
196 }
197
198 ### ---------------------------------------------
199
200 sub add_attribute {
201     my $self = shift;
202     $self->SUPER::add_attribute(
203         (blessed $_[0] && $_[0]->isa('Class::MOP::Attribute')
204             ? $_[0] 
205             : $self->_process_attribute(@_))    
206     );
207 }
208
209 sub add_override_method_modifier {
210     my ($self, $name, $method, $_super_package) = @_;
211
212     (!$self->has_method($name))
213         || $self->throw_error("Cannot add an override method if a local method is already present");
214
215     $self->add_method($name => Moose::Meta::Method::Overriden->new(
216         method  => $method,
217         class   => $self,
218         package => $_super_package, # need this for roles
219         name    => $name,
220     ));
221 }
222
223 sub add_augment_method_modifier {
224     my ($self, $name, $method) = @_;
225     (!$self->has_method($name))
226         || $self->throw_error("Cannot add an augment method if a local method is already present");
227
228     $self->add_method($name => Moose::Meta::Method::Augmented->new(
229         method  => $method,
230         class   => $self,
231         name    => $name,
232     ));
233 }
234
235 ## Private Utility methods ...
236
237 sub _find_next_method_by_name_which_is_not_overridden {
238     my ($self, $name) = @_;
239     foreach my $method ($self->find_all_methods_by_name($name)) {
240         return $method->{code}
241             if blessed($method->{code}) && !$method->{code}->isa('Moose::Meta::Method::Overriden');
242     }
243     return undef;
244 }
245
246 sub _fix_metaclass_incompatibility {
247     my ($self, @superclasses) = @_;
248
249     foreach my $super (@superclasses) {
250         next if $self->_superclass_meta_is_compatible($super);
251
252         unless ( $self->is_pristine ) {
253             $self->throw_error(
254                       "Cannot attempt to reinitialize metaclass for "
255                     . $self->name
256                     . ", it isn't pristine" );
257         }
258
259         $self->_reconcile_with_superclass_meta($super);
260     }
261 }
262
263 sub _superclass_meta_is_compatible {
264     my ($self, $super) = @_;
265
266     my $super_meta = Class::MOP::Class->initialize($super)
267         or return 1;
268
269     next unless $super_meta->isa("Class::MOP::Class");
270
271     my $super_meta_name
272         = $super_meta->is_immutable
273         ? $super_meta->get_mutable_metaclass_name
274         : ref($super_meta);
275
276     return 1
277         if $self->isa($super_meta_name)
278             and
279            $self->instance_metaclass->isa( $super_meta->instance_metaclass );
280 }
281
282 # I don't want to have to type this >1 time
283 my @MetaClassTypes =
284     qw( attribute_metaclass method_metaclass instance_metaclass
285         constructor_class destructor_class error_class );
286
287 sub _reconcile_with_superclass_meta {
288     my ($self, $super) = @_;
289
290     my $super_meta = $super->meta;
291
292     my $super_meta_name
293         = $super_meta->is_immutable
294         ? $super_meta->get_mutable_metaclass_name
295         : ref($super_meta);
296
297     my $self_metaclass = ref $self;
298
299     # If neither of these is true we have a more serious
300     # incompatibility that we just cannot fix (yet?).
301     if ( $super_meta_name->isa( ref $self )
302         && all { $super_meta->$_->isa( $self->$_ ) } @MetaClassTypes ) {
303         $self->_reinitialize_with($super_meta);
304     }
305     elsif ( $self->_all_metaclasses_differ_by_roles_only($super_meta) ) {
306         $self->_reconcile_role_differences($super_meta);
307     }
308 }
309
310 sub _reinitialize_with {
311     my ( $self, $new_meta ) = @_;
312
313     my $new_self = $new_meta->reinitialize(
314         $self->name,
315         attribute_metaclass => $new_meta->attribute_metaclass,
316         method_metaclass    => $new_meta->method_metaclass,
317         instance_metaclass  => $new_meta->instance_metaclass,
318     );
319
320     $new_self->$_( $new_meta->$_ )
321         for qw( constructor_class destructor_class error_class );
322
323     %$self = %$new_self;
324
325     bless $self, ref $new_self;
326
327     # We need to replace the cached metaclass instance or else when it
328     # goes out of scope Class::MOP::Class destroy's the namespace for
329     # the metaclass's class, causing much havoc.
330     Class::MOP::store_metaclass_by_name( $self->name, $self );
331     Class::MOP::weaken_metaclass( $self->name ) if $self->is_anon_class;
332 }
333
334 # In the more complex case, we share a common ancestor with our
335 # superclass's metaclass, but each metaclass (ours and the parent's)
336 # has a different set of roles applied. We reconcile this by first
337 # reinitializing into the parent class, and _then_ applying our own
338 # roles.
339 sub _all_metaclasses_differ_by_roles_only {
340     my ($self, $super_meta) = @_;
341
342     for my $pair (
343         [ ref $self, ref $super_meta ],
344         map { [ $self->$_, $super_meta->$_ ] } @MetaClassTypes
345         ) {
346
347         next if $pair->[0] eq $pair->[1];
348
349         my $self_meta_meta  = Class::MOP::Class->initialize( $pair->[0] );
350         my $super_meta_meta = Class::MOP::Class->initialize( $pair->[1] );
351
352         my $common_ancestor
353             = _find_common_ancestor( $self_meta_meta, $super_meta_meta );
354
355         return unless $common_ancestor;
356
357         return
358             unless _is_role_only_subclass_of(
359             $self_meta_meta,
360             $common_ancestor,
361             )
362             && _is_role_only_subclass_of(
363             $super_meta_meta,
364             $common_ancestor,
365             );
366     }
367
368     return 1;
369 }
370
371 # This, and some other functions, could be called as methods, but
372 # they're not for two reasons. One, we just end up ignoring the first
373 # argument, because we can't call these directly on one of the real
374 # arguments, because one of them could be a Class::MOP::Class object
375 # and not a Moose::Meta::Class. Second, only a completely insane
376 # person would attempt to subclass this stuff!
377 sub _find_common_ancestor {
378     my ($meta1, $meta2) = @_;
379
380     # FIXME? This doesn't account for multiple inheritance (not sure
381     # if it needs to though). For example, is somewhere in $meta1's
382     # history it inherits from both ClassA and ClassB, and $meta
383     # inherits from ClassB & ClassA, does it matter? And what crazy
384     # fool would do that anyway?
385
386     my %meta1_parents = map { $_ => 1 } $meta1->linearized_isa;
387
388     return first { $meta1_parents{$_} } $meta2->linearized_isa;
389 }
390
391 sub _is_role_only_subclass_of {
392     my ($meta, $ancestor) = @_;
393
394     return 1 if $meta->name eq $ancestor;
395
396     my @roles = _all_roles_until( $meta, $ancestor );
397
398     my %role_packages = map { $_->name => 1 } @roles;
399
400     my $ancestor_meta = Class::MOP::Class->initialize($ancestor);
401
402     my %shared_ancestors = map { $_ => 1 } $ancestor_meta->linearized_isa;
403
404     for my $method ( $meta->get_all_methods() ) {
405         next if $method->name eq 'meta';
406         next if $method->can('associated_attribute');
407
408         next
409             if $role_packages{ $method->original_package_name }
410                 || $shared_ancestors{ $method->original_package_name };
411
412         return 0;
413     }
414
415     # FIXME - this really isn't right. Just because an attribute is
416     # defined in a role doesn't mean it isn't _also_ defined in the
417     # subclass.
418     for my $attr ( $meta->get_all_attributes ) {
419         next if $shared_ancestors{ $attr->associated_class->name };
420
421         next if any { $_->has_attribute( $attr->name ) } @roles;
422
423         return 0;
424     }
425
426     return 1;
427 }
428
429 sub _all_roles {
430     my $meta = shift;
431
432     return _all_roles_until($meta);
433 }
434
435 sub _all_roles_until {
436     my ($meta, $stop_at_class) = @_;
437
438     return unless $meta->can('calculate_all_roles');
439
440     my @roles = $meta->calculate_all_roles;
441
442     for my $class ( $meta->linearized_isa ) {
443         last if $stop_at_class && $stop_at_class eq $class;
444
445         my $meta = Class::MOP::Class->initialize($class);
446         last unless $meta->can('calculate_all_roles');
447
448         push @roles, $meta->calculate_all_roles;
449     }
450
451     return uniq @roles;
452 }
453
454 sub _reconcile_role_differences {
455     my ($self, $super_meta) = @_;
456
457     my $self_meta = $self->meta;
458
459     my %roles;
460
461     if ( my @roles = map { $_->name } _all_roles($self_meta) ) {
462         $roles{metaclass_roles} = \@roles;
463     }
464
465     for my $thing (@MetaClassTypes) {
466         my $name = $self->$thing();
467
468         my $thing_meta = Class::MOP::Class->initialize($name);
469
470         my @roles = map { $_->name } _all_roles($thing_meta)
471             or next;
472
473         $roles{ $thing . '_roles' } = \@roles;
474     }
475
476     $self->_reinitialize_with($super_meta);
477
478     Moose::Util::MetaRole::apply_metaclass_roles(
479         for_class => $self->name,
480         %roles,
481     );
482
483     return $self;
484 }
485
486 # NOTE:
487 # this was crap anyway, see
488 # Moose::Util::apply_all_roles
489 # instead
490 sub _apply_all_roles { 
491     Carp::croak 'DEPRECATED: use Moose::Util::apply_all_roles($meta, @roles) instead' 
492 }
493
494 sub _process_attribute {
495     my ( $self, $name, @args ) = @_;
496
497     @args = %{$args[0]} if scalar @args == 1 && ref($args[0]) eq 'HASH';
498
499     if (($name || '') =~ /^\+(.*)/) {
500         return $self->_process_inherited_attribute($1, @args);
501     }
502     else {
503         return $self->_process_new_attribute($name, @args);
504     }
505 }
506
507 sub _process_new_attribute {
508     my ( $self, $name, @args ) = @_;
509
510     $self->attribute_metaclass->interpolate_class_and_new($name, @args);
511 }
512
513 sub _process_inherited_attribute {
514     my ($self, $attr_name, %options) = @_;
515     my $inherited_attr = $self->find_attribute_by_name($attr_name);
516     (defined $inherited_attr)
517         || $self->throw_error("Could not find an attribute by the name of '$attr_name' to inherit from", data => $attr_name);
518     if ($inherited_attr->isa('Moose::Meta::Attribute')) {
519         return $inherited_attr->clone_and_inherit_options(%options);
520     }
521     else {
522         # NOTE:
523         # kind of a kludge to handle Class::MOP::Attributes
524         return $inherited_attr->Moose::Meta::Attribute::clone_and_inherit_options(%options);
525     }
526 }
527
528 ## -------------------------------------------------
529
530 use Moose::Meta::Method::Constructor;
531 use Moose::Meta::Method::Destructor;
532
533 # This could be done by using SUPER and altering ->options
534 # I am keeping it this way to make it more explicit.
535 sub create_immutable_transformer {
536     my $self = shift;
537     my $class = Class::MOP::Immutable->new($self, {
538        read_only   => [qw/superclasses/],
539        cannot_call => [qw/
540            add_method
541            alias_method
542            remove_method
543            add_attribute
544            remove_attribute
545            remove_package_symbol
546            add_role
547        /],
548        memoize     => {
549            class_precedence_list             => 'ARRAY',
550            linearized_isa                    => 'ARRAY', # FIXME perl 5.10 memoizes this on its own, no need?
551            get_all_methods                   => 'ARRAY',
552            #get_all_attributes               => 'ARRAY', # it's an alias, no need, but maybe in the future
553            compute_all_applicable_attributes => 'ARRAY',
554            get_meta_instance                 => 'SCALAR',
555            get_method_map                    => 'SCALAR',
556            calculate_all_roles               => 'ARRAY',
557        },
558        # NOTE:
559        # this is ugly, but so are typeglobs, 
560        # so whattayahgonnadoboutit
561        # - SL
562        wrapped => { 
563            add_package_symbol => sub {
564                my $original = shift;
565                $self->throw_error("Cannot add package symbols to an immutable metaclass")
566                    unless (caller(2))[3] eq 'Class::MOP::Package::get_package_symbol'; 
567                goto $original->body;
568            },
569        },       
570     });
571     return $class;
572 }
573
574 sub make_immutable {
575     my $self = shift;
576     $self->SUPER::make_immutable
577       (
578        constructor_class => $self->constructor_class,
579        destructor_class  => $self->destructor_class,
580        inline_destructor => 1,
581        # NOTE:
582        # no need to do this,
583        # Moose always does it
584        inline_accessors  => 0,
585        @_,
586       );
587 }
588
589 our $error_level;
590
591 sub throw_error {
592     my ( $self, @args ) = @_;
593     local $error_level = ($error_level || 0) + 1;
594     $self->raise_error($self->create_error(@args));
595 }
596
597 sub raise_error {
598     my ( $self, @args ) = @_;
599     die @args;
600 }
601
602 sub create_error {
603     my ( $self, @args ) = @_;
604
605     require Carp::Heavy;
606
607     local $error_level = ($error_level || 0 ) + 1;
608
609     if ( @args % 2 == 1 ) {
610         unshift @args, "message";
611     }
612
613     my %args = ( metaclass => $self, last_error => $@, @args );
614
615     $args{depth} += $error_level;
616
617     my $class = ref $self ? $self->error_class : "Moose::Error::Default";
618
619     Class::MOP::load_class($class);
620
621     $class->new(
622         Carp::caller_info($args{depth}),
623         %args
624     );
625 }
626
627 1;
628
629 __END__
630
631 =pod
632
633 =head1 NAME
634
635 Moose::Meta::Class - The Moose metaclass
636
637 =head1 DESCRIPTION
638
639 This is a subclass of L<Class::MOP::Class> with Moose specific
640 extensions.
641
642 For the most part, the only time you will ever encounter an
643 instance of this class is if you are doing some serious deep
644 introspection. To really understand this class, you need to refer
645 to the L<Class::MOP::Class> documentation.
646
647 =head1 METHODS
648
649 =over 4
650
651 =item B<initialize>
652
653 =item B<create>
654
655 Overrides original to accept a list of roles to apply to
656 the created class.
657
658    my $metaclass = Moose::Meta::Class->create( 'New::Class', roles => [...] );
659
660 =item B<create_anon_class>
661
662 Overrides original to support roles and caching.
663
664    my $metaclass = Moose::Meta::Class->create_anon_class(
665        superclasses => ['Foo'],
666        roles        => [qw/Some Roles Go Here/],
667        cache        => 1,
668    );
669
670 =item B<make_immutable>
671
672 Override original to add default options for inlining destructor
673 and altering the Constructor metaclass.
674
675 =item B<create_immutable_transformer>
676
677 Override original to lock C<add_role> and memoize C<calculate_all_roles>
678
679 =item B<new_object>
680
681 We override this method to support the C<trigger> attribute option.
682
683 =item B<construct_instance>
684
685 This provides some Moose specific extensions to this method, you
686 almost never call this method directly unless you really know what
687 you are doing.
688
689 This method makes sure to handle the moose weak-ref, type-constraint
690 and type coercion features.
691
692 =item B<get_method_map>
693
694 This accommodates Moose::Meta::Role::Method instances, which are
695 aliased, instead of added, but still need to be counted as valid
696 methods.
697
698 =item B<add_override_method_modifier ($name, $method)>
699
700 This will create an C<override> method modifier for you, and install
701 it in the package.
702
703 =item B<add_augment_method_modifier ($name, $method)>
704
705 This will create an C<augment> method modifier for you, and install
706 it in the package.
707
708 =item B<calculate_all_roles>
709
710 =item B<roles>
711
712 This will return an array of C<Moose::Meta::Role> instances which are
713 attached to this class.
714
715 =item B<add_role ($role)>
716
717 This takes an instance of C<Moose::Meta::Role> in C<$role>, and adds it
718 to the list of associated roles.
719
720 =item B<does_role ($role_name)>
721
722 This will test if this class C<does> a given C<$role_name>. It will
723 not only check it's local roles, but ask them as well in order to
724 cascade down the role hierarchy.
725
726 =item B<excludes_role ($role_name)>
727
728 This will test if this class C<excludes> a given C<$role_name>. It will
729 not only check it's local roles, but ask them as well in order to
730 cascade down the role hierarchy.
731
732 =item B<add_attribute ($attr_name, %params|$params)>
733
734 This method does the same thing as L<Class::MOP::Class::add_attribute>, but adds
735 support for taking the C<$params> as a HASH ref.
736
737 =item B<constructor_class ($class_name)>
738
739 =item B<destructor_class ($class_name)>
740
741 These are the names of classes used when making a class
742 immutable. These default to L<Moose::Meta::Method::Constructor> and
743 L<Moose::Meta::Method::Destructor> respectively. These accessors are
744 read-write, so you can use them to change the class name.
745
746 =item B<error_class ($class_name)>
747
748 The name of the class used to throw errors. This default to
749 L<Moose::Error::Default>, which generates an error with a stacktrace
750 just like C<Carp::confess>.
751
752 =item B<check_metaclass_compatibility>
753
754 Moose overrides this method from C<Class::MOP::Class> and attempts to
755 fix some incompatibilities before doing the check.
756
757 =item B<throw_error $message, %extra>
758
759 Throws the error created by C<create_error> using C<raise_error>
760
761 =item B<create_error $message, %extra>
762
763 Creates an error message or object.
764
765 The default behavior is C<create_error_confess>.
766
767 If C<error_class> is set uses C<create_error_object>. Otherwise uses
768 C<error_builder> (a code reference or variant name), and calls the appropriate
769 C<create_error_$builder> method.
770
771 =item B<error_builder $builder_name>
772
773 Get or set the error builder. Defaults to C<confess>.
774
775 =item B<error_class $class_name>
776
777 Get or set the error class. This defaults to L<Moose::Error::Default>.
778
779 =item B<create_error_confess %args>
780
781 Creates an error using L<Carp/longmess>
782
783 =item B<create_error_croak %args>
784
785 Creates an error using L<Carp/shortmess>
786
787 =item B<create_error_object %args>
788
789 Calls C<new> on the C<class> parameter in C<%args>. Usable with C<error_class>
790 to support custom error objects for your meta class.
791
792 =item B<raise_error $error>
793
794 Dies with an error object or string.
795
796 =back
797
798 =head1 BUGS
799
800 All complex software has bugs lurking in it, and this module is no
801 exception. If you find a bug please either email me, or add the bug
802 to cpan-RT.
803
804 =head1 AUTHOR
805
806 Stevan Little E<lt>stevan@iinteractive.comE<gt>
807
808 =head1 COPYRIGHT AND LICENSE
809
810 Copyright 2006-2008 by Infinity Interactive, Inc.
811
812 L<http://www.iinteractive.com>
813
814 This library is free software; you can redistribute it and/or modify
815 it under the same terms as Perl itself.
816
817 =cut
818