]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/LeiInput.pm
lei_mail_sync: rely on flock(2), avoid IPC
[public-inbox.git] / lib / PublicInbox / LeiInput.pm
index 8ce445c80d07b3748c8828e63f1d55db8aefb28d..fe736981ba6565d111871f6778b11838d1ecf83d 100644 (file)
@@ -124,7 +124,11 @@ sub input_path_url {
                handle_http_input($self, $input, @args);
                return;
        }
+
+       # local-only below
+       my $ifmt_pfx = '';
        if ($input =~ s!\A([a-z0-9]+):!!i) {
+               $ifmt_pfx = "$1:";
                $ifmt = lc($1);
        } elsif ($input =~ /\.(?:patch|eml)\z/i) {
                $ifmt = 'eml';
@@ -172,11 +176,16 @@ EOM
                                                $self->can('input_maildir_cb'),
                                                $self, @args);
                }
+       } elsif ($self->{missing_ok} && !-e $input) { # don't ->fail
+               $self->folder_missing("$ifmt:$input");
        } else {
-               $lei->fail("$input unsupported (TODO)");
+               $lei->fail("$ifmt_pfx$input unsupported (TODO)");
        }
 }
 
+# subclasses should overrride this (see LeiRefreshMailSync)
+sub folder_missing { die "BUG: ->folder_missing undefined for $_[0]" }
+
 sub bad_http ($$;$) {
        my ($lei, $url, $alt) = @_;
        my $x = $alt ? "did you mean <$alt>?" : 'download and import manually';
@@ -351,7 +360,7 @@ $input is `eml', not --in-format=$in_fmt
                # start watching Maildirs ASAP
                if ($may_sync && $lei->{sto}) {
                        grep(!m!\Amaildir:/!i, @md) and die "BUG: @md (no pfx)";
-                       my $wait = $lei->{sto}->ipc_do('add_sync_folders', @md);
+                       $lei->lms(1)->lms_write_prepare->add_folders(@md);
                        $lei->refresh_watches;
                }
        }