0.01
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
1
2 package Moose::Meta::Class;
3
4 use strict;
5 use warnings;
6
7 use Carp 'confess';
8
9 our $VERSION = '0.01';
10
11 use base 'Class::MOP::Class';
12
13 sub construct_instance {
14     my ($class, %params) = @_;
15     my $instance = $params{'__INSTANCE__'} || {};
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
33 1;
34
35 __END__
36
37 =pod
38
39 =head1 NAME
40
41 Moose::Meta::Class - The Moose metaclass
42
43 =head1 SYNOPSIS
44
45 =head1 DESCRIPTION
46
47 This is a subclass of L<Class::MOP::Class> with Moose specific 
48 extensions.
49
50 =head1 METHODS
51
52 =over 4
53
54 =item B<construct_instance>
55
56 =back
57
58 =head1 BUGS
59
60 All complex software has bugs lurking in it, and this module is no 
61 exception. If you find a bug please either email me, or add the bug
62 to cpan-RT.
63
64 =head1 AUTHOR
65
66 Stevan Little E<lt>stevan@iinteractive.comE<gt>
67
68 =head1 COPYRIGHT AND LICENSE
69
70 Copyright 2006 by Infinity Interactive, Inc.
71
72 L<http://www.iinteractive.com>
73
74 This library is free software; you can redistribute it and/or modify
75 it under the same terms as Perl itself. 
76
77 =cut