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