X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FObject%2FRemote%2FConnector%2FSSH.pm;h=73bc2fc2630ad7b775b8e49190fc0dde706db92e;hb=54b64f99be532930bd97b0fd2418675302aa7a1e;hp=c9193d0d3512669b35c7b1bc4861b3ba7d28128f;hpb=47c83a1379a33fc8baa4a128edc1d75d780776b0;p=scpubgit%2FObject-Remote.git diff --git a/lib/Object/Remote/Connector/SSH.pm b/lib/Object/Remote/Connector/SSH.pm index c9193d0..73bc2fc 100644 --- a/lib/Object/Remote/Connector/SSH.pm +++ b/lib/Object/Remote/Connector/SSH.pm @@ -1,23 +1,44 @@ package Object::Remote::Connector::SSH; -use Object::Remote::FatNode; -use Net::OpenSSH; +use Object::Remote::ModuleSender; +use Object::Remote::Handle; +use String::ShellQuote; use Moo; -with 'Object::Remote::Role::Connector'; +with 'Object::Remote::Role::Connector::PerlInterpreter'; -has ssh_masters => (is => 'ro', default => sub { {} }); +has ssh_to => (is => 'ro', required => 1); -sub _open2_for { - my $self = shift; - my @res = $self->_ssh_object_for(@_)->open2('perl','-',@_); - print { $res[0] } $Object::Remote::FatNode::DATA, "__END__\n"; - return @res; -} +has ssh_perl_command => (is => 'lazy'); + +has ssh_options => (is => 'ro', default => sub { [ '-A' ] }); + +has ssh_command => (is => 'ro', default => sub { 'ssh' }); + +sub _build_ssh_perl_command { + my ($self) = @_; + my $perl_command = $self->perl_command; -sub _ssh_object_for { - my ($self, $on) = @_; - $self->ssh_masters->{$on} ||= Net::OpenSSH->new($on); + return [ + do { my $c = $self->ssh_command; ref($c) ? @$c : $c }, + @{$self->ssh_options}, $self->ssh_to, + shell_quote(@$perl_command), + ]; } +sub final_perl_command { shift->ssh_perl_command } + +no warnings 'once'; + +push @Object::Remote::Connection::Guess, sub { + for ($_[0]) { + # 0-9 a-z _ - first char, those or . subsequent - hostnamish + if (defined and !ref and /^(?:.*?\@)?[\w\-][\w\-\.]/) { + my $host = shift(@_); + return __PACKAGE__->new(@_, ssh_to => $host); + } + } + return; +}; + 1;