Sha256: b42e3ea69c713bea037465475fdd10cabde97f885edd1da05211c62fd4055675
Contents?: true
Size: 1.15 KB
Versions: 18
Compression:
Stored size: 1.15 KB
Contents
package Javonet::Core::Handler::CommandHandler::LoadLibraryHandler; use strict; use warnings FATAL => 'all'; use lib 'lib'; use Moose; use File::Basename; use Nice::Try; use aliased 'Javonet::Core::Exception::Exception' => 'Exception'; extends 'Javonet::Core::Handler::CommandHandler::AbstractCommandHandler'; sub new { my $class = shift; my $self = { required_parameters_count => 1 }; return bless $self, $class; } sub process { my ($self, $command) = @_; try { my $current_payload_ref = $command->{payload}; my @cur_payload = @$current_payload_ref; my $parameters_length = @cur_payload; if ($parameters_length != $self->{required_parameters_count}) { die Exception->new("Exception: LoadLibrary parameters mismatch"); } my $path_to_file = $command->{payload}[0]; my $path_to_file_dir = dirname($path_to_file); my $file_name = basename($path_to_file); push(@INC, "$path_to_file_dir"); eval(require $file_name); return 0; } catch ( $e ) { return Exception->new($e); } } no Moose; 1;
Version data entries
18 entries across 18 versions & 1 rubygems