]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/ProcessPipe.pm
update copyrights for 2018
[public-inbox.git] / lib / PublicInbox / ProcessPipe.pm
1 # Copyright (C) 2016-2018 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 {
19         my $fh = delete($_[0]->{fh});
20         my $ret = defined $fh ? close($fh) : '';
21         my $pid = delete $_[0]->{pid};
22         if (defined $pid) {
23                 waitpid($pid, 0);
24                 $ret = '' if $?;
25         }
26         $ret;
27 }
28
29 sub FILENO { fileno($_[0]->{fh}) }
30
31 sub DESTROY {
32         CLOSE(@_);
33         undef;
34 }
35
36 sub pid { $_[0]->{pid} }
37
38 1;