From 99d6d24847c499387ce65b09305deebfd51f8930 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 20 Mar 2020 08:18:19 +0000 Subject: v2: pass smsg in more places We can pass fewer order-dependent args to V2Writable::do_idx and SearchIdxShard::index_raw by passing the smsg object, instead. --- lib/PublicInbox/SearchIdxShard.pm | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) (limited to 'lib/PublicInbox/SearchIdxShard.pm') diff --git a/lib/PublicInbox/SearchIdxShard.pm b/lib/PublicInbox/SearchIdxShard.pm index d29e6090..21e81b16 100644 --- a/lib/PublicInbox/SearchIdxShard.pm +++ b/lib/PublicInbox/SearchIdxShard.pm @@ -67,20 +67,19 @@ sub shard_worker_loop ($$$$$) { $self->remove_by_oid($oid, $mid); } else { chomp $line; - my ($len, $artnum, $oid, $mid0, $autime, $cotime) = + my ($bytes, $num, $blob, $mid, $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 $n = read($r, my $msg, $bytes) or die "read: $!\n"; + $n == $bytes or die "short read: $n != $bytes\n"; my $mime = PublicInbox::MIME->new(\$msg); - $artnum = int($artnum); $self->{autime} = $autime; $self->{cotime} = $cotime; my $smsg = bless { - bytes => $len, - num => $artnum, - blob => $oid, - mid => $mid0, + bytes => $bytes, + num => $num + 0, + blob => $blob, + mid => $mid, }, 'PublicInbox::Smsg'; $self->add_message($mime, $smsg); } @@ -90,23 +89,17 @@ sub shard_worker_loop ($$$$$) { # called by V2Writable sub index_raw { - my ($self, $bytes, $msgref, $artnum, $oid, $mid0, $mime, $times) = @_; + my ($self, $msgref, $mime, $smsg, $times) = @_; my $at = $times->{autime} // time; my $ct = $times->{cotime} // time; if (my $w = $self->{w}) { - print $w "$bytes $artnum $oid $mid0 $at $ct\n", $$msgref or - die "failed to write shard $!\n"; + print $w join(' ', @$smsg{qw(bytes num blob mid)}, $at, $ct), + "\n", $$msgref or die "failed to write shard $!\n"; } else { $$msgref = undef; $self->begin_txn_lazy; $self->{autime} = $at; $self->{cotime} = $ct; - my $smsg = bless { - bytes => $bytes, - num => $artnum, - blob => $oid, - mid => $mid0, - }, 'PublicInbox::Smsg'; $self->add_message($mime, $smsg); } } -- cgit v1.2.3-24-ge0c7