1 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Writes PublicInbox::Eml objects atomically to a mbox variant or Maildir
5 package PublicInbox::LeiToMail;
8 use parent qw(PublicInbox::IPC);
10 use PublicInbox::ProcessPipe;
11 use PublicInbox::Spawn qw(spawn);
12 use Symbol qw(gensym);
13 use IO::Handle; # ->autoflush
14 use Fcntl qw(SEEK_SET SEEK_END O_CREAT O_EXCL O_WRONLY);
16 my %kw2char = ( # Maildir characters
19 forwarded => 'P', # passed
25 flagged => [ 'X-Status' => 'F' ],
26 answered => [ 'X-Status' => 'A' ],
27 seen => [ 'Status' => 'R' ],
28 draft => [ 'X-Status' => 'T' ],
31 sub _mbox_hdr_buf ($$$) {
32 my ($eml, $type, $smsg) = @_;
33 $eml->header_set($_) for (qw(Lines Bytes Content-Length));
35 my %hdr = (Status => []); # set Status, X-Status
36 for my $k (@{$smsg->{kw} // []}) {
37 if (my $ent = $kw2status{$k}) {
38 push @{$hdr{$ent->[0]}}, $ent->[1];
40 warn "# keyword `$k' not supported for mbox\n";
43 # When writing to empty mboxes, messages are always 'O'
44 # (not-\Recent in IMAP), it saves MUAs the trouble of
45 # rewriting the mbox if no other changes are made.
46 # We put 'O' at the end (e.g. "Status: RO") to match mutt(1) output.
47 # We only set smsg->{-recent} if augmenting existing stores.
48 my $status = join('', sort(@{$hdr{Status}}));
49 $status .= 'O' unless $smsg->{-recent};
50 $eml->header_set('Status', $status) if $status;
51 if (my $chars = delete $hdr{'X-Status'}) {
52 $eml->header_set('X-Status', join('', sort(@$chars)));
54 my $buf = delete $eml->{hdr};
56 # fixup old bug from import (pre-a0c07cba0e5d8b6a)
57 $$buf =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s;
58 my $ident = $smsg->{blob} // 'lei';
59 if (defined(my $pct = $smsg->{pct})) { $ident .= "=$pct" }
61 substr($$buf, 0, 0, # prepend From line
62 "From $ident\@$type Thu Jan 1 00:00:00 1970$eml->{crlf}");
66 sub atomic_append { # for on-disk destinations (O_APPEND, or O_EXCL)
68 if (defined(my $w = syswrite($lei->{1} // return, $$buf))) {
69 return if $w == length($$buf);
70 $buf = "short atomic write: $w != ".length($$buf);
72 return $lei->note_sigpipe(1);
74 $buf = "atomic write: $!";
79 sub eml2mboxrd ($;$) {
80 my ($eml, $smsg) = @_;
81 my $buf = _mbox_hdr_buf($eml, 'mboxrd', $smsg);
82 if (my $bdy = delete $eml->{bdy}) {
83 $$bdy =~ s/^(>*From )/>$1/gm;
84 $$buf .= $eml->{crlf};
85 substr($$bdy, 0, 0, $$buf); # prepend header
88 $$buf .= $eml->{crlf};
93 my ($eml, $smsg) = @_;
94 my $buf = _mbox_hdr_buf($eml, 'mboxo', $smsg);
95 if (my $bdy = delete $eml->{bdy}) {
96 $$bdy =~ s/^From />From /gm;
97 $$buf .= $eml->{crlf};
98 substr($$bdy, 0, 0, $$buf); # prepend header
101 $$buf .= $eml->{crlf};
105 sub _mboxcl_common ($$$) {
106 my ($buf, $bdy, $crlf) = @_;
107 # add Lines: so mutt won't have to add it on MUA close
108 my $lines = $$bdy =~ tr!\n!\n!;
109 $$buf .= 'Content-Length: '.length($$bdy).$crlf.
110 'Lines: '.$lines.$crlf.$crlf;
111 substr($$bdy, 0, 0, $$buf); # prepend header
115 # mboxcl still escapes "From " lines
117 my ($eml, $smsg) = @_;
118 my $buf = _mbox_hdr_buf($eml, 'mboxcl', $smsg);
119 my $crlf = $eml->{crlf};
120 if (my $bdy = delete $eml->{bdy}) {
121 $$bdy =~ s/^From />From /gm;
122 _mboxcl_common($buf, $bdy, $crlf);
128 # mboxcl2 has no "From " escaping
130 my ($eml, $smsg) = @_;
131 my $buf = _mbox_hdr_buf($eml, 'mboxcl2', $smsg);
132 my $crlf = $eml->{crlf};
133 if (my $bdy = delete $eml->{bdy}) {
134 _mboxcl_common($buf, $bdy, $crlf);
140 sub git_to_mail { # git->cat_async callback
141 my ($bref, $oid, $type, $size, $arg) = @_;
142 my ($write_cb, $smsg) = @$arg;
143 if ($type eq 'missing' && $smsg->{-lms_ro}) {
144 if ($bref = $smsg->{-lms_ro}->local_blob($oid, 1)) {
146 $size = length($$bref);
149 return warn("W: $oid is $type (!= blob)\n") if $type ne 'blob';
150 return warn("E: $oid is empty\n") unless $size;
151 die "BUG: expected=$smsg->{blob} got=$oid" if $smsg->{blob} ne $oid;
152 $write_cb->($bref, $smsg);
155 sub reap_compress { # dwaitpid callback
156 my ($lei, $pid) = @_;
157 my $cmd = delete $lei->{"pid.$pid"};
159 $lei->fail("@$cmd failed", $? >> 8);
162 sub _post_augment_mbox { # open a compressor process from top-level process
163 my ($self, $lei) = @_;
164 my $zsfx = $self->{zsfx} or return;
165 my $cmd = PublicInbox::MboxReader::zsfx2cmd($zsfx, undef, $lei);
166 my ($r, $w) = @{delete $lei->{zpipe}};
167 my $rdr = { 0 => $r, 1 => $lei->{1}, 2 => $lei->{2} };
168 my $pid = spawn($cmd, undef, $rdr);
170 my $dup = bless { "pid.$pid" => $cmd }, ref($lei);
171 $dup->{$_} = $lei->{$_} for qw(2 sock);
172 tie *$pp, 'PublicInbox::ProcessPipe', $pid, $w, \&reap_compress, $dup;
176 # --augment existing output destination, with deduplication
177 sub _augment { # MboxReader eml_cb
178 my ($eml, $lei) = @_;
179 # ignore return value, just populate the skv
180 $lei->{dedupe}->is_dup($eml);
183 sub _mbox_augment_kw_maybe {
184 my ($eml, $lei, $lse, $augment) = @_;
185 my $kw = PublicInbox::MboxReader::mbox_keywords($eml);
186 update_kw_maybe($lei, $lse, $eml, $kw);
187 _augment($eml, $lei) if $augment;
190 sub _mbox_write_cb ($$) {
191 my ($self, $lei) = @_;
192 my $ovv = $lei->{ovv};
193 my $m = 'eml2'.$ovv->{fmt};
194 my $eml2mbox = $self->can($m) or die "$self->$m missing";
195 $lei->{1} // die "no stdout ($m, $ovv->{dst})"; # redirected earlier
196 $lei->{1}->autoflush(1);
197 my $atomic_append = !defined($ovv->{lock_path});
198 my $dedupe = $lei->{dedupe};
199 $dedupe->prepare_dedupe;
200 my $lse = $lei->{lse}; # may be undef
201 my $set_recent = $dedupe->has_entries;
202 sub { # for git_to_mail
203 my ($buf, $smsg, $eml) = @_;
204 $eml //= PublicInbox::Eml->new($buf);
205 return if $dedupe->is_dup($eml, $smsg);
206 $lse->xsmsg_vmd($smsg) if $lse;
207 $smsg->{-recent} = 1 if $set_recent;
208 $buf = $eml2mbox->($eml, $smsg);
209 if ($atomic_append) {
210 atomic_append($lei, $buf);
212 my $lk = $ovv->lock_for_scope;
219 sub update_kw_maybe ($$$$) {
220 my ($lei, $lse, $eml, $kw) = @_;
222 my $c = $lse->kw_changed($eml, $kw, my $docids = []);
223 my $vmd = { kw => $kw };
224 if (scalar @$docids) { # already in lei/store
225 $lei->{sto}->ipc_do('set_eml_vmd', undef, $vmd, $docids) if $c;
226 } elsif (my $xoids = $lei->{ale}->xoids_for($eml)) {
227 # it's in an external, only set kw, here
228 $lei->{sto}->ipc_do('set_xvmd', $xoids, $eml, $vmd);
229 } else { # never-before-seen, import the whole thing
230 # XXX this is critical in protecting against accidental
231 # data loss without --augment
232 $lei->{sto}->ipc_do('set_eml', $eml, $vmd);
236 sub _md_update { # maildir_each_eml cb
237 my ($f, $kw, $eml, $lei, $lse, $unlink) = @_;
238 update_kw_maybe($lei, $lse, $eml, $kw);
239 $unlink ? unlink($f) : _augment($eml, $lei);
242 # maildir_each_file callback, \&CORE::unlink doesn't work with it
243 sub _unlink { unlink($_[0]) }
247 sprintf('%x,%x,%x,%x', rand(0xffffffff), time, $$, ++$seq);
250 sub kw2suffix ($;@) {
252 join('', sort(map { $kw2char{$_} // () } @$kw, @_));
255 sub _buf2maildir ($$$$) {
256 my ($dst, $buf, $smsg, $dir) = @_;
257 my $kw = $smsg->{kw} // [];
258 my $rand = ''; # chosen by die roll :P
259 my ($tmp, $fh, $base, $ok);
260 my $common = $smsg->{blob} // _rand;
261 if (defined(my $pct = $smsg->{pct})) { $common .= "=$pct" }
263 $tmp = $dst.'tmp/'.$rand.$common;
264 } while (!($ok = sysopen($fh, $tmp, O_CREAT|O_EXCL|O_WRONLY)) &&
265 $!{EEXIST} && ($rand = _rand.','));
266 if ($ok && print $fh $$buf and close($fh)) {
267 $dst .= $dir; # 'new/' or 'cur/'
270 $base = $rand.$common.':2,'.kw2suffix($kw);
271 } while (!($ok = link($tmp, $dst.$base)) && $!{EEXIST} &&
272 ($rand = _rand.','));
273 die "link($tmp, $dst$base): $!" unless $ok;
274 unlink($tmp) or warn "W: failed to unlink $tmp: $!\n";
277 my $err = "Error writing $smsg->{blob} to $dst: $!\n";
278 $_[0] = undef; # clobber dst
284 sub _maildir_write_cb ($$) {
285 my ($self, $lei) = @_;
286 my $dedupe = $lei->{dedupe};
287 $dedupe->prepare_dedupe if $dedupe;
288 my $dst = $lei->{ovv}->{dst};
289 my $lse = $lei->{lse}; # may be undef
290 my $sto = $lei->{opt}->{'mail-sync'} ? $lei->{sto} : undef;
291 my $out = $sto ? 'maildir:'.$lei->abs_path($dst) : undef;
293 # Favor cur/ and only write to new/ when augmenting. This
294 # saves MUAs from having to do a mass rename when the initial
295 # search result set is huge.
296 my $dir = $dedupe && $dedupe->has_entries ? 'new/' : 'cur/';
297 sub { # for git_to_mail
298 my ($bref, $smsg, $eml) = @_;
299 $dst // return $lei->fail; # dst may be undef-ed in last run
300 return if $dedupe && $dedupe->is_dup($eml //
301 PublicInbox::Eml->new($$bref),
303 $lse->xsmsg_vmd($smsg) if $lse;
304 my $n = _buf2maildir($dst, $bref // \($eml->as_string),
306 $sto->ipc_do('set_sync_info', $smsg->{blob}, $out, $n) if $sto;
311 sub _imap_write_cb ($$) {
312 my ($self, $lei) = @_;
313 my $dedupe = $lei->{dedupe};
314 $dedupe->prepare_dedupe if $dedupe;
315 my $append = $lei->{net}->can('imap_append');
316 my $uri = $self->{uri};
317 my $mic = $lei->{net}->mic_get($uri);
318 my $folder = $uri->mailbox;
319 $uri->uidvalidity($mic->uidvalidity($folder));
320 my $lse = $lei->{lse}; # may be undef
321 my $sto = $lei->{opt}->{'mail-sync'} ? $lei->{sto} : undef;
322 sub { # for git_to_mail
323 my ($bref, $smsg, $eml) = @_;
324 $mic // return $lei->fail; # mic may be undef-ed in last run
325 return if $dedupe && $dedupe->is_dup($eml //
326 PublicInbox::Eml->new($$bref),
328 $lse->xsmsg_vmd($smsg) if $lse;
329 my $uid = eval { $append->($mic, $folder, $bref, $smsg, $eml) };
334 # imap_append returns UID if IMAP server has UIDPLUS extension
335 ($sto && $uid =~ /\A[0-9]+\z/) and
336 $sto->ipc_do('set_sync_info',
337 $smsg->{blob}, $$uri, $uid + 0);
342 sub _text_write_cb ($$) {
343 my ($self, $lei) = @_;
344 my $dedupe = $lei->{dedupe};
345 $dedupe->prepare_dedupe if $dedupe;
346 my $lvt = $lei->{lvt};
347 my $ovv = $lei->{ovv};
348 $lei->{1} // die "no stdout ($ovv->{dst})"; # redirected earlier
349 $lei->{1}->autoflush(1);
350 binmode $lei->{1}, ':utf8';
351 my $lse = $lei->{lse}; # may be undef
352 sub { # for git_to_mail
353 my ($bref, $smsg, $eml) = @_;
354 $lse->xsmsg_vmd($smsg) if $lse;
355 $eml //= PublicInbox::Eml->new($bref);
356 return if $dedupe && $dedupe->is_dup($eml, $smsg);
357 my $lk = $ovv->lock_for_scope;
358 $lei->out(${$lvt->eml_to_text($smsg, $eml)}, "\n");
362 sub _v2_write_cb ($$) {
363 my ($self, $lei) = @_;
364 my $dedupe = $lei->{dedupe};
365 $dedupe->prepare_dedupe if $dedupe;
366 sub { # for git_to_mail
367 my ($bref, $smsg, $eml) = @_;
368 $eml //= PublicInbox::Eml->new($bref);
369 return if $dedupe && $dedupe->is_dup($eml, $smsg);
370 $lei->{v2w}->ipc_do('add', $eml); # V2Writable->add
374 sub write_cb { # returns a callback for git_to_mail
375 my ($self, $lei) = @_;
376 # _mbox_write_cb, _maildir_write_cb, _imap_write_cb, _v2_write_cb
377 my $m = "_$self->{base_type}_write_cb";
382 my ($cls, $lei) = @_;
383 my $fmt = $lei->{ovv}->{fmt};
384 my $dst = $lei->{ovv}->{dst};
385 my $self = bless {}, $cls;
387 if ($fmt eq 'maildir') {
388 require PublicInbox::MdirReader;
389 $self->{base_type} = 'maildir';
390 -e $dst && !-d _ and die
391 "$dst exists and is not a directory\n";
392 $lei->{ovv}->{dst} = $dst .= '/' if substr($dst, -1) ne '/';
393 } elsif (substr($fmt, 0, 4) eq 'mbox') {
394 require PublicInbox::MboxReader;
395 $self->can("eml2$fmt") or die "bad mbox format: $fmt\n";
396 $self->{base_type} = 'mbox';
397 } elsif ($fmt =~ /\Aimaps?\z/) {
398 require PublicInbox::NetWriter;
399 require PublicInbox::URIimap;
400 my $net = PublicInbox::NetWriter->new;
401 $net->{quiet} = $lei->{opt}->{quiet};
402 my $uri = PublicInbox::URIimap->new($dst)->canonical;
404 my $err = $net->errors($lei);
405 return $lei->fail($err) if $err;
406 $uri->mailbox or return $lei->fail("No mailbox: $dst");
408 $dst = $lei->{ovv}->{dst} = $$uri; # canonicalized
410 $self->{base_type} = 'imap';
411 } elsif ($fmt eq 'text') {
412 require PublicInbox::LeiViewText;
413 $lei->{lvt} = PublicInbox::LeiViewText->new($lei);
414 $self->{base_type} = 'text';
415 @conflict = qw(mua save);
416 } elsif ($fmt eq 'v2') {
417 die "--dedupe=oid and v2 are incompatible\n" if
418 ($lei->{opt}->{dedupe}//'') eq 'oid';
419 $self->{base_type} = 'v2';
420 $lei->{opt}->{save} = \1;
421 $dst = $lei->{ovv}->{dst} = $lei->abs_path($dst);
422 @conflict = qw(mua sort);
424 die "bad mail --format=$fmt\n";
426 if ($self->{base_type} =~ /\A(?:text|mbox)\z/) {
427 (-d $dst || (-e _ && !-w _)) and die
428 "$dst exists and is not a writable file\n";
430 my @err = map { defined($lei->{opt}->{$_}) ? "--$_" : () } @conflict;
431 die "@err incompatible with $fmt\n" if @err;
433 $lei->{dedupe} = $lei->{lss} // do {
434 my $dd_cls = 'PublicInbox::'.
435 ($lei->{opt}->{save} ? 'LeiSavedSearch' : 'LeiDedupe');
436 eval "require $dd_cls";
437 die "$dd_cls: $@" if $@;
443 sub _pre_augment_maildir {
444 my ($self, $lei) = @_;
445 my $dst = $lei->{ovv}->{dst};
446 for my $x (qw(tmp new cur)) {
450 File::Path::mkpath($d);
451 -d $d or die "$d is not a directory";
453 # for utime, so no opendir
454 open $self->{poke_dh}, '<', "${dst}cur" or die "open ${dst}cur: $!";
457 sub _do_augment_maildir {
458 my ($self, $lei) = @_;
459 return if ($lei->{opt}->{save} // 0) < 0;
460 my $dst = $lei->{ovv}->{dst};
461 my $lse = $lei->{opt}->{'import-before'} ? $lei->{lse} : undef;
462 my $mdr = PublicInbox::MdirReader->new;
463 if ($lei->{opt}->{augment}) {
464 my $dedupe = $lei->{dedupe};
465 if ($dedupe && $dedupe->prepare_dedupe) {
466 $mdr->{shard_info} = $self->{shard_info};
467 $mdr->maildir_each_eml($dst, \&_md_update, $lei, $lse);
468 $dedupe->pause_dedupe;
471 $mdr->{shard_info} = $self->{shard_info};
472 $mdr->maildir_each_eml($dst, \&_md_update, $lei, $lse, 1);
473 } else {# clobber existing Maildir
474 $mdr->maildir_each_file($dst, \&_unlink);
478 sub _imap_augment_or_delete { # PublicInbox::NetReader::imap_each cb
479 my ($uri, $uid, $kw, $eml, $lei, $lse, $delete_mic) = @_;
480 update_kw_maybe($lei, $lse, $eml, $kw);
482 $lei->{net}->imap_delete_1($uri, $uid, $delete_mic);
484 _augment($eml, $lei);
488 sub _do_augment_imap {
489 my ($self, $lei) = @_;
490 return if ($lei->{opt}->{save} // 0) < 0;
491 my $net = $lei->{net};
492 my $lse = $lei->{opt}->{'import-before'} ? $lei->{lse} : undef;
493 if ($lei->{opt}->{augment}) {
494 my $dedupe = $lei->{dedupe};
495 if ($dedupe && $dedupe->prepare_dedupe) {
496 $net->imap_each($self->{uri}, \&_imap_augment_or_delete,
498 $dedupe->pause_dedupe;
502 $net->imap_each($self->{uri}, \&_imap_augment_or_delete,
503 $lei, $lse, \$delete_mic);
504 $delete_mic->expunge if $delete_mic;
505 } elsif (!$self->{-wq_worker_nr}) { # undef or 0
506 # clobber existing IMAP folder
507 $net->imap_delete_all($self->{uri});
511 sub _pre_augment_text {
512 my ($self, $lei) = @_;
513 my $dst = $lei->{ovv}->{dst};
515 my $devfd = $lei->path_to_fd($dst) // die "bad $dst";
517 $out = $lei->{$devfd};
518 } else { # normal-looking path
520 open $out, '>', $dst or die "open($dst): $!";
521 } elsif (-f _ || !-e _) {
522 # text allows augment, HTML/Atom won't
523 my $mode = $lei->{opt}->{augment} ? '>>' : '>';
524 open $out, $mode, $dst or die "open($mode, $dst): $!";
526 die "$dst is not a file or FIFO\n";
529 $lei->{ovv}->ovv_out_lk_init if !$lei->{ovv}->{lock_path};
534 sub _pre_augment_mbox {
535 my ($self, $lei) = @_;
536 my $dst = $lei->{ovv}->{dst};
538 my $devfd = $lei->path_to_fd($dst) // die "bad $dst";
540 $out = $lei->{$devfd};
541 } else { # normal-looking path
543 open $out, '>', $dst or die "open($dst): $!";
544 } elsif (-f _ || !-e _) {
545 require PublicInbox::MboxLock;
546 my $m = $lei->{opt}->{'lock'} //
547 PublicInbox::MboxLock->defaults;
548 $self->{mbl} = PublicInbox::MboxLock->acq($dst, 1, $m);
549 $out = $self->{mbl}->{fh};
551 die "$dst is not a file or FIFO\n";
553 $lei->{old_1} = $lei->{1}; # keep for spawning MUA
555 # Perl does SEEK_END even with O_APPEND :<
556 $self->{seekable} = seek($out, 0, SEEK_SET);
557 if (!$self->{seekable} && !$!{ESPIPE} && !defined($devfd)) {
558 die "seek($dst): $!\n";
560 if (!$self->{seekable}) {
561 my $imp_before = $lei->{opt}->{'import-before'};
562 die "--import-before specified but $dst is not seekable\n"
563 if $imp_before && !ref($imp_before);
564 die "--augment specified but $dst is not seekable\n" if
565 $lei->{opt}->{augment};
567 if ($self->{zsfx} = PublicInbox::MboxReader::zsfx($dst)) {
568 pipe(my ($r, $w)) or die "pipe: $!";
569 $lei->{zpipe} = [ $r, $w ];
570 $lei->{ovv}->{lock_path} and
571 die 'BUG: unexpected {ovv}->{lock_path}';
572 $lei->{ovv}->ovv_out_lk_init;
573 } elsif (!$self->{seekable} && !$lei->{ovv}->{lock_path}) {
574 $lei->{ovv}->ovv_out_lk_init;
580 sub _do_augment_mbox {
581 my ($self, $lei) = @_;
582 return unless $self->{seekable};
583 my $opt = $lei->{opt};
584 return if ($opt->{save} // 0) < 0;
586 my ($fmt, $dst) = @{$lei->{ovv}}{qw(fmt dst)};
587 return unless -s $out;
588 unless ($opt->{augment} || $opt->{'import-before'}) {
589 truncate($out, 0) or die "truncate($dst): $!";
593 if (my $zsfx = $self->{zsfx}) {
594 $rd = PublicInbox::MboxReader::zsfxcat($out, $zsfx, $lei);
596 open($rd, '+>>&', $out) or die "dup: $!";
599 if ($opt->{augment}) {
600 $dedupe = $lei->{dedupe};
601 $dedupe->prepare_dedupe if $dedupe;
603 if ($opt->{'import-before'}) { # the default
604 my $lse = $lei->{lse};
605 PublicInbox::MboxReader->$fmt($rd, \&_mbox_augment_kw_maybe,
606 $lei, $lse, $opt->{augment});
607 if (!$opt->{augment} and !truncate($out, 0)) {
608 die "truncate($dst): $!";
610 } else { # --augment --no-import-before
611 PublicInbox::MboxReader->$fmt($rd, \&_augment, $lei);
613 # maybe some systems don't honor O_APPEND, Perl does this:
614 seek($out, 0, SEEK_END) or die "seek $dst: $!";
615 $dedupe->pause_dedupe if $dedupe;
618 sub _pre_augment_v2 {
619 my ($self, $lei) = @_;
620 my $dir = $self->{dst};
621 require PublicInbox::InboxWritable;
624 my $opt = { -min_inbox_version => 2 };
625 require PublicInbox::Admin;
626 my @ibx = PublicInbox::Admin::resolve_inboxes([ $dir ], $opt);
627 $ibx = $ibx[0] or die "$dir is not a v2 inbox\n";
630 $ibx = PublicInbox::Inbox->new({
631 name => 'lei-result', # XXX configurable
634 address => [ 'lei@example.com' ],
637 PublicInbox::InboxWritable->new($ibx, @creat);
638 $ibx->init_inbox if @creat;
639 my $v2w = $lei->{v2w} = $ibx->importer;
640 $v2w->ipc_lock_init("$dir/ipc.lock");
641 $v2w->ipc_worker_spawn("lei/v2w $dir", $lei->oldset, { lei => $lei });
642 return if !$lei->{opt}->{shared};
643 my $d = "$lei->{ale}->{git}->{git_dir}/objects";
644 my $al = "$dir/git/0.git/objects/info/alternates";
645 open my $fh, '+>>', $al or die "open($al): $!";
646 seek($fh, 0, SEEK_SET) or die "seek($al): $!";
647 grep(/\A\Q$d\E\n/, <$fh>) and return;
648 print $fh "$d\n" or die "print($al): $!";
649 close $fh or die "close($al): $!";
652 sub pre_augment { # fast (1 disk seek), runs in same process as post_augment
653 my ($self, $lei) = @_;
654 # _pre_augment_maildir, _pre_augment_mbox, _pre_augment_v2
655 my $m = $self->can("_pre_augment_$self->{base_type}") or return;
659 sub do_augment { # slow, runs in wq worker
660 my ($self, $lei) = @_;
661 # _do_augment_maildir, _do_augment_mbox, or _do_augment_imap
662 my $m = $self->can("_do_augment_$self->{base_type}") or return;
666 # fast (spawn compressor or mkdir), runs in same process as pre_augment
668 my ($self, $lei, @args) = @_;
669 my $wait = $lei->{opt}->{'import-before'} ?
670 $lei->{sto}->ipc_do('checkpoint', 1) : 0;
672 my $m = $self->can("_post_augment_$self->{base_type}") or return;
673 $m->($self, $lei, @args);
676 # called by every single l2m worker process
679 my $lei = $self->{lei};
680 # lei_xsearch can start as soon as all l2m workers get here
681 $lei->{pkt_op_p}->pkt_do('incr_start_query') or
682 die "incr_start_query: $!";
684 if (lock_free($self)) { # all workers do_augment
685 my $mod = $self->{-wq_nr_workers};
686 my $shard = $self->{-wq_worker_nr};
687 if (my $net = $lei->{net}) {
688 $net->{shard_info} = [ $mod, $shard ];
690 $self->{shard_info} = [ $mod, $shard ];
692 $aug = '+'; # incr_post_augment
693 } elsif ($self->{-wq_worker_nr} == 0) { # 1st worker do_augment
694 $aug = '.'; # do_post_augment
697 local $0 = 'do_augment';
698 eval { do_augment($self, $lei) };
699 $lei->fail($@) if $@;
700 $lei->{pkt_op_p}->pkt_do($aug) == 1 or
701 die "do_post_augment trigger: $!";
703 # done augmenting, connect the compressor pipe for each worker
704 if (my $zpipe = delete $lei->{zpipe}) {
705 $lei->{1} = $zpipe->[1];
708 my $au_peers = delete $self->{au_peers};
709 if ($au_peers) { # wait for peer l2m to finish augmenting:
710 $au_peers->[1] = undef;
711 sysread($au_peers->[0], my $barrier1, 1);
713 $self->{wcb} = $self->write_cb($lei);
714 if ($au_peers) { # wait for peer l2m to set write_cb
715 $au_peers->[3] = undef;
716 sysread($au_peers->[2], my $barrier2, 1);
720 sub ipc_atfork_child {
722 my $lei = $self->{lei};
723 $lei->_lei_atfork_child;
724 if (my $lse = $lei->{lse}) {
725 $self->{-lms_ro} = $lse->{-lms_ro} //= $lse->lms;
727 $lei->{auth}->do_auth_atfork($self) if $lei->{auth};
728 $SIG{__WARN__} = PublicInbox::Eml::warn_ignore_cb();
729 $self->SUPER::ipc_atfork_child;
733 $_[0]->{base_type} =~ /\A(?:maildir|imap|jmap)\z/ ? 1 : 0;
736 # wakes up the MUA when complete so it can refresh messages list
739 if ($self->{base_type} eq 'maildir') {
741 utime($t, $t, $self->{poke_dh}) or warn "futimes: $!";
745 sub write_mail { # via ->wq_io_do
746 my ($self, $smsg, $eml) = @_;
747 return $self->{wcb}->(undef, $smsg, $eml) if $eml;
748 $smsg->{-lms_ro} = $self->{-lms_ro};
749 $self->{lei}->{ale}->git->cat_async($smsg->{blob}, \&git_to_mail,
750 [$self->{wcb}, $smsg]);
753 sub wq_atexit_child {
755 my $lei = $self->{lei};
757 $lei->{ale}->git->async_wait_all;
758 my $nr = delete($lei->{-nr_write}) or return;
759 return if $lei->{early_mua} || !$lei->{-progress} || !$lei->{pkt_op_p};
760 $lei->{pkt_op_p}->pkt_do('l2m_progress', $nr);
763 # called in top-level lei-daemon when LeiAuth is done
764 sub net_merge_all_done {
766 $self->wq_broadcast('do_post_auth');
770 no warnings 'once'; # the following works even when LeiAuth is lazy-loaded
771 *net_merge_all = \&PublicInbox::LeiAuth::net_merge_all;