user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: meta@public-inbox.org
Subject: [PATCH] searchidx: fix -Lmedium for IDs and filenames
Date: Sat, 13 Mar 2021 15:40:27 +0000	[thread overview]
Message-ID: <20210313154027.GA27788@dcvr> (raw)

This fixes "m:", "l:", "dfn:", and "n:" search prefixes under
indexlevel=medium when mixed with indexlevel=full inboxish.
We need positional data for Message-IDs, List-Id, and filenames
for exact matches, though we still want to support wildcards.

Fortunately the storage cost is still small as these prefixes
tend to be small compared to message bodies.  These are NOT
boolean terms since wildcard support and partial matching is
desired.
---
 I noticed this while I was working on another patch, and
 it took forever to figure out why m: wasn't working for me.

 lib/PublicInbox/SearchIdx.pm | 47 ++++++++++++++++++++++++++++--------
 t/lei_xsearch.t              | 31 ++++++++++++++++++++++++
 2 files changed, 68 insertions(+), 10 deletions(-)

diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm
index 3372bea5..772f5a64 100644
--- a/lib/PublicInbox/SearchIdx.pm
+++ b/lib/PublicInbox/SearchIdx.pm
@@ -22,6 +22,7 @@ use PublicInbox::OverIdx;
 use PublicInbox::Spawn qw(spawn nodatacow_dir);
 use PublicInbox::Git qw(git_unquote);
 use PublicInbox::MsgTime qw(msg_timestamp msg_datestamp);
+use PublicInbox::Address;
 our @EXPORT_OK = qw(log2stack is_ancestor check_size prepare_stack
 	index_text term_generator add_val is_bad_blob);
 my $X = \%PublicInbox::Search::X;
@@ -158,22 +159,44 @@ sub term_generator ($) { # write-only
 	}
 }
 
+sub index_phrase ($$$$) {
+	my ($self, $text, $wdf_inc, $prefix) = @_;
+
+	my $tg = term_generator($self);
+	$tg->index_text($text, $wdf_inc, $prefix);
+	$tg->increase_termpos;
+}
+
 sub index_text ($$$$) {
 	my ($self, $text, $wdf_inc, $prefix) = @_;
-	my $tg = term_generator($self); # man Search::Xapian::TermGenerator
 
 	if ($self->{indexlevel} eq 'full') {
-		$tg->index_text($text, $wdf_inc, $prefix);
-		$tg->increase_termpos;
+		index_phrase($self, $text, $wdf_inc, $prefix);
 	} else {
+		my $tg = term_generator($self);
 		$tg->index_text_without_positions($text, $wdf_inc, $prefix);
 	}
 }
 
 sub index_headers ($$) {
 	my ($self, $smsg) = @_;
-	my @x = (from => 'A', # Author
-		subject => 'S', to => 'XTO', cc => 'XCC');
+	my @x = (from => 'A', to => 'XTO', cc => 'XCC'); # A: Author
+	while (my ($field, $pfx) = splice(@x, 0, 2)) {
+		my $val = $smsg->{$field};
+		next if $val eq '';
+		# include "(comments)" after the address, too, so not using
+		# PublicInbox::Address::names or pairs
+		index_text($self, $val, 1, $pfx);
+
+		# we need positional info for email addresses since they
+		# can be considered phrases
+		if ($self->{indexlevel} eq 'medium') {
+			for my $addr (PublicInbox::Address::emails($val)) {
+				index_phrase($self, $addr, 1, $pfx);
+			}
+		}
+	}
+	@x = (subject => 'S');
 	while (my ($field, $pfx) = splice(@x, 0, 2)) {
 		my $val = $smsg->{$field};
 		index_text($self, $val, 1, $pfx) if $val ne '';
@@ -186,7 +209,11 @@ sub index_diff_inc ($$$$) {
 		index_text($self, join("\n", @$xnq), 1, 'XNQ');
 		@$xnq = ();
 	}
-	index_text($self, $text, 1, $pfx);
+	if ($pfx eq 'XDFN') {
+		index_phrase($self, $text, 1, $pfx);
+	} else {
+		index_text($self, $text, 1, $pfx);
+	}
 }
 
 sub index_old_diff_fn {
@@ -292,7 +319,7 @@ sub index_xapian { # msg_iter callback
 	my $ct = $part->content_type || 'text/plain';
 	my $fn = $part->filename;
 	if (defined $fn && $fn ne '') {
-		index_text($self, $fn, 1, 'XFN');
+		index_phrase($self, $fn, 1, 'XFN');
 	}
 	if ($part->{is_submsg}) {
 		my $mids = mids_for_index($part);
@@ -330,20 +357,20 @@ sub index_list_id ($$$) {
 		$l =~ /<([^>]+)>/ or next;
 		my $lid = lc $1;
 		$doc->add_boolean_term('G' . $lid);
-		index_text($self, $lid, 1, 'XL'); # probabilistic
+		index_phrase($self, $lid, 1, 'XL'); # probabilistic
 	}
 }
 
 sub index_ids ($$$$) {
 	my ($self, $doc, $hdr, $mids) = @_;
 	for my $mid (@$mids) {
-		index_text($self, $mid, 1, 'XM');
+		index_phrase($self, $mid, 1, 'XM');
 
 		# because too many Message-IDs are prefixed with
 		# "Pine.LNX."...
 		if ($mid =~ /\w{12,}/) {
 			my @long = ($mid =~ /(\w{3,}+)/g);
-			index_text($self, join(' ', @long), 1, 'XM');
+			index_phrase($self, join(' ', @long), 1, 'XM');
 		}
 	}
 	$doc->add_boolean_term('Q' . $_) for @$mids;
diff --git a/t/lei_xsearch.t b/t/lei_xsearch.t
index f865ff43..5bfbcfe6 100644
--- a/t/lei_xsearch.t
+++ b/t/lei_xsearch.t
@@ -78,4 +78,35 @@ is(scalar(@ibxish), scalar(@ibx) + 1, 'got locals back');
 is($lxs->search, $lxs, '->search works');
 is($lxs->over, undef, '->over fails');
 
+{
+	$lxs = PublicInbox::LeiXSearch->new;
+	my $v2ibx = PublicInbox::InboxWritable->new({
+		inboxdir => "$home/v2full",
+		name => 'v2full',
+		version => 2,
+		indexlevel => 'full',
+		-primary_address => 'v2full@example.com',
+	}, {});
+	my $im = $v2ibx->importer(0);
+	$im->add(eml_load('t/plack-qp.eml'));
+	$im->done;
+	my $v1ibx = PublicInbox::InboxWritable->new({
+		inboxdir => "$home/v1medium",
+		name => 'v1medium',
+		version => 1,
+		indexlevel => 'medium',
+		-primary_address => 'v1medium@example.com',
+	}, {});
+	$im = $v1ibx->importer(0);
+	$im->add(eml_load('t/utf8.eml'));
+	$im->done;
+	$lxs->prepare_external($v1ibx);
+	$lxs->prepare_external($v2ibx);
+	for my $loc ($lxs->locals) {
+		$lxs->attach_external($loc);
+	}
+	my $mset = $lxs->mset('m:testmessage@example.com');
+	is($mset->size, 1, 'got m: match on medium+full XSearch mix');
+}
+
 done_testing;

             reply	other threads:[~2021-03-13 15:40 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-13 15:40 Eric Wong [this message]
2021-03-13 22:43 ` [PATCH] searchidx: fix -Lmedium for IDs and filenames Eric Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://public-inbox.org/README

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210313154027.GA27788@dcvr \
    --to=e@80x24.org \
    --cc=meta@public-inbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).