fix url in POD for meta-model
[gitmo/Class-MOP.git] / lib / Class / MOP / Class / Immutable / Trait.pm
CommitLineData
f5d08022 1package Class::MOP::Class::Immutable::Trait;
2
3use strict;
4use warnings;
5
6use MRO::Compat;
7
6446bd59 8use Carp 'confess';
f5d08022 9use Scalar::Util 'blessed', 'weaken';
10
19042e4d 11our $VERSION = '0.92';
f04900bf 12$VERSION = eval $VERSION;
13our $AUTHORITY = 'cpan:STEVAN';
14
f5d08022 15# the original class of the metaclass instance
16sub get_mutable_metaclass_name { $_[0]{__immutable}{original_class} }
17
18sub immutable_options { %{ $_[0]{__immutable}{options} } }
19
78f6e9c6 20sub is_mutable { 0 }
21sub is_immutable { 1 }
f5d08022 22
a986e165 23sub _immutable_metaclass { ref $_[1] }
24
f5d08022 25sub superclasses {
78f6e9c6 26 my $orig = shift;
27 my $self = shift;
28 confess "This method is read-only" if @_;
29 $self->$orig;
f5d08022 30}
31
6446bd59 32sub _immutable_cannot_call {
33 Carp::confess "This method cannot be called on an immutable instance";
34}
f5d08022 35
78f6e9c6 36sub add_method { _immutable_cannot_call() }
37sub alias_method { _immutable_cannot_call() }
38sub remove_method { _immutable_cannot_call() }
39sub add_attribute { _immutable_cannot_call() }
40sub remove_attribute { _immutable_cannot_call() }
41sub remove_package_symbol { _immutable_cannot_call() }
2b1fb7dc 42sub add_package_symbol { _immutable_cannot_call() }
f5d08022 43
6446bd59 44sub class_precedence_list {
78f6e9c6 45 my $orig = shift;
46 my $self = shift;
47 @{ $self->{__immutable}{class_precedence_list}
48 ||= [ $self->$orig ] };
6446bd59 49}
50
51sub linearized_isa {
78f6e9c6 52 my $orig = shift;
53 my $self = shift;
54 @{ $self->{__immutable}{linearized_isa} ||= [ $self->$orig ] };
6446bd59 55}
56
57sub get_all_methods {
78f6e9c6 58 my $orig = shift;
59 my $self = shift;
60 @{ $self->{__immutable}{get_all_methods} ||= [ $self->$orig ] };
6446bd59 61}
62
63sub get_all_method_names {
78f6e9c6 64 my $orig = shift;
65 my $self = shift;
66 @{ $self->{__immutable}{get_all_method_names} ||= [ $self->$orig ] };
6446bd59 67}
68
69sub get_all_attributes {
78f6e9c6 70 my $orig = shift;
71 my $self = shift;
72 @{ $self->{__immutable}{get_all_attributes} ||= [ $self->$orig ] };
6446bd59 73}
f5d08022 74
6446bd59 75sub get_meta_instance {
78f6e9c6 76 my $orig = shift;
77 my $self = shift;
78 $self->{__immutable}{get_meta_instance} ||= $self->$orig;
6446bd59 79}
80
81sub get_method_map {
78f6e9c6 82 my $orig = shift;
83 my $self = shift;
84 $self->{__immutable}{get_method_map} ||= $self->$orig;
6446bd59 85}
f5d08022 86
f5d08022 871;
15726b75 88
89__END__
90
91=pod
92
93=head1 NAME
94
95Class::MOP::Class::Immutable::Trait - Implements immutability for metaclass objects
96
97=head1 DESCRIPTION
98
9e25e01f 99This class provides a pseudo-trait that is applied to immutable metaclass
100objects. In reality, it is simply a parent class.
101
102It implements caching and read-only-ness for various metaclass methods.
15726b75 103
104=head1 AUTHOR
105
106Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
107
108=head1 COPYRIGHT AND LICENSE
109
110Copyright 2009 by Infinity Interactive, Inc.
111
112L<http://www.iinteractive.com>
113
114This library is free software; you can redistribute it and/or modify
115it under the same terms as Perl itself.
116
117=cut
118