]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/IMAPdeflate.pm
nntp: resolve inboxes immediately on group listings
[public-inbox.git] / lib / PublicInbox / IMAPdeflate.pm
index 9366db7a7fc84d85e0f649a16eac4ba25275da71..d5929ef26ed5dfd85d2d74e62172b75758066bf0 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 all contributors <meta@public-inbox.org>
+# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 # TODO: reduce duplication from PublicInbox::NNTPdeflate
 
@@ -9,7 +9,6 @@ use warnings;
 use 5.010_001;
 use base qw(PublicInbox::IMAP);
 use Compress::Raw::Zlib;
-use Hash::Util qw(unlock_hash); # dependency of fields for perl 5.10+, anyways
 
 my %IN_OPT = (
        -Bufsize => 1024,
@@ -41,7 +40,6 @@ sub enable {
                $self->write(\"$tag BAD failed to activate compression\r\n");
                return;
        }
-       unlock_hash(%$self);
        $self->write(\"$tag OK DEFLATE active\r\n");
        bless $self, $class;
        $self->{zin} = $in;
@@ -50,7 +48,6 @@ sub enable {
 # overrides PublicInbox::NNTP::compressed
 sub compressed { 1 }
 
-# $_[1] may be a reference or not
 sub do_read ($$$$) {
        my ($self, $rbuf, $len, $off) = @_;
 
@@ -60,6 +57,16 @@ sub do_read ($$$$) {
        $doff = length($dbuf);
        my $r = PublicInbox::DS::do_read($self, \$dbuf, $len, $doff) or return;
 
+       # Workaround inflate bug appending to OOK scalars:
+       # <https://rt.cpan.org/Ticket/Display.html?id=132734>
+       # We only have $off if the client is pipelining, and pipelining
+       # is where our substr() OOK optimization in event_step makes sense.
+       if ($off) {
+               my $copy = $$rbuf;
+               undef $$rbuf;
+               $$rbuf = $copy;
+       }
+
        # assert(length($$rbuf) == $off) as far as NNTP.pm is concerned
        # -ConsumeInput is true, so $dbuf is automatically emptied
        my $err = $zin->inflate($dbuf, $rbuf);