10 # VVVVV CODE TAKEN FROM SCALAR::UTIL VVVVV
12 *UNIVERSAL::a_sub_not_likely_to_be_here = sub {
15 # deviation from Scalar::Util
16 # XS returns undef, PP returns GLOB.
17 # let's make that more consistent by having PP return
18 # undef if it's a GLOB. :/
20 # \*STDOUT would be allowed as an object in PP blessed
22 return $ref eq 'GLOB' ? undef : $ref;
26 local($@, $SIG{__DIE__}, $SIG{__WARN__});
28 ? eval { $_[0]->a_sub_not_likely_to_be_here }
32 'looks_like_number' => sub {
35 # checks from perlfaq4
36 return 0 if !defined($_) or ref($_);
37 return 1 if (/^[+-]?\d+$/); # is a +/- integer
38 return 1 if (/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/); # a C float
39 return 1 if ($] >= 5.008 and /^(Inf(inity)?|NaN)$/i) or ($] >= 5.006001 and /^Inf$/i);
44 local($@, $SIG{__DIE__}, $SIG{__WARN__});
48 length($t = ref($r)) or return undef;
50 # This eval will fail if the reference is not blessed
51 eval { $r->a_sub_not_likely_to_be_here; 1 }
54 # we have a GLOB or an IO. Stringify a GLOB gives it's name
56 $q =~ /^\*/ ? "GLOB" : "IO";
59 # OK, if we don't have a GLOB what parts of
60 # a glob will it populate.
61 # NOTE: A glob always has a SCALAR
63 defined *glob{ARRAY} && "ARRAY"
64 or defined *glob{HASH} && "HASH"
65 or defined *glob{CODE} && "CODE"
66 or length(ref(${$r})) ? "REF" : "SCALAR";
73 my $rt = reftype($fh) || '';
75 return defined(fileno($fh)) ? $fh : undef
78 if (reftype(\$fh) eq 'GLOB') { # handle openhandle(*DATA)
81 elsif ($rt ne 'GLOB') {
85 (tied(*$fh) or defined(fileno($fh)))
89 loaded => \&Scalar::Util::weaken,
90 not_loaded => sub { die "Scalar::Util required for weak reference support" },
92 # ^^^^^ CODE TAKEN FROM SCALAR::UTIL ^^^^^
95 # VVVVV CODE TAKEN FROM MRO::COMPAT VVVVV
97 loaded => \&mro::get_linear_isa,
99 # this recurses so it isn't pretty
104 my $classname = shift;
106 my @lin = ($classname);
108 foreach my $parent (@{"$classname\::ISA"}) {
109 my $plin = $code->($parent);
111 next if exists $stored{$_};
120 # ^^^^^ CODE TAKEN FROM MRO::COMPAT ^^^^^
124 our @EXPORT_OK = map { keys %$_ } values %dependencies;
126 for my $module_name (keys %dependencies) {
128 local $SIG{__DIE__} = 'DEFAULT';
129 eval "require $module_name; 1";
132 for my $method_name (keys %{ $dependencies{ $module_name } }) {
133 my $producer = $dependencies{$module_name}{$method_name};
136 if (ref($producer) eq 'HASH') {
137 $implementation = $loaded
138 ? $producer->{loaded}
139 : $producer->{not_loaded};
142 $implementation = $loaded
143 ? $module_name->can($method_name)
148 *{ __PACKAGE__ . '::' . $method_name } = $implementation;
158 Mouse::Util - features, with or without their dependencies
160 =head1 IMPLEMENTATIONS FOR
162 =head2 L<MRO::Compat>
164 =head3 get_linear_isa
166 =head2 L<Scalar::Util>
170 =head3 looks_like_number
178 C<weaken> I<must> be implemented in XS. If the user tries to use C<weaken>
179 without L<Scalar::Util>, an error is thrown.