about summary refs log tree commit homepage
path: root/lib/PublicInbox
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-10-21 21:10:24 +0000
committerEric Wong <e@80x24.org>2021-10-22 00:54:41 +0000
commitae9ff54615286fbc88ffaa713a3b884294a8066b (patch)
treeff4e84bf42b10f76502f488f0d8b36502e25d8b4 /lib/PublicInbox
parentb54dc5feed8f5fb0881fdc1c8d9e4b9cd5ba8d7b (diff)
downloadpublic-inbox-ae9ff54615286fbc88ffaa713a3b884294a8066b.tar.gz
Allow checking for keyword changes if we have an known OID,
even if the blob isn't currently reachable.
Diffstat (limited to 'lib/PublicInbox')
-rw-r--r--lib/PublicInbox/LeiSearch.pm13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/PublicInbox/LeiSearch.pm b/lib/PublicInbox/LeiSearch.pm
index 3e046b21..1fb38da1 100644
--- a/lib/PublicInbox/LeiSearch.pm
+++ b/lib/PublicInbox/LeiSearch.pm
@@ -7,7 +7,7 @@ use strict;
 use v5.10.1;
 use parent qw(PublicInbox::ExtSearch); # PublicInbox::Search->reopen
 use PublicInbox::Search qw(xap_terms);
-use PublicInbox::ContentHash qw(content_digest content_hash);
+use PublicInbox::ContentHash qw(content_digest content_hash git_sha);
 use PublicInbox::MID qw(mids mids_for_index);
 use Carp qw(croak);
 
@@ -118,6 +118,13 @@ sub xoids_for {
                 }
         }
         $git->async_wait_all;
+
+        # it could be an 'lei index'-ed file that just got renamed
+        if (scalar(keys %$xoids) < ($min // 1) && defined($self->{topdir})) {
+                my $hex = git_sha(1, $eml)->hexdigest;
+                my @n = $overs[0]->blob_exists($hex);
+                for (@n) { $xoids->{$hex} //= $_ }
+        }
         scalar(keys %$xoids) ? $xoids : undef;
 }
 
@@ -129,6 +136,10 @@ sub kw_changed {
                 my $xoids = xoids_for($self, $eml) // return;
                 $docids //= [];
                 @$docids = sort { $a <=> $b } values %$xoids;
+                if (!@$docids && $self->over) {
+                        my $bin = git_sha(1, $eml)->digest;
+                        @$docids = $self->over->oidbin_exists($bin);
+                }
         }
         for my $id (@$docids) {
                 $cur_kw = eval { msg_keywords($self, $id) } and last;