]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/ProcessPipe.pm
reduce calls to close unless error checks are needed
[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 { delete($_[0]->{fh}) }
19
20 sub FILENO { fileno($_[0]->{fh}) }
21
22 sub DESTROY {
23         delete($_[0]->{fh});
24         waitpid($_[0]->{pid}, 0);
25 }
26
27 sub pid { $_[0]->{pid} }
28
29 1;