INET connector
[scpubgit/Object-Remote.git] / lib / Object / Remote / Connector / INET.pm
1 package Object::Remote::Connector::INET;
2
3 use IO::Socket::INET;
4 use Moo;
5
6 with 'Object::Remote::Role::Connector';
7
8 has socket_path => (is => 'ro', required => 1);
9
10 sub _open2_for {
11   my ($self) = @_;
12   my $path = $self->socket_path;
13   my $sock = IO::Socket::INET->new($path)
14     or die "Couldn't open socket ${path}: $!";
15   ($sock, $sock, undef);
16 }
17
18 no warnings 'once';
19
20 push @Object::Remote::Connection::Guess, sub {
21   for ($_[0]) {
22     if (defined and !ref and /^.+:\d+$/) {
23       my $socket = shift(@_);
24       return __PACKAGE__->new(@_, socket_path => $socket);
25     }
26   }
27   return;
28 };
29
30 1;