]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/GzipFilter.pm
1f11acb8095bee0b09864370a0274fef9d1d1728
[public-inbox.git] / lib / PublicInbox / GzipFilter.pm
1 # Copyright (C) all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 #
4 # In public-inbox <=1.5.0, public-inbox-httpd favored "getline"
5 # response bodies to take a "pull"-based approach to feeding
6 # slow clients (as opposed to a more common "push" model).
7 #
8 # In newer versions, public-inbox-httpd supports a backpressure-aware
9 # pull/push model which also accounts for slow git blob storage.
10 # async_next callbacks only run when the DS {wbuf} is drained
11 # async_eml callbacks only run when a blob arrives from git.
12 #
13 # We continue to support getline+close for generic PSGI servers.
14 package PublicInbox::GzipFilter;
15 use strict;
16 use parent qw(Exporter);
17 use Compress::Raw::Zlib qw(Z_OK);
18 use PublicInbox::CompressNoop;
19 use PublicInbox::Eml;
20 use PublicInbox::GitAsyncCat;
21
22 our @EXPORT_OK = qw(gzf_maybe);
23 my %OPT = (-WindowBits => 15 + 16, -AppendOutput => 1);
24 my @GZIP_HDRS = qw(Vary Accept-Encoding Content-Encoding gzip);
25
26 sub new { bless {}, shift } # qspawn filter
27
28 # for Qspawn if using $env->{'pi-httpd.async'}
29 sub attach {
30         my ($self, $http_out) = @_;
31         $self->{http_out} = $http_out; # PublicInbox::HTTP::{Chunked,Identity}
32         $self
33 }
34
35 sub gz_or_noop {
36         my ($res_hdr, $env) = @_;
37         if (($env->{HTTP_ACCEPT_ENCODING} // '') =~ /\bgzip\b/) {
38                 $env->{'plack.skip-deflater'} = 1;
39                 push @$res_hdr, @GZIP_HDRS;
40                 gzip_or_die();
41         } else {
42                 PublicInbox::CompressNoop::new();
43         }
44 }
45
46 sub gzf_maybe ($$) { bless { gz => gz_or_noop(@_) }, __PACKAGE__ }
47
48 sub psgi_response {
49         # $code may be an HTTP response code (e.g. 200) or a CODE ref (mbox_hdr)
50         my ($self, $code, $res_hdr) = @_;
51         if ($self->{env}->{'pi-httpd.async'}) {
52                 my $http = $self->{env}->{'psgix.io'}; # PublicInbox::HTTP
53                 $http->{forward} = $self;
54                 sub {
55                         my ($wcb) = @_; # -httpd provided write callback
56                         $self->{wcb_args} = [ $code, $res_hdr, $wcb ];
57                         $self->can('async_next')->($http); # start stepping
58                 };
59         } else { # generic PSGI code path
60                 ref($code) eq 'CODE' and
61                         ($code, $res_hdr) = @{$code->($self)};
62                 $self->{gz} //= gz_or_noop($res_hdr, $self->{env});
63                 [ $code, $res_hdr, $self ];
64         }
65 }
66
67 sub qsp_maybe ($$) {
68         my ($res_hdr, $env) = @_;
69         return if ($env->{HTTP_ACCEPT_ENCODING} // '') !~ /\bgzip\b/;
70         my $hdr = join("\n", @$res_hdr);
71         return if $hdr !~ m!^Content-Type\n
72                                 (?:(?:text/(?:html|plain))|
73                                 application/atom\+xml)\b!ixsm;
74         return if $hdr =~ m!^Content-Encoding\ngzip\n!smi;
75         return if $hdr =~ m!^Content-Length\n[0-9]+\n!smi;
76         return if $hdr =~ m!^Transfer-Encoding\n!smi;
77         # in case Plack::Middleware::Deflater is loaded:
78         return if $env->{'plack.skip-deflater'}++;
79         push @$res_hdr, @GZIP_HDRS;
80         bless {}, __PACKAGE__;
81 }
82
83 sub gzip_or_die () {
84         my ($gz, $err) = Compress::Raw::Zlib::Deflate->new(%OPT);
85         $err == Z_OK or die "Deflate->new failed: $err";
86         $gz;
87 }
88
89 sub gone { # what: search/over/mm
90         my ($ctx, $what) = @_;
91         warn "W: `$ctx->{ibx}->{name}' $what went away unexpectedly\n";
92         undef;
93 }
94
95 # for GetlineBody (via Qspawn) when NOT using $env->{'pi-httpd.async'}
96 # Also used for ->getline callbacks
97 sub translate ($$) {
98         my $self = $_[0]; # $_[1] => input
99
100         # allocate the zlib context lazily here, instead of in ->new.
101         # Deflate contexts are memory-intensive and this object may
102         # be sitting in the Qspawn limiter queue for a while.
103         $self->{gz} //= gzip_or_die();
104         if (defined $_[1]) { # my $buf = $_[1];
105                 zmore($self, $_[1]);
106                 length($self->{zbuf}) >= 8192 ? delete($self->{zbuf}) : '';
107         } else { # undef == EOF
108                 zflush($self);
109         }
110 }
111
112 # returns PublicInbox::HTTP::{Chunked,Identity}
113 sub http_out ($) {
114         my ($self) = @_;
115         $self->{http_out} // do {
116                 my $args = delete $self->{wcb_args} // return undef;
117                 my $wcb = pop @$args; # from PublicInbox:HTTP async
118                 # $args->[0] may be \&mbox_hdr or similar
119                 $args = $args->[0]->($self) if ref($args->[0]) eq 'CODE';
120                 $self->{gz} //= gz_or_noop($args->[1], $self->{env});
121                 $self->{http_out} = $wcb->($args); # $wcb->([$code, $hdr_ary])
122         };
123 }
124
125 sub write {
126         # my $ret = bytes::length($_[1]); # XXX does anybody care?
127         http_out($_[0])->write(translate($_[0], $_[1]));
128 }
129
130 sub zadd {
131         my $self = shift;
132         $self->{pbuf} .= $_ for @_; # perl internal pad memory use here
133 }
134
135 # similar to ->translate; use this when we're sure we know we have
136 # more data to buffer after this
137 sub zmore {
138         my $self = shift; # $_[1] => input
139         http_out($self);
140         my $x;
141         defined($x = delete($self->{pbuf})) and unshift(@_, $x);
142         for (@_) {
143                 ($x = $self->{gz}->deflate($_, $self->{zbuf})) == Z_OK or
144                         die "gzip->deflate: $x";
145         }
146         undef;
147 }
148
149 # flushes and returns the final bit of gzipped data
150 sub zflush ($;@) {
151         my $self = shift; # $_[1..Inf] => final input (optional)
152         my $zbuf = delete $self->{zbuf};
153         my $gz = delete $self->{gz};
154         my $x;
155         defined($x = delete($self->{pbuf})) and unshift(@_, $x);
156         for (@_) { # it's a bug iff $gz is undef if @_ isn't empty, here:
157                 ($x = $gz->deflate($_, $zbuf)) == Z_OK or
158                         die "gzip->deflate: $x";
159         }
160         $gz // return ''; # not a bug, recursing on DS->write failure
161         ($x = $gz->flush($zbuf)) == Z_OK or die "gzip->flush: $x";
162         $zbuf;
163 }
164
165 sub close {
166         my ($self) = @_;
167         my $http_out = http_out($self) // return;
168         $http_out->write(zflush($self));
169         (delete($self->{http_out}) // return)->close;
170 }
171
172 sub bail  {
173         my $self = shift;
174         if (my $env = $self->{env}) {
175                 warn @_, "\n";
176                 my $http = $env->{'psgix.io'} or return; # client abort
177                 eval { $http->close }; # should hit our close
178                 warn "E: error in http->close: $@" if $@;
179                 eval { $self->close }; # just in case...
180                 warn "E: error in self->close: $@" if $@;
181         } else {
182                 warn @_, "\n";
183         }
184 }
185
186 # this is public-inbox-httpd-specific
187 sub async_blob_cb { # git->cat_async callback
188         my ($bref, $oid, $type, $size, $self) = @_;
189         my $http = $self->{env}->{'psgix.io'}; # PublicInbox::HTTP
190         $http->{forward} or return; # client aborted
191         my $smsg = $self->{smsg} or bail($self, 'BUG: no smsg');
192         if (!defined($oid)) {
193                 # it's possible to have TOCTOU if an admin runs
194                 # public-inbox-(edit|purge), just move onto the next message
195                 warn "E: $smsg->{blob} missing in $self->{ibx}->{inboxdir}\n";
196                 return $http->next_step($self->can('async_next'));
197         }
198         $smsg->{blob} eq $oid or bail($self, "BUG: $smsg->{blob} != $oid");
199         eval { $self->async_eml(PublicInbox::Eml->new($bref)) };
200         bail($self, "E: async_eml: $@") if $@;
201         if ($self->{-low_prio}) { # run via PublicInbox::WWW::event_step
202                 push(@{$self->{www}->{-low_prio_q}}, $self) == 1 and
203                                 PublicInbox::DS::requeue($self->{www});
204         } else {
205                 $http->next_step($self->can('async_next'));
206         }
207 }
208
209 sub smsg_blob {
210         my ($self, $smsg) = @_;
211         ibx_async_cat($self->{ibx}, $smsg->{blob}, \&async_blob_cb, $self);
212 }
213
214 1;