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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
|
package AnyEvent::ForkObject;
use 5.010001;
use strict;
use warnings;
use Carp;
use AnyEvent;
use AnyEvent::Util;
use AnyEvent::Handle;
use Scalar::Util qw(weaken blessed reftype);
use POSIX;
use IO::Handle;
use AnyEvent::Serialize qw(:all);
use AnyEvent::Tools qw(mutex);
use Devel::GlobalDestruction;
our $VERSION = '0.09';
sub new
{
my ($class) = @_;
my $self = bless { } => ref($class) || $class;
my ($s1, $s2) = portable_socketpair;
if ($self->{pid} = fork) {
# parent
$self->{mutex} = mutex;
close $s2;
fh_nonblocking $s1, 1;
{
weaken(my $self = $self);
$self->{handle} = new AnyEvent::Handle
fh => $s1,
on_error => sub {
return unless $self;
return if $self->{destroyed};
delete $self->{handle};
$self->{fatal} = $!;
$self->{cb}(fatal => $self->{fatal}) if $self->{cb};
};
}
} elsif (defined $self->{pid}) {
# child
close $s1;
$self->{socket} = $s2;
$self->{object} = {};
$self->{no} = 0;
$self->_start_server;
} else {
die $!;
}
return $self;
}
sub do :method
{
my ($self, %opts) = @_;
my $method = $opts{method} || 'new';
my $invocant = $opts{module} || $opts{_invocant};
my $cb = $opts{cb} || sub { };
my $args = $opts{args} || [];
my $wantarray = $opts{wantarray};
my $require = $opts{require};
$wantarray = 0 unless exists $opts{wantarray};
weaken $self;
$self->{mutex}->lock(sub {
my ($guard) = @_;
return unless $self;
return if $self->{destroyed};
$self->{cb} = $cb;
unless ($self->{handle}) {
$cb->(fatal => 'Child process was destroyed');
undef $guard;
return;
}
if ($self->{fatal}) {
$cb->(fatal => $self->{fatal});
delete $self->{cb};
undef $guard;
return;
}
serialize {
$require ? (r => $require) : (
i => $invocant,
m => $method,
a => $args,
wa => $wantarray
)
} => sub {
return unless $self;
return if $self->{destroyed} or $self->{fatal};
$self->{handle}->push_write("$_[0]\n");
return unless $self;
return if $self->{destroyed} or $self->{fatal};
$self->{handle}->push_read(line => "\n", sub {
deserialize $_[1] => sub {
return unless $self;
return if $self->{destroyed} or $self->{fatal};
my ($o, $error, $tail) = @_;
if ($error) {
$cb->(fatal => $error);
delete $self->{cb};
undef $guard;
return;
}
my $status = shift @$o;
if ($status eq 'ok') {
for (@$o) {
if (exists $_->{obj}) {
$_ = bless {
no => "$_->{obj}",
fo => \$self,
} => 'AnyEvent::ForkObject::OneObject';
next;
}
$_ = $_->{res};
}
$cb->(ok => @$o);
} else {
$cb->($status => @$o);
}
delete $self->{cb};
undef $guard;
};
return;
});
return;
};
});
return;
}
sub DESTROY
{
my ($self) = @_;
$self->{destroyed} = 1;
$self->{handle}->push_write("'bye'\n") if $self->{handle};
delete $self->{handle};
return if in_global_destruction;
# kill zombies
my $cw;
$cw = AE::child $self->{pid} => sub {
my ($pid, $code) = @_;
undef $cw;
};
}
sub _start_server
{
my ($self) = @_;
croak "Something wrong" if $self->{pid};
my $err_code = 0;
require Data::StreamSerializer;
my $socket = $self->{socket};
$socket->autoflush(1);
while(<$socket>) {
my $response;
next unless /\S/;
my $cmd = eval $_;
if ($@) {
$err_code = 1;
last;
}
unless (ref $cmd) {
if ($cmd eq 'bye') {
undef $_ for values %{ $self->{object} };
delete $self->{object};
last;
}
eval $cmd;
if ($@) {
$response = [ die => $@ ];
goto RESPONSE;
}
$response = [ 'ok' ];
goto RESPONSE;
}
# require
if ($cmd->{r}) {
eval "require $cmd->{r}";
if ($@) {
$response = [ die => $@ ];
goto RESPONSE;
}
$response = [ 'ok' ];
goto RESPONSE;
}
my ($invocant, $method, $args, $wantarray) = @$cmd{qw(i m a wa)};
if ($invocant =~ /^\d+$/) {
if ($method eq 'DESTROY') {
delete $self->{object}{$invocant};
$response = [ 'ok' ];
goto RESPONSE;
} else {
$invocant = $self->{object}{$invocant}
}
}
my @o;
if ($method eq 'fo_attr') {
unless (ref $invocant) {
$response = [ die => 'fo_attr should be called as method' ];
goto RESPONSE;
}
if ('ARRAY' eq reftype $invocant) {
$invocant->[ $args->[0] ] = $args->[1] if @$args > 1;
$o[0] = $invocant->[ $args->[0] ];
} elsif ('HASH' eq reftype $invocant) {
$invocant->{ $args->[0] } = $args->[1] if @$args > 1;
$o[0] = $invocant->{ $args->[0] };
} else {
$response = [
die => "fo_attr can't access on blessed " .
reftype $invocant
];
goto RESPONSE;
}
} else {
if ($wantarray) {
@o = eval { $invocant -> $method ( @$args ) };
} elsif (defined $wantarray) {
$o[0] = eval { $invocant -> $method ( @$args ) };
} else {
eval { $invocant -> $method ( @$args ) };
}
if ($@) {
$response = [ die => $@ ];
goto RESPONSE;
}
}
for (@o) {
if (ref $_ and blessed $_) {
my $no = ++$self->{no};
$self->{object}{$no} = $_;
$_ = { obj => $no };
next;
}
$_ = { res => $_ };
}
$response = [ ok => @o ];
RESPONSE:
my $sr = new Data::StreamSerializer($response);
while(defined(my $part = $sr->next)) {
print $socket $part;
}
print $socket "\n";
}
# destroy internal objects
delete $self->{object};
# we don't want to call any other destructors
POSIX::_exit($err_code);
}
package AnyEvent::ForkObject::OneObject;
use Carp;
use Scalar::Util qw(blessed);
use Devel::GlobalDestruction;
sub AUTOLOAD
{
our $AUTOLOAD;
my ($foo) = $AUTOLOAD =~ /([^:]+)$/;
my ($self, @args) = @_;
my $cb = pop @args;
my $wantarray = 0;
if ('CODE' ne ref $cb) {
$wantarray = $cb;
$cb = pop @args;
}
croak "Callback is required" unless 'CODE' eq ref $cb;
my $fo = $self->{fo};
unless ($$fo) {
$cb->(fatal => 'Child process was already destroyed');
return;
}
$$fo -> do(
_invocant => $self->{no},
method => $foo,
args => \@args,
cb => $cb,
wantarray => $wantarray
);
return;
}
sub DESTROY
{
# You can call DESTROY by hand
my ($self, $cb) = @_;
return if in_global_destruction;
$cb ||= sub { };
my $fo = $self->{fo};
unless (blessed $$fo) {
$cb->(fatal => 'Child process was already destroyed');
return;
}
$$fo -> do(
_invocant => $self->{no},
method => 'DESTROY',
cb => $cb,
wantarray => undef,
);
return;
}
1;
__END__
=head1 NAME
AnyEvent::ForkObject - Async access on objects.
=head1 SYNOPSIS
use AnyEvent::ForkObject;
use DBI;
my $fo = new AnyEvent::ForkObject;
$fo->do(
module => 'DBI',
method => 'connect',
args => [ 'dbi:mysql...' ],
cb => sub {
my ($status, $dbh) = @_;
$dbh->selectrow_array('SELECT ?', undef, 1 + 1, sub {
my ($status, $result) = @_;
print "$result\n"; # prints 2
});
}
);
use AnyEvent::Tools qw(async_repeat);
$dbh->prepare('SELECT * FROM tbl', sub {
my ($status, $sth) = @_;
$sth->execute(sub {
my ($status, $rv) = @_;
# fetch 30 rows
async_repeat 30 => sub {
my ($guard) = @_;
$sth->fetchrow_hashref(sub {
my ($status, $row) = @_;
undef $guard;
# do something with $row
});
};
});
});
=head1 DESCRIPTION
There are a lot of modules that provide object interface. Using the module
You can use them in async mode.
=head1 METHODS
=head2 new
Constructor. Creates an instance that contains fork jail.
=head2 do
Creates an object inside jail. It receives the following named arguments:
=over
=item B<require>
Do B<require> inside jail. If the argument is exists, B<module>, B<method>
and B<wantarray> arguments will be ignored.
=item B<module>
Module name. For example 'B<DBI>'.
=item B<method>
Constructor name. Default value is 'B<new>'.
=item B<wantarray>
Context for method. Default is B<0> (SCALAR).
=item B<cb>
Done callback. The first argument is a status:
=over
=item B<die>
The method has thrown exception. The next argument contains B<$@>.
=item B<fatal>
A fatal error was occured (for example fork jail was killed).
=item B<ok>
Method has done. The following arguments contain all data that were returned
by the method.
=back
=back
If L</method> returns blessed object, it will provide all its methods in
modified form. Each method will receive one or two additional arguments:
=over
=item B<result callback>
A callback that will be called after method has done.
=item B<wantarray>
Context flag for method. Default value is B<0> (SCALAR).
=back
All objects provide additional method B<fo_attr> to access their field.
Example:
# set attribute
$dbh->fo_attr(RaiseError => 1, sub { my ($status, $attr) = @_; ... });
# get attribute
$dbh->fo_attr('RaiseError', sub { my ($status, $attr) = @_; ... });
=head1 AUTHOR
Dmitry E. Oboukhov, E<lt>unera@debian.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2011 by Dmitry E. Oboukhov
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.1 or,
at your option, any later version of Perl 5 you may have available.
=head1 VCS
The project is placed in my git repo:
L<http://git.uvw.ru/?p=anyevent-forkobject;a=summary>
=cut
|