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 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
|
package Mojo::IOLoop::ReadWriteProcess;
our $VERSION = '1.1.0';
use Mojo::Base 'Mojo::EventEmitter';
use Mojo::File 'path';
use Mojo::Util qw(b64_decode b64_encode scope_guard);
use Mojo::IOLoop::Stream;
use Mojo::IOLoop::ReadWriteProcess::Exception;
use Mojo::IOLoop::ReadWriteProcess::Pool;
use Mojo::IOLoop::ReadWriteProcess::Queue;
use Mojo::IOLoop::ReadWriteProcess::Session;
use Mojo::IOLoop::ReadWriteProcess::Shared::Lock;
use Mojo::IOLoop::ReadWriteProcess::Shared::Memory;
use Mojo::IOLoop::ReadWriteProcess::Shared::Semaphore;
use B::Deparse;
use Carp 'confess';
use IO::Handle;
use IO::Pipe;
use IO::Select;
use IPC::Open3;
use Time::HiRes 'sleep';
use Symbol 'gensym';
use Storable;
use POSIX qw( :sys_wait_h :signal_h );
our @EXPORT_OK
= (qw(parallel batch process pool queue), qw(shared_memory lock semaphore));
use Exporter 'import';
use constant DEBUG => $ENV{MOJO_PROCESS_DEBUG};
has [
qw(kill_sleeptime sleeptime_during_kill),
qw(separate_err autoflush set_pipes verbose),
qw(internal_pipes channels)
] => 1;
has [qw(blocking_stop serialize quirkiness total_sleeptime_during_kill)] => 0;
has [
qw(execute code process_id pidfile return_status),
qw(channel_in channel_out write_stream read_stream error_stream),
qw(_internal_err _internal_return _status args)
];
has max_kill_attempts => 5;
has kill_whole_group => 0;
has error => sub { Mojo::Collection->new };
has ioloop => sub { Mojo::IOLoop->singleton };
has session => sub { Mojo::IOLoop::ReadWriteProcess::Session->singleton };
has _deparse => sub { B::Deparse->new }
if DEBUG;
has _deserialize => sub { \&Storable::thaw };
has _serialize => sub { \&Storable::freeze };
has _default_kill_signal => POSIX::SIGTERM;
has _default_blocking_signal => POSIX::SIGKILL;
# Override new() just to support sugar syntax
# so it is possible to do : process->new(sub{ print "Hello World\n" })->start->stop; and so on.
sub new {
push(@_, code => splice @_, 1, 1) if ref $_[1] eq "CODE";
return shift->SUPER::new(@_);
}
sub to_ioloop {
my $self = shift;
confess 'Pipes needs to be set!' unless $self->read_stream;
my $stream = Mojo::IOLoop::Stream->new($self->read_stream)->timeout(0);
$self->ioloop->stream($stream);
my $me = $$;
$stream->on(
close => sub {
return unless $$ == $me;
$self->_collect->stop unless defined $self->_status;
});
return $stream;
}
sub process { __PACKAGE__->new(@_) }
sub batch { Mojo::IOLoop::ReadWriteProcess::Pool->new(@_) }
sub queue { Mojo::IOLoop::ReadWriteProcess::Queue->new(@_) }
sub lock { Mojo::IOLoop::ReadWriteProcess::Shared::Lock->new(@_) }
sub semaphore { Mojo::IOLoop::ReadWriteProcess::Shared::Semaphore->new(@_) }
sub shared_memory { Mojo::IOLoop::ReadWriteProcess::Shared::Memory->new(@_) }
sub parallel {
my $c = batch();
$c->add(@_) for 1 .. +pop();
return $c;
}
sub _diag {
my ($self, @messages) = @_;
my $caller = (caller(1))[3];
print STDERR ">> ${caller}(): @messages\n" if (DEBUG || $self->verbose);
}
sub _open_collect_status {
my ($self, $pid, $e, $errno) = @_;
return unless $self;
$self->_status($e // $?) unless defined $self->_status;
$self->_diag("Forked code Process Exit status: " . $self->exit_status)
if DEBUG;
$self->_clean_pidfile;
return $self;
}
# Use open3 to launch external program.
sub _open {
my ($self, @args) = @_;
$self->_diag('Execute: ' . (join ', ', map { "'$_'" } @args)) if DEBUG;
$self->on(collect_status => \&_open_collect_status);
my ($wtr, $rdr, $err);
$err = gensym;
my $pid = open3($wtr, $rdr, ($self->separate_err) ? $err : undef, @args);
die "Cannot create pipe: $!" unless defined $pid;
$self->process_id($pid);
# Defered collect of return status and removal of pidfile
return $self unless $self->set_pipes();
$self->read_stream(IO::Handle->new_from_fd($rdr, "r"));
$self->write_stream(IO::Handle->new_from_fd($wtr, "w"));
$self->error_stream(($self->separate_err)
? IO::Handle->new_from_fd($err, "r")
: $self->write_stream);
return $self;
}
sub _clean_pidfile { unlink(shift->pidfile) if $_[0]->pidfile }
sub _collect {
my ($self, $pid) = @_;
$pid //= $self->pid;
$self->session->consume_collected_info;
$self->session->_protect(
sub {
local $?;
waitpid $pid, 0 unless defined $self->_status;
return $self->_open_collect_status($pid) if $self->execute;
return $self->_fork_collect_status($pid) if $self->code;
});
$self;
}
sub _fork_collect_status {
my ($self, $pid, $e, $errno) = @_;
return unless $self;
my $return_reader;
my $internal_err_reader;
my $rt;
my @result_error;
$self->_status($e // $?) unless defined $self->_status;
$self->_diag("Forked code Process Exit status: " . $self->exit_status)
if DEBUG;
if ($self->_internal_return) {
$return_reader
= $self->_internal_return->isa("IO::Pipe::End")
? $self->_internal_return
: $self->_internal_return->reader();
$self->_new_err('Cannot read from return code pipe') && return
unless IO::Select->new($return_reader)->can_read(10);
$rt = $return_reader->getline();
$self->_diag("Forked code Process Returns: " . ($rt ? $rt : 'nothing'))
if DEBUG;
$self->return_status(
$self->serialize ? eval { $self->_deserialize->(b64_decode($rt)) }
: $rt ? $rt
: ());
}
if ($self->_internal_err) {
$internal_err_reader
= $self->_internal_err->isa("IO::Pipe::End")
? $self->_internal_err
: $self->_internal_err->reader();
$self->_new_err('Cannot read from errors code pipe') && return
unless IO::Select->new($internal_err_reader)->can_read(10);
@result_error = $internal_err_reader->getlines();
push(
@{$self->error},
map { Mojo::IOLoop::ReadWriteProcess::Exception->new($_) } @result_error
) if @result_error;
$self->_diag("Forked code Process Errors: " . join("\n", @result_error))
if DEBUG;
}
$self->_clean_pidfile;
return $self;
}
# Handle forking of code
sub _fork {
my ($self, $code, @args) = @_;
die "Can't spawn child without code" unless ref($code) eq "CODE";
# STDIN/STDOUT/STDERR redirect.
my ($input_pipe, $output_pipe, $output_err_pipe);
# Separated handles that could be used for internal comunication.
my ($channel_in, $channel_out);
if ($self->set_pipes) {
$input_pipe = IO::Pipe->new()
or $self->_new_err('Failed creating input pipe');
$output_pipe = IO::Pipe->new()
or $self->_new_err('Failed creating output pipe');
$output_err_pipe = IO::Pipe->new()
or $self->_new_err('Failed creating output error pipe');
if ($self->channels) {
$channel_in = IO::Pipe->new()
or $self->_new_err('Failed creating Channel input pipe');
$channel_out = IO::Pipe->new()
or $self->_new_err('Failed creating Channel output pipe');
}
}
if ($self->internal_pipes) {
my $internal_err = IO::Pipe->new()
or $self->_new_err('Failed creating internal error pipe');
my $internal_return = IO::Pipe->new()
or $self->_new_err('Failed creating internal return pipe');
# Internal pipes to retrieve error/return
$self->_internal_err($internal_err);
$self->_internal_return($internal_return);
}
# Defered collect of return status
$self->on(collect_status => \&_fork_collect_status);
$self->_diag("Fork: " . $self->_deparse->coderef2text($code)) if DEBUG;
my $pid = fork;
die "Cannot fork: $!" unless defined $pid;
if ($pid == 0) {
local $SIG{CHLD};
local $SIG{TERM} = sub { $self->emit('SIG_TERM')->_exit(1) };
my $return;
my $internal_err;
if ($self->internal_pipes) {
if ($self->_internal_err) {
$internal_err
= $self->_internal_err->isa("IO::Pipe::End")
? $self->_internal_err
: $self->_internal_err->writer();
$internal_err->autoflush(1);
}
if ($self->_internal_return) {
$return
= $self->_internal_return->isa("IO::Pipe::End")
? $self->_internal_return
: $self->_internal_return->writer();
$return->autoflush(1);
}
else {
eval { $internal_err->write("Can't setup return status pipe") };
}
}
# Set pipes to redirect STDIN/STDOUT/STDERR + channels if desired
if ($self->set_pipes()) {
my $stdout;
my $stderr;
my $stdin;
$stdout = $output_pipe->writer() if $output_pipe;
$stderr
= (!$self->separate_err) ? $stdout
: $output_err_pipe ? $output_err_pipe->writer()
: undef;
$stdin = $input_pipe->reader() if $input_pipe;
open STDERR, ">&", $stderr
or !!$internal_err->write($!)
or $self->_diag($!)
if $stderr;
open STDOUT, ">&", $stdout
or !!$internal_err->write($!)
or $self->_diag($!)
if $stdout;
open STDIN, ">&", $stdin
or !!$internal_err->write($!)
or $self->_diag($!)
if $stdin;
$self->read_stream($stdin);
$self->error_stream($stderr);
$self->write_stream($stdout);
if ($self->channels) {
$self->channel_in($channel_in->reader) if $channel_in;
$self->channel_out($channel_out->writer) if $channel_out;
eval { $self->$_->autoflush($self->autoflush) }
for qw( channel_in channel_out );
}
eval { $self->$_->autoflush($self->autoflush) }
for qw(read_stream error_stream write_stream );
}
$self->session->reset;
$self->session->subreaper(0); # Subreaper bit does not persist in fork
$self->process_id($$);
$! = 0;
my $rt;
eval { $rt = [$code->($self, @args)]; };
if ($internal_err) {
$internal_err->write($@) if $@;
$internal_err->write($!) if !$@ && $!;
}
$rt = @$rt[0]
if !$self->serialize && ref $rt eq 'ARRAY' && scalar @$rt == 1;
$rt = b64_encode(eval { $self->_serialize->($rt) })
if $self->serialize && $return;
$return->write($rt) if $return;
$self->_exit($@ // $!);
}
$self->process_id($pid);
return $self unless $self->set_pipes();
$self->read_stream($output_pipe->reader) if $output_pipe;
$self->error_stream((!$self->separate_err) ? $self->read_stream()
: $output_err_pipe ? $output_err_pipe->reader()
: undef);
$self->write_stream($input_pipe->writer) if $input_pipe;
if ($self->set_pipes) {
if ($self->channels) {
$self->channel_in($channel_in->writer) if $channel_in;
$self->channel_out($channel_out->reader) if $channel_out;
eval { $self->$_->autoflush($self->autoflush) }
for qw( channel_in channel_out );
}
eval { $self->$_->autoflush($self->autoflush) }
for qw(read_stream error_stream write_stream );
}
return $self;
}
sub _new_err {
my $self = shift;
my $err = Mojo::IOLoop::ReadWriteProcess::Exception->new(@_);
push(@{$self->error}, $err);
# XXX: Need to switch, we should emit one error at the time, and _shutdown
# should emit just the ones wasn't emitted
return $self->emit(process_error => [$err]);
}
sub _exit {
my $code = shift // 0;
eval { POSIX::_exit($code); };
exit($code);
}
sub wait {
my $self = shift;
sleep $self->sleeptime_during_kill while ($self->is_running);
return $self;
}
sub wait_stop { shift->wait->stop }
sub errored { !!@{shift->error} ? 1 : 0 }
# PPC64: Treat msb on neg (different cpu/perl interpreter version)
sub _st { my $st = shift >> 8; ($st & 0x80) ? (0x100 - ($st & 0xFF)) : $st }
sub exit_status {
defined $_[0]->_status && $_[0]->quirkiness ? _st(shift->_status)
: defined $_[0]->_status ? shift->_status >> 8
: undef;
}
sub restart {
$_[0]->is_running ? $_[0]->stop->start : $_[0]->start;
}
sub is_running {
my ($self) = shift;
$self->session->consume_collected_info;
return 0 unless my $pid = $self->process_id;
kill(0, ($self->kill_whole_group ? (-$pid, $pid) : ($pid)));
}
sub write_pidfile {
my ($self, $pidfile) = @_;
$self->pidfile($pidfile) if $pidfile;
return unless $self->pid;
return unless $self->pidfile;
path($self->pidfile)->spew($self->pid);
return $self;
}
# Convenience functions
sub _syswrite {
my $stream = shift;
return unless $stream;
$stream->syswrite($_ . "\n") for @_;
}
sub _getline {
return unless IO::Select->new($_[0])->can_read(10);
shift->getline;
}
sub _getlines {
return unless IO::Select->new($_[0])->can_read(10);
wantarray ? shift->getlines : join '', @{[shift->getlines]};
}
# Write to the controlled-process STDIN
sub write_stdin {
my ($self, @data) = @_;
_syswrite($self->write_stream, @data);
return $self;
}
sub write_channel {
my ($self, @data) = @_;
_syswrite($self->channel_in, @data);
return $self;
}
# Get all lines from the current process output stream
sub read_all_stdout { _getlines(shift->read_stream) }
# Get all lines from the process channel
sub read_all_channel { _getlines(shift->channel_out); }
sub read_stdout { _getline(shift->read_stream) }
sub read_channel { _getline(shift->channel_out) }
sub read_all_stderr {
return $_[0]->getline unless $_[0]->separate_err;
_getlines(shift->error_stream);
}
# Get a line from the current process output stream
sub read_stderr {
return $_[0]->getline unless $_[0]->separate_err;
_getline(shift->error_stream);
}
sub start {
my $self = shift;
return $self if $self->is_running;
die "Nothing to do" unless !!$self->execute || !!$self->code;
my @args
= defined($self->args)
? ref($self->args) eq "ARRAY"
? @{$self->args}
: $self->args
: ();
$self->session->enable_subreaper if $self->subreaper;
$self->_status(undef);
$self->session->enable;
{
my $old_emit_from_sigchld = $self->session->emit_from_sigchld;
$self->session->emit_from_sigchld(0);
my $scope_guard = scope_guard sub {
$self->session->emit_from_sigchld($old_emit_from_sigchld);
$self->session->consume_collected_info if ($old_emit_from_sigchld);
};
if ($self->code) {
$self->_fork($self->code, @args);
}
elsif ($self->execute) {
$self->_open($self->execute, @args);
}
$self->write_pidfile;
$self->emit('start');
$self->session->register($self->pid() => $self);
}
return $self;
}
sub send_signal {
my $self = shift;
my $signal = shift // $self->_default_kill_signal;
my $pid = shift // $self->process_id;
return unless $self->kill_whole_group || $self->is_running;
$self->_diag("Sending signal '$signal' to $pid") if DEBUG;
kill $signal => $pid;
return $self;
}
sub stop {
my $self = shift;
my $pid = $self->pid;
return $self unless defined $pid;
return $self->_shutdown(1) unless $self->is_running;
my $ret;
my $attempt = 1;
my $timeout = $self->total_sleeptime_during_kill // 0;
my $sleep_time = $self->sleeptime_during_kill;
my $max_attempts = $self->max_kill_attempts;
my $signal = $self->_default_kill_signal;
$pid = -$pid if $self->kill_whole_group;
$self->_diag("Stopping $pid") if DEBUG;
until ((defined $ret && ($ret == $pid || $ret == -1))
|| ($attempt > $max_attempts && $timeout <= 0))
{
my $send_signal = $attempt == 1 || $timeout <= 0;
$self->_diag(
"attempt $attempt/$max_attempts to kill process: $pid, timeout: $timeout")
if DEBUG && $send_signal;
$self->session->_protect(
sub {
local $?;
if ($send_signal) {
$self->send_signal($signal, $pid);
++$attempt;
}
$ret = waitpid($pid, WNOHANG);
$self->_status($?) if $ret == $pid || $ret == -1;
});
if ($sleep_time) {
sleep $sleep_time;
$timeout -= $sleep_time;
}
}
return $self->_shutdown if defined $self->_status;
sleep $self->kill_sleeptime if $self->kill_sleeptime;
if ($self->blocking_stop) {
$self->_diag("Could not kill process id: $pid, blocking attempt") if DEBUG;
$self->emit('process_stuck');
### XXX: avoid to protect on blocking.
$self->send_signal($self->_default_blocking_signal, $pid);
$ret = waitpid($pid, 0);
$self->_status($?) if $ret == $pid || $ret == -1;
return $self->_shutdown;
}
else {
$self->_diag("Could not kill process id: $pid") if DEBUG;
$self->_new_err('Could not kill process');
}
return $self;
}
sub _shutdown {
my ($self, $wait) = @_;
return $self unless $self->pid;
$self->_diag("Shutdown " . $self->pid) if DEBUG;
$self->session->_protect(
sub {
local $?;
waitpid $self->pid, 0;
$self->emit('collect_status');
}) if $wait && !defined $self->_status;
$self->emit('collect_status') unless defined $self->_status;
$self->_clean_pidfile;
$self->emit('process_error', $self->error)
if $self->error && $self->error->size > 0;
$self->unsubscribe('collect_status');
return $self->emit('stop');
}
# General alias
*pid = \&process_id;
*died = \&_errored;
*failed = \&_errored;
*diag = \&_diag;
*pool = \&batch;
*signal = \&send_signal;
*prctl = \&Mojo::IOLoop::ReadWriteProcess::Session::_prctl;
*subreaper = \&Mojo::IOLoop::ReadWriteProcess::Session::subreaper;
*enable_subreaper = \&Mojo::IOLoop::ReadWriteProcess::Session::enable_subreaper;
*disable_subreaper
= \&Mojo::IOLoop::ReadWriteProcess::Session::disable_subreaper;
*_get_prctl_syscall
= \&Mojo::IOLoop::ReadWriteProcess::Session::_get_prctl_syscall;
# Aliases - write
*write = \&write_stdin;
*stdin = \&write_stdin;
*channel_write = \&write_channel;
# Aliases - read
*read = \&read_stdout;
*stdout = \&read_stdout;
*getline = \&read_stdout;
*stderr = \&read_stderr;
*err_getline = \&read_stderr;
*channel_read = \&read_channel;
*read_all = \&read_all_stdout;
*getlines = \&read_all_stdout;
*stderr_all = \&read_all_stderr;
*err_getlines = \&read_all_stderr;
*channel_read_all = \&read_all_channel;
# Aliases - IO::Handle
*stdin_handle = \&write_stream;
*stdout_handle = \&read_stream;
*stderr_handle = \&error_stream;
*channe_write_handle = \&channel_in;
*channel_read_handle = \&channel_out;
1;
=encoding utf-8
=head1 NAME
Mojo::IOLoop::ReadWriteProcess - Execute external programs or internal code blocks as separate process.
=head1 SYNOPSIS
use Mojo::IOLoop::ReadWriteProcess;
# Code fork
my $process = Mojo::IOLoop::ReadWriteProcess->new(sub { print "Hello\n" });
$process->start();
print "Running\n" if $process->is_running();
$process->getline(); # Will return "Hello\n"
$process->pid(); # Process id
$process->stop();
$process->wait_stop(); # if you intend to wait its lifespan
# Methods can be chained, thus this is valid:
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $output = process( sub { print "Hello\n" } )->start()->wait_stop->getline;
# Handles seamelessy also external processes:
my $process = process(execute=> '/path/to/bin' )->args([qw(foo bar baz)]);
$process->start();
my $line_output = $process->getline();
my $pid = $process->pid();
$process->stop();
my @errors = $process->error;
# To help when debugging Mojo::Collections
use Mojo::Util qw(dumper);
my $errors = dumper $process->error->to_array;
# Get process return value
$process = process( sub { return "256"; } )->start()->wait_stop;
# We need to stop it to retrieve the exit status
my $return = $process->return_status;
# We can access directly to handlers from the object:
my $stdout = $process->read_stream;
my $stdin = $process->write_stream;
my $stderr = $process->error_stream;
# So this works:
print $stdin "foo bar\n";
my @lines = <$stdout>;
# There is also an alternative channel of communication (just for forked processes):
my $channel_in = $process->channel_in; # write to the child process
my $channel_out = $process->channel_out; # read from the child process
$process->channel_write("PING"); # convenience function
=head1 DESCRIPTION
Mojo::IOLoop::ReadWriteProcess is yet another process manager.
=head1 EVENTS
L<Mojo::IOLoop::ReadWriteProcess> inherits all events from L<Mojo::EventEmitter> and can emit
the following new ones.
=head2 start
$process->on(start => sub {
my ($process) = @_;
$process->is_running();
});
Emitted when the process starts.
=head2 stop
$process->on(stop => sub {
my ($process) = @_;
$process->restart();
});
Emitted when the process stops.
=head2 process_error
$process->on(process_error => sub {
my ($e) = @_;
my @errors = @{$e};
});
Emitted when the process produce errors.
=head2 process_stuck
$process->on(process_stuck => sub {
my ($self) = @_;
...
});
Emitted when C<blocking_stop> is set and all attempts for killing the process
in C<max_kill_attempts> have been exhausted.
The event is emitted before attempting to kill it with SIGKILL and becoming blocking.
=head2 SIG_CHLD
$process->on(SIG_CHLD => sub {
my ($self) = @_;
...
});
Emitted when we receive SIG_CHLD.
=head2 SIG_TERM
$process->on(SIG_TERM => sub {
my ($self) = @_;
...
});
Emitted when the child forked process receives SIG_TERM, before exiting.
=head2 collected
$process->on(collected => sub {
my ($self) = @_;
...
});
Emitted right after status collection.
=head2 collect_status
$process->on(collect_status => sub {
my ($self) = @_;
...
});
Emitted when on child process waitpid.
It is used internally to get the child process status.
Note: events attached to it are wiped when process has been stopped.
=head1 ATTRIBUTES
L<Mojo::IOLoop::ReadWriteProcess> inherits all attributes from L<Mojo::EventEmitter> and implements
the following new ones.
=head2 execute
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(execute => "/usr/bin/perl");
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop();
C<execute> should contain the external program that you wish to run.
=head2 code
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { print "Hello" } );
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop();
It represent the code you want to run in background.
You do not need to specify C<code>, it is implied if no arguments is given.
my $process = Mojo::IOLoop::ReadWriteProcess->new(sub { print "Hello" });
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop();
=head2 args
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { print "Hello ".$_[1] }, args => "User" );
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop();
# The process will print "Hello User"
Arguments pass to the external binary or the code block. Use arrayref to pass many.
=head2 blocking_stop
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { print "Hello" }, blocking_stop => 1 );
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop(); # Will wait indefinitely until the process is stopped
Set it to 1 if you want to do blocking stop of the process.
=head2 channels
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { print "Hello" }, channels => 0 );
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop(); # Will wait indefinitely until the process is stopped
Set it to 0 if you want to disable internal channels.
=head2 session
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(sub { print "Hello" });
my $session = $process->session;
$session->enable_subreaper;
Returns the current L<Mojo::IOLoop::ReadWriteProcess::Session> singleton.
=head2 subreaper
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { print "Hello ".$_[1] }, args => "User" );
$process->subreaper(1)->start();
$process->on( stop => sub { shift()->disable_subreaper } );
$process->stop();
# The process will print "Hello User"
Mark the current process (not the child) as subreaper on start.
It's on invoker behalf to disable subreaper when process stops, as it marks the current process and not the
child.
=head2 ioloop
my $loop = $process->ioloop;
$subprocess = $process->ioloop(Mojo::IOLoop->new);
Event loop object to control, defaults to the global L<Mojo::IOLoop> singleton.
=head2 max_kill_attempts
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { print "Hello" }, max_kill_attempts => 50 );
$process->start();
$process->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$process->stop(); # It will attempt to send SIGTERM 50 times.
Defaults to C<5>, is the number of attempts before bailing out.
It can be used with blocking_stop, so if the number of attempts are exhausted,
a SIGKILL and waitpid will be tried at the end.
=head2 kill_whole_group
use Mojo::IOLoop::ReadWriteProcess;
my $process = Mojo::IOLoop::ReadWriteProcess->new(code => sub { setpgrp(0, 0); exec(...); }, kill_whole_group => 1 );
$process->start();
$process->send_signal(...); # Will skip the usual check whether $process->pid is running
$process->stop(); # Kills the entire process group and waits for all processes in the group to finish
Defaults to C<0>, whether to send signals (e.g. to stop) to the entire process group.
This is useful when the sub process creates further sub processes and creates a new process
group as shown in the example. In this case it might be useful to take care of the entire process
group when stopping and wait for every process in the group to finish.
=head2 collect_status
Defaults to C<1>, If enabled it will automatically collect the status of the children process.
Disable it in case you want to manage your process child directly, and do not want to rely on
automatic collect status. If you won't overwrite your C<SIGCHLD> handler,
the C<SIG_CHLD> event will be still emitted.
=head2 serialize
Defaults to C<0>, If enabled data returned from forked process will be serialized with Storable.
=head2 kill_sleeptime
Defaults to C<1>, it's the seconds to wait before attempting SIGKILL when blocking_stop is set to 1.
=head2 separate_err
Defaults to C<1>, it will create a separate channel to intercept process STDERR,
otherwise it will be redirected to STDOUT.
=head2 verbose
Defaults to C<1>, it indicates message verbosity.
=head2 set_pipes
Defaults to C<1>, If enabled, additional pipes for process communication are automatically set up.
=head2 internal_pipes
Defaults to C<1>, If enabled, additional pipes for retreiving process return and errors are set up.
Note: If you disable that, the only information provided by the process will be the exit_status.
=head2 autoflush
Defaults to C<1>, If enabled autoflush of handlers is enabled automatically.
=head2 error
Returns a L<Mojo::Collection> of errors.
Note: errors that can be captured only at the end of the process
=head1 METHODS
L<Mojo::IOLoop::ReadWriteProcess> inherits all methods from L<Mojo::EventEmitter> and implements
the following new ones.
=head2 start()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
print STDERR "Boo\n"
} )->start;
Starts the process
=head2 stop()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process( execute => "/path/to/bin" )->start->stop;
Stop the process. Unless you use C<wait_stop()>, it will attempt to kill the process
without waiting the process to finish. By defaults it send C<SIGTERM> to the child.
You can change that by defining the internal attribute C<_default_kill_signal>.
Note, if you want to be *sure* that the process gets killed, you can enable the
C<blocking_stop> attribute, that will attempt to send C<SIGKILL> after C<max_kill_attempts>
is reached.
=head2 restart()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process( execute => "/path/to/bin" )->restart;
It restarts the process if stopped, or if already running, it stops it first.
=head2 is_running()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process( execute => "/path/to/bin" )->start;
$p->is_running;
Boolean, it inspect if the process is currently running or not.
=head2 exit_status()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process( execute => "/path/to/bin" )->start;
$p->wait_stop->exit_status;
Inspect the process exit status, it does the shifting magic, to access to the real value
call C<_status()>.
=head2 return_status()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process( sub { return 42 } )->start;
my $s = $p->wait_stop->return_status; # 42
Inspect the codeblock return.
=head2 enable_subreaper()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process()->enable_subreaper;
Mark the current process (not the child) as subreaper.
This is used typically if you want to mark further children as subreapers inside other forks.
my $master_p = process(
sub {
my $p = shift;
$p->enable_subreaper;
process(sub { sleep 4; exit 1 })->start();
process(
sub {
sleep 4;
process(sub { sleep 1; })->start();
})->start();
process(sub { sleep 4; exit 0 })->start();
process(sub { sleep 4; die })->start();
my $manager
= process(sub { sleep 2 })->subreaper(1)->start();
sleep 1 for (0 .. 10);
$manager->stop;
return $manager->session->all->size;
});
$master_p->subreaper(1);
$master_p->on(collected => sub { $status++ });
# On start we setup the current process as subreaper
# So it's up on us to disable it after process is done.
$master_p->on(stop => sub { shift()->disable_subreaper });
$master_p->start();
=head2 disable_subreaper()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process()->disable_subreaper;
Unset the current process (not the child) as subreaper.
=head2 prctl()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process();
$p->prctl($option, $arg2, $arg3, $arg4, $arg5);
Internal function to execute and wrap the prctl syscall, accepts the same arguments as prctl.
=head2 diag()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { print "Hello\n" });
$p->on( stop => sub { shift->diag("Done!") } );
$p->start->wait_stop;
Internal function to print information to STDERR if verbose attribute is set or either DEBUG mode enabled.
You can use it if you wish to display information on the process status.
=head2 to_ioloop()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { print "Hello from first process\n"; sleep 1 });
$p->start(); # Start and sets the handlers
my $stream = $p->to_ioloop; # Get the stream and demand to IOLoop
my $output;
# Hook on Mojo::IOLoop::Stream events
$stream->on(read => sub { $output .= pop; $p->is_running ... });
Mojo::IOLoop->singleton->start() unless Mojo::IOLoop->singleton->is_running;
Returns a L<Mojo::IOLoop::Stream> object and demand the wait operation to L<Mojo::IOLoop>.
It needs C<set_pipes> enabled. Default IOLoop can be overridden in C<ioloop()>.
=head2 wait()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { print "Hello\n" })->wait;
# ... here now you can mangle $p handlers and such
Waits until the process finishes, but does not performs cleanup operations (until stop is called).
=head2 wait_stop()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { print "Hello\n" })->start->wait_stop;
# $p is not running anymore, and all possible events have been granted to be emitted.
Waits until the process finishes, and perform cleanup operations.
=head2 errored()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { die "Nooo" })->start->wait_stop;
$p->errored; # will return "1"
Returns a boolean indicating if the process had errors or not.
=head2 write_pidfile()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { die "Nooo" } );
$p->pidfile("foobar");
$p->start();
$p->write_pidfile();
Forces writing PID of process to specified pidfile in the attributes of the object.
Useful only if the process have been already started, otherwise if a pidfile it's supplied
as attribute, it will be done automatically.
=head2 write_stdin()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub { my $a = <STDIN>; print STDERR "Hello my name is $a\n"; } )->start;
$p->write_stdin("Larry");
$p->read_stderr; # process STDERR will contain: "Hello my name is Larry\n"
Write data to process STDIN.
=head2 write_channel()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
my $self = shift;
my $parent_output = $self->channel_out;
my $parent_input = $self->channel_in;
while(defined(my $line = <$parent_input>)) {
print $parent_output "PONG\n" if $line =~ /PING/i;
}
} )->start;
$p->write_channel("PING");
my $out = $p->read_channel;
# $out is PONG
my $child_output = $p->channel_out;
while(defined(my $line = <$child_output>)) {
print "Process is replying back with $line!\n";
$p->write_channel("PING");
}
Write data to process channel. Note, it's not STDIN, neither STDOUT, it's a complete separate channel
dedicated to parent-child communication.
In the parent process, you can access to the same pipes (but from the opposite direction):
my $child_output = $self->channel_out;
my $child_input = $self->channel_in;
=head2 read_stdout()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
print "Boo\n"
} )->start;
$p->read_stdout;
Gets a single line from process STDOUT.
=head2 read_channel()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
my $self = shift;
my $parent_output = $self->channel_out;
my $parent_input = $self->channel_in;
print $parent_output "PONG\n";
} )->start;
$p->read_channel;
Gets a single line from process channel.
=head2 read_stderr()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
print STDERR "Boo\n"
} )->start;
$p->read_stderr;
Gets a single line from process STDERR.
=head2 read_all_stdout()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
print "Boo\n"
} )->start;
$p->read_all_stdout;
Gets all the STDOUT output of the process.
=head2 read_all_channel()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
shift->channel_out->write("Ping")
} )->start;
$p->read_all_channel;
Gets all the channel output of the process.
=head2 read_all_stderr()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process(sub {
print STDERR "Boo\n"
} )->start;
$p->read_all_stderr;
Gets all the STDERR output of the process.
=head2 send_signal()
use Mojo::IOLoop::ReadWriteProcess qw(process);
use POSIX;
my $p = process( execute => "/path/to/bin" )->start;
$p->send_signal(POSIX::SIGKILL);
Send a signal to the process
=head1 EXPORTS
=head2 parallel()
use Mojo::IOLoop::ReadWriteProcess qw(parallel);
my $pool = parallel sub { print "Hello\n" } => 5;
$pool->start();
$pool->on( stop => sub { print "Process: ".(+shift()->pid)." finished"; } );
$pool->stop();
Returns a L<Mojo::IOLoop::ReadWriteProcess::Pool> object that represent a group of processes.
It accepts the same arguments as L<Mojo::IOLoop::ReadWriteProcess>, and the last one represent the number of processes to generate.
=head2 batch()
use Mojo::IOLoop::ReadWriteProcess qw(batch);
my $pool = batch;
$pool->add(sub { print "Hello\n" });
$pool->on(stop => sub { shift->_diag("Done!") })->start->wait_stop;
Returns a L<Mojo::IOLoop::ReadWriteProcess::Pool> object generated from supplied arguments.
It accepts as input the same parameter of L<Mojo::IOLoop::ReadWriteProcess::Pool> constructor ( see parallel() ).
=head2 process()
use Mojo::IOLoop::ReadWriteProcess qw(process);
my $p = process sub { print "Hello\n" };
$p->start()->wait_stop;
or even:
process(sub { print "Hello\n" })->start->wait_stop;
Returns a L<Mojo::IOLoop::ReadWriteProcess> object that represent a process.
It accepts the same arguments as L<Mojo::IOLoop::ReadWriteProcess>.
=head2 queue()
use Mojo::IOLoop::ReadWriteProcess qw(queue);
my $q = queue;
$q->add(sub { return 42 } );
$q->consume;
Returns a L<Mojo::IOLoop::ReadWriteProcess::Queue> object that represent a queue.
=head1 DEBUGGING
You can set the MOJO_EVENTEMITTER_DEBUG environment variable to get some advanced diagnostics information printed to STDERR.
MOJO_EVENTEMITTER_DEBUG=1
Also, you can set MOJO_PROCESS_DEBUG environment variable to get diagnostics about the process execution.
MOJO_PROCESS_DEBUG=1
=head1 LICENSE
Copyright (C) Ettore Di Giacinto.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 AUTHOR
Ettore Di Giacinto E<lt>edigiacinto@suse.comE<gt>
=cut
|