]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/SearchIdxShard.pm
*idx: pass $smsg in more places instead of many args
[public-inbox.git] / lib / PublicInbox / SearchIdxShard.pm
index b22e51dcdbb408f04effaa83d156d0f9fbe45a81..d29e6090b2d58eb2942a3c4fb16e9e8be3d47af7 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018-2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2018-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # used to interface with a single Xapian shard in V2 repos.
@@ -7,6 +7,7 @@ package PublicInbox::SearchIdxShard;
 use strict;
 use warnings;
 use base qw(PublicInbox::SearchIdx);
+use IO::Handle (); # autoflush
 
 sub new {
        my ($class, $v2writable, $shard) = @_;
@@ -24,6 +25,7 @@ sub spawn_worker {
        pipe($r, $w) or die "pipe failed: $!\n";
        binmode $r, ':raw';
        binmode $w, ':raw';
+       $w->autoflush(1);
        my $pid = fork;
        defined $pid or die "fork failed: $!\n";
        if ($pid == 0) {
@@ -65,13 +67,22 @@ sub shard_worker_loop ($$$$$) {
                        $self->remove_by_oid($oid, $mid);
                } else {
                        chomp $line;
-                       my ($len, $artnum, $oid, $mid0) = split(/ /, $line);
+                       my ($len, $artnum, $oid, $mid0, $autime, $cotime) =
+                                                       split(/ /, $line);
                        $self->begin_txn_lazy;
                        my $n = read($r, my $msg, $len) or die "read: $!\n";
                        $n == $len or die "short read: $n != $len\n";
                        my $mime = PublicInbox::MIME->new(\$msg);
                        $artnum = int($artnum);
-                       $self->add_message($mime, $n, $artnum, $oid, $mid0);
+                       $self->{autime} = $autime;
+                       $self->{cotime} = $cotime;
+                       my $smsg = bless {
+                               bytes => $len,
+                               num => $artnum,
+                               blob => $oid,
+                               mid => $mid0,
+                       }, 'PublicInbox::Smsg';
+                       $self->add_message($mime, $smsg);
                }
        }
        $self->worker_done;
@@ -79,15 +90,24 @@ sub shard_worker_loop ($$$$$) {
 
 # called by V2Writable
 sub index_raw {
-       my ($self, $bytes, $msgref, $artnum, $oid, $mid0, $mime) = @_;
+       my ($self, $bytes, $msgref, $artnum, $oid, $mid0, $mime, $times) = @_;
+       my $at = $times->{autime} // time;
+       my $ct = $times->{cotime} // time;
        if (my $w = $self->{w}) {
-               print $w "$bytes $artnum $oid $mid0\n", $$msgref or die
-                       "failed to write shard $!\n";
-               $w->flush or die "failed to flush: $!\n";
+               print $w "$bytes $artnum $oid $mid0 $at $ct\n", $$msgref or
+                       die "failed to write shard $!\n";
        } else {
                $$msgref = undef;
                $self->begin_txn_lazy;
-               $self->add_message($mime, $bytes, $artnum, $oid, $mid0);
+               $self->{autime} = $at;
+               $self->{cotime} = $ct;
+               my $smsg = bless {
+                       bytes => $bytes,
+                       num => $artnum,
+                       blob => $oid,
+                       mid => $mid0,
+               }, 'PublicInbox::Smsg';
+               $self->add_message($mime, $smsg);
        }
 }
 
@@ -100,7 +120,6 @@ sub remote_barrier {
        my ($self) = @_;
        if (my $w = $self->{w}) {
                print $w "barrier\n" or die "failed to print: $!";
-               $w->flush or die "failed to flush: $!";
        } else {
                $self->commit_txn_lazy;
        }