about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiSearch.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-03 13:48:57 +0000
committerEric Wong <e@80x24.org>2021-03-04 14:29:20 -0400
commitfbc11e24a72f41b0ed7ead30d199288a4d674be4 (patch)
tree9ce1e0f18633319ccace53c250091eada77dda86 /lib/PublicInbox/LeiSearch.pm
parent6fd748af8d4792d8cb857c3d2ec132ec3cca9bb8 (diff)
downloadpublic-inbox-fbc11e24a72f41b0ed7ead30d199288a4d674be4.tar.gz
This will eventually be supported for other mail stores,
but Maildir is the easiest to test and support, here.

This lets us avoid a situation where flag changes get
lost between search results.
Diffstat (limited to 'lib/PublicInbox/LeiSearch.pm')
-rw-r--r--lib/PublicInbox/LeiSearch.pm47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/PublicInbox/LeiSearch.pm b/lib/PublicInbox/LeiSearch.pm
index 440bacf5..ceb3624b 100644
--- a/lib/PublicInbox/LeiSearch.pm
+++ b/lib/PublicInbox/LeiSearch.pm
@@ -1,11 +1,14 @@
 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
+# read-only counterpart for PublicInbox::LeiStore
 package PublicInbox::LeiSearch;
 use strict;
 use v5.10.1;
 use parent qw(PublicInbox::ExtSearch);
 use PublicInbox::Search qw(xap_terms);
+use PublicInbox::ContentHash qw(content_digest content_hash);
+use PublicInbox::MID qw(mids mids_in);
 
 # get combined docid from over.num:
 # (not generic Xapian, only works with our sharding scheme)
@@ -24,4 +27,48 @@ sub msg_keywords {
         wantarray ? sort(keys(%$kw)) : $kw;
 }
 
+# when a message has no Message-IDs at all, this is needed for
+# unsent Draft messages, at least
+sub content_key ($) {
+        my ($eml) = @_;
+        my $dig = content_digest($eml);
+        my $chash = $dig->clone->digest;
+        my $mids = mids_in($eml,
+                        qw(Message-ID X-Alt-Message-ID Resent-Message-ID));
+        unless (@$mids) {
+                $eml->{-lei_fake_mid} = $mids->[0] =
+                                PublicInbox::Import::digest2mid($dig, $eml);
+        }
+        ($chash, $mids);
+}
+
+sub _cmp_1st { # git->cat_async callback
+        my ($bref, $oid, $type, $size, $cmp) = @_; # cmp: [chash, found, smsg]
+        return if defined($cmp->[1]->[0]); # $found->[0]
+        if (content_hash(PublicInbox::Eml->new($bref)) eq $cmp->[0]) {
+                push @{$cmp->[1]}, $cmp->[2]->{num};
+        }
+}
+
+# returns true if $eml is indexed by lei/store and keywords don't match
+sub kw_changed {
+        my ($self, $eml, $new_kw_sorted) = @_;
+        my ($chash, $mids) = content_key($eml);
+        my $over = $self->over;
+        my $git = $self->git;
+        my $found = [];
+        for my $mid (@$mids) {
+                my ($id, $prev);
+                while (my $cur = $over->next_by_mid($mid, \$id, \$prev)) {
+                        $git->cat_async($cur->{blob}, \&_cmp_1st,
+                                        [ $chash, $found, $cur ]);
+                        last if scalar(@$found);
+                }
+        }
+        $git->cat_async_wait;
+        my $num = $found->[0] // return;
+        my @cur_kw = msg_keywords($self, $num);
+        join("\0", @$new_kw_sorted) eq join("\0", @cur_kw) ? 0 : 1;
+}
+
 1;