]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LeiOverview.pm
lei: show {pct} and {oid} in From_ lines and filenames
[public-inbox.git] / lib / PublicInbox / LeiOverview.pm
1 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # per-mitem/smsg iterators for search results
5 # "ovv" => "Overview viewer"
6 package PublicInbox::LeiOverview;
7 use strict;
8 use v5.10.1;
9 use parent qw(PublicInbox::Lock);
10 use POSIX qw(strftime);
11 use Fcntl qw(F_GETFL O_APPEND);
12 use File::Spec;
13 use File::Temp ();
14 use PublicInbox::MID qw($MID_EXTRACT);
15 use PublicInbox::Address qw(pairs);
16 use PublicInbox::Config;
17 use PublicInbox::Search qw(get_pct);
18 use PublicInbox::LeiDedupe;
19 use PublicInbox::LeiToMail;
20
21 # cf. https://en.wikipedia.org/wiki/JSON_streaming
22 my $JSONL = 'ldjson|ndjson|jsonl'; # 3 names for the same thing
23
24 sub _iso8601 ($) { strftime('%Y-%m-%dT%H:%M:%SZ', gmtime($_[0])) }
25
26 # we open this in the parent process before ->wq_do handoff
27 sub ovv_out_lk_init ($) {
28         my ($self) = @_;
29         $self->{tmp_lk_id} = "$self.$$";
30         my $tmp = File::Temp->new("lei-ovv.dst.$$.lock-XXXXXX",
31                                         TMPDIR => 1, UNLINK => 0);
32         $self->{lock_path} = $tmp->filename;
33 }
34
35 sub ovv_out_lk_cancel ($) {
36         my ($self) = @_;
37         ($self->{tmp_lk_id}//'') eq "$self.$$" and
38                 unlink(delete($self->{lock_path}));
39 }
40
41 sub detect_fmt ($$) {
42         my ($lei, $dst) = @_;
43         if ($dst =~ m!\A([:/]+://)!) {
44                 $lei->fail("$1 support not implemented, yet\n");
45         } elsif (!-e $dst || -d _) {
46                 'maildir'; # the default TODO: MH?
47         } elsif (-f _ || -p _) {
48                 $lei->fail("unable to determine mbox family of $dst\n");
49         } else {
50                 $lei->fail("unable to determine format of $dst\n");
51         }
52 }
53
54 sub new {
55         my ($class, $lei) = @_;
56         my $opt = $lei->{opt};
57         my $dst = $opt->{output} // '-';
58         $dst = '/dev/stdout' if $dst eq '-';
59
60         my $fmt = $opt->{'format'};
61         $fmt = lc($fmt) if defined $fmt;
62         if ($dst =~ s/\A([a-z0-9]+)://is) { # e.g. Maildir:/home/user/Mail/
63                 my $ofmt = lc $1;
64                 $fmt //= $ofmt;
65                 return $lei->fail(<<"") if $fmt ne $ofmt;
66 --format=$fmt and --output=$ofmt conflict
67
68         }
69         $fmt //= 'json' if $dst eq '/dev/stdout';
70         $fmt //= detect_fmt($lei, $dst) or return;
71
72         if (index($dst, '://') < 0) { # not a URL, so assume path
73                  $dst = File::Spec->canonpath($dst);
74         } # else URL
75
76         my $self = bless { fmt => $fmt, dst => $dst }, $class;
77         $lei->{ovv} = $self;
78         my $json;
79         if ($fmt =~ /\A($JSONL|(?:concat)?json)\z/) {
80                 $json = $self->{json} = ref(PublicInbox::Config->json);
81         }
82         my ($isatty, $seekable);
83         if ($dst eq '/dev/stdout') {
84                 $isatty = -t $lei->{1};
85                 $lei->start_pager if $isatty;
86                 $opt->{pretty} //= $isatty;
87                 if (!$isatty && -f _) {
88                         my $fl = fcntl($lei->{1}, F_GETFL, 0) //
89                                 return $lei->fail("fcntl(stdout): $!");
90                         ovv_out_lk_init($self) unless ($fl & O_APPEND);
91                 } else {
92                         ovv_out_lk_init($self);
93                 }
94         }
95         if (!$json) {
96                 # default to the cheapest sort since MUA usually resorts
97                 $lei->{opt}->{'sort'} //= 'docid' if $dst ne '/dev/stdout';
98                 $lei->{l2m} = eval { PublicInbox::LeiToMail->new($lei) };
99                 return $lei->fail($@) if $@;
100         }
101         $lei->{dedupe} //= PublicInbox::LeiDedupe->new($lei);
102         $self;
103 }
104
105 # called once by parent
106 sub ovv_begin {
107         my ($self, $lei) = @_;
108         if ($self->{fmt} eq 'json') {
109                 print { $lei->{1} } '[';
110         } # TODO HTML/Atom/...
111 }
112
113 # called once by parent (via PublicInbox::EOFpipe)
114 sub ovv_end {
115         my ($self, $lei) = @_;
116         my $out = $lei->{1} or return;
117         if ($self->{fmt} eq 'json') {
118                 # JSON doesn't allow trailing commas, and preventing
119                 # trailing commas is a PITA when parallelizing outputs
120                 print $out "null]\n";
121         } elsif ($self->{fmt} eq 'concatjson') {
122                 print $out "\n";
123         }
124 }
125
126 sub ovv_atfork_child {
127         my ($self) = @_;
128         # reopen dedupe here
129 }
130
131 # prepares an smsg for JSON
132 sub _unbless_smsg {
133         my ($smsg, $mitem) = @_;
134
135         delete @$smsg{qw(lines bytes num tid)};
136         $smsg->{rt} = _iso8601(delete $smsg->{ts}); # JMAP receivedAt
137         $smsg->{dt} = _iso8601(delete $smsg->{ds}); # JMAP UTCDate
138         $smsg->{pct} = get_pct($mitem) if $mitem;
139         if (my $r = delete $smsg->{references}) {
140                 $smsg->{refs} = [ map { "<$_>" } ($r =~ m/$MID_EXTRACT/go) ];
141         }
142         if (my $m = delete($smsg->{mid})) {
143                 $smsg->{'m'} = "<$m>";
144         }
145         for my $f (qw(from to cc)) {
146                 my $v = delete $smsg->{$f} or next;
147                 $smsg->{substr($f, 0, 1)} = pairs($v);
148         }
149         $smsg->{'s'} = delete $smsg->{subject};
150         # can we be bothered to parse From/To/Cc into arrays?
151         scalar { %$smsg }; # unbless
152 }
153
154 sub ovv_atexit_child {
155         my ($self, $lei) = @_;
156         if (my $l2m = delete $lei->{l2m}) {
157                 # gracefully stop lei2mail processes after all
158                 # ->write_mail work is complete
159                 delete $l2m->{-wq_s1};
160                 if (my $rd = delete $l2m->{each_smsg_done}) {
161                         read($rd, my $buf, 1); # wait for EOF
162                 }
163         }
164         # order matters, git->{-tmp}->DESTROY must not fire until
165         # {each_smsg_done} hits EOF above
166         if (my $git = delete $self->{git}) {
167                 $git->async_wait_all;
168         }
169         if (my $bref = delete $lei->{ovv_buf}) {
170                 my $out = $lei->{1} or return;
171                 my $lk = $self->lock_for_scope;
172                 print $out $$bref;
173         }
174 }
175
176 # JSON module ->pretty output wastes too much vertical white space,
177 # this (IMHO) provides better use of screen real-estate while not
178 # being excessively compact:
179 sub _json_pretty {
180         my ($json, $k, $v) = @_;
181         if (ref $v eq 'ARRAY') {
182                 if (@$v) {
183                         my $sep = ",\n" . (' ' x (length($k) + 7));
184                         if (ref($v->[0])) { # f/t/c
185                                 $v = '[' . join($sep, map {
186                                         my $pair = $json->encode($_);
187                                         $pair =~ s/(null|"),"/$1, "/g;
188                                         $pair;
189                                 } @$v) . ']';
190                         } else { # references
191                                 $v = '[' . join($sep, map {
192                                         substr($json->encode([$_]), 1, -1);
193                                 } @$v) . ']';
194                         }
195                 } else {
196                         $v = '[]';
197                 }
198         }
199         qq{  "$k": }.$v;
200 }
201
202 sub ovv_each_smsg_cb { # runs in wq worker usually
203         my ($self, $lei, $ibxish) = @_;
204         my $json;
205         $lei->{1}->autoflush(1);
206         if (my $pkg = $self->{json}) {
207                 $json = $pkg->new;
208                 $json->utf8->canonical;
209                 $json->ascii(1) if $lei->{opt}->{ascii};
210         }
211         my $l2m = $lei->{l2m};
212         if ($l2m && $l2m->{-wq_s1}) {
213                 my ($lei_ipc, @io) = $lei->atfork_parent_wq($l2m);
214                 # n.b. $io[0] = qry_status_wr, $io[1] = mbox|stdout,
215                 # $io[4] becomes a notification pipe that triggers EOF
216                 # in this wq worker when all outstanding ->write_mail
217                 # calls are complete
218                 die "BUG: \$io[4] $io[4] unexpected" if $io[4];
219                 pipe($l2m->{each_smsg_done}, $io[4]) or die "pipe: $!";
220                 fcntl($io[4], 1031, 4096) if $^O eq 'linux';
221                 delete @$lei_ipc{qw(l2m opt mset_opt cmd)};
222                 my $git = $ibxish->git; # (LeiXSearch|Inbox|ExtSearch)->git
223                 $self->{git} = $git;
224                 my $git_dir = $git->{git_dir};
225                 sub {
226                         my ($smsg, $mitem) = @_;
227                         $smsg->{pct} = get_pct($mitem) if $mitem;
228                         $l2m->wq_do('write_mail', \@io, $git_dir, $smsg,
229                                         $lei_ipc);
230                 }
231         } elsif ($l2m) {
232                 my $wcb = $l2m->write_cb($lei);
233                 my $git = $ibxish->git; # (LeiXSearch|Inbox|ExtSearch)->git
234                 $self->{git} = $git; # for ovv_atexit_child
235                 my $g2m = $l2m->can('git_to_mail');
236                 sub {
237                         my ($smsg, $mitem) = @_;
238                         $smsg->{pct} = get_pct($mitem) if $mitem;
239                         $git->cat_async($smsg->{blob}, $g2m, [ $wcb, $smsg ]);
240                 };
241         } elsif ($self->{fmt} =~ /\A(concat)?json\z/ && $lei->{opt}->{pretty}) {
242                 my $EOR = ($1//'') eq 'concat' ? "\n}" : "\n},";
243                 $lei->{ovv_buf} = \(my $buf = '');
244                 sub { # DIY prettiness :P
245                         my ($smsg, $mitem) = @_;
246                         $smsg = _unbless_smsg($smsg, $mitem);
247                         $buf .= "{\n";
248                         $buf .= join(",\n", map {
249                                 my $v = $smsg->{$_};
250                                 if (ref($v)) {
251                                         _json_pretty($json, $_, $v);
252                                 } else {
253                                         $v = $json->encode([$v]);
254                                         qq{  "$_": }.substr($v, 1, -1);
255                                 }
256                         } sort keys %$smsg);
257                         $buf .= $EOR;
258                         if (length($buf) > 65536) {
259                                 my $lk = $self->lock_for_scope;
260                                 print { $lei->{1} } $buf;
261                                 $buf = '';
262                         }
263                 }
264         } elsif ($json) {
265                 my $ORS = $self->{fmt} eq 'json' ? ",\n" : "\n"; # JSONL
266                 $lei->{ovv_buf} = \(my $buf = '');
267                 sub {
268                         my ($smsg, $mitem) = @_;
269                         $buf .= $json->encode(_unbless_smsg(@_)) . $ORS;
270                         if (length($buf) > 65536) {
271                                 my $lk = $self->lock_for_scope;
272                                 print { $lei->{1} } $buf;
273                                 $buf = '';
274                         }
275                 }
276         } elsif ($self->{fmt} eq 'oid') {
277                 sub {
278                         my ($smsg, $mitem) = @_;
279                 }
280         } # else { ...
281 }
282
283 no warnings 'once';
284 *DESTROY = \&ovv_out_lk_cancel;
285
286 1;