X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=lib%2FPublicInbox%2FSearchIdxShard.pm;h=d29e6090b2d58eb2942a3c4fb16e9e8be3d47af7;hp=ee176e504298dd5e1b1685c94dd5bcfc53d38f14;hb=1218a4126807951a0f47286338dc04d7f197bb78;hpb=95bdac7f09c69036efed537a4d03d5bdd2ae4eb6 diff --git a/lib/PublicInbox/SearchIdxShard.pm b/lib/PublicInbox/SearchIdxShard.pm index ee176e50..d29e6090 100644 --- a/lib/PublicInbox/SearchIdxShard.pm +++ b/lib/PublicInbox/SearchIdxShard.pm @@ -67,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; @@ -81,14 +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"; + 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); } }