comment blessed use so people who fail at perl stop trying to break it
[p5sagit/Safe-Isa.git] / lib / Safe / Isa.pm
CommitLineData
e6995dc6 1package Safe::Isa;
2
3use strict;
4use warnings FATAL => 'all';
5use Scalar::Util qw(blessed);
7b1885ee 6use Exporter 5.57 qw(import);
e6995dc6 7
d994d71c 8our $VERSION = '1.000005';
e6995dc6 9
10our @EXPORT = qw($_call_if_object $_isa $_can $_does $_DOES);
11
12our $_call_if_object = sub {
13 my ($obj, $method) = (shift, shift);
f3335392 14 # This is intentionally a truth test, not a defined test, otherwise
15 # we gratuitously break modules like Scalar::Defer, which would be
16 # un-perlish.
e6995dc6 17 return unless blessed($obj);
18 return $obj->$method(@_);
19};
20
21our ($_isa, $_can, $_does, $_DOES) = map {
22 my $method = $_;
23 sub { my $obj = shift; $obj->$_call_if_object($method => @_) }
24} qw(isa can does DOES);
25
26=head1 NAME
27
28Safe::Isa - Call isa, can, does and DOES safely on things that may not be objects
29
30=head1 SYNOPSIS
31
32 use strict;
33 use warnings;
34
35 { package Foo; sub new { bless({}, $_[0]) } }
36 { package Bar; our @ISA = qw(Foo); sub bar { 1 } }
37
38 my $foo = Foo->new;
39 my $bar = Bar->new;
40 my $blam = [ 42 ];
41
42 # basic isa usage -
43
44 $foo->isa('Foo'); # true
45 $bar->isa('Foo'); # true
46 $blam->isa('Foo'); # BOOM
47
48 $foo->can('bar'); # false
49 $bar->can('bar'); # true
50 $blam->can('bar'); # BOOM
51
52 # Safe::Isa usage -
53
54 use Safe::Isa;
55
56 $foo->$_isa('Foo'); # true
57 $bar->$_isa('Foo'); # true
58 $blam->$_isa('Foo'); # false, no boom today
59
60 $foo->$_can('bar'); # false
61 $bar->$_can('bar'); # true
62 $blam->$_can('bar'); # false, no boom today
63
64Similarly:
65
66 $maybe_an_object->$_does('RoleName'); # true or false, no boom today
67 $maybe_an_object->$_DOES('RoleName'); # true or false, no boom today
68
69And just in case we missed a method:
70
71 $maybe_an_object->$_call_if_object(name => @args);
72
73Or to re-use a previous example for purposes of explication:
74
ff9518c5 75 $foo->$_call_if_object(isa => 'Foo'); # true
76 $bar->$_call_if_object(isa => 'Foo'); # true
77 $blam->$_call_if_object(isa => 'Foo'); # false, no boom today
e6995dc6 78
79=head1 DESCRIPTION
80
81How many times have you found yourself writing:
82
83 if ($obj->isa('Something')) {
84
85and then shortly afterwards cursing and changing it to:
86
87 if (Scalar::Util::blessed($obj) and $obj->isa('Something')) {
88
89Right. That's why this module exists.
90
91Since perl allows us to provide a subroutine reference or a method name to
92the -> operator when used as a method call, and a subroutine doesn't require
93the invocant to actually be an object, we can create safe versions of isa,
94can and friends by using a subroutine reference that only tries to call the
95method if it's used on an object. So:
96
97 my $isa_Foo = $maybe_an_object->$_call_if_object(isa => 'Foo');
98
99is equivalent to
100
101 my $isa_Foo = do {
102 if (Scalar::Util::blessed($maybe_an_object)) {
103 $maybe_an_object->isa('Foo');
104 } else {
105 undef;
106 }
107 };
108
fca38ff4 109Note that we don't handle trying class names, because many things are valid
110class names that you might not want to treat as one (like say "Matt") - the
111C<is_module_name> function from L<Module::Runtime> is a good way to check for
f94f3bbb 112something you might be able to call methods on if you want to do that.
fca38ff4 113
e6995dc6 114=head1 EXPORTS
115
116=head2 $_isa
117
118 $maybe_an_object->$_isa('Foo');
119
120If called on an object, calls C<isa> on it and returns the result, otherwise
121returns nothing.
122
123=head2 $_can
124
125 $maybe_an_object->$_can('Foo');
126
127If called on an object, calls C<can> on it and returns the result, otherwise
128returns nothing.
129
130=head2 $_does
131
132 $maybe_an_object->$_does('Foo');
133
134If called on an object, calls C<does> on it and returns the result, otherwise
135returns nothing.
136
137=head2 $_DOES
138
139 $maybe_an_object->$_DOES('Foo');
140
141If called on an object, calls C<DOES> on it and returns the result, otherwise
142returns nothing.
143
4703f64c 144=head2 $_call_if_object
e6995dc6 145
4703f64c 146 $maybe_an_object->$_call_if_object(method_name => @args);
e6995dc6 147
148If called on an object, calls C<method_name> on it and returns the result,
149otherwise returns nothing.
150
151=head1 AUTHOR
152
153mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
154
155=head1 CONTRIBUTORS
156
157None yet. Well volunteered? :)
158
159=head1 COPYRIGHT
160
161Copyright (c) 2012 the Safe::Isa L</AUTHOR> and L</CONTRIBUTORS>
162as listed above.
163
164=head1 LICENSE
165
166This library is free software and may be distributed under the same terms
167as perl itself.
168
169=cut