X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FObject-Remote.git;a=blobdiff_plain;f=lib%2FObject%2FRemote%2FModuleLoader.pm;h=43a3a38f9f38276fbbc6f806288932e9407c372b;hp=9d4273e5bfc25cabe4facfbcfcef841187656446;hb=bef36e73e4257b2ba8e59eb55661ffc51d8a620a;hpb=daa3054c043a622b2dd27f3176436e802bcd910c diff --git a/lib/Object/Remote/ModuleLoader.pm b/lib/Object/Remote/ModuleLoader.pm index 9d4273e..43a3a38 100644 --- a/lib/Object/Remote/ModuleLoader.pm +++ b/lib/Object/Remote/ModuleLoader.pm @@ -4,15 +4,13 @@ BEGIN { package Object::Remote::ModuleLoader::Hook; use Moo; use Object::Remote::Logging qw( :log :dlog ); - use Try::Tiny; has sender => (is => 'ro', required => 1); # unqualified INC forced into package main sub Object::Remote::ModuleLoader::Hook::INC { my ($self, $module) = @_; log_debug { "Loading $module via " . ref($self) }; - try - { + my $ret = eval { if (my $code = $self->sender->source_for($module)) { open my $fh, '<', \$code; Dlog_trace { "Module sender successfully sent code for '$module': $code" } $code; @@ -20,20 +18,31 @@ BEGIN { } log_trace { "Module sender did not return code for '$module'" }; return; - } - catch - { - log_trace { "Module sender blew up - $_" }; - if($_ =~ /Can't locate/) - { + }; + if ($@) { + log_trace { "Module sender blew up - $@" }; + if ($@ =~ /Can't locate/) { # Fudge the error messge to make it work with # Module::Runtime use_package_optimistically # Module::Runtime wants - /\ACan't locate \Q$fn\E .+ at \Q@{[__FILE__]}\E line/ - my ($package, $file, $line) = caller(9); - s/(in \@INC.)/$1 at $file line $line/; + # We could probably measure and hard-code this but that could easily + # be a forwards compatibility disaster, so do a quick search of caller + # with a reasonable range; we're already into a woefully inefficient + # situation here so a little defensiveness won't make things much worse + foreach my $i (4..20) { + my ($package, $file, $line) = caller($i); + last unless $package; + if ($package eq 'Module::Runtime') { + # we want to fill in the error message with the + # module runtime module call info. + $@ =~ s/(in \@INC.)/$1 at $file line $line/; + last; + } + } } - die $_; + die $@; } + return $ret; } }