]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei: simplify lazy-loading
authorEric Wong <e@80x24.org>
Sun, 21 Mar 2021 11:24:05 +0000 (13:24 +0200)
committerEric Wong <e@80x24.org>
Mon, 22 Mar 2021 07:40:59 +0000 (03:40 -0400)
This makes it slightly easier to implement future commands,
since there'll be a couple more relatively self-contained
ones.

lib/PublicInbox/LEI.pm
lib/PublicInbox/LeiConvert.pm
lib/PublicInbox/LeiImport.pm
lib/PublicInbox/LeiP2q.pm

index bf97a6809ddb5a07fb266e531404255ac58743ad..b6d21af694f4488bdd1619c18c3084854b5245dd 100644 (file)
@@ -598,7 +598,12 @@ sub dispatch {
        }
        my $func = "lei_$cmd";
        $func =~ tr/-/_/;
-       if (my $cb = __PACKAGE__->can($func)) {
+       my $cb = __PACKAGE__->can($func) // ($CMD{$cmd} ? do {
+               my $mod = "PublicInbox::Lei\u$cmd";
+               ($INC{"PublicInbox/Lei\u$cmd.pm"} //
+                       eval("require $mod")) ? $mod->can($func) : undef;
+       } : undef);
+       if ($cb) {
                optparse($self, $cmd, \@argv) or return;
                if (my $chdir = $self->{opt}->{C}) {
                        for my $d (@$chdir) {
@@ -685,21 +690,6 @@ sub lei_config {
        x_it($self, $?) if $?;
 }
 
-sub lei_import {
-       require PublicInbox::LeiImport;
-       PublicInbox::LeiImport->call(@_);
-}
-
-sub lei_convert {
-       require PublicInbox::LeiConvert;
-       PublicInbox::LeiConvert->call(@_);
-}
-
-sub lei_p2q {
-       require PublicInbox::LeiP2q;
-       PublicInbox::LeiP2q->call(@_);
-}
-
 sub lei_init {
        my ($self, $dir) = @_;
        my $cfg = _lei_cfg($self, 1);
index fcc67f0bfe25ea3d2b72fee28e593cb1a3da3a6d..8d3b221a6eb9077869e812eee5cc84e2735b0240 100644 (file)
@@ -77,11 +77,11 @@ sub do_convert { # via wq_do
        delete $self->{wcb}; # commit
 }
 
-sub call { # the main "lei convert" method
-       my ($cls, $lei, @inputs) = @_;
+sub lei_convert { # the main "lei convert" method
+       my ($lei, @inputs) = @_;
        my $opt = $lei->{opt};
        $opt->{kw} //= 1;
-       my $self = $lei->{cnv} = bless {}, $cls;
+       my $self = $lei->{cnv} = bless {}, __PACKAGE__;
        my $in_fmt = $opt->{'in-format'};
        my (@f, @d);
        $opt->{dedupe} //= 'none';
index ae24a1fa3a61dda651a1c5fdb82538bf654ded46..0e2a96e84a478ef8ab92aad33c2103b8696bcdc1 100644 (file)
@@ -63,13 +63,13 @@ sub import_start {
        while ($op && $op->{sock}) { $op->event_step }
 }
 
-sub call { # the main "lei import" method
-       my ($cls, $lei, @inputs) = @_;
+sub lei_import { # the main "lei import" method
+       my ($lei, @inputs) = @_;
        my $sto = $lei->_lei_store(1);
        $sto->write_prepare($lei);
        my ($net, @f, @d);
        $lei->{opt}->{kw} //= 1;
-       my $self = $lei->{imp} = bless { inputs => \@inputs }, $cls;
+       my $self = $lei->{imp} = bless { inputs => \@inputs }, __PACKAGE__;
        if ($lei->{opt}->{stdin}) {
                @inputs and return $lei->fail("--stdin and @inputs do not mix");
                $lei->check_input_format or return;
index c5718603c672b158934fc6067c8717f6e93423ab..302d786492368c65f2c6f8cce5b09551e79820e4 100644 (file)
@@ -174,9 +174,9 @@ sub do_p2q { # via wq_do
        $lei->out(@q, "\n");
 }
 
-sub call { # the "lei patch-to-query" entry point
-       my ($cls, $lei, $input) = @_;
-       my $self = $lei->{p2q} = bless {}, $cls;
+sub lei_p2q { # the "lei patch-to-query" entry point
+       my ($lei, $input) = @_;
+       my $self = $lei->{p2q} = bless {}, __PACKAGE__;
        if ($lei->{opt}->{stdin}) {
                $self->{0} = delete $lei->{0}; # guard from lei_atfork_child
        } else {