next-method
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
CommitLineData
c0e30cf5 1
2package Moose::Meta::Class;
3
4use strict;
5use warnings;
6
a15dff8d 7use Carp 'confess';
8
bc1e29b5 9our $VERSION = '0.01';
10
c0e30cf5 11use base 'Class::MOP::Class';
12
a15dff8d 13sub construct_instance {
14 my ($class, %params) = @_;
e522431d 15 my $instance = $params{'__INSTANCE__'} || {};
a15dff8d 16 foreach my $attr ($class->compute_all_applicable_attributes()) {
17 my $init_arg = $attr->init_arg();
18 # try to fetch the init arg from the %params ...
19 my $val;
20 $val = $params{$init_arg} if exists $params{$init_arg};
21 # if nothing was in the %params, we can use the
22 # attribute's default value (if it has one)
23 $val ||= $attr->default($instance) if $attr->has_default;
24 if (defined $val && $attr->has_type_constraint) {
25 (defined $attr->type_constraint->($val))
26 || confess "Attribute (" . $attr->name . ") does not pass the type contraint";
27 }
28 $instance->{$attr->name} = $val;
29 }
30 return $instance;
31}
32
c0e30cf5 331;
34
35__END__
36
37=pod
38
39=head1 NAME
40
e522431d 41Moose::Meta::Class - The Moose metaclass
c0e30cf5 42
43=head1 SYNOPSIS
44
45=head1 DESCRIPTION
46
e522431d 47This is a subclass of L<Class::MOP::Class> with Moose specific
48extensions.
49
c0e30cf5 50=head1 METHODS
51
52=over 4
53
a15dff8d 54=item B<construct_instance>
55
c0e30cf5 56=back
57
58=head1 BUGS
59
60All complex software has bugs lurking in it, and this module is no
61exception. If you find a bug please either email me, or add the bug
62to cpan-RT.
63
c0e30cf5 64=head1 AUTHOR
65
66Stevan Little E<lt>stevan@iinteractive.comE<gt>
67
68=head1 COPYRIGHT AND LICENSE
69
70Copyright 2006 by Infinity Interactive, Inc.
71
72L<http://www.iinteractive.com>
73
74This library is free software; you can redistribute it and/or modify
75it under the same terms as Perl itself.
76
77=cut