]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei q: fix warning on remote imports
authorEric Wong <e@80x24.org>
Sun, 21 Mar 2021 09:50:46 +0000 (15:50 +0600)
committerEric Wong <e@80x24.org>
Sun, 21 Mar 2021 10:35:11 +0000 (10:35 +0000)
This will let us tie keywords from remote externals
to those which only exist in local externals.

lib/PublicInbox/ContentHash.pm
lib/PublicInbox/LeiDedupe.pm
lib/PublicInbox/LeiXSearch.pm
t/lei-q-remote-import.t

index 4dbe7b5049d57290f56d20e6f5a52d50612ed73b..112b1ea6c1e660722cf1e68982745edb93912599 100644 (file)
@@ -8,9 +8,9 @@
 # See L<public-inbox-v2-format(5)> manpage for more details.
 package PublicInbox::ContentHash;
 use strict;
-use warnings;
-use base qw/Exporter/;
-our @EXPORT_OK = qw/content_hash content_digest/;
+use v5.10.1;
+use parent qw(Exporter);
+our @EXPORT_OK = qw(content_hash content_digest git_sha);
 use PublicInbox::MID qw(mids references);
 use PublicInbox::MsgIter;
 
@@ -94,4 +94,13 @@ sub content_hash ($) {
        content_digest($_[0])->digest;
 }
 
+sub git_sha ($$) {
+       my ($n, $eml) = @_;
+       my $dig = Digest::SHA->new($n);
+       my $buf = $eml->as_string;
+       $dig->add('blob '.length($buf)."\0");
+       $dig->add($buf);
+       $dig;
+}
+
 1;
index 5fec9384f1e305cae739e17562377f6377504f61..a62b3a7ccd6c737773f0bb3e6c82bcab0a7e4e51 100644 (file)
@@ -3,7 +3,7 @@
 package PublicInbox::LeiDedupe;
 use strict;
 use v5.10.1;
-use PublicInbox::ContentHash qw(content_hash);
+use PublicInbox::ContentHash qw(content_hash git_sha);
 use Digest::SHA ();
 
 # n.b. mutt sets most of these headers not sure about Bytes
@@ -18,12 +18,7 @@ sub _regen_oid ($) {
                push @stash, [ $k, \@v ];
                $eml->header_set($k); # restore below
        }
-       my $dig = Digest::SHA->new(1); # XXX SHA256 later
-       my $buf = $eml->as_string;
-       $dig->add('blob '.length($buf)."\0");
-       $dig->add($buf);
-       undef $buf;
-
+       my $dig = git_sha(1, $eml);
        for my $kv (@stash) { # restore stashed headers
                my ($k, @v) = @$kv;
                $eml->header_set($k, @v);
index 17171a7fd446bbd57d3296584d3a74c4a0b83b67..b6aaf3e136d4fa07c7bccc1f693c21a3a5329a04 100644 (file)
@@ -18,6 +18,7 @@ use PublicInbox::MID qw(mids);
 use PublicInbox::Smsg;
 use PublicInbox::Eml;
 use Fcntl qw(SEEK_SET F_SETFL O_APPEND O_RDWR);
+use PublicInbox::ContentHash qw(git_sha);
 
 sub new {
        my ($class) = @_;
@@ -207,10 +208,13 @@ sub query_mset { # non-parallel for non-"--threads" users
 
 sub each_remote_eml { # callback for MboxReader->mboxrd
        my ($eml, $self, $lei, $each_smsg) = @_;
-       if ($self->{import_sto} && !$lei->{ale}->xoids_for($eml, 1)) {
+       my $xoids = $lei->{ale}->xoids_for($eml, 1);
+       if ($self->{import_sto} && !$xoids) {
                $self->{import_sto}->ipc_do('add_eml', $eml);
        }
        my $smsg = bless {}, 'PublicInbox::Smsg';
+       $smsg->{blob} = $xoids ? (keys(%$xoids))[0]
+                               : git_sha(1, $eml)->hexdigest;
        $smsg->populate($eml);
        $smsg->parse_references($eml, mids($eml));
        $smsg->{$_} //= '' for qw(from to cc ds subject references mid);
index 25e461ac640bb81d653d275a166ab3799841e70c..93828a242f16f47a03af08efab05761b3635893e 100644 (file)
@@ -65,8 +65,9 @@ test_lei({ tmpdir => $tmpdir }, sub {
                $im->add(eml_load('t/utf8.eml')) or BAIL_OUT '->add';
        };
        lei_ok(qw(add-external -q), $ibx->{inboxdir});
-       lei_ok(qw(q -o), "mboxrd:$o", '--only', $url,
+       lei_ok(qw(q -q -o), "mboxrd:$o", '--only', $url,
                'm:testmessage@example.com');
+       is($lei_err, '', 'no warnings or errors');
        ok(-s $o, 'got result from remote external');
        my $exp = eml_load('t/utf8.eml');
        is_deeply($slurp_emls->($o), [$exp], 'got expected result');