include test for failure mode
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ClassData.pm
CommitLineData
a7caa492 1package Catalyst::ClassData;
2
3use Moose::Role;
76aab993 4use Class::MOP;
74c89dea 5use Class::MOP::Object;
a7caa492 6
7sub mk_classdata {
efbfd430 8 my ($class, $attribute) = @_;
a7caa492 9 confess("mk_classdata() is a class method, not an object method")
efbfd430 10 if blessed $class;
11
12 my $slot = '$'.$attribute;
13 my $accessor = sub {
eece41a2 14 my $pkg = ref $_[0] || $_[0];
dfa27f53 15 # Hack - delberately create a metaclass instance
74c89dea 16 my $meta = $pkg->Class::MOP::Object::meta();
76721d3c 17 if (@_ > 1) {
ce50990e 18 $meta->namespace->{$attribute} = \$_[1];
efbfd430 19 return $_[1];
20 }
76aab993 21
eece41a2 22 # tighter version of
23 # if ( $meta->has_package_symbol($slot) ) {
24 # return ${ $meta->get_package_symbol($slot) };
25 # }
26 no strict 'refs';
27 my $v = *{"${pkg}::${attribute}"}{SCALAR};
28 if (defined ${$v}) {
29 return ${$v};
46d0346d 30 } else {
31 foreach my $super ( $meta->linearized_isa ) {
eece41a2 32 # tighter version of same after
33 # my $super_meta = Moose::Meta::Class->initialize($super);
875d8110 34 my $v = ${"${super}::"}{$attribute} ? *{"${super}::${attribute}"}{SCALAR} : undef;
eece41a2 35 if (defined ${$v}) {
36 return ${$v};
46d0346d 37 }
efbfd430 38 }
39 }
40 return;
a7caa492 41 };
76aab993 42
43 confess("Failed to create accessor: $@ ")
efbfd430 44 unless ref $accessor eq 'CODE';
a7caa492 45
74c89dea 46 my $meta = $class->Class::MOP::Object::meta();
30305469 47 confess "${class}'s metaclass is not a Class::MOP::Class"
48 unless $meta->isa('Class::MOP::Class');
843c9233 49 my $immutable_options;
50 if( $meta->is_immutable ){
51 $immutable_options = $meta->get_immutable_options;
52 $meta->make_mutable;
53 }
a7caa492 54 my $alias = "_${attribute}_accessor";
efbfd430 55 $meta->add_method($alias, $accessor);
56 $meta->add_method($attribute, $accessor);
843c9233 57 if(defined $immutable_options){
11ae7378 58 $meta->make_immutable(%{ $immutable_options });
843c9233 59 }
efbfd430 60 $class->$attribute($_[2]) if(@_ > 2);
a7caa492 61 return $accessor;
62}
63
641;
65
66__END__
46d0346d 67
68
69=head1 NAME
70
10011c19 71Catalyst::ClassData - Class data accessors
46d0346d 72
73=head1 METHODS
74
75=head2 mk_classdata $name, $optional_value
76
77A moose-safe clone of L<Class::Data::Inheritable> that borrows some ideas from
78L<Class::Accessor::Grouped>;
79
80=head1 AUTHOR
81
82Guillermo Roditi
83
84=head1 COPYRIGHT
85
86This program is free software, you can redistribute it and/or modify it under
87the same terms as Perl itself.
88
89=cut