]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/ProcessPipe.pm
git: use built-in spawn implementation for vfork
[public-inbox.git] / lib / PublicInbox / ProcessPipe.pm
1 # Copyright (C) 2016 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # a tied handle for auto reaping of children tied to a pipe, see perltie(1)
5 package PublicInbox::ProcessPipe;
6 use strict;
7 use warnings;
8
9 sub TIEHANDLE {
10         my ($class, $pid, $fh) = @_;
11         bless { pid => $pid, fh => $fh }, $class;
12 }
13
14 sub READ { sysread($_[0]->{fh}, $_[1], $_[2], $_[3] || 0) }
15
16 sub READLINE { readline($_[0]->{fh}) }
17
18 sub CLOSE { close($_[0]->{fh}) }
19
20 sub FILENO { fileno($_[0]->{fh}) }
21
22 sub DESTROY {
23         my $fh = delete($_[0]->{fh});
24         close $fh if $fh;
25         waitpid($_[0]->{pid}, 0);
26 }
27
28 sub pid { $_[0]->{pid} }
29
30 1;