/usr/share/perl5/Object/Realize/Later.pm is in libobject-realize-later-perl 0.19-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | # Copyrights 2001-2014 by [Mark Overmeer <perl@overmeer.net>].
# For other contributors see Changes.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 2.01.
package Object::Realize::Later;
our $VERSION = '0.19';
use Carp;
use Scalar::Util 'weaken';
use warnings;
use strict;
no strict 'refs';
my $named = 'ORL_realization_method';
my $helper = 'ORL_fake_realized';
sub init_code($)
{ my $args = shift;
<<INIT_CODE;
package $args->{class};
require $args->{source_module};
my \$$helper = bless {}, '$args->{becomes}';
INIT_CODE
}
sub isa_code($)
{ my $args = shift;
<<ISA_CODE;
sub isa(\$)
{ my (\$thing, \$what) = \@_;
return 1 if \$thing->SUPER::isa(\$what); # real dependency?
\$$helper\->isa(\$what);
}
ISA_CODE
}
sub can_code($)
{ my $args = shift;
my $becomes = $args->{becomes};
<<CAN_CODE;
sub can(\$)
{ my (\$thing, \$method) = \@_;
my \$func;
\$func = \$thing->SUPER::can(\$method)
and return \$func;
\$func = \$$helper\->can(\$method)
or return;
# wrap func() to trigger load if needed.
sub { ref \$thing
? \$func->(\$thing->forceRealize, \@_)
: \$func->(\$thing, \@_)
};
}
CAN_CODE
}
sub AUTOLOAD_code($)
{ my $args = shift;
<<'CODE1' . ($args->{believe_caller} ? '' : <<NOT_BELIEVE) . <<CODE2;
our $AUTOLOAD;
sub AUTOLOAD(@)
{ my $call = substr $AUTOLOAD, rindex($AUTOLOAD, ':')+1;
return if $call eq 'DESTROY';
CODE1
unless(\$$helper->can(\$call) || \$$helper->can('AUTOLOAD'))
{ use Carp;
croak "Unknown method \$call called";
}
NOT_BELIEVE
# forward as class method if required
shift and return $args->{becomes}->\$call( \@_ ) unless ref \$_[0];
\$_[0]->forceRealize;
my \$made = shift;
\$made->\$call(\@_);
}
CODE2
}
sub realize_code($)
{ my $args = shift;
my $pkg = __PACKAGE__;
my $argspck= join "'\n , '", %$args;
<<REALIZE_CODE .($args->{warn_realization} ? <<'WARN' : '') .<<REALIZE_CODE;
sub forceRealize(\$)
{
REALIZE_CODE
require Carp;
Carp::carp("Realization of $_[0]");
WARN
${pkg}->realize
( ref_object => \\\${_[0]}
, caller => [ caller 1 ]
, '$argspck'
);
}
REALIZE_CODE
}
sub will_realize_code($)
{ my $args = shift;
my $becomes = $args->{becomes};
<<WILL_CODE;
sub willRealize() {'$becomes'}
WILL_CODE
}
sub realize(@)
{ my ($class, %args) = @_;
my $object = ${$args{ref_object}};
my $realize = $args{realize};
my $already = $class->realizationOf($object);
if(defined $already && ref $already ne ref $object)
{ if($args{warn_realize_again})
{ my (undef, $filename, $line) = @{$args{caller}};
warn "Attempt to realize object again: old reference caught at $filename line $line.\n"
}
return ${$args{ref_object}} = $already;
}
my $loaded = ref $realize ? $realize->($object) : $object->$realize;
warn "Load produces a ".ref($loaded)
. " where a $args{becomes} is expected.\n"
unless $loaded->isa($args{becomes});
${$args{ref_object}} = $loaded;
$class->realizationOf($object, $loaded);
}
my %realization;
sub realizationOf($;$)
{ my ($class, $object) = (shift, shift);
my $unique = "$object";
if(@_)
{ $realization{$unique} = shift;
weaken $realization{$unique};
}
$realization{$unique};
}
sub import(@)
{ my ($class, %args) = @_;
confess "Require 'becomes'" unless $args{becomes};
confess "Require 'realize'" unless $args{realize};
$args{class} = caller;
$args{warn_realization} ||= 0;
$args{warn_realize_again} ||= 0;
$args{source_module} ||= $args{becomes};
# A reference to code will stringify at the eval below. To solve
# this, it is tranformed into a call to a named subroutine.
if(ref $args{realize} eq 'CODE')
{ my $named_method = "$args{class}::$named";
*{$named_method} = $args{realize};
$args{realize} = $named_method;
}
# Produce the code
my $args = \%args;
my $eval
= init_code($args)
. isa_code($args)
. can_code($args)
. AUTOLOAD_code($args)
. realize_code($args)
. will_realize_code($args)
;
#warn $eval;
# Install the code
eval $eval;
die $@ if $@;
1;
}
1;
|