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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
# You may distribute under the terms of either the GNU General Public License
# or the Artistic License (the same terms as Perl itself)
#
# (C) Paul Evans, 2010-2021 -- leonerd@leonerd.org.uk
package Net::Async::Tangence::Client 0.16;
use v5.14;
use warnings;
use base qw( Net::Async::Tangence::Protocol Tangence::Client );
use Carp;
use Future;
use Scalar::Util qw( blessed );
use Socket ();
use URI;
=head1 NAME
C<Net::Async::Tangence::Client> - connect to a C<Tangence> server using
C<IO::Async>
=head1 DESCRIPTION
This subclass of L<Net::Async::Tangence::Protocol> connects to a L<Tangence>
server, allowing the client program to access exposed objects in the server.
It is a concrete implementation of the C<Tangence::Client> mixin.
The following documentation concerns this specific implementation of the
client; for more general information on the C<Tangence>-specific parts of this
class, see instead the documentation for L<Tangence::Client>.
=cut
sub new
{
my $class = shift;
my %args = @_;
my $self = $class->SUPER::new( %args );
# It's possible a handle was passed in the constructor.
$self->tangence_connected( %args ) if defined $self->read_handle;
return $self;
}
=head1 PARAMETERS
The following named parameters may be passed to C<new> or C<configure>:
=over 8
=item identity => STRING
The identity string to send to the server.
=item on_error => STRING or CODE
Default error-handling policy for method calls. If set to either of the
strings C<carp> or C<croak> then a CODE ref will be created that invokes the
given function from C<Carp>; otherwise must be a CODE ref.
=back
=cut
sub _init
{
my $self = shift;
my ( $params ) = @_;
$self->identity( delete $params->{identity} );
$self->SUPER::_init( $params );
$params->{on_error} ||= "croak";
}
sub configure
{
my $self = shift;
my %params = @_;
if( my $on_error = delete $params{on_error} ) {
if( ref $on_error eq "CODE" ) {
# OK
}
elsif( $on_error eq "croak" ) {
$on_error = sub { croak "Received MSG_ERROR: $_[0]" };
}
elsif( $on_error eq "carp" ) {
$on_error = sub { carp "Received MSG_ERROR: $_[0]" };
}
else {
croak "Expected 'on_error' to be CODE reference or strings 'croak' or 'carp'";
}
$self->on_error( $on_error );
}
$self->SUPER::configure( %params );
}
=head1 METHODS
The following methods documented with a trailing call to C<< ->get >> return
L<Future> instances.
=cut
sub new_future
{
my $self = shift;
return $self->loop->new_future;
}
=head2 connect_url
$rootobj = $client->connect_url( $url, %args )->get
Connects to a C<Tangence> server at the given URL. The returned L<Future> will
yield the root object proxy once it has been obtained.
Takes the following named arguments:
=over 8
=item on_registry => CODE
=item on_root => CODE
Invoked once the registry and root object proxies have been obtained from the
server. See the documentation the L<Tangence::Client> C<tangence_connected>
method.
=item family => STRING
Optional. May be set to C<inet4> or C<inet6> to force IPv4 or IPv6 if
relevant. Ignored by C<exec:> and C<unix:> schemes.
=back
The following URL schemes are recognised:
=over 4
=cut
sub connect_url
{
my $self = shift;
my ( $url, %args ) = @_;
my $uri = ( blessed $url && $url->isa( "URI" ) ) ? $url : URI->new( $url );
my $scheme = $uri->scheme;
if( $scheme =~ m/\+/ ) {
$scheme =~ s/^circle\+// or croak "Found a + within URL scheme that is not 'circle+'";
}
# Legacy name
$scheme = "sshexec" if $scheme eq "ssh";
my $authority = $uri->authority;
my $path = $uri->path;
# Path will start with a leading /; we need to trim that
$path =~ s{^/}{};
my $query = $uri->query;
defined $query or $query = "";
my $f;
if( $scheme eq "exec" ) {
# $query will contain args to exec - split them on +
$f = $self->connect_exec( [ $path, split m/\+/, $query ], %args );
}
elsif( $scheme eq "tcp" ) {
$f = $self->connect_tcp( $authority, %args );
}
elsif( $scheme eq "unix" ) {
$f = $self->connect_unix( $path, %args );
}
else {
my $connectorpkg = "Net::Async::Tangence::Client::via::$scheme";
( my $connectorfile = "$connectorpkg.pm" ) =~ s{::}{/}g;
if( eval { require $connectorfile } and
my $code = $connectorpkg->can( 'connect' ) ) {
$f = $code->( $self, $uri, %args );
}
else {
croak "Unrecognised URL scheme name '$scheme'";
}
}
return $f->then( sub {
my $on_root = $args{on_root};
my $root_f = $self->new_future;
$self->tangence_connected( %args,
on_root => sub {
my ( $root ) = @_;
$on_root->( $root ) if $on_root;
$root_f->done( $root );
},
);
$root_f;
});
}
=item * exec
Directly executes the server as a child process. This is largely provided for
testing purposes, as the server will only run for this one client; it will
exit when the client disconnects.
exec:///path/to/command?with+arguments
The URL's path should point to the required command, and the query string will
be split on C<+> signs and used as the arguments. The authority section of the
URL will be ignored, so may be left empty.
=cut
sub connect_exec
{
my $self = shift;
my ( $command ) = @_;
my $loop = $self->get_loop;
pipe( my $myread, my $childwrite ) or croak "Cannot pipe - $!";
pipe( my $childread, my $mywrite ) or croak "Cannoe pipe - $!";
$loop->spawn_child(
command => $command,
setup => [
stdin => $childread,
stdout => $childwrite,
],
on_exit => sub {
my ( undef, $exitcode, $dollarbang ) = @_;
print STDERR "Child exited unexpectedly (status=$exitcode, \$!=$dollarbang)\n";
},
);
$self->configure(
read_handle => $myread,
write_handle => $mywrite,
);
Future->done;
}
=item * sshexec
A convenient wrapper around the C<exec> scheme, to connect to a server running
remotely via F<ssh>.
sshexec://host/path/to/command?with+arguments
The URL's authority section will give the SSH server (and optionally
username), and the path and query sections will be used as for C<exec>.
(This scheme is also available as C<ssh>, though this name is now deprecated)
=cut
=item * tcp
Connects to a server via a TCP socket.
tcp://host:port/
The URL's authority section will be used to give the server's hostname and
port number. The other sections of the URL will be ignored.
=cut
sub connect_tcp
{
my $self = shift;
my ( $authority, %args ) = @_;
my $family;
$family = Socket::PF_INET() if $args{family} and $args{family} eq "inet4";
$family = Socket::PF_INET6() if $args{family} and $args{family} eq "inet6";
my ( $host, $port ) = $authority =~ m/^(.*):(.*)$/;
$self->connect(
host => $host,
service => $port,
);
}
=item * unix
Connects to a server via a UNIX local socket.
unix:///path/to/socket
The URL's path section will give the path to the local socket. The other
sections of the URL will be ignored.
=cut
sub connect_unix
{
my $self = shift;
my ( $path ) = @_;
$self->connect(
addr => {
family => 'unix',
socktype => 'stream',
path => $path,
},
);
}
=item * sshunix
Connects to a server running remotely via a UNIX socket over F<ssh>.
sshunix://host/path/to/socket
(This is implemented by running F<perl> remotely and sending it a tiny
self-contained program that connects STDIN/STDOUT to the given UNIX socket
path. It requires that the server has F<perl> at least version 5.6 available
in the path simply as C<perl>)
=cut
=back
=cut
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|