]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei up: support output destination as arg
authorEric Wong <e@80x24.org>
Fri, 16 Apr 2021 23:10:33 +0000 (16:10 -0700)
committerEric Wong <e@80x24.org>
Sat, 17 Apr 2021 10:00:45 +0000 (10:00 +0000)
Specifying a directory in ~/.local/share/lei/saved-searches/
is painful, so support (and start encouraging) the use of
the output.

lib/PublicInbox/LeiSavedSearch.pm
lib/PublicInbox/LeiUp.pm
t/lei-q-save.t

index ebc63091e075075296b3e738e49dfcf001af5d23..93b1b23aa3d7110fb5e90eab47df2658f2abdc37 100644 (file)
@@ -13,24 +13,39 @@ use PublicInbox::Spawn qw(run_die);
 use PublicInbox::ContentHash qw(git_sha);
 use Digest::SHA qw(sha256_hex);
 
+sub lss_dir_for ($$) {
+       my ($lei, $dstref) = @_;
+       my @n;
+       if ($$dstref =~ m,\Aimaps?://,i) { # already canonicalized
+               require PublicInbox::URIimap;
+               my $uri = PublicInbox::URIimap->new($$dstref)->canonical;
+               $$dstref = $$uri;
+               @n = ($uri->mailbox);
+       } else { # basename
+               @n = ($$dstref =~ m{([\w\-\.]+)/*\z});
+               $$dstref = $lei->rel2abs($$dstref);
+       }
+       push @n, sha256_hex($$dstref);
+       $lei->share_path . '/saved-searches/' . join('-', @n);
+}
+
 sub new {
        my ($cls, $lei, $dir) = @_;
-       my $self = bless { ale => $lei->ale, -cfg => {} }, $cls;
+       my $self = bless { ale => $lei->ale }, $cls;
        if (defined $dir) { # updating existing saved search via "lei up"
-               my $f = $self->{'-f'} = "$dir/lei.saved-search";
-               -f $f && -r _ or
+               my $f = "$dir/lei.saved-search";
+               ((-f $f && -r _) || output2lssdir($self, $lei, \$dir, \$f)) or
                        return $lei->fail("$f non-existent or unreadable");
-               $self->{-cfg} = PublicInbox::Config::git_config_dump($f);
+               $self->{-cfg} //= PublicInbox::Config::git_config_dump($f);
+               $self->{'-f'} = $f;
        } else { # new saved search "lei q --save"
-               my $saved_dir = $lei->share_path . '/saved-searches/';
-               my (@n) = ($lei->{ovv}->{dst} =~ m{([\w\-\.]+)/*\z});
-               my $q = $lei->{mset_opt}->{q_raw} // die 'BUG: {q_raw} missing';
-               push @n, sha256_hex("$lei->{ovv}->{fmt}\0$lei->{ovv}->{dst}");
-
-               $dir = $saved_dir . join('-', @n);
+               my $dst = $lei->{ovv}->{dst};
+               $dir = lss_dir_for($lei, \$dst);
                require File::Path;
                File::Path::make_path($dir); # raises on error
+               $self->{-cfg} = {};
                $self->{'-f'} = "$dir/lei.saved-search";
+               my $q = $lei->{mset_opt}->{q_raw} // die 'BUG: {q_raw} missing';
                if (ref $q) {
                        cfg_set($self, '--add', 'lei.q', $_) for @$q;
                } else {
@@ -38,7 +53,8 @@ sub new {
                }
                my $fmt = $lei->{opt}->{'format'};
                cfg_set($self, 'lei.q.format', $fmt) if defined $fmt;
-               cfg_set($self, 'lei.q.output', $lei->{opt}->{output});
+               $dst = "$lei->{ovv}->{fmt}:$dst" if $dst !~ m!\Aimaps?://!i;
+               cfg_set($self, 'lei.q.output', $dst);
                for my $k (qw(only include exclude)) {
                        my $ary = $lei->{opt}->{$k} // next;
                        for my $x (@$ary) {
@@ -127,6 +143,23 @@ sub mm { undef }
 sub altid_map { {} }
 
 sub cloneurl { [] }
+
+# find existing directory containing a `lei.saved-search' file based on
+# $dir_ref which is an output
+sub output2lssdir {
+       my ($self, $lei, $dir_ref, $fn_ref) = @_;
+       my $dst = $$dir_ref; # imap://$MAILBOX, /path/to/maildir, /path/to/mbox
+       my $dir = lss_dir_for($lei, \$dst);
+       my $f = "$dir/lei.saved-search";
+       if (-f $f && -r _) {
+               $self->{-cfg} = PublicInbox::Config::git_config_dump($f);
+               $$dir_ref = $dir;
+               $$fn_ref = $f;
+               return 1;
+       }
+       undef;
+}
+
 no warnings 'once';
 *nntp_url = \&cloneurl;
 *base_url = \&PublicInbox::Inbox::base_url;
index 386a75667a815577d2126234e044efafb5b62155..7ddb1dd0664a4aef36c5fc31fee234841fad6912 100644 (file)
@@ -9,9 +9,9 @@ use PublicInbox::LeiSavedSearch;
 use PublicInbox::LeiOverview;
 
 sub lei_up {
-       my ($lei, $dir) = @_;
+       my ($lei, $out) = @_;
        $lei->{lse} = $lei->_lei_store(1)->search;
-       my $lss = PublicInbox::LeiSavedSearch->new($lei, $dir) or return;
+       my $lss = PublicInbox::LeiSavedSearch->new($lei, $out) or return;
        my $mset_opt = $lei->{mset_opt} = { relevance => -2 };
        $mset_opt->{limit} = $lei->{opt}->{limit} // 10000;
        my $q = $mset_opt->{q_raw} = $lss->{-cfg}->{'lei.q'} //
index 6cfac20b77c4f7425f3f78cadb201dad08cc116e..d43f508b550c045e09e038ad35ea76ea2ea4e2fe 100644 (file)
@@ -7,6 +7,8 @@ my $doc1 = eml_load('t/plack-qp.eml');
 $doc1->header_set('Date', PublicInbox::Smsg::date({ds => time - (86400 * 5)}));
 my $doc2 = eml_load('t/utf8.eml');
 $doc2->header_set('Date', PublicInbox::Smsg::date({ds => time - (86400 * 4)}));
+my $doc3 = eml_load('t/msg_iter-order.eml');
+$doc3->header_set('Date', PublicInbox::Smsg::date({ds => time - (86400 * 4)}));
 
 test_lei(sub {
        my $home = $ENV{HOME};
@@ -38,5 +40,14 @@ test_lei(sub {
        $cfg = PublicInbox::Config->new("$s[0]/lei.saved-search");
        is_deeply $cfg->{'lei.q'}, 'd:last.week..',
                'q --stdin stores relative time';
+       my $size = -s "$home/mbcl2";
+       ok(defined($size) && $size > 0, 'results written');
+       lei_ok([qw(up mbcl2)], undef, { -C => $home, %$lei_opt });
+       is(-s "$home/mbcl2", $size, 'size unchanged on noop up');
+
+       $in = $doc3->as_string;
+       lei_ok [qw(import -q -F eml -)], undef, { 0 => \$in, %$lei_opt };
+       lei_ok([qw(up mbcl2)], undef, { -C => $home, %$lei_opt });
+       ok(-s "$home/mbcl2" > $size, 'size increased after up');
 });
 done_testing;