Fix various doc typoes.
[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 6use Scalar::Util 'blessed';
7
8sub mk_classdata {
efbfd430 9 my ($class, $attribute) = @_;
a7caa492 10 confess("mk_classdata() is a class method, not an object method")
efbfd430 11 if blessed $class;
12
13 my $slot = '$'.$attribute;
14 my $accessor = sub {
eece41a2 15 my $pkg = ref $_[0] || $_[0];
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();
843c9233 47 my $immutable_options;
48 if( $meta->is_immutable ){
49 $immutable_options = $meta->get_immutable_options;
50 $meta->make_mutable;
51 }
a7caa492 52 my $alias = "_${attribute}_accessor";
efbfd430 53 $meta->add_method($alias, $accessor);
54 $meta->add_method($attribute, $accessor);
843c9233 55 if(defined $immutable_options){
11ae7378 56 $meta->make_immutable(%{ $immutable_options });
843c9233 57 }
efbfd430 58 $class->$attribute($_[2]) if(@_ > 2);
a7caa492 59 return $accessor;
60}
61
621;
63
64__END__
46d0346d 65
66
67=head1 NAME
68
10011c19 69Catalyst::ClassData - Class data accessors
46d0346d 70
71=head1 METHODS
72
73=head2 mk_classdata $name, $optional_value
74
75A moose-safe clone of L<Class::Data::Inheritable> that borrows some ideas from
76L<Class::Accessor::Grouped>;
77
78=head1 AUTHOR
79
80Guillermo Roditi
81
82=head1 COPYRIGHT
83
84This program is free software, you can redistribute it and/or modify it under
85the same terms as Perl itself.
86
87=cut